Files
Archipelago/worlds/stardew_valley/logic/cooking_logic.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

96 lines
5.1 KiB
Python

from functools import cached_property
from Utils import cache_self1
from .base_logic import BaseLogicMixin, BaseLogic
from ..data.recipe_data import RecipeSource, StarterSource, ShopSource, SkillSource, FriendshipSource, \
QueenOfSauceSource, CookingRecipe, ShopFriendshipSource, all_cooking_recipes
from ..data.recipe_source import CutsceneSource, ShopTradeSource
from ..options import Chefsanity
from ..stardew_rule import StardewRule, True_, False_
from ..strings.ap_names.ap_option_names import ChefsanityOptionName
from ..strings.building_names import Building
from ..strings.craftable_names import Craftable
from ..strings.region_names import LogicRegion
from ..strings.tv_channel_names import Channel
class CookingLogicMixin(BaseLogicMixin):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.cooking = CookingLogic(*args, **kwargs)
class CookingLogic(BaseLogic):
@cached_property
def can_cook_in_kitchen(self) -> StardewRule:
return self.logic.building.has_building(Building.kitchen) | self.logic.has(Craftable.cookout_kit)
# Should be cached
def can_cook(self, recipe: CookingRecipe | str = None) -> StardewRule:
cook_rule = self.logic.region.can_reach(LogicRegion.kitchen)
if recipe is None:
return cook_rule
if isinstance(recipe, str):
recipe = next(filter(lambda x: x.meal == recipe, all_cooking_recipes))
recipe_rule = self.logic.cooking.knows_recipe(recipe.source, recipe.meal)
ingredients_rule = self.logic.has_all(*sorted(recipe.ingredients))
return cook_rule & recipe_rule & ingredients_rule
# Should be cached
def knows_recipe(self, source: RecipeSource, meal_name: str) -> StardewRule:
if self.options.chefsanity == Chefsanity.preset_none:
return self.logic.cooking.can_learn_recipe(source)
if isinstance(source, StarterSource):
return self.logic.cooking.received_recipe(meal_name)
if isinstance(source, ShopTradeSource) and ChefsanityOptionName.purchases in self.options.chefsanity:
return self.logic.cooking.received_recipe(meal_name)
if isinstance(source, ShopSource) and ChefsanityOptionName.purchases in self.options.chefsanity:
return self.logic.cooking.received_recipe(meal_name)
if isinstance(source, SkillSource) and ChefsanityOptionName.skills in self.options.chefsanity:
return self.logic.cooking.received_recipe(meal_name)
if isinstance(source, CutsceneSource) and ChefsanityOptionName.friendship in self.options.chefsanity:
return self.logic.cooking.received_recipe(meal_name)
if isinstance(source, FriendshipSource) and ChefsanityOptionName.friendship in self.options.chefsanity:
return self.logic.cooking.received_recipe(meal_name)
if isinstance(source, QueenOfSauceSource) and ChefsanityOptionName.queen_of_sauce in self.options.chefsanity:
return self.logic.cooking.received_recipe(meal_name)
if isinstance(source, ShopFriendshipSource) and ChefsanityOptionName.purchases in self.options.chefsanity:
return self.logic.cooking.received_recipe(meal_name)
return self.logic.cooking.can_learn_recipe(source)
@cache_self1
def can_learn_recipe(self, source: RecipeSource) -> StardewRule:
if isinstance(source, StarterSource):
return True_()
if isinstance(source, ShopTradeSource):
return self.logic.money.can_trade_at(source.region, source.currency, source.price)
if isinstance(source, ShopSource):
return self.logic.money.can_spend_at(source.region, source.price)
if isinstance(source, SkillSource):
return self.logic.skill.has_level(source.skill, source.level)
if isinstance(source, CutsceneSource):
return self.logic.region.can_reach(source.region) & self.logic.relationship.has_hearts(source.friend, source.hearts)
if isinstance(source, FriendshipSource):
return self.logic.relationship.has_hearts(source.friend, source.hearts)
if isinstance(source, QueenOfSauceSource):
return self.logic.action.can_watch(Channel.queen_of_sauce) & self.logic.season.has(source.season)
if isinstance(source, ShopFriendshipSource):
return self.logic.money.can_spend_at(source.region, source.price) & self.logic.relationship.has_hearts(source.friend, source.hearts)
return False_()
@cache_self1
def received_recipe(self, meal_name: str):
return self.logic.received(f"{meal_name} Recipe")
def can_have_cooked_recipes(self, number: int) -> StardewRule:
if number <= 0:
return self.logic.true_
recipe_rules = []
for recipe in all_cooking_recipes:
if recipe.content_pack and not self.content.is_enabled(recipe.content_pack):
continue
recipe_rules.append(self.can_cook(recipe))
number = min(len(recipe_rules), number)
return self.logic.count(number, *recipe_rules)