summary refs log tree commit diff stats
path: root/datatypes.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 /datatypes.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 'datatypes.py')
-rw-r--r--datatypes.py19
1 files changed, 17 insertions, 2 deletions
diff --git a/datatypes.py b/datatypes.py index e9bf0a3..e466558 100644 --- a/datatypes.py +++ b/datatypes.py
@@ -1,3 +1,4 @@
1from enum import Enum, Flag, auto
1from typing import List, NamedTuple, Optional 2from typing import List, NamedTuple, Optional
2 3
3 4
@@ -11,10 +12,18 @@ class RoomAndPanel(NamedTuple):
11 panel: str 12 panel: str
12 13
13 14
15class EntranceType(Flag):
16 NORMAL = auto()
17 PAINTING = auto()
18 SUNWARP = auto()
19 WARP = auto()
20 CROSSROADS_ROOF_ACCESS = auto()
21
22
14class RoomEntrance(NamedTuple): 23class RoomEntrance(NamedTuple):
15 room: str # source room 24 room: str # source room
16 door: Optional[RoomAndDoor] 25 door: Optional[RoomAndDoor]
17 painting: bool 26 type: EntranceType
18 27
19 28
20class Room(NamedTuple): 29class Room(NamedTuple):
@@ -22,6 +31,12 @@ class Room(NamedTuple):
22 entrances: List[RoomEntrance] 31 entrances: List[RoomEntrance]
23 32
24 33
34class DoorType(Enum):
35 NORMAL = 1
36 SUNWARP = 2
37 SUN_PAINTING = 3
38
39
25class Door(NamedTuple): 40class Door(NamedTuple):
26 name: str 41 name: str
27 item_name: str 42 item_name: str
@@ -34,7 +49,7 @@ class Door(NamedTuple):
34 event: bool 49 event: bool
35 door_group: Optional[str] 50 door_group: Optional[str]
36 include_reduce: bool 51 include_reduce: bool
37 junk_item: bool 52 type: DoorType
38 item_group: Optional[str] 53 item_group: Optional[str]
39 54
40 55