summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-05-04 01:40:17 -0500
committerGitHub <noreply@github.com>2024-05-04 08:40:17 +0200
commitfc18d0c9cab015dc242450821bcc70d99d48c669 (patch)
treeae915a448de788b01a3f6b479ca129cc5504c1d5
parent1979067701c475c0607d6f240362d8489242800e (diff)
downloadlingo-apworld-fc18d0c9cab015dc242450821bcc70d99d48c669.tar.gz
lingo-apworld-fc18d0c9cab015dc242450821bcc70d99d48c669.tar.bz2
lingo-apworld-fc18d0c9cab015dc242450821bcc70d99d48c669.zip
Lingo: Started using OptionError (#3251)
-rw-r--r--__init__.py12
-rw-r--r--player_logic.py11
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
4from logging import warning 4from logging import warning
5 5
6from BaseClasses import Item, ItemClassification, Tutorial 6from BaseClasses import Item, ItemClassification, Tutorial
7from Options import OptionError
7from worlds.AutoWorld import WebWorld, World 8from worlds.AutoWorld import WebWorld, World
8from .datatypes import Room, RoomEntrance 9from .datatypes import Room, RoomEntrance
9from .items import ALL_ITEM_TABLE, ITEMS_BY_GROUP, TRAP_ITEMS, LingoItem 10from .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 @@
1from enum import Enum 1from enum import Enum
2from typing import Dict, List, NamedTuple, Optional, Set, Tuple, TYPE_CHECKING 2from typing import Dict, List, NamedTuple, Optional, Set, Tuple, TYPE_CHECKING
3 3
4from Options import OptionError
4from .datatypes import Door, DoorType, RoomAndDoor, RoomAndPanel 5from .datatypes import Door, DoorType, RoomAndDoor, RoomAndPanel
5from .items import ALL_ITEM_TABLE, ItemType 6from .items import ALL_ITEM_TABLE, ItemType
6from .locations import ALL_LOCATION_TABLE, LocationClassification 7from .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)