mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00

- Across Doom 1993 and Doom 2, any items that are accessible in Ultra-Violence from the start of the level without putting the player in any danger are now considered in logic when that level is first received, without needing any weapons available. This is intended to give generation more possible outs for bad placements. - This affects the following maps in Doom 1993: - Toxin Refinery (E1M3): 1 location. - Command Control (E1M4): 1 location. - Computer Station (E1M7): 1 location. - Deimos Lab (E2M4): 1 location. - Tower of Babel (E2M8): 1 location. - Unholy Cathedral (E3M5): 1 location. - This affects the following maps in Doom 2: - The Waste Tunnels (MAP05): 2 locations. - Dead Simple (MAP07): 2 locations. - The Pit (MAP09): 1 location. - Refueling Base (MAP10): 1 location. - Nirvana (MAP21): 1 location, except see below. - Icon of Sin (MAP30): 9 locations. - Grosse (MAP32): 2 locations. - Doom 2 has had some more significant logical adjustments made. - The following Pro tricks have been added to Pro logic: - Circle of Death (MAP11): Lowering the exit wall without the Red key by hitting the switch to do so from the nukage. This makes three items previously locked behind the Red key available early, as well as the exit. - Suburbs (MAP16): Reaching the exit without any keys, as the gap between the pillar and the wall is large enough to let you through if you position yourself well. While multiple other squeeze glides exist (for example, you can skip the Yellow key in MAP21 by using one), this one is significantly easier than the rest; it does not require much precision, nor does it require vertical mouse movement. - Nirvana (MAP21): Skipping the Blue key, as there is a gigantic gap between the bars that attempt to block you. - The Chasm (MAP24): Skipping the Blue key by going extremely far through the nukage and finding one of a couple specific teleporters is now considered a Pro trick, and standard logic now expects the key to be obtained. - The following levels have had other logic adjustments: - The Waste Tunnels (MAP05): Requirements lowered to Shotgun + Super Shotgun + (Chaingun | Plasma gun). - The Crusher (MAP06): Requirements lowered to Shotgun + (Chaingun | Plasma gun) for areas immediately accessible. Going beyond the Blue key door also requires Super Shotgun. - The Factory (MAP12): The outdoors area, and the little room to the right of where you start, are accessible in sphere 1. These three items are all easily obtainable with only the pistol. The remaining items that are not in the central area are accessible with (Super Shotgun | Plasma gun), while the items in that area are accessible with Super Shotgun + Chaingun + (Plasma gun | BFG9000). This fixes Episode 2 not having an available sphere 1, and allows solo Episode 2 games. - Nirvana (MAP21): As above, the item in the starting room is accessible in sphere 1. Every other item that doesn't require a key is accessible with (Super Shotgun | Plasma gun). The room in which you use the Yellow key is accessible with Super Shotgun + Chaingun + (Plasma gun | BFG9000). This fixes Episode 3 not having an available sphere 1, and allows solo Episode 3 games. - The Catacombs (MAP22): The four items in the opening room only require (Shotgun | Super Shotgun | Plasma gun). The rest of the level is as before. - Bloodfalls (MAP25): Requirements lowered to Shotgun + Super Shotgun + Chaingun, as this level is unusually easy for its placement in the game. Progressing past the Blue key door additionally requires (Rocket launcher | Plasma gun | BFG9000) solely to deal with the Arch-vile at the end of the level. - Wolfenstein (MAP31): Requirements lowered to Chaingun + (Shotgun | Super Shotgun). This is closer to what the game expects from a non-secret hunting player from a pistol start. - The following logic bugs in Heretic have been fixed: - Quay (E5M3): An item in a Blue key locked hallway was previously marked as being in the "Main" region, thus considered to be accessible without that key. It has been moved to the appropriate "Blue" region. - Courtyard (E5M4): Logic previously assumed you could reach the Wings of Wrath from the opening room, when that isn't actually possible. Changing this moved some items previously in the "Main" region into a new "Green" region, and items previously in the "Kakis" (Yellow OR Green) are now in a "Yellow" region instead. Fixes #4662. - For known problematic solo episodes, some additional special cases have been added. - Doom 1993, Episode 3: One of either the Shotgun or Chaingun is placed early. Slough of Despair (E3M2) is given as an additional starting level. - Doom 2, Episode 3: One of either the Super Shotgun or Plasma gun is placed early. - Heretic, Episode 1: The Docks (E1M1) - Yellow key is placed early. - The following levels (and thus, their items and locations) were renamed, due to typos or other oddities: - `Barrels o Fun (MAP23)` -> `Barrels o' Fun (MAP23)` - `Wolfenstein2 (MAP31)` -> `Wolfenstein (MAP31)` - `Grosse2 (MAP32)` -> `Grosse (MAP32)` - `D'Sparil'S Keep (E3M8)` -> `D'Sparil's Keep (E3M8)` - `The Aquifier (E3M9)` -> `The Aquifer (E3M9)`
298 lines
12 KiB
Python
298 lines
12 KiB
Python
import functools
|
|
import logging
|
|
from typing import Any, Dict, List
|
|
|
|
from BaseClasses import Entrance, CollectionState, Item, Location, MultiWorld, Region, Tutorial
|
|
from worlds.AutoWorld import WebWorld, World
|
|
from . import Items, Locations, Maps, Regions, Rules
|
|
from .Options import DOOM2Options
|
|
|
|
logger = logging.getLogger("DOOM II")
|
|
|
|
DOOM_TYPE_LEVEL_COMPLETE = -2
|
|
DOOM_TYPE_COMPUTER_AREA_MAP = 2026
|
|
|
|
|
|
class DOOM2Location(Location):
|
|
game: str = "DOOM II"
|
|
|
|
|
|
class DOOM2Item(Item):
|
|
game: str = "DOOM II"
|
|
|
|
|
|
class DOOM2Web(WebWorld):
|
|
tutorials = [Tutorial(
|
|
"Multiworld Setup Guide",
|
|
"A guide to setting up the DOOM II randomizer connected to an Archipelago Multiworld",
|
|
"English",
|
|
"setup_en.md",
|
|
"setup/en",
|
|
["Daivuk"]
|
|
)]
|
|
theme = "dirt"
|
|
|
|
|
|
class DOOM2World(World):
|
|
"""
|
|
Doom II, also known as Doom II: Hell on Earth, is a first-person shooter game by id Software.
|
|
It was released for MS-DOS in 1994.
|
|
Compared to its predecessor, Doom II features larger levels, new enemies, a new "super shotgun" weapon
|
|
"""
|
|
options_dataclass = DOOM2Options
|
|
options: DOOM2Options
|
|
game = "DOOM II"
|
|
web = DOOM2Web()
|
|
required_client_version = (0, 5, 0) # 1.2.0-prerelease or higher
|
|
|
|
item_name_to_id = {data["name"]: item_id for item_id, data in Items.item_table.items()}
|
|
item_name_groups = Items.item_name_groups
|
|
|
|
location_name_to_id = {data["name"]: loc_id for loc_id, data in Locations.location_table.items()}
|
|
location_name_groups = Locations.location_name_groups
|
|
|
|
starting_level_for_episode: Dict[int, str] = {
|
|
1: "Entryway (MAP01)",
|
|
2: "The Factory (MAP12)",
|
|
3: "Nirvana (MAP21)"
|
|
}
|
|
|
|
# Item ratio that scales depending on episode count. These are the ratio for 3 episode. In DOOM1.
|
|
# The ratio have been tweaked seem, and feel good.
|
|
items_ratio: Dict[str, float] = {
|
|
"Armor": 39,
|
|
"Mega Armor": 23,
|
|
"Berserk": 11,
|
|
"Invulnerability": 10,
|
|
"Partial invisibility": 18,
|
|
"Supercharge": 26,
|
|
"Medikit": 15,
|
|
"Box of bullets": 13,
|
|
"Box of rockets": 13,
|
|
"Box of shotgun shells": 13,
|
|
"Energy cell pack": 10,
|
|
"Megasphere": 7
|
|
}
|
|
|
|
def __init__(self, multiworld: MultiWorld, player: int):
|
|
self.included_episodes = [1, 1, 1, 0]
|
|
self.location_count = 0
|
|
self.starting_levels = []
|
|
|
|
super().__init__(multiworld, player)
|
|
|
|
def get_episode_count(self):
|
|
# Don't include 4th, those are secret levels they are additive
|
|
return sum(self.included_episodes[:3])
|
|
|
|
def generate_early(self):
|
|
# Cache which episodes are included
|
|
self.included_episodes[0] = self.options.episode1.value
|
|
self.included_episodes[1] = self.options.episode2.value
|
|
self.included_episodes[2] = self.options.episode3.value
|
|
self.included_episodes[3] = self.options.episode4.value # 4th episode are secret levels
|
|
|
|
# If no episodes selected, select Episode 1
|
|
if self.get_episode_count() == 0:
|
|
self.included_episodes[0] = 1
|
|
|
|
self.starting_levels = [level_name for (episode, level_name) in self.starting_level_for_episode.items()
|
|
if self.included_episodes[episode - 1]]
|
|
|
|
# If soloing MAP21-MAP30, we need to mark a weapon as early to help generation succeed
|
|
if self.get_episode_count() == 1 and self.included_episodes[2]:
|
|
early_weapon = self.random.choice(["Super Shotgun", "Plasma gun"])
|
|
self.multiworld.early_items[self.player][early_weapon] = 1
|
|
|
|
def create_regions(self):
|
|
pro = self.options.pro.value
|
|
|
|
# Main regions
|
|
menu_region = Region("Menu", self.player, self.multiworld)
|
|
hub_region = Region("Hub", self.player, self.multiworld)
|
|
self.multiworld.regions += [menu_region, hub_region]
|
|
menu_region.add_exits(["Hub"])
|
|
|
|
# Create regions and locations
|
|
main_regions = []
|
|
connections = []
|
|
for region_dict in Regions.regions:
|
|
if not self.included_episodes[region_dict["episode"] - 1]:
|
|
continue
|
|
|
|
region_name = region_dict["name"]
|
|
if region_dict["connects_to_hub"]:
|
|
main_regions.append(region_name)
|
|
|
|
region = Region(region_name, self.player, self.multiworld)
|
|
region.add_locations({
|
|
loc["name"]: loc_id
|
|
for loc_id, loc in Locations.location_table.items()
|
|
if loc["region"] == region_name and self.included_episodes[loc["episode"] - 1]
|
|
}, DOOM2Location)
|
|
|
|
self.multiworld.regions.append(region)
|
|
|
|
for connection_dict in region_dict["connections"]:
|
|
# Check if it's a pro-only connection
|
|
if connection_dict["pro"] and not pro:
|
|
continue
|
|
connections.append((region, connection_dict["target"]))
|
|
|
|
# Connect main regions to Hub
|
|
hub_region.add_exits(main_regions)
|
|
|
|
# Do the other connections between regions (They are not all both ways)
|
|
for connection in connections:
|
|
source = connection[0]
|
|
target = self.multiworld.get_region(connection[1], self.player)
|
|
|
|
entrance = Entrance(self.player, f"{source.name} -> {target.name}", source)
|
|
source.exits.append(entrance)
|
|
entrance.connect(target)
|
|
|
|
# Sum locations for items creation
|
|
self.location_count = len(self.multiworld.get_locations(self.player))
|
|
|
|
def completion_rule(self, state: CollectionState):
|
|
for map_name in Maps.map_names:
|
|
if map_name + " - Exit" not in self.location_name_to_id:
|
|
continue
|
|
|
|
# Exit location names are in form: Entryway (MAP01) - Exit
|
|
loc = Locations.location_table[self.location_name_to_id[map_name + " - Exit"]]
|
|
if not self.included_episodes[loc["episode"] - 1]:
|
|
continue
|
|
|
|
# Map complete item names are in form: Entryway (MAP01) - Complete
|
|
if not state.has(map_name + " - Complete", self.player, 1):
|
|
return False
|
|
|
|
return True
|
|
|
|
def set_rules(self):
|
|
pro = self.options.pro.value
|
|
allow_death_logic = self.options.allow_death_logic.value
|
|
|
|
Rules.set_rules(self, self.included_episodes, pro)
|
|
self.multiworld.completion_condition[self.player] = lambda state: self.completion_rule(state)
|
|
|
|
# Forbid progression items to locations that can be missed and can't be picked up. (e.g. One-time timed
|
|
# platform) Unless the user allows for it.
|
|
if not allow_death_logic:
|
|
for death_logic_location in Locations.death_logic_locations:
|
|
self.options.exclude_locations.value.add(death_logic_location)
|
|
|
|
def create_item(self, name: str) -> DOOM2Item:
|
|
item_id: int = self.item_name_to_id[name]
|
|
return DOOM2Item(name, Items.item_table[item_id]["classification"], item_id, self.player)
|
|
|
|
def create_items(self):
|
|
itempool: List[DOOM2Item] = []
|
|
start_with_computer_area_maps: bool = self.options.start_with_computer_area_maps.value
|
|
|
|
# Items
|
|
for item_id, item in Items.item_table.items():
|
|
if item["doom_type"] == DOOM_TYPE_LEVEL_COMPLETE:
|
|
continue # We'll fill it manually later
|
|
|
|
if item["doom_type"] == DOOM_TYPE_COMPUTER_AREA_MAP and start_with_computer_area_maps:
|
|
continue # We'll fill it manually, and we will put fillers in place
|
|
|
|
if item["episode"] != -1 and not self.included_episodes[item["episode"] - 1]:
|
|
continue
|
|
|
|
count = item["count"] if item["name"] not in self.starting_levels else item["count"] - 1
|
|
itempool += [self.create_item(item["name"]) for _ in range(count)]
|
|
|
|
# Backpack(s) based on options
|
|
if self.options.split_backpack.value:
|
|
itempool += [self.create_item("Bullet capacity") for _ in range(self.options.backpack_count.value)]
|
|
itempool += [self.create_item("Shell capacity") for _ in range(self.options.backpack_count.value)]
|
|
itempool += [self.create_item("Energy cell capacity") for _ in range(self.options.backpack_count.value)]
|
|
itempool += [self.create_item("Rocket capacity") for _ in range(self.options.backpack_count.value)]
|
|
else:
|
|
itempool += [self.create_item("Backpack") for _ in range(self.options.backpack_count.value)]
|
|
|
|
# Place end level items in locked locations
|
|
for map_name in Maps.map_names:
|
|
loc_name = map_name + " - Exit"
|
|
item_name = map_name + " - Complete"
|
|
|
|
if loc_name not in self.location_name_to_id:
|
|
continue
|
|
|
|
if item_name not in self.item_name_to_id:
|
|
continue
|
|
|
|
loc = Locations.location_table[self.location_name_to_id[loc_name]]
|
|
if not self.included_episodes[loc["episode"] - 1]:
|
|
continue
|
|
|
|
self.multiworld.get_location(loc_name, self.player).place_locked_item(self.create_item(item_name))
|
|
self.location_count -= 1
|
|
|
|
# Give starting levels right away
|
|
for map_name in self.starting_levels:
|
|
self.multiworld.push_precollected(self.create_item(map_name))
|
|
|
|
# Give Computer area maps if option selected
|
|
if start_with_computer_area_maps:
|
|
for item_id, item_dict in Items.item_table.items():
|
|
item_episode = item_dict["episode"]
|
|
if item_episode > 0:
|
|
if item_dict["doom_type"] == DOOM_TYPE_COMPUTER_AREA_MAP and self.included_episodes[item_episode - 1]:
|
|
self.multiworld.push_precollected(self.create_item(item_dict["name"]))
|
|
|
|
# Fill the rest starting with powerups, then fillers
|
|
self.create_ratioed_items("Armor", itempool)
|
|
self.create_ratioed_items("Mega Armor", itempool)
|
|
self.create_ratioed_items("Berserk", itempool)
|
|
self.create_ratioed_items("Invulnerability", itempool)
|
|
self.create_ratioed_items("Partial invisibility", itempool)
|
|
self.create_ratioed_items("Supercharge", itempool)
|
|
self.create_ratioed_items("Megasphere", itempool)
|
|
|
|
while len(itempool) < self.location_count:
|
|
itempool.append(self.create_item(self.get_filler_item_name()))
|
|
|
|
# add itempool to multiworld
|
|
self.multiworld.itempool += itempool
|
|
|
|
def get_filler_item_name(self):
|
|
return self.multiworld.random.choice([
|
|
"Medikit",
|
|
"Box of bullets",
|
|
"Box of rockets",
|
|
"Box of shotgun shells",
|
|
"Energy cell pack"
|
|
])
|
|
|
|
def create_ratioed_items(self, item_name: str, itempool: List[DOOM2Item]):
|
|
remaining_loc = self.location_count - len(itempool)
|
|
ep_count = self.get_episode_count()
|
|
|
|
# Was balanced based on DOOM 1993's first 3 episodes
|
|
count = min(remaining_loc, max(1, int(round(self.items_ratio[item_name] * ep_count / 3))))
|
|
if count == 0:
|
|
logger.warning(f"Warning, no {item_name} will be placed.")
|
|
return
|
|
|
|
for i in range(count):
|
|
itempool.append(self.create_item(item_name))
|
|
|
|
def fill_slot_data(self) -> Dict[str, Any]:
|
|
slot_data = self.options.as_dict("difficulty", "random_monsters", "random_pickups", "random_music", "flip_levels", "allow_death_logic", "pro", "death_link", "reset_level_on_death", "episode1", "episode2", "episode3", "episode4")
|
|
|
|
# Send slot data for ammo capacity values; this must be generic because Heretic uses it too
|
|
slot_data["ammo1start"] = self.options.max_ammo_bullets.value
|
|
slot_data["ammo2start"] = self.options.max_ammo_shells.value
|
|
slot_data["ammo3start"] = self.options.max_ammo_energy_cells.value
|
|
slot_data["ammo4start"] = self.options.max_ammo_rockets.value
|
|
slot_data["ammo1add"] = self.options.added_ammo_bullets.value
|
|
slot_data["ammo2add"] = self.options.added_ammo_shells.value
|
|
slot_data["ammo3add"] = self.options.added_ammo_energy_cells.value
|
|
slot_data["ammo4add"] = self.options.added_ammo_rockets.value
|
|
|
|
return slot_data
|