summary refs log tree commit diff stats
path: root/options.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-25 07:09:08 -0500
committerGitHub <noreply@github.com>2023-11-25 13:09:08 +0100
commite5d14e2e19772bb58905770f663c974592e43f32 (patch)
treedce303516f8e856b93abe6d061de6e2f4774a116 /options.py
parent9e57d690a3e8d337a6bbe45bec5a9449db64fd92 (diff)
downloadlingo-apworld-e5d14e2e19772bb58905770f663c974592e43f32.tar.gz
lingo-apworld-e5d14e2e19772bb58905770f663c974592e43f32.tar.bz2
lingo-apworld-e5d14e2e19772bb58905770f663c974592e43f32.zip
Lingo: Various generation optimizations (#2479)
Almost all of the events have been eradicated, which significantly improves both generation speed and playthrough calculation.

Previously, checking for access to a location involved checking for access to each panel in the location, as well as recursively checking for access to any panels required by those panels. This potentially performed the same check multiple times. The access requirements for locations are now calculated and flattened in generate_early, so that the access function can directly check for the required rooms, doors, and colors.

These flattened access requirements are also used for Entrance checking, and register_indirect_condition is used to make sure that can_reach(Region) is safe to use.

The Mastery and Level 2 rules now just run a bunch of access rules and count the number of them that succeed, instead of relying on event items.

Finally: the Level 2 panel hunt is now enabled even when Level 2 is not the victory condition, as I feel that generation is fast enough now for that to be acceptable.
Diffstat (limited to 'options.py')
-rw-r--r--options.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/options.py b/options.py index 7dc6a13..fc9ddee 100644 --- a/options.py +++ b/options.py
@@ -52,7 +52,10 @@ class ShufflePaintings(Toggle):
52 52
53 53
54class VictoryCondition(Choice): 54class VictoryCondition(Choice):
55 """Change the victory condition.""" 55 """Change the victory condition.
56 On "the_end", the goal is to solve THE END at the top of the tower.
57 On "the_master", the goal is to solve THE MASTER at the top of the tower, after getting the number of achievements specified in the Mastery Achievements option.
58 On "level_2", the goal is to solve LEVEL 2 in the second room, after solving the number of panels specified in the Level 2 Requirement option."""
56 display_name = "Victory Condition" 59 display_name = "Victory Condition"
57 option_the_end = 0 60 option_the_end = 0
58 option_the_master = 1 61 option_the_master = 1
@@ -75,9 +78,10 @@ class Level2Requirement(Range):
75 """The number of panel solves required to unlock LEVEL 2. 78 """The number of panel solves required to unlock LEVEL 2.
76 In the base game, 223 are needed. 79 In the base game, 223 are needed.
77 Note that this count includes ANOTHER TRY. 80 Note that this count includes ANOTHER TRY.
81 When set to 1, the panel hunt is disabled, and you can access LEVEL 2 for free.
78 """ 82 """
79 display_name = "Level 2 Requirement" 83 display_name = "Level 2 Requirement"
80 range_start = 2 84 range_start = 1
81 range_end = 800 85 range_end = 800
82 default = 223 86 default = 223
83 87