summary refs log tree commit diff stats
path: root/static_logic.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-07-26 04:53:11 -0400
committerGitHub <noreply@github.com>2024-07-26 10:53:11 +0200
commit7641d9590110fa7b4901c7f7ca0384392ef24375 (patch)
tree8efdfa5be3a88879a690a4a7351eb7b635989dc7 /static_logic.py
parent00c16023c45301224400a06f31f637fdedba00ee (diff)
downloadlingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.tar.gz
lingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.tar.bz2
lingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.zip
Lingo: Add panels mode door shuffle (#3163)
* Created panels mode door shuffle

* Added some panel door item names

* Remove RUNT TURN panel door

Not really useful.

* Fix logic with First SIX related stuff

* Add group_doors to slot data

* Fix LEVEL 2 behavior with panels mode

* Fixed unit tests

* Fixed duplicate IDs from merge

* Just regenerated new IDs

* Fixed duplication of color and door group items

* Removed unnecessary unit test option

* Fix The Seeker being achievable without entrance door

* Fix The Observant being achievable without locked panels

* Added some more panel doors

* Added Progressive Suits Area

* Lingo: Fix Basement access with THE MASTER

* Added indirect conditions for MASTER-blocked entrances

* Fixed Incomparable achievement access

* Fix STAIRS panel logic

* Fix merge error with good items

* Is this clearer?

* DREAD and TURN LEARN

* Allow a weird edge case for reduced locations

Panels mode door shuffle + grouped doors + color shuffle + pilgrimage enabled is exactly the right number of items for reduced locations. Removing color shuffle also allows for disabling pilgrimage, adding sunwarp locking, or both, with a couple of locations left over.

* Prevent small sphere one on panels mode

* Added shuffle_doors aliases for old options

* Fixed a unit test

* Updated datafile

* Tweaked requirements for reduced locations

* Added player name to OptionError messages

* Update generated.dat
Diffstat (limited to 'static_logic.py')
-rw-r--r--static_logic.py32
1 files changed, 27 insertions, 5 deletions
diff --git a/static_logic.py b/static_logic.py index ff820dd..74eea44 100644 --- a/static_logic.py +++ b/static_logic.py
@@ -4,15 +4,17 @@ import pickle
4from io import BytesIO 4from io import BytesIO
5from typing import Dict, List, Set 5from typing import Dict, List, Set
6 6
7from .datatypes import Door, Painting, Panel, Progression, Room 7from .datatypes import Door, Painting, Panel, PanelDoor, Progression, Room
8 8
9ALL_ROOMS: List[Room] = [] 9ALL_ROOMS: List[Room] = []
10DOORS_BY_ROOM: Dict[str, Dict[str, Door]] = {} 10DOORS_BY_ROOM: Dict[str, Dict[str, Door]] = {}
11PANELS_BY_ROOM: Dict[str, Dict[str, Panel]] = {} 11PANELS_BY_ROOM: Dict[str, Dict[str, Panel]] = {}
12PANEL_DOORS_BY_ROOM: Dict[str, Dict[str, PanelDoor]] = {}
12PAINTINGS: Dict[str, Painting] = {} 13PAINTINGS: Dict[str, Painting] = {}
13 14
14PROGRESSIVE_ITEMS: List[str] = [] 15PROGRESSIVE_ITEMS: Set[str] = set()
15PROGRESSION_BY_ROOM: Dict[str, Dict[str, Progression]] = {} 16PROGRESSIVE_DOORS_BY_ROOM: Dict[str, Dict[str, Progression]] = {}
17PROGRESSIVE_PANELS_BY_ROOM: Dict[str, Dict[str, Progression]] = {}
16 18
17PAINTING_ENTRANCES: int = 0 19PAINTING_ENTRANCES: int = 0
18PAINTING_EXIT_ROOMS: Set[str] = set() 20PAINTING_EXIT_ROOMS: Set[str] = set()
@@ -28,6 +30,8 @@ PANEL_LOCATION_IDS: Dict[str, Dict[str, int]] = {}
28DOOR_LOCATION_IDS: Dict[str, Dict[str, int]] = {} 30DOOR_LOCATION_IDS: Dict[str, Dict[str, int]] = {}
29DOOR_ITEM_IDS: Dict[str, Dict[str, int]] = {} 31DOOR_ITEM_IDS: Dict[str, Dict[str, int]] = {}
30DOOR_GROUP_ITEM_IDS: Dict[str, int] = {} 32DOOR_GROUP_ITEM_IDS: Dict[str, int] = {}
33PANEL_DOOR_ITEM_IDS: Dict[str, Dict[str, int]] = {}
34PANEL_GROUP_ITEM_IDS: Dict[str, int] = {}
31PROGRESSIVE_ITEM_IDS: Dict[str, int] = {} 35PROGRESSIVE_ITEM_IDS: Dict[str, int] = {}
32 36
33HASHES: Dict[str, str] = {} 37HASHES: Dict[str, str] = {}
@@ -68,6 +72,20 @@ def get_door_group_item_id(name: str):
68 return DOOR_GROUP_ITEM_IDS[name] 72 return DOOR_GROUP_ITEM_IDS[name]
69 73
70 74
75def get_panel_door_item_id(room: str, name: str):
76 if room not in PANEL_DOOR_ITEM_IDS or name not in PANEL_DOOR_ITEM_IDS[room]:
77 raise Exception(f"Item ID for panel door {room} - {name} not found in ids.yaml.")
78
79 return PANEL_DOOR_ITEM_IDS[room][name]
80
81
82def get_panel_group_item_id(name: str):
83 if name not in PANEL_GROUP_ITEM_IDS:
84 raise Exception(f"Item ID for panel group {name} not found in ids.yaml.")
85
86 return PANEL_GROUP_ITEM_IDS[name]
87
88
71def get_progressive_item_id(name: str): 89def get_progressive_item_id(name: str):
72 if name not in PROGRESSIVE_ITEM_IDS: 90 if name not in PROGRESSIVE_ITEM_IDS:
73 raise Exception(f"Item ID for progressive item {name} not found in ids.yaml.") 91 raise Exception(f"Item ID for progressive item {name} not found in ids.yaml.")
@@ -97,8 +115,10 @@ def load_static_data_from_file():
97 ALL_ROOMS.extend(pickdata["ALL_ROOMS"]) 115 ALL_ROOMS.extend(pickdata["ALL_ROOMS"])
98 DOORS_BY_ROOM.update(pickdata["DOORS_BY_ROOM"]) 116 DOORS_BY_ROOM.update(pickdata["DOORS_BY_ROOM"])
99 PANELS_BY_ROOM.update(pickdata["PANELS_BY_ROOM"]) 117 PANELS_BY_ROOM.update(pickdata["PANELS_BY_ROOM"])
100 PROGRESSIVE_ITEMS.extend(pickdata["PROGRESSIVE_ITEMS"]) 118 PANEL_DOORS_BY_ROOM.update(pickdata["PANEL_DOORS_BY_ROOM"])
101 PROGRESSION_BY_ROOM.update(pickdata["PROGRESSION_BY_ROOM"]) 119 PROGRESSIVE_ITEMS.update(pickdata["PROGRESSIVE_ITEMS"])
120 PROGRESSIVE_DOORS_BY_ROOM.update(pickdata["PROGRESSIVE_DOORS_BY_ROOM"])
121 PROGRESSIVE_PANELS_BY_ROOM.update(pickdata["PROGRESSIVE_PANELS_BY_ROOM"])
102 PAINTING_ENTRANCES = pickdata["PAINTING_ENTRANCES"] 122 PAINTING_ENTRANCES = pickdata["PAINTING_ENTRANCES"]
103 PAINTING_EXIT_ROOMS.update(pickdata["PAINTING_EXIT_ROOMS"]) 123 PAINTING_EXIT_ROOMS.update(pickdata["PAINTING_EXIT_ROOMS"])
104 PAINTING_EXITS = pickdata["PAINTING_EXITS"] 124 PAINTING_EXITS = pickdata["PAINTING_EXITS"]
@@ -111,6 +131,8 @@ def load_static_data_from_file():
111 DOOR_LOCATION_IDS.update(pickdata["DOOR_LOCATION_IDS"]) 131 DOOR_LOCATION_IDS.update(pickdata["DOOR_LOCATION_IDS"])
112 DOOR_ITEM_IDS.update(pickdata["DOOR_ITEM_IDS"]) 132 DOOR_ITEM_IDS.update(pickdata["DOOR_ITEM_IDS"])
113 DOOR_GROUP_ITEM_IDS.update(pickdata["DOOR_GROUP_ITEM_IDS"]) 133 DOOR_GROUP_ITEM_IDS.update(pickdata["DOOR_GROUP_ITEM_IDS"])
134 PANEL_DOOR_ITEM_IDS.update(pickdata["PANEL_DOOR_ITEM_IDS"])
135 PANEL_GROUP_ITEM_IDS.update(pickdata["PANEL_GROUP_ITEM_IDS"])
114 PROGRESSIVE_ITEM_IDS.update(pickdata["PROGRESSIVE_ITEM_IDS"]) 136 PROGRESSIVE_ITEM_IDS.update(pickdata["PROGRESSIVE_ITEM_IDS"])
115 137
116 138