From 1ac21d4a67ddd211fda841aa6e368bc2cf52a3d6 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 18 Aug 2025 12:56:13 -0400 Subject: Validate that nodes in game files are used You can now also list out nodes that you are explicitly not mapping out. The current state of the repo does produce some warnings when the validator is run and they're either endings, paintings that I'm not sure what to do with yet, and weird proxy stuff I'm not sure how to handle yet. --- data/maps/the_between/connections.txtpb | 43 +++++++++++++++++++++++- data/maps/the_between/rooms/B2 Back Room.txtpb | 17 ++++++++++ data/maps/the_between/rooms/B2 Front Room.txtpb | 12 +++++++ data/maps/the_between/rooms/B2 Room.txtpb | 8 ----- data/maps/the_between/rooms/Main Area.txtpb | 6 ---- data/maps/the_between/rooms/Plaza Entrance.txtpb | 7 ++++ 6 files changed, 78 insertions(+), 15 deletions(-) create mode 100644 data/maps/the_between/rooms/B2 Back Room.txtpb create mode 100644 data/maps/the_between/rooms/B2 Front Room.txtpb delete mode 100644 data/maps/the_between/rooms/B2 Room.txtpb create mode 100644 data/maps/the_between/rooms/Plaza Entrance.txtpb (limited to 'data/maps/the_between') diff --git a/data/maps/the_between/connections.txtpb b/data/maps/the_between/connections.txtpb index e2e7dc8..4e2e9a5 100644 --- a/data/maps/the_between/connections.txtpb +++ b/data/maps/the_between/connections.txtpb @@ -5,6 +5,47 @@ connections { } connections { from_room: "Main Area" - to_room: "B2 Room" + to_room: "B2 Front Room" door { name: "B2 Door" } } +connections { + from { + painting { + room: "B2 Front Room" + name: "EYES4" + } + } + to { + painting { + room: "B2 Back Room" + name: "EYES3" + } + } + oneway: true +} +connections { + from { + painting { + room: "B2 Front Room" + name: "EYES" + } + } + to { + painting { + room: "B2 Back Room" + name: "EYES2" + } + } + oneway: true +} +connections { + from_room: "B2 Back Room" + to_room: "B2 Front Room" + # via collecting B2 + oneway: true +} +connections { + from_room: "Main Area" + to_room: "Plaza Entrance" + door { name: "Plaza Entrance" } +} diff --git a/data/maps/the_between/rooms/B2 Back Room.txtpb b/data/maps/the_between/rooms/B2 Back Room.txtpb new file mode 100644 index 0000000..132ba56 --- /dev/null +++ b/data/maps/the_between/rooms/B2 Back Room.txtpb @@ -0,0 +1,17 @@ +name: "B2 Back Room" +display_name: "B2 Room" +letters { + key: "b" + level2: true + path: "Components/Collectables/collectable" +} +paintings { + name: "EYES2" + path: "Components/Paintings/eyes2" + orientation: "east" +} +paintings { + name: "EYES3" + path: "Components/Paintings/eyes3" + orientation: "west" +} diff --git a/data/maps/the_between/rooms/B2 Front Room.txtpb b/data/maps/the_between/rooms/B2 Front Room.txtpb new file mode 100644 index 0000000..02c09fb --- /dev/null +++ b/data/maps/the_between/rooms/B2 Front Room.txtpb @@ -0,0 +1,12 @@ +name: "B2 Front Room" +display_name: "B2 Room" +paintings { + name: "EYES" + path: "Components/Paintings/eyes" + orientation: "east" +} +paintings { + name: "EYES4" + path: "Components/Paintings/eyes4" + orientation: "west" +} diff --git a/data/maps/the_between/rooms/B2 Room.txtpb b/data/maps/the_between/rooms/B2 Room.txtpb deleted file mode 100644 index aad5d15..0000000 --- a/data/maps/the_between/rooms/B2 Room.txtpb +++ /dev/null @@ -1,8 +0,0 @@ -name: "B2 Room" -display_name: "B2 Room" -letters { - key: "b" - level2: true - path: "Components/Collectables/collectable" -} -# Uhh idk if the paintings and door in here should be randomized. diff --git a/data/maps/the_between/rooms/Main Area.txtpb b/data/maps/the_between/rooms/Main Area.txtpb index 1e0e291..164493d 100644 --- a/data/maps/the_between/rooms/Main Area.txtpb +++ b/data/maps/the_between/rooms/Main Area.txtpb @@ -201,9 +201,3 @@ ports { path: "Components/Warps/worldport" orientation: "east" } -ports { - name: "PLAZA" - path: "Components/Warps/worldport4" - orientation: "north" - required_door { name: "Plaza Entrance" } -} diff --git a/data/maps/the_between/rooms/Plaza Entrance.txtpb b/data/maps/the_between/rooms/Plaza Entrance.txtpb new file mode 100644 index 0000000..b99081a --- /dev/null +++ b/data/maps/the_between/rooms/Plaza Entrance.txtpb @@ -0,0 +1,7 @@ +name: "Plaza Entrance" +display_name: "Main Area" +ports { + name: "PLAZA" + path: "Components/Warps/worldport4" + orientation: "north" +} -- cgit 1.4.1