summary refs log tree commit diff stats
path: root/static_logic.py
diff options
context:
space:
mode:
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