Files
Archipelago/worlds/stardew_valley/content/feature/base.py
agilbert1412 1de91fab67 Stardew Valley: 7.x.x - The Jojapocalypse Update (#5432)
Major Content update for Stardew Valley

### Features
- New BundleRandomization Value: Meme Bundles - Over 100 custom bundles, designed to be jokes, references, trolls, etc
- New Setting: Bundles Per Room modifier
- New Setting: Backpack Size
- New Setting: Secretsanity - Checks for triggering easter eggs and secrets
- New Setting: Moviesanity - Checks for watching movies and sharing snacks with Villagers
- New Setting: Eatsanity - Checks for eating items
- New Setting: Hatsanity - Checks for wearing Hats
- New Setting: Start Without - Allows you to select any combination of various "starting" items, that you will actually not start with. Notably, tools, backpack slots, Day5 unlocks, etc.
- New Setting: Allowed Filler Items - Allows you to customize the filler items you'll get
- New Setting: Endgame Locations - Checks for various expensive endgame tasks and purchases
- New Shipsanity value: Crops and Fish
- New Settings: Jojapocalypse and settings to customize it
- Bundle Plando: Replaced with BundleWhitelist and BundleBlacklist, for more customization freedom
- Added a couple of Host.yaml settings to help hosts allow or ban specific difficult settings that could cause problems if the people don't know what they are signing up for.

Plus a truckload of improvements on the mod side, not seen in this PR.

### Removed features
- Integration for Stardew Valley Expanded. It is simply disabled, the code is all still there, but I'm extremely tired of providing tech support for it, plus Stardew Valley 1.7 was announced and that will break it again, so I'm done. When a maintainer steps up, it can be re-enabled.
2026-02-15 18:02:21 +01:00

72 lines
2.5 KiB
Python

import inspect
from abc import ABC
from collections.abc import Mapping
from typing import TYPE_CHECKING, Protocol
from ...data.game_item import Source, Requirement
if TYPE_CHECKING:
from ... import StardewContent
class DisableSourceHook(Protocol):
def __call__(self, source: Source, /, *, content: "StardewContent") -> bool:
"""Return True if the source should be disabled by this feature."""
...
class DisableRequirementHook(Protocol):
def __call__(self, requirement: Requirement, /, *, content: "StardewContent") -> bool:
"""Return True if the requirement should be disabled by this feature."""
...
def wrap_optional_content_arg(hook):
"""Wraps a hook to ensure it has the correct signature."""
if "content" in hook.__annotations__:
return hook
def wrapper(*args, content: "StardewContent", **kwargs):
return hook(*args, **kwargs)
return wrapper
class FeatureBase(ABC):
@property
def disable_source_hooks(self) -> Mapping[type[Source], DisableSourceHook]:
"""All hooks to call when a source is created to check if it has to be disabled by this feature."""
disable_source_hooks = {}
for attribute_name in dir(self):
if not attribute_name.startswith("_disable_") or not callable((attribute := getattr(self, attribute_name))):
continue
sig = inspect.signature(attribute)
source_param = sig.parameters.get("source")
if source_param is not None:
source_type = source_param.annotation
disable_source_hooks[source_type] = wrap_optional_content_arg(attribute)
continue
return disable_source_hooks
@property
def disable_requirement_hooks(self) -> Mapping[type[Requirement], DisableRequirementHook]:
"""All hooks to call when a requirement is created to check if it has to be disabled by this feature."""
disable_requirement_hooks = {}
for attribute_name in dir(self):
if not attribute_name.startswith("_disable_") or not callable((attribute := getattr(self, attribute_name))):
continue
sig = inspect.signature(attribute)
requirement_param = sig.parameters.get("requirement")
if requirement_param is not None:
requirement_type = requirement_param.annotation
disable_requirement_hooks[requirement_type] = wrap_optional_content_arg(attribute)
continue
return disable_requirement_hooks