summary refs log tree commit diff stats
path: root/utils/validate_config.rb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-03-26 20:32:39 -0400
committerGitHub <noreply@github.com>2025-03-27 01:32:39 +0100
commit93fd4adda9d5aaf63460f0e98a04ebd3291352b8 (patch)
treedec0a2bf112638a0370af5de8f4e0f8f13174f7f /utils/validate_config.rb
parenta834180195305fe0be91bd0ced5b75de104b7520 (diff)
downloadlingo-apworld-main.tar.gz
lingo-apworld-main.tar.bz2
lingo-apworld-main.zip
Lingo: Add painting display names (#4707) HEAD main
* Lingo: Add painting display names

* Reordered some paintings

* Update generated.dat
Diffstat (limited to 'utils/validate_config.rb')
-rw-r--r--utils/validate_config.rb6
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
50panel_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"] 50panel_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"]
51door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"] 51door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"]
52panel_door_directives = Set["panels", "item_name", "panel_group"] 52panel_door_directives = Set["panels", "item_name", "panel_group"]
53painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] 53painting_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
55non_counting = 0 55non_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"]}"