2022-05-18 21:27:38 +00:00
|
|
|
from typing import List, Set, Dict, Tuple, Optional, Callable
|
|
|
|
from BaseClasses import MultiWorld, Region, Entrance, Location, RegionType
|
|
|
|
from .Locations import LocationData
|
|
|
|
|
|
|
|
|
|
|
|
def create_regions(world: MultiWorld, player: int, locations: Tuple[LocationData, ...], location_cache: List[Location]):
|
|
|
|
locations_per_region = get_locations_per_region(locations)
|
|
|
|
|
|
|
|
regions = [
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Menu"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Liberation Day"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "The Outlaws"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Zero Hour"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Evacuation"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Outbreak"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Safe Haven"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Haven's Fall"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Smash and Grab"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "The Dig"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "The Moebius Factor"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Supernova"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Maw of the Void"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Devil's Playground"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Welcome to the Jungle"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Breakout"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Ghost of a Chance"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "The Great Train Robbery"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Cutthroat"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Engine of Destruction"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Media Blitz"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Piercing the Shroud"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Whispers of Doom"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "A Sinister Turn"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Echoes of the Future"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "In Utter Darkness"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Gates of Hell"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Belly of the Beast"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "Shatter the Sky"),
|
|
|
|
create_region(world, player, locations_per_region, location_cache, "All-In")
|
|
|
|
]
|
|
|
|
|
|
|
|
if __debug__:
|
|
|
|
throwIfAnyLocationIsNotAssignedToARegion(regions, locations_per_region.keys())
|
|
|
|
|
|
|
|
world.regions += regions
|
|
|
|
|
|
|
|
names: Dict[str, int] = {}
|
|
|
|
|
|
|
|
connect(world, player, names, 'Menu', 'Liberation Day'),
|
|
|
|
connect(world, player, names, 'Liberation Day', 'The Outlaws',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state.has("Beat Liberation Day", player)),
|
|
|
|
connect(world, player, names, 'The Outlaws', 'Zero Hour',
|
|
|
|
lambda state: state.has("Beat The Outlaws", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'Zero Hour', 'Evacuation',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state.has("Beat Zero Hour", player)),
|
|
|
|
connect(world, player, names, 'Evacuation', 'Outbreak',
|
|
|
|
lambda state: state.has("Beat Evacuation", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, "Outbreak", "Safe Haven",
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 7) and
|
|
|
|
state.has("Beat Outbreak", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, "Outbreak", "Haven's Fall",
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 7) and
|
|
|
|
state.has("Beat Outbreak", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'Zero Hour', 'Smash and Grab',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state.has("Beat Zero Hour", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'Smash and Grab', 'The Dig',
|
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 8) and
|
2022-05-21 00:47:16 +00:00
|
|
|
state.has("Beat Smash and Grab", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'The Dig', 'The Moebius Factor',
|
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 11) and
|
2022-05-21 00:47:16 +00:00
|
|
|
state.has("Beat The Dig", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'The Moebius Factor', 'Supernova',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 14) and
|
|
|
|
state.has("Beat The Moebius Factor", player)),
|
|
|
|
connect(world, player, names, 'Supernova', 'Maw of the Void',
|
|
|
|
lambda state: state.has("Beat Supernova", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'Zero Hour', "Devil's Playground",
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 4) and
|
|
|
|
state.has("Beat Zero Hour", player)),
|
|
|
|
connect(world, player, names, "Devil's Playground", 'Welcome to the Jungle',
|
|
|
|
lambda state: state.has("Beat Devil's Playground", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, "Welcome to the Jungle", 'Breakout',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 8) and
|
|
|
|
state.has("Beat Welcome to the Jungle", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, "Welcome to the Jungle", 'Ghost of a Chance',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 8) and
|
|
|
|
state.has("Beat Welcome to the Jungle", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, "Zero Hour", 'The Great Train Robbery',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state._sc2wol_cleared_missions(world, player, 6) and
|
|
|
|
state.has("Beat Zero Hour", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'The Great Train Robbery', 'Cutthroat',
|
|
|
|
lambda state: state.has("Beat The Great Train Robbery", player)),
|
|
|
|
connect(world, player, names, 'Cutthroat', 'Engine of Destruction',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state.has("Beat Cutthroat", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'Engine of Destruction', 'Media Blitz',
|
|
|
|
lambda state: state.has("Beat Engine of Destruction", player)),
|
2022-05-21 00:47:16 +00:00
|
|
|
connect(world, player, names, 'Media Blitz', 'Piercing the Shroud',
|
|
|
|
lambda state: state.has("Beat Media Blitz", player)),
|
|
|
|
connect(world, player, names, 'The Dig', 'Whispers of Doom',
|
|
|
|
lambda state: state.has("Beat The Dig", player)),
|
|
|
|
connect(world, player, names, 'Whispers of Doom', 'A Sinister Turn',
|
|
|
|
lambda state: state.has("Beat Whispers of Doom", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'A Sinister Turn', 'Echoes of the Future',
|
|
|
|
lambda state: state.has("Beat A Sinister Turn", player)),
|
2022-05-21 00:47:16 +00:00
|
|
|
connect(world, player, names, 'Echoes of the Future', 'In Utter Darkness',
|
|
|
|
lambda state: state.has("Beat Echoes of the Future", player)),
|
|
|
|
connect(world, player, names, 'Maw of the Void', 'Gates of Hell',
|
|
|
|
lambda state: state.has("Beat Maw of the Void", player)),
|
|
|
|
connect(world, player, names, 'Gates of Hell', 'Belly of the Beast',
|
|
|
|
lambda state: state.has("Beat Gates of Hell", player)),
|
|
|
|
connect(world, player, names, 'Gates of Hell', 'Shatter the Sky',
|
|
|
|
lambda state: state.has("Beat Gates of Hell", player)),
|
2022-05-18 21:27:38 +00:00
|
|
|
connect(world, player, names, 'Gates of Hell', 'All-In',
|
2022-05-21 00:47:16 +00:00
|
|
|
lambda state: state.has('Beat Gates of Hell', player) and (
|
|
|
|
state.has('Beat Shatter the Sky', player) or state.has('Beat Belly of the Beast', player)))
|
2022-05-18 21:27:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
def throwIfAnyLocationIsNotAssignedToARegion(regions: List[Region], regionNames: Set[str]):
|
|
|
|
existingRegions = set()
|
|
|
|
|
|
|
|
for region in regions:
|
|
|
|
existingRegions.add(region.name)
|
|
|
|
|
|
|
|
if (regionNames - existingRegions):
|
2022-05-21 00:47:16 +00:00
|
|
|
raise Exception("Starcraft: the following regions are used in locations: {}, but no such region exists".format(
|
|
|
|
regionNames - existingRegions))
|
2022-05-18 21:27:38 +00:00
|
|
|
|
|
|
|
|
2022-05-21 00:47:16 +00:00
|
|
|
def create_location(player: int, location_data: LocationData, region: Region,
|
|
|
|
location_cache: List[Location]) -> Location:
|
2022-05-18 21:27:38 +00:00
|
|
|
location = Location(player, location_data.name, location_data.code, region)
|
|
|
|
location.access_rule = location_data.rule
|
|
|
|
|
|
|
|
if id is None:
|
|
|
|
location.event = True
|
|
|
|
location.locked = True
|
|
|
|
|
|
|
|
location_cache.append(location)
|
|
|
|
|
|
|
|
return location
|
|
|
|
|
|
|
|
|
2022-05-21 00:47:16 +00:00
|
|
|
def create_region(world: MultiWorld, player: int, locations_per_region: Dict[str, List[LocationData]],
|
|
|
|
location_cache: List[Location], name: str) -> Region:
|
2022-05-18 21:27:38 +00:00
|
|
|
region = Region(name, RegionType.Generic, name, player)
|
|
|
|
region.world = world
|
|
|
|
|
|
|
|
if name in locations_per_region:
|
|
|
|
for location_data in locations_per_region[name]:
|
|
|
|
location = create_location(player, location_data, region, location_cache)
|
|
|
|
region.locations.append(location)
|
|
|
|
|
|
|
|
return region
|
|
|
|
|
|
|
|
|
2022-05-21 00:47:16 +00:00
|
|
|
def connect(world: MultiWorld, player: int, used_names: Dict[str, int], source: str, target: str,
|
|
|
|
rule: Optional[Callable] = None):
|
2022-05-18 21:27:38 +00:00
|
|
|
sourceRegion = world.get_region(source, player)
|
|
|
|
targetRegion = world.get_region(target, player)
|
|
|
|
|
|
|
|
if target not in used_names:
|
|
|
|
used_names[target] = 1
|
|
|
|
name = target
|
|
|
|
else:
|
|
|
|
used_names[target] += 1
|
|
|
|
name = target + (' ' * used_names[target])
|
|
|
|
|
|
|
|
connection = Entrance(player, name, sourceRegion)
|
|
|
|
|
|
|
|
if rule:
|
|
|
|
connection.access_rule = rule
|
|
|
|
|
|
|
|
sourceRegion.exits.append(connection)
|
|
|
|
connection.connect(targetRegion)
|
|
|
|
|
|
|
|
|
|
|
|
def get_locations_per_region(locations: Tuple[LocationData, ...]) -> Dict[str, List[LocationData]]:
|
2022-05-21 00:47:16 +00:00
|
|
|
per_region: Dict[str, List[LocationData]] = {}
|
2022-05-18 21:27:38 +00:00
|
|
|
|
|
|
|
for location in locations:
|
|
|
|
per_region.setdefault(location.region, []).append(location)
|
|
|
|
|
|
|
|
return per_region
|