about summary refs log tree commit diff stats
path: root/tools/validator/structs.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2026-02-06 13:03:32 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2026-02-06 13:03:32 -0500
commit3b415b3f5f182238da9ed83e0b2b07fb07044e04 (patch)
tree116b996eb7345e1586f01e1e9b5cc8376951c53e /tools/validator/structs.h
parent08e6332cea33d433a2677044a351bc4f0ca5f3ea (diff)
downloadlingo2-archipelago-3b415b3f5f182238da9ed83e0b2b07fb07044e04.tar.gz
lingo2-archipelago-3b415b3f5f182238da9ed83e0b2b07fb07044e04.tar.bz2
lingo2-archipelago-3b415b3f5f182238da9ed83e0b2b07fb07044e04.zip
Annotated RTE rooms for most maps
Diffstat (limited to 'tools/validator/structs.h')
-rw-r--r--tools/validator/structs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/validator/structs.h b/tools/validator/structs.h index 62974a8..81a0e8f 100644 --- a/tools/validator/structs.h +++ b/tools/validator/structs.h
@@ -28,6 +28,9 @@ struct GameNodeInfo {
28struct MapInfo { 28struct MapInfo {
29 std::map<std::string, GameNodeInfo> game_nodes; 29 std::map<std::string, GameNodeInfo> game_nodes;
30 30
31 std::vector<HumanMap> definitions;
32 bool has_rte_id = false;
33
31 std::optional<PortIdentifier> malformed_worldport_entrance; 34 std::optional<PortIdentifier> malformed_worldport_entrance;
32}; 35};
33 36
@@ -37,6 +40,7 @@ struct RoomInfo {
37 std::vector<DoorIdentifier> doors_referenced_by; 40 std::vector<DoorIdentifier> doors_referenced_by;
38 std::vector<PanelIdentifier> panels_referenced_by; 41 std::vector<PanelIdentifier> panels_referenced_by;
39 std::vector<HumanConnection> connections_referenced_by; 42 std::vector<HumanConnection> connections_referenced_by;
43 std::vector<std::string> map_rtes_referenced_by;
40}; 44};
41 45
42struct DoorInfo { 46struct DoorInfo {