diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-26 20:32:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-27 01:32:39 +0100 |
commit | 93fd4adda9d5aaf63460f0e98a04ebd3291352b8 (patch) | |
tree | dec0a2bf112638a0370af5de8f4e0f8f13174f7f /utils/validate_config.rb | |
parent | a834180195305fe0be91bd0ced5b75de104b7520 (diff) | |
download | lingo-apworld-93fd4adda9d5aaf63460f0e98a04ebd3291352b8.tar.gz lingo-apworld-93fd4adda9d5aaf63460f0e98a04ebd3291352b8.tar.bz2 lingo-apworld-93fd4adda9d5aaf63460f0e98a04ebd3291352b8.zip |
* Lingo: Add painting display names * Reordered some paintings * Update generated.dat
Diffstat (limited to 'utils/validate_config.rb')
-rw-r--r-- | utils/validate_config.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/validate_config.rb b/utils/validate_config.rb index 70f7fc2..2a765fb 100644 --- a/utils/validate_config.rb +++ b/utils/validate_config.rb | |||
@@ -50,7 +50,7 @@ directives = Set["entrances", "panels", "doors", "panel_doors", "paintings", "su | |||
50 | panel_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"] | 50 | panel_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"] |
51 | door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"] | 51 | door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"] |
52 | panel_door_directives = Set["panels", "item_name", "panel_group"] | 52 | panel_door_directives = Set["panels", "item_name", "panel_group"] |
53 | painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] | 53 | painting_directives = Set["id", "display_name", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] |
54 | 54 | ||
55 | non_counting = 0 | 55 | non_counting = 0 |
56 | 56 | ||
@@ -314,6 +314,10 @@ config.each do |room_name, room| | |||
314 | next | 314 | next |
315 | end | 315 | end |
316 | 316 | ||
317 | unless painting.include? "display_name" then | ||
318 | puts "#{room_name} - #{painting["id"] || "painting"} :::: Missing display name" | ||
319 | end | ||
320 | |||
317 | if painting.include?("orientation") then | 321 | if painting.include?("orientation") then |
318 | unless ["north", "south", "east", "west"].include? painting["orientation"] then | 322 | unless ["north", "south", "east", "west"].include? painting["orientation"] then |
319 | puts "#{room_name} - #{painting["id"] || "painting"} :::: Invalid orientation #{painting["orientation"]}" | 323 | puts "#{room_name} - #{painting["id"] || "painting"} :::: Invalid orientation #{painting["orientation"]}" |