diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-02-15 15:03:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-15 21:03:10 +0100 |
commit | e21b6acc910fb4993395204c8c0fe4ec2cbea16c (patch) | |
tree | 08605b8839ffbf98e421bbfe1cba62eb443c6349 /utils/validate_config.rb | |
parent | 97ccf274f86d242b2e12aebafd06fc744c1c06dc (diff) | |
download | lingo-apworld-e21b6acc910fb4993395204c8c0fe4ec2cbea16c.tar.gz lingo-apworld-e21b6acc910fb4993395204c8c0fe4ec2cbea16c.tar.bz2 lingo-apworld-e21b6acc910fb4993395204c8c0fe4ec2cbea16c.zip |
Lingo: Various item/location renames (#2746)
## What is this fixing or adding? - Roof MASTERY panels are now technically in individual regions with more descriptive names, so they can be displayed better on the tracker. - Orange Tower Seventh Floor - Mastery has been renamed to simply Mastery. - The Optimistic is its own region now. - The misnamed CEILING in Room Room has been fixed. - The misnamed CHEESE in Challenge Room has been fixed. - The misnamed SOUND in Outside the Bold has been fixed. - "The Bearer - Shortcut to The Bold" is now "The Bearer - Entrance". - HUB ROOM - NEAR, FAR and the Warts Straw and Leaf Feel Areas have now been semantically combined into the "Symmetry Room". They are still logically three separate regions. - The FACTS chain in Challenge Room has been reindexed, and the full chain panel is now indicated as such. - The Room Room floors have been reindexed. - Panels in The Observant are now named by their questions, not answers. - Added a (1) subscript to several panels in Orange Tower Fourth Floor, Outside The Initiated, and The Seeker. The validate_config.rb script has also been updated to check that all items and locations have an ID. This change should not impact generation logic at all. It is just changing item and location names.
Diffstat (limited to 'utils/validate_config.rb')
-rw-r--r-- | utils/validate_config.rb | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/utils/validate_config.rb b/utils/validate_config.rb index 3ac49dc..96ed9fc 100644 --- a/utils/validate_config.rb +++ b/utils/validate_config.rb | |||
@@ -8,7 +8,8 @@ require 'set' | |||
8 | require 'yaml' | 8 | require 'yaml' |
9 | 9 | ||
10 | configpath = ARGV[0] | 10 | configpath = ARGV[0] |
11 | mappath = ARGV[1] | 11 | idspath = ARGV[1] |
12 | mappath = ARGV[2] | ||
12 | 13 | ||
13 | panels = Set["Countdown Panels/Panel_1234567890_wanderlust"] | 14 | panels = Set["Countdown Panels/Panel_1234567890_wanderlust"] |
14 | doors = Set["Naps Room Doors/Door_hider_new1", "Tower Room Area Doors/Door_wanderer_entrance"] | 15 | doors = Set["Naps Room Doors/Door_hider_new1", "Tower Room Area Doors/Door_wanderer_entrance"] |
@@ -46,6 +47,8 @@ painting_directives = Set["id", "enter_only", "exit_only", "orientation", "requi | |||
46 | 47 | ||
47 | non_counting = 0 | 48 | non_counting = 0 |
48 | 49 | ||
50 | ids = YAML.load_file(idspath) | ||
51 | |||
49 | config = YAML.load_file(configpath) | 52 | config = YAML.load_file(configpath) |
50 | config.each do |room_name, room| | 53 | config.each do |room_name, room| |
51 | configured_rooms.add(room_name) | 54 | configured_rooms.add(room_name) |
@@ -162,6 +165,10 @@ config.each do |room_name, room| | |||
162 | unless bad_subdirectives.empty? then | 165 | unless bad_subdirectives.empty? then |
163 | puts "#{room_name} - #{panel_name} :::: Panel has the following invalid subdirectives: #{bad_subdirectives.join(", ")}" | 166 | puts "#{room_name} - #{panel_name} :::: Panel has the following invalid subdirectives: #{bad_subdirectives.join(", ")}" |
164 | end | 167 | end |
168 | |||
169 | unless ids.include?("panels") and ids["panels"].include?(room_name) and ids["panels"][room_name].include?(panel_name) | ||
170 | puts "#{room_name} - #{panel_name} :::: Panel is missing a location ID" | ||
171 | end | ||
165 | end | 172 | end |
166 | 173 | ||
167 | (room["doors"] || {}).each do |door_name, door| | 174 | (room["doors"] || {}).each do |door_name, door| |
@@ -229,6 +236,18 @@ config.each do |room_name, room| | |||
229 | unless bad_subdirectives.empty? then | 236 | unless bad_subdirectives.empty? then |
230 | puts "#{room_name} - #{door_name} :::: Door has the following invalid subdirectives: #{bad_subdirectives.join(", ")}" | 237 | puts "#{room_name} - #{door_name} :::: Door has the following invalid subdirectives: #{bad_subdirectives.join(", ")}" |
231 | end | 238 | end |
239 | |||
240 | unless door["skip_item"] or door["event"] | ||
241 | unless ids.include?("doors") and ids["doors"].include?(room_name) and ids["doors"][room_name].include?(door_name) and ids["doors"][room_name][door_name].include?("item") | ||
242 | puts "#{room_name} - #{door_name} :::: Door is missing an item ID" | ||
243 | end | ||
244 | end | ||
245 | |||
246 | unless door["skip_location"] or door["event"] | ||
247 | unless ids.include?("doors") and ids["doors"].include?(room_name) and ids["doors"][room_name].include?(door_name) and ids["doors"][room_name][door_name].include?("location") | ||
248 | puts "#{room_name} - #{door_name} :::: Door is missing a location ID" | ||
249 | end | ||
250 | end | ||
232 | end | 251 | end |
233 | 252 | ||
234 | (room["paintings"] || []).each do |painting| | 253 | (room["paintings"] || []).each do |painting| |
@@ -281,6 +300,10 @@ config.each do |room_name, room| | |||
281 | mentioned_doors.add("#{room_name} - #{door}") | 300 | mentioned_doors.add("#{room_name} - #{door}") |
282 | end | 301 | end |
283 | end | 302 | end |
303 | |||
304 | unless ids.include?("progression") and ids["progression"].include?(progression_name) | ||
305 | puts "#{room_name} - #{progression_name} :::: Progression is missing an item ID" | ||
306 | end | ||
284 | end | 307 | end |
285 | end | 308 | end |
286 | 309 | ||
@@ -303,6 +326,10 @@ door_groups.each do |group,num| | |||
303 | if num == 1 then | 326 | if num == 1 then |
304 | puts "Door group \"#{group}\" only has one door in it" | 327 | puts "Door group \"#{group}\" only has one door in it" |
305 | end | 328 | end |
329 | |||
330 | unless ids.include?("door_groups") and ids["door_groups"].include?(group) | ||
331 | puts "#{group} :::: Door group is missing an item ID" | ||
332 | end | ||
306 | end | 333 | end |
307 | 334 | ||
308 | slashed_rooms = configured_rooms.select do |room| | 335 | slashed_rooms = configured_rooms.select do |room| |