diff options
Diffstat (limited to 'static_logic.py')
-rw-r--r-- | static_logic.py | 32 |
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 | |||
4 | from io import BytesIO | 4 | from io import BytesIO |
5 | from typing import Dict, List, Set | 5 | from typing import Dict, List, Set |
6 | 6 | ||
7 | from .datatypes import Door, Painting, Panel, Progression, Room | 7 | from .datatypes import Door, Painting, Panel, PanelDoor, Progression, Room |
8 | 8 | ||
9 | ALL_ROOMS: List[Room] = [] | 9 | ALL_ROOMS: List[Room] = [] |
10 | DOORS_BY_ROOM: Dict[str, Dict[str, Door]] = {} | 10 | DOORS_BY_ROOM: Dict[str, Dict[str, Door]] = {} |
11 | PANELS_BY_ROOM: Dict[str, Dict[str, Panel]] = {} | 11 | PANELS_BY_ROOM: Dict[str, Dict[str, Panel]] = {} |
12 | PANEL_DOORS_BY_ROOM: Dict[str, Dict[str, PanelDoor]] = {} | ||
12 | PAINTINGS: Dict[str, Painting] = {} | 13 | PAINTINGS: Dict[str, Painting] = {} |
13 | 14 | ||
14 | PROGRESSIVE_ITEMS: List[str] = [] | 15 | PROGRESSIVE_ITEMS: Set[str] = set() |
15 | PROGRESSION_BY_ROOM: Dict[str, Dict[str, Progression]] = {} | 16 | PROGRESSIVE_DOORS_BY_ROOM: Dict[str, Dict[str, Progression]] = {} |
17 | PROGRESSIVE_PANELS_BY_ROOM: Dict[str, Dict[str, Progression]] = {} | ||
16 | 18 | ||
17 | PAINTING_ENTRANCES: int = 0 | 19 | PAINTING_ENTRANCES: int = 0 |
18 | PAINTING_EXIT_ROOMS: Set[str] = set() | 20 | PAINTING_EXIT_ROOMS: Set[str] = set() |
@@ -28,6 +30,8 @@ PANEL_LOCATION_IDS: Dict[str, Dict[str, int]] = {} | |||
28 | DOOR_LOCATION_IDS: Dict[str, Dict[str, int]] = {} | 30 | DOOR_LOCATION_IDS: Dict[str, Dict[str, int]] = {} |
29 | DOOR_ITEM_IDS: Dict[str, Dict[str, int]] = {} | 31 | DOOR_ITEM_IDS: Dict[str, Dict[str, int]] = {} |
30 | DOOR_GROUP_ITEM_IDS: Dict[str, int] = {} | 32 | DOOR_GROUP_ITEM_IDS: Dict[str, int] = {} |
33 | PANEL_DOOR_ITEM_IDS: Dict[str, Dict[str, int]] = {} | ||
34 | PANEL_GROUP_ITEM_IDS: Dict[str, int] = {} | ||
31 | PROGRESSIVE_ITEM_IDS: Dict[str, int] = {} | 35 | PROGRESSIVE_ITEM_IDS: Dict[str, int] = {} |
32 | 36 | ||
33 | HASHES: Dict[str, str] = {} | 37 | HASHES: 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 | ||
75 | def 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 | |||
82 | def 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 | |||
71 | def get_progressive_item_id(name: str): | 89 | def 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 | ||