diff options
Diffstat (limited to 'items.py')
-rw-r--r-- | items.py | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/items.py b/items.py index 7c7928c..67eacea 100644 --- a/items.py +++ b/items.py | |||
@@ -1,8 +1,14 @@ | |||
1 | from typing import Dict, List, NamedTuple, Optional, TYPE_CHECKING | 1 | from enum import Enum |
2 | from typing import Dict, List, NamedTuple, Set | ||
2 | 3 | ||
3 | from BaseClasses import Item, ItemClassification | 4 | from BaseClasses import Item, ItemClassification |
4 | from .static_logic import DOORS_BY_ROOM, PROGRESSION_BY_ROOM, PROGRESSIVE_ITEMS, get_door_group_item_id, \ | 5 | from .static_logic import DOORS_BY_ROOM, PROGRESSIVE_ITEMS, get_door_group_item_id, get_door_item_id, \ |
5 | get_door_item_id, get_progressive_item_id, get_special_item_id | 6 | get_progressive_item_id, get_special_item_id |
7 | |||
8 | |||
9 | class ItemType(Enum): | ||
10 | NORMAL = 1 | ||
11 | COLOR = 2 | ||
6 | 12 | ||
7 | 13 | ||
8 | class ItemData(NamedTuple): | 14 | class ItemData(NamedTuple): |
@@ -11,7 +17,7 @@ class ItemData(NamedTuple): | |||
11 | """ | 17 | """ |
12 | code: int | 18 | code: int |
13 | classification: ItemClassification | 19 | classification: ItemClassification |
14 | mode: Optional[str] | 20 | type: ItemType |
15 | has_doors: bool | 21 | has_doors: bool |
16 | painting_ids: List[str] | 22 | painting_ids: List[str] |
17 | 23 | ||
@@ -34,36 +40,29 @@ def load_item_data(): | |||
34 | 40 | ||
35 | for color in ["Black", "Red", "Blue", "Yellow", "Green", "Orange", "Gray", "Brown", "Purple"]: | 41 | for color in ["Black", "Red", "Blue", "Yellow", "Green", "Orange", "Gray", "Brown", "Purple"]: |
36 | ALL_ITEM_TABLE[color] = ItemData(get_special_item_id(color), ItemClassification.progression, | 42 | ALL_ITEM_TABLE[color] = ItemData(get_special_item_id(color), ItemClassification.progression, |
37 | "colors", [], []) | 43 | ItemType.COLOR, False, []) |
38 | ITEMS_BY_GROUP.setdefault("Colors", []).append(color) | 44 | ITEMS_BY_GROUP.setdefault("Colors", []).append(color) |
39 | 45 | ||
40 | door_groups: Dict[str, List[str]] = {} | 46 | door_groups: Set[str] = set() |
41 | for room_name, doors in DOORS_BY_ROOM.items(): | 47 | for room_name, doors in DOORS_BY_ROOM.items(): |
42 | for door_name, door in doors.items(): | 48 | for door_name, door in doors.items(): |
43 | if door.skip_item is True or door.event is True: | 49 | if door.skip_item is True or door.event is True: |
44 | continue | 50 | continue |
45 | 51 | ||
46 | if door.door_group is None: | 52 | if door.door_group is not None: |
47 | door_mode = "doors" | 53 | door_groups.add(door.door_group) |
48 | else: | ||
49 | door_mode = "complex door" | ||
50 | door_groups.setdefault(door.door_group, []) | ||
51 | |||
52 | if room_name in PROGRESSION_BY_ROOM and door_name in PROGRESSION_BY_ROOM[room_name]: | ||
53 | door_mode = "special" | ||
54 | 54 | ||
55 | ALL_ITEM_TABLE[door.item_name] = \ | 55 | ALL_ITEM_TABLE[door.item_name] = \ |
56 | ItemData(get_door_item_id(room_name, door_name), | 56 | ItemData(get_door_item_id(room_name, door_name), ItemClassification.progression, ItemType.NORMAL, |
57 | ItemClassification.filler if door.junk_item else ItemClassification.progression, door_mode, | ||
58 | door.has_doors, door.painting_ids) | 57 | door.has_doors, door.painting_ids) |
59 | ITEMS_BY_GROUP.setdefault("Doors", []).append(door.item_name) | 58 | ITEMS_BY_GROUP.setdefault("Doors", []).append(door.item_name) |
60 | 59 | ||
61 | if door.item_group is not None: | 60 | if door.item_group is not None: |
62 | ITEMS_BY_GROUP.setdefault(door.item_group, []).append(door.item_name) | 61 | ITEMS_BY_GROUP.setdefault(door.item_group, []).append(door.item_name) |
63 | 62 | ||
64 | for group, group_door_ids in door_groups.items(): | 63 | for group in door_groups: |
65 | ALL_ITEM_TABLE[group] = ItemData(get_door_group_item_id(group), | 64 | ALL_ITEM_TABLE[group] = ItemData(get_door_group_item_id(group), |
66 | ItemClassification.progression, "door group", True, []) | 65 | ItemClassification.progression, ItemType.NORMAL, True, []) |
67 | ITEMS_BY_GROUP.setdefault("Doors", []).append(group) | 66 | ITEMS_BY_GROUP.setdefault("Doors", []).append(group) |
68 | 67 | ||
69 | special_items: Dict[str, ItemClassification] = { | 68 | special_items: Dict[str, ItemClassification] = { |
@@ -77,7 +76,7 @@ def load_item_data(): | |||
77 | 76 | ||
78 | for item_name, classification in special_items.items(): | 77 | for item_name, classification in special_items.items(): |
79 | ALL_ITEM_TABLE[item_name] = ItemData(get_special_item_id(item_name), classification, | 78 | ALL_ITEM_TABLE[item_name] = ItemData(get_special_item_id(item_name), classification, |
80 | "special", False, []) | 79 | ItemType.NORMAL, False, []) |
81 | 80 | ||
82 | if classification == ItemClassification.filler: | 81 | if classification == ItemClassification.filler: |
83 | ITEMS_BY_GROUP.setdefault("Junk", []).append(item_name) | 82 | ITEMS_BY_GROUP.setdefault("Junk", []).append(item_name) |
@@ -86,7 +85,7 @@ def load_item_data(): | |||
86 | 85 | ||
87 | for item_name in PROGRESSIVE_ITEMS: | 86 | for item_name in PROGRESSIVE_ITEMS: |
88 | ALL_ITEM_TABLE[item_name] = ItemData(get_progressive_item_id(item_name), | 87 | ALL_ITEM_TABLE[item_name] = ItemData(get_progressive_item_id(item_name), |
89 | ItemClassification.progression, "special", False, []) | 88 | ItemClassification.progression, ItemType.NORMAL, False, []) |
90 | 89 | ||
91 | 90 | ||
92 | # Initialize the item data at module scope. | 91 | # Initialize the item data at module scope. |