summary refs log tree commit diff stats
path: root/utils/validate_config.rb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-05-22 20:09:52 -0400
committerGitHub <noreply@github.com>2024-05-23 02:09:52 +0200
commite41bdceb052334f2c86a78ba41411a9c85df7cc5 (patch)
tree617719d43319e041236d17b740924fa0ce9a1242 /utils/validate_config.rb
parent808daa5b230aa0912671b263edc6de2c71b73a6a (diff)
downloadlingo-apworld-e41bdceb052334f2c86a78ba41411a9c85df7cc5.tar.gz
lingo-apworld-e41bdceb052334f2c86a78ba41411a9c85df7cc5.tar.bz2
lingo-apworld-e41bdceb052334f2c86a78ba41411a9c85df7cc5.zip
Lingo: Minor logic fixes (part 2) (#3250)
* Lingo: Minor logic fixes (part 2)

* Update the datafile

* Renamed Fearless Mastery

* Move Rhyme Room LEAP into upper room

* Rename Artistic achievement location

* Fix broken wondrous painting

* Added a test for the Wondrous painting thing
Diffstat (limited to 'utils/validate_config.rb')
-rw-r--r--utils/validate_config.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/utils/validate_config.rb b/utils/validate_config.rb index 831fee2..498980b 100644 --- a/utils/validate_config.rb +++ b/utils/validate_config.rb
@@ -39,11 +39,12 @@ mentioned_doors = Set[]
39mentioned_panels = Set[] 39mentioned_panels = Set[]
40mentioned_sunwarp_entrances = Set[] 40mentioned_sunwarp_entrances = Set[]
41mentioned_sunwarp_exits = Set[] 41mentioned_sunwarp_exits = Set[]
42mentioned_paintings = Set[]
42 43
43door_groups = {} 44door_groups = {}
44 45
45directives = Set["entrances", "panels", "doors", "paintings", "sunwarps", "progression"] 46directives = Set["entrances", "panels", "doors", "paintings", "sunwarps", "progression"]
46panel_directives = Set["id", "required_room", "required_door", "required_panel", "colors", "check", "exclude_reduce", "tag", "link", "subtag", "achievement", "copy_to_sign", "non_counting", "hunt"] 47panel_directives = Set["id", "required_room", "required_door", "required_panel", "colors", "check", "exclude_reduce", "tag", "link", "subtag", "achievement", "copy_to_sign", "non_counting", "hunt", "location_name"]
47door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"] 48door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"]
48painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] 49painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"]
49 50
@@ -257,6 +258,12 @@ config.each do |room_name, room|
257 unless paintings.include? painting["id"] then 258 unless paintings.include? painting["id"] then
258 puts "#{room_name} :::: Invalid Painting ID #{painting["id"]}" 259 puts "#{room_name} :::: Invalid Painting ID #{painting["id"]}"
259 end 260 end
261
262 if mentioned_paintings.include?(painting["id"]) then
263 puts "Painting #{painting["id"]} is mentioned more than once"
264 else
265 mentioned_paintings.add(painting["id"])
266 end
260 else 267 else
261 puts "#{room_name} :::: Painting is missing an ID" 268 puts "#{room_name} :::: Painting is missing an ID"
262 end 269 end