diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-05-04 01:40:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 08:40:17 +0200 |
commit | fc18d0c9cab015dc242450821bcc70d99d48c669 (patch) | |
tree | ae915a448de788b01a3f6b479ca129cc5504c1d5 | |
parent | 1979067701c475c0607d6f240362d8489242800e (diff) | |
download | lingo-apworld-fc18d0c9cab015dc242450821bcc70d99d48c669.tar.gz lingo-apworld-fc18d0c9cab015dc242450821bcc70d99d48c669.tar.bz2 lingo-apworld-fc18d0c9cab015dc242450821bcc70d99d48c669.zip |
Lingo: Started using OptionError (#3251)
-rw-r--r-- | __init__.py | 12 | ||||
-rw-r--r-- | player_logic.py | 11 |
2 files changed, 13 insertions, 10 deletions
diff --git a/__init__.py b/__init__.py index 537b149..113c392 100644 --- a/__init__.py +++ b/__init__.py | |||
@@ -4,6 +4,7 @@ Archipelago init file for Lingo | |||
4 | from logging import warning | 4 | from logging import warning |
5 | 5 | ||
6 | from BaseClasses import Item, ItemClassification, Tutorial | 6 | from BaseClasses import Item, ItemClassification, Tutorial |
7 | from Options import OptionError | ||
7 | from worlds.AutoWorld import WebWorld, World | 8 | from worlds.AutoWorld import WebWorld, World |
8 | from .datatypes import Room, RoomEntrance | 9 | from .datatypes import Room, RoomEntrance |
9 | from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, TRAP_ITEMS, LingoItem | 10 | from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, TRAP_ITEMS, LingoItem |
@@ -52,13 +53,14 @@ class LingoWorld(World): | |||
52 | player_logic: LingoPlayerLogic | 53 | player_logic: LingoPlayerLogic |
53 | 54 | ||
54 | def generate_early(self): | 55 | def generate_early(self): |
55 | if not (self.options.shuffle_doors or self.options.shuffle_colors): | 56 | if not (self.options.shuffle_doors or self.options.shuffle_colors or self.options.shuffle_sunwarps): |
56 | if self.multiworld.players == 1: | 57 | if self.multiworld.players == 1: |
57 | warning(f"{self.multiworld.get_player_name(self.player)}'s Lingo world doesn't have any progression" | 58 | warning(f"{self.multiworld.get_player_name(self.player)}'s Lingo world doesn't have any progression" |
58 | f" items. Please turn on Door Shuffle or Color Shuffle if that doesn't seem right.") | 59 | f" items. Please turn on Door Shuffle, Color Shuffle, or Sunwarp Shuffle if that doesn't seem" |
60 | f" right.") | ||
59 | else: | 61 | else: |
60 | raise Exception(f"{self.multiworld.get_player_name(self.player)}'s Lingo world doesn't have any" | 62 | raise OptionError(f"{self.multiworld.get_player_name(self.player)}'s Lingo world doesn't have any" |
61 | f" progression items. Please turn on Door Shuffle or Color Shuffle.") | 63 | f" progression items. Please turn on Door Shuffle, Color Shuffle or Sunwarp Shuffle.") |
62 | 64 | ||
63 | self.player_logic = LingoPlayerLogic(self) | 65 | self.player_logic = LingoPlayerLogic(self) |
64 | 66 | ||
@@ -94,7 +96,7 @@ class LingoWorld(World): | |||
94 | total_weight = sum(self.options.trap_weights.values()) | 96 | total_weight = sum(self.options.trap_weights.values()) |
95 | 97 | ||
96 | if total_weight == 0: | 98 | if total_weight == 0: |
97 | raise Exception("Sum of trap weights must be at least one.") | 99 | raise OptionError("Sum of trap weights must be at least one.") |
98 | 100 | ||
99 | trap_counts = {name: int(weight * traps / total_weight) | 101 | trap_counts = {name: int(weight * traps / total_weight) |
100 | for name, weight in self.options.trap_weights.items()} | 102 | for name, weight in self.options.trap_weights.items()} |
diff --git a/player_logic.py b/player_logic.py index 7019269..19583bc 100644 --- a/player_logic.py +++ b/player_logic.py | |||
@@ -1,6 +1,7 @@ | |||
1 | from enum import Enum | 1 | from enum import Enum |
2 | from typing import Dict, List, NamedTuple, Optional, Set, Tuple, TYPE_CHECKING | 2 | from typing import Dict, List, NamedTuple, Optional, Set, Tuple, TYPE_CHECKING |
3 | 3 | ||
4 | from Options import OptionError | ||
4 | from .datatypes import Door, DoorType, RoomAndDoor, RoomAndPanel | 5 | from .datatypes import Door, DoorType, RoomAndDoor, RoomAndPanel |
5 | from .items import ALL_ITEM_TABLE, ItemType | 6 | from .items import ALL_ITEM_TABLE, ItemType |
6 | from .locations import ALL_LOCATION_TABLE, LocationClassification | 7 | from .locations import ALL_LOCATION_TABLE, LocationClassification |
@@ -149,8 +150,8 @@ class LingoPlayerLogic: | |||
149 | early_color_hallways = world.options.early_color_hallways | 150 | early_color_hallways = world.options.early_color_hallways |
150 | 151 | ||
151 | if location_checks == LocationChecks.option_reduced and door_shuffle != ShuffleDoors.option_none: | 152 | if location_checks == LocationChecks.option_reduced and door_shuffle != ShuffleDoors.option_none: |
152 | raise Exception("You cannot have reduced location checks when door shuffle is on, because there would not " | 153 | raise OptionError("You cannot have reduced location checks when door shuffle is on, because there would not" |
153 | "be enough locations for all of the door items.") | 154 | " be enough locations for all of the door items.") |
154 | 155 | ||
155 | # Create door items, where needed. | 156 | # Create door items, where needed. |
156 | door_groups: Set[str] = set() | 157 | door_groups: Set[str] = set() |
@@ -219,7 +220,7 @@ class LingoPlayerLogic: | |||
219 | self.event_loc_to_item[self.level_2_location] = "Victory" | 220 | self.event_loc_to_item[self.level_2_location] = "Victory" |
220 | 221 | ||
221 | if world.options.level_2_requirement == 1: | 222 | if world.options.level_2_requirement == 1: |
222 | raise Exception("The Level 2 requirement must be at least 2 when LEVEL 2 is the victory condition.") | 223 | raise OptionError("The Level 2 requirement must be at least 2 when LEVEL 2 is the victory condition.") |
223 | elif victory_condition == VictoryCondition.option_pilgrimage: | 224 | elif victory_condition == VictoryCondition.option_pilgrimage: |
224 | self.victory_condition = "Pilgrim Antechamber - PILGRIM" | 225 | self.victory_condition = "Pilgrim Antechamber - PILGRIM" |
225 | self.add_location("Pilgrim Antechamber", "PILGRIM (Solved)", None, | 226 | self.add_location("Pilgrim Antechamber", "PILGRIM (Solved)", None, |
@@ -248,11 +249,11 @@ class LingoPlayerLogic: | |||
248 | self.real_locations.append(location_name) | 249 | self.real_locations.append(location_name) |
249 | 250 | ||
250 | if world.options.enable_pilgrimage and world.options.sunwarp_access == SunwarpAccess.option_disabled: | 251 | if world.options.enable_pilgrimage and world.options.sunwarp_access == SunwarpAccess.option_disabled: |
251 | raise Exception("Sunwarps cannot be disabled when pilgrimage is enabled.") | 252 | raise OptionError("Sunwarps cannot be disabled when pilgrimage is enabled.") |
252 | 253 | ||
253 | if world.options.shuffle_sunwarps: | 254 | if world.options.shuffle_sunwarps: |
254 | if world.options.sunwarp_access == SunwarpAccess.option_disabled: | 255 | if world.options.sunwarp_access == SunwarpAccess.option_disabled: |
255 | raise Exception("Sunwarps cannot be shuffled if they are disabled.") | 256 | raise OptionError("Sunwarps cannot be shuffled if they are disabled.") |
256 | 257 | ||
257 | self.sunwarp_mapping = list(range(0, 12)) | 258 | self.sunwarp_mapping = list(range(0, 12)) |
258 | world.random.shuffle(self.sunwarp_mapping) | 259 | world.random.shuffle(self.sunwarp_mapping) |