summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorNatalie Weizenbaum <nweiz@google.com>2024-06-14 15:53:42 -0700
committerGitHub <noreply@github.com>2024-06-14 18:53:42 -0400
commit173c17da5a795b14ea40f87d178a2f45cf603aa0 (patch)
tree54882089e8ef4f5610e13d5e23fb0754a64df692
parentbf5b45c826bf995e830c6858c65e01d5f66d9ef2 (diff)
downloadlingo-apworld-173c17da5a795b14ea40f87d178a2f45cf603aa0.tar.gz
lingo-apworld-173c17da5a795b14ea40f87d178a2f45cf603aa0.tar.bz2
lingo-apworld-173c17da5a795b14ea40f87d178a2f45cf603aa0.zip
WebHost/Core/Lingo: Render option documentation as reStructuredText in the WebView (#3511)
* Render option documentation as reStructuredText in the WebView

This means that options can use the standard Python documentation
format, while producing much nicer-looking documentation in the
WebView with things like emphasis, lists, and so on.

* Opt existing worlds out of rich option docs

This avoids breaking the rendering of existing option docs which were
written with the old plain text rendering in mind, while also allowing
new options to default to the rich text rendering instead.

* Use reStructuredText formatting for Lingo Options docstrings

* Disable raw and file insertion RST directives

* Update doc comments per code review

* Make rich text docs opt-in

* Put rich_text_options_doc on WebWorld

* Document rich text API

* Code review

* Update docs/options api.md

Co-authored-by: Doug Hoskisson <beauxq@users.noreply.github.com>

* Update Options.py

Co-authored-by: Doug Hoskisson <beauxq@users.noreply.github.com>

---------

Co-authored-by: Chris Wilson <chris@legendserver.info>
Co-authored-by: Doug Hoskisson <beauxq@users.noreply.github.com>
-rw-r--r--__init__.py1
-rw-r--r--options.py120
2 files changed, 82 insertions, 39 deletions
diff --git a/__init__.py b/__init__.py index 302e7e1..8d6a7fc 100644 --- a/__init__.py +++ b/__init__.py
@@ -16,6 +16,7 @@ from .regions import create_regions
16 16
17class LingoWebWorld(WebWorld): 17class LingoWebWorld(WebWorld):
18 option_groups = lingo_option_groups 18 option_groups = lingo_option_groups
19 rich_text_options_doc = True
19 theme = "grass" 20 theme = "grass"
20 tutorials = [Tutorial( 21 tutorials = [Tutorial(
21 "Multiworld Setup Guide", 22 "Multiworld Setup Guide",
diff --git a/options.py b/options.py index 1c1f645..333b3e1 100644 --- a/options.py +++ b/options.py
@@ -9,8 +9,12 @@ from .items import TRAP_ITEMS
9 9
10class ShuffleDoors(Choice): 10class ShuffleDoors(Choice):
11 """If on, opening doors will require their respective "keys". 11 """If on, opening doors will require their respective "keys".
12 In "simple", doors are sorted into logical groups, which are all opened by receiving an item. 12
13 In "complex", the items are much more granular, and will usually only open a single door each.""" 13 - **Simple:** Doors are sorted into logical groups, which are all opened by
14 receiving an item.
15 - **Complex:** The items are much more granular, and will usually only open
16 a single door each.
17 """
14 display_name = "Shuffle Doors" 18 display_name = "Shuffle Doors"
15 option_none = 0 19 option_none = 0
16 option_simple = 1 20 option_simple = 1
@@ -19,24 +23,37 @@ class ShuffleDoors(Choice):
19 23
20class ProgressiveOrangeTower(DefaultOnToggle): 24class ProgressiveOrangeTower(DefaultOnToggle):
21 """When "Shuffle Doors" is on, this setting governs the manner in which the Orange Tower floors open up. 25 """When "Shuffle Doors" is on, this setting governs the manner in which the Orange Tower floors open up.
22 If off, there is an item for each floor of the tower, and each floor's item is the only one needed to access that floor. 26
23 If on, there are six progressive items, which open up the tower from the bottom floor upward. 27 - **Off:** There is an item for each floor of the tower, and each floor's
28 item is the only one needed to access that floor.
29 - **On:** There are six progressive items, which open up the tower from the
30 bottom floor upward.
24 """ 31 """
25 display_name = "Progressive Orange Tower" 32 display_name = "Progressive Orange Tower"
26 33
27 34
28class ProgressiveColorful(DefaultOnToggle): 35class ProgressiveColorful(DefaultOnToggle):
29 """When "Shuffle Doors" is on "complex", this setting governs the manner in which The Colorful opens up. 36 """When "Shuffle Doors" is on "complex", this setting governs the manner in which The Colorful opens up.
30 If off, there is an item for each room of The Colorful, meaning that random rooms in the middle of the sequence can open up without giving you access to them. 37
31 If on, there are ten progressive items, which open up the sequence from White forward.""" 38 - **Off:** There is an item for each room of The Colorful, meaning that
39 random rooms in the middle of the sequence can open up without giving you
40 access to them.
41 - **On:** There are ten progressive items, which open up the sequence from
42 White forward.
43 """
32 display_name = "Progressive Colorful" 44 display_name = "Progressive Colorful"
33 45
34 46
35class LocationChecks(Choice): 47class LocationChecks(Choice):
36 """Determines what locations are available. 48 """Determines what locations are available.
37 On "normal", there will be a location check for each panel set that would ordinarily open a door, as well as for achievement panels and a small handful of other panels. 49
38 On "reduced", many of the locations that are associated with opening doors are removed. 50 - **Normal:** There will be a location check for each panel set that would
39 On "insanity", every individual panel in the game is a location check.""" 51 ordinarily open a door, as well as for achievement panels and a small
52 handful of other panels.
53 - **Reduced:** Many of the locations that are associated with opening doors
54 are removed.
55 - **Insanity:** Every individual panel in the game is a location check.
56 """
40 display_name = "Location Checks" 57 display_name = "Location Checks"
41 option_normal = 0 58 option_normal = 0
42 option_reduced = 1 59 option_reduced = 1
@@ -44,16 +61,20 @@ class LocationChecks(Choice):
44 61
45 62
46class ShuffleColors(DefaultOnToggle): 63class ShuffleColors(DefaultOnToggle):
47 """ 64 """If on, an item is added to the pool for every puzzle color (besides White).
48 If on, an item is added to the pool for every puzzle color (besides White). 65
49 You will need to unlock the requisite colors in order to be able to solve puzzles of that color. 66 You will need to unlock the requisite colors in order to be able to solve
67 puzzles of that color.
50 """ 68 """
51 display_name = "Shuffle Colors" 69 display_name = "Shuffle Colors"
52 70
53 71
54class ShufflePanels(Choice): 72class ShufflePanels(Choice):
55 """If on, the puzzles on each panel are randomized. 73 """If on, the puzzles on each panel are randomized.
56 On "rearrange", the puzzles are the same as the ones in the base game, but are placed in different areas.""" 74
75 On "rearrange", the puzzles are the same as the ones in the base game, but
76 are placed in different areas.
77 """
57 display_name = "Shuffle Panels" 78 display_name = "Shuffle Panels"
58 option_none = 0 79 option_none = 0
59 option_rearrange = 1 80 option_rearrange = 1
@@ -66,22 +87,26 @@ class ShufflePaintings(Toggle):
66 87
67class EnablePilgrimage(Toggle): 88class EnablePilgrimage(Toggle):
68 """Determines how the pilgrimage works. 89 """Determines how the pilgrimage works.
69 If on, you are required to complete a pilgrimage in order to access the Pilgrim Antechamber. 90
70 If off, the pilgrimage will be deactivated, and the sun painting will be added to the pool, even if door shuffle is off.""" 91 - **On:** You are required to complete a pilgrimage in order to access the
92 Pilgrim Antechamber.
93 - **Off:** The pilgrimage will be deactivated, and the sun painting will be
94 added to the pool, even if door shuffle is off.
95 """
71 display_name = "Enable Pilgrimage" 96 display_name = "Enable Pilgrimage"
72 97
73 98
74class PilgrimageAllowsRoofAccess(DefaultOnToggle): 99class PilgrimageAllowsRoofAccess(DefaultOnToggle):
75 """ 100 """If on, you may use the Crossroads roof access during a pilgrimage (and you may be expected to do so).
76 If on, you may use the Crossroads roof access during a pilgrimage (and you may be expected to do so). 101
77 Otherwise, pilgrimage will be deactivated when going up the stairs. 102 Otherwise, pilgrimage will be deactivated when going up the stairs.
78 """ 103 """
79 display_name = "Allow Roof Access for Pilgrimage" 104 display_name = "Allow Roof Access for Pilgrimage"
80 105
81 106
82class PilgrimageAllowsPaintings(DefaultOnToggle): 107class PilgrimageAllowsPaintings(DefaultOnToggle):
83 """ 108 """If on, you may use paintings during a pilgrimage (and you may be expected to do so).
84 If on, you may use paintings during a pilgrimage (and you may be expected to do so). 109
85 Otherwise, pilgrimage will be deactivated when going through a painting. 110 Otherwise, pilgrimage will be deactivated when going through a painting.
86 """ 111 """
87 display_name = "Allow Paintings for Pilgrimage" 112 display_name = "Allow Paintings for Pilgrimage"
@@ -89,11 +114,17 @@ class PilgrimageAllowsPaintings(DefaultOnToggle):
89 114
90class SunwarpAccess(Choice): 115class SunwarpAccess(Choice):
91 """Determines how access to sunwarps works. 116 """Determines how access to sunwarps works.
92 On "normal", all sunwarps are enabled from the start. 117
93 On "disabled", all sunwarps are disabled. Pilgrimage must be disabled when this is used. 118 - **Normal:** All sunwarps are enabled from the start.
94 On "unlock", sunwarps start off disabled, and all six activate once you receive an item. 119 - **Disabled:** All sunwarps are disabled. Pilgrimage must be disabled when
95 On "individual", sunwarps start off disabled, and each has a corresponding item that unlocks it. 120 this is used.
96 On "progressive", sunwarps start off disabled, and they unlock in order using a progressive item.""" 121 - **Unlock:** Sunwarps start off disabled, and all six activate once you
122 receive an item.
123 - **Individual:** Sunwarps start off disabled, and each has a corresponding
124 item that unlocks it.
125 - **Progressive:** Sunwarps start off disabled, and they unlock in order
126 using a progressive item.
127 """
97 display_name = "Sunwarp Access" 128 display_name = "Sunwarp Access"
98 option_normal = 0 129 option_normal = 0
99 option_disabled = 1 130 option_disabled = 1
@@ -109,10 +140,16 @@ class ShuffleSunwarps(Toggle):
109 140
110class VictoryCondition(Choice): 141class VictoryCondition(Choice):
111 """Change the victory condition. 142 """Change the victory condition.
112 On "the_end", the goal is to solve THE END at the top of the tower. 143
113 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. 144 - **The End:** the goal is to solve THE END at the top of the tower.
114 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. 145 - **The Master:** The goal is to solve THE MASTER at the top of the tower,
115 On "pilgrimage", the goal is to solve PILGRIM in the Pilgrim Antechamber, typically after performing a Pilgrimage.""" 146 after getting the number of achievements specified in the Mastery
147 Achievements option.
148 - **Level 2:** The goal is to solve LEVEL 2 in the second room, after
149 solving the number of panels specified in the Level 2 Requirement option.
150 - **Pilgrimage:** The goal is to solve PILGRIM in the Pilgrim Antechamber,
151 typically after performing a Pilgrimage.
152 """
116 display_name = "Victory Condition" 153 display_name = "Victory Condition"
117 option_the_end = 0 154 option_the_end = 0
118 option_the_master = 1 155 option_the_master = 1
@@ -122,9 +159,12 @@ class VictoryCondition(Choice):
122 159
123class MasteryAchievements(Range): 160class MasteryAchievements(Range):
124 """The number of achievements required to unlock THE MASTER. 161 """The number of achievements required to unlock THE MASTER.
125 In the base game, 21 achievements are needed. 162
126 If you include The Scientific and The Unchallenged, which are in the base game but are not counted for mastery, 23 would be required. 163 - In the base game, 21 achievements are needed.
127 If you include the custom achievement (The Wanderer), 24 would be required. 164 - If you include The Scientific and The Unchallenged, which are in the base
165 game but are not counted for mastery, 23 would be required.
166 - If you include the custom achievement (The Wanderer), 24 would be
167 required.
128 """ 168 """
129 display_name = "Mastery Achievements" 169 display_name = "Mastery Achievements"
130 range_start = 1 170 range_start = 1
@@ -134,9 +174,10 @@ class MasteryAchievements(Range):
134 174
135class Level2Requirement(Range): 175class Level2Requirement(Range):
136 """The number of panel solves required to unlock LEVEL 2. 176 """The number of panel solves required to unlock LEVEL 2.
137 In the base game, 223 are needed. 177
138 Note that this count includes ANOTHER TRY. 178 In the base game, 223 are needed. Note that this count includes ANOTHER TRY.
139 When set to 1, the panel hunt is disabled, and you can access LEVEL 2 for free. 179 When set to 1, the panel hunt is disabled, and you can access LEVEL 2 for
180 free.
140 """ 181 """
141 display_name = "Level 2 Requirement" 182 display_name = "Level 2 Requirement"
142 range_start = 1 183 range_start = 1
@@ -145,9 +186,10 @@ class Level2Requirement(Range):
145 186
146 187
147class EarlyColorHallways(Toggle): 188class EarlyColorHallways(Toggle):
148 """ 189 """When on, a painting warp to the color hallways area will appear in the starting room.
149 When on, a painting warp to the color hallways area will appear in the starting room. 190
150 This lets you avoid being trapped in the starting room for long periods of time when door shuffle is on. 191 This lets you avoid being trapped in the starting room for long periods of
192 time when door shuffle is on.
151 """ 193 """
152 display_name = "Early Color Hallways" 194 display_name = "Early Color Hallways"
153 195
@@ -161,8 +203,8 @@ class TrapPercentage(Range):
161 203
162 204
163class TrapWeights(OptionDict): 205class TrapWeights(OptionDict):
164 """ 206 """Specify the distribution of traps that should be placed into the pool.
165 Specify the distribution of traps that should be placed into the pool. 207
166 If you don't want a specific type of trap, set the weight to zero. 208 If you don't want a specific type of trap, set the weight to zero.
167 """ 209 """
168 display_name = "Trap Weights" 210 display_name = "Trap Weights"