summary refs log tree commit diff stats
path: root/utils/validate_config.rb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-04-18 11:45:33 -0500
committerGitHub <noreply@github.com>2024-04-18 18:45:33 +0200
commitb45b9bd74612239ebc29322fc340b1bee62e7032 (patch)
treed61b0077586fa146a418a46536daef02ae27989a /utils/validate_config.rb
parent7a358cedc44c0892a4c369a4884a23a001535d63 (diff)
downloadlingo-apworld-b45b9bd74612239ebc29322fc340b1bee62e7032.tar.gz
lingo-apworld-b45b9bd74612239ebc29322fc340b1bee62e7032.tar.bz2
lingo-apworld-b45b9bd74612239ebc29322fc340b1bee62e7032.zip
Lingo: The Pilgrim Update (#2884)
* An option was added to enable or disable the pilgrimage, and it defaults to disabled. When disabled, the client will prevent you from performing a pilgrimage (i.e. the yellow border will not appear when you enter the 1 sunwarp). The sun painting is added to the item pool when pilgrimage is disabled, as otherwise there is no way into the Pilgrim Antechamber. Inversely, the sun painting is no longer in the item pool when pilgrimage is enabled (even if door shuffle is on), requiring you to perform a pilgrimage to get to that room.
* The canonical pilgrimage has been deprecated. Instead, there is logic for determining whether a pilgrimage is possible.
* Two options were added that allow the player to decide whether paintings and/or Crossroads - Roof Access are permitted during the pilgrimage. Both default to disabled. These options apply both to logical expectations in the generator, and are also enforced by the game client.
* An option was added to control how sunwarps are accessed. The default is for them to always be accessible, like in the base game. It is also possible to disable them entirely (which is not possible when pilgrimage is enabled), or lock them behind items similar to door shuffle. It can either be one item that unlocks all sunwarps at the same time, six progressive items that unlock the sunwarps from 1 to 6, or six individual items that unlock the sunwarps in any order. This option is independent from door shuffle.
* An option was added that shuffles sunwarps. This acts similarly to painting shuffle. The 12 sunwarps are re-ordered and re-paired. Sunwarps that were previously entrances or exits do not need to stay entrances or exits. Performing a pilgrimage requires proceeding through the sunwarps in the new order, rather than the original one.
* Pilgrimage was added as a win condition. It requires you to solve the blue PILGRIM panel in the Pilgrim Antechamber.
Diffstat (limited to 'utils/validate_config.rb')
-rw-r--r--utils/validate_config.rb48
1 files changed, 38 insertions, 10 deletions
diff --git a/utils/validate_config.rb b/utils/validate_config.rb index ae0ac61..831fee2 100644 --- a/utils/validate_config.rb +++ b/utils/validate_config.rb
@@ -37,12 +37,14 @@ configured_panels = Set[]
37mentioned_rooms = Set[] 37mentioned_rooms = Set[]
38mentioned_doors = Set[] 38mentioned_doors = Set[]
39mentioned_panels = Set[] 39mentioned_panels = Set[]
40mentioned_sunwarp_entrances = Set[]
41mentioned_sunwarp_exits = Set[]
40 42
41door_groups = {} 43door_groups = {}
42 44
43directives = Set["entrances", "panels", "doors", "paintings", "progression"] 45directives = Set["entrances", "panels", "doors", "paintings", "sunwarps", "progression"]
44panel_directives = Set["id", "required_room", "required_door", "required_panel", "colors", "check", "exclude_reduce", "tag", "link", "subtag", "achievement", "copy_to_sign", "non_counting", "hunt"] 46panel_directives = Set["id", "required_room", "required_door", "required_panel", "colors", "check", "exclude_reduce", "tag", "link", "subtag", "achievement", "copy_to_sign", "non_counting", "hunt"]
45door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "junk_item", "event"] 47door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"]
46painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] 48painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"]
47 49
48non_counting = 0 50non_counting = 0
@@ -67,17 +69,17 @@ config.each do |room_name, room|
67 69
68 entrances = [] 70 entrances = []
69 if entrance.kind_of? Hash 71 if entrance.kind_of? Hash
70 if entrance.keys() != ["painting"] then 72 entrances = [entrance]
71 entrances = [entrance]
72 end
73 elsif entrance.kind_of? Array 73 elsif entrance.kind_of? Array
74 entrances = entrance 74 entrances = entrance
75 end 75 end
76 76
77 entrances.each do |e| 77 entrances.each do |e|
78 entrance_room = e.include?("room") ? e["room"] : room_name 78 if e.include?("door") then
79 mentioned_rooms.add(entrance_room) 79 entrance_room = e.include?("room") ? e["room"] : room_name
80 mentioned_doors.add(entrance_room + " - " + e["door"]) 80 mentioned_rooms.add(entrance_room)
81 mentioned_doors.add(entrance_room + " - " + e["door"])
82 end
81 end 83 end
82 end 84 end
83 85
@@ -204,8 +206,8 @@ config.each do |room_name, room|
204 end 206 end
205 end 207 end
206 208
207 if not door.include?("id") and not door.include?("painting_id") and not door["skip_item"] and not door["event"] then 209 if not door.include?("id") and not door.include?("painting_id") and not door.include?("warp_id") and not door["skip_item"] and not door["event"] then
208 puts "#{room_name} - #{door_name} :::: Should be marked skip_item or event if there are no doors or paintings" 210 puts "#{room_name} - #{door_name} :::: Should be marked skip_item or event if there are no doors, paintings, or warps"
209 end 211 end
210 212
211 if door.include?("panels") 213 if door.include?("panels")
@@ -292,6 +294,32 @@ config.each do |room_name, room|
292 end 294 end
293 end 295 end
294 296
297 (room["sunwarps"] || []).each do |sunwarp|
298 if sunwarp.include? "dots" and sunwarp.include? "direction" then
299 if sunwarp["dots"] < 1 or sunwarp["dots"] > 6 then
300 puts "#{room_name} :::: Contains a sunwarp with an invalid dots value"
301 end
302
303 if sunwarp["direction"] == "enter" then
304 if mentioned_sunwarp_entrances.include? sunwarp["dots"] then
305 puts "Multiple #{sunwarp["dots"]} sunwarp entrances were found"
306 else
307 mentioned_sunwarp_entrances.add(sunwarp["dots"])
308 end
309 elsif sunwarp["direction"] == "exit" then
310 if mentioned_sunwarp_exits.include? sunwarp["dots"] then
311 puts "Multiple #{sunwarp["dots"]} sunwarp exits were found"
312 else
313 mentioned_sunwarp_exits.add(sunwarp["dots"])
314 end
315 else
316 puts "#{room_name} :::: Contains a sunwarp with an invalid direction value"
317 end
318 else
319 puts "#{room_name} :::: Contains a sunwarp without a dots and direction"
320 end
321 end
322
295 (room["progression"] || {}).each do |progression_name, door_list| 323 (room["progression"] || {}).each do |progression_name, door_list|
296 door_list.each do |door| 324 door_list.each do |door|
297 if door.kind_of? Hash then 325 if door.kind_of? Hash then