summary refs log tree commit diff stats
path: root/static_logic.py
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 /static_logic.py
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 'static_logic.py')
-rw-r--r--static_logic.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/static_logic.py b/static_logic.py index 1da265d..c7ee001 100644 --- a/static_logic.py +++ b/static_logic.py
@@ -1,10 +1,9 @@
1import os 1import os
2import pkgutil 2import pkgutil
3import pickle
3from io import BytesIO 4from io import BytesIO
4from typing import Dict, List, Set 5from typing import Dict, List, Set
5 6
6import pickle
7
8from .datatypes import Door, Painting, Panel, Progression, Room 7from .datatypes import Door, Painting, Panel, Progression, Room
9 8
10ALL_ROOMS: List[Room] = [] 9ALL_ROOMS: List[Room] = []
@@ -21,6 +20,9 @@ PAINTING_EXITS: int = 0
21REQUIRED_PAINTING_ROOMS: List[str] = [] 20REQUIRED_PAINTING_ROOMS: List[str] = []
22REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS: List[str] = [] 21REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS: List[str] = []
23 22
23SUNWARP_ENTRANCES: List[str] = []
24SUNWARP_EXITS: List[str] = []
25
24SPECIAL_ITEM_IDS: Dict[str, int] = {} 26SPECIAL_ITEM_IDS: Dict[str, int] = {}
25PANEL_LOCATION_IDS: Dict[str, Dict[str, int]] = {} 27PANEL_LOCATION_IDS: Dict[str, Dict[str, int]] = {}
26DOOR_LOCATION_IDS: Dict[str, Dict[str, int]] = {} 28DOOR_LOCATION_IDS: Dict[str, Dict[str, int]] = {}
@@ -99,6 +101,8 @@ def load_static_data_from_file():
99 PAINTING_EXITS = pickdata["PAINTING_EXITS"] 101 PAINTING_EXITS = pickdata["PAINTING_EXITS"]
100 REQUIRED_PAINTING_ROOMS.extend(pickdata["REQUIRED_PAINTING_ROOMS"]) 102 REQUIRED_PAINTING_ROOMS.extend(pickdata["REQUIRED_PAINTING_ROOMS"])
101 REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS.extend(pickdata["REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS"]) 103 REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS.extend(pickdata["REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS"])
104 SUNWARP_ENTRANCES.extend(pickdata["SUNWARP_ENTRANCES"])
105 SUNWARP_EXITS.extend(pickdata["SUNWARP_EXITS"])
102 SPECIAL_ITEM_IDS.update(pickdata["SPECIAL_ITEM_IDS"]) 106 SPECIAL_ITEM_IDS.update(pickdata["SPECIAL_ITEM_IDS"])
103 PANEL_LOCATION_IDS.update(pickdata["PANEL_LOCATION_IDS"]) 107 PANEL_LOCATION_IDS.update(pickdata["PANEL_LOCATION_IDS"])
104 DOOR_LOCATION_IDS.update(pickdata["DOOR_LOCATION_IDS"]) 108 DOOR_LOCATION_IDS.update(pickdata["DOOR_LOCATION_IDS"])