Stardew Valley 6.x.x: The Content Update (#3478)
Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests
This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.
In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
2024-07-07 13:04:25 +00:00
|
|
|
from functools import cached_property
|
2024-03-15 12:05:14 +00:00
|
|
|
from typing import Iterable, Union
|
|
|
|
|
|
|
|
from Utils import cache_self1
|
|
|
|
from .base_logic import BaseLogic, BaseLogicMixin
|
Stardew Valley 6.x.x: The Content Update (#3478)
Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests
This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.
In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
2024-07-07 13:04:25 +00:00
|
|
|
from .has_logic import HasLogicMixin
|
2024-03-15 12:05:14 +00:00
|
|
|
from .received_logic import ReceivedLogicMixin
|
|
|
|
from .time_logic import TimeLogicMixin
|
|
|
|
from ..options import SeasonRandomization
|
Stardew Valley 6.x.x: The Content Update (#3478)
Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests
This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.
In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
2024-07-07 13:04:25 +00:00
|
|
|
from ..stardew_rule import StardewRule, True_, true_
|
2024-03-15 12:05:14 +00:00
|
|
|
from ..strings.generic_names import Generic
|
|
|
|
from ..strings.season_names import Season
|
|
|
|
|
|
|
|
|
|
|
|
class SeasonLogicMixin(BaseLogicMixin):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.season = SeasonLogic(*args, **kwargs)
|
|
|
|
|
|
|
|
|
Stardew Valley 6.x.x: The Content Update (#3478)
Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests
This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.
In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
2024-07-07 13:04:25 +00:00
|
|
|
class SeasonLogic(BaseLogic[Union[HasLogicMixin, SeasonLogicMixin, TimeLogicMixin, ReceivedLogicMixin]]):
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def has_spring(self) -> StardewRule:
|
|
|
|
return self.logic.season.has(Season.spring)
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def has_summer(self) -> StardewRule:
|
|
|
|
return self.logic.season.has(Season.summer)
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def has_fall(self) -> StardewRule:
|
|
|
|
return self.logic.season.has(Season.fall)
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def has_winter(self) -> StardewRule:
|
|
|
|
return self.logic.season.has(Season.winter)
|
2024-03-15 12:05:14 +00:00
|
|
|
|
|
|
|
@cache_self1
|
|
|
|
def has(self, season: str) -> StardewRule:
|
|
|
|
if season == Generic.any:
|
|
|
|
return True_()
|
|
|
|
seasons_order = [Season.spring, Season.summer, Season.fall, Season.winter]
|
|
|
|
if self.options.season_randomization == SeasonRandomization.option_progressive:
|
|
|
|
return self.logic.received(Season.progressive, seasons_order.index(season))
|
|
|
|
if self.options.season_randomization == SeasonRandomization.option_disabled:
|
|
|
|
if season == Season.spring:
|
|
|
|
return True_()
|
|
|
|
return self.logic.time.has_lived_months(1)
|
|
|
|
return self.logic.received(season)
|
|
|
|
|
|
|
|
def has_any(self, seasons: Iterable[str]):
|
Stardew Valley 6.x.x: The Content Update (#3478)
Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests
This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.
In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
2024-07-07 13:04:25 +00:00
|
|
|
if seasons == Season.all:
|
|
|
|
return true_
|
2024-03-15 12:05:14 +00:00
|
|
|
if not seasons:
|
Stardew Valley 6.x.x: The Content Update (#3478)
Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests
This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.
In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
2024-07-07 13:04:25 +00:00
|
|
|
# That should be false, but I'm scared.
|
2024-03-15 12:05:14 +00:00
|
|
|
return True_()
|
Stardew Valley 6.x.x: The Content Update (#3478)
Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests
This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.
In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
2024-07-07 13:04:25 +00:00
|
|
|
return self.logic.or_(*(self.logic.season.has(season) for season in seasons))
|
2024-03-15 12:05:14 +00:00
|
|
|
|
|
|
|
def has_any_not_winter(self):
|
|
|
|
return self.logic.season.has_any([Season.spring, Season.summer, Season.fall])
|
|
|
|
|
|
|
|
def has_all(self):
|
|
|
|
seasons = [Season.spring, Season.summer, Season.fall, Season.winter]
|
Stardew Valley 6.x.x: The Content Update (#3478)
Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests
This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.
In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
2024-07-07 13:04:25 +00:00
|
|
|
return self.logic.and_(*(self.logic.season.has(season) for season in seasons))
|