Example #1
0
        public override bool SpecificTest(Sim actor, TeppanyakiGrill target, bool isAutonomous, ref GreyedOutTooltipCallback greyedOutTooltipCallback)
        {
            if (isAutonomous)
            {
                if (target.InUse)
                {
                    return(false);
                }
                if (actor.IsSelectable)
                {
                    mTGFoodInfo = null;
                    Cooking skill = actor.SkillManager.GetSkill <Cooking>(SkillNames.Cooking);

                    List <Ingredient> simIngredients = Recipe.GetCookableIngredients(actor.Inventory);
                    List <Ingredient> lotIngredients = actor.Household != null && actor.Household.SharedFridgeInventory != null?Recipe.GetCookableIngredients(actor.Household.SharedFridgeInventory.Inventory) : new List <Ingredient>();

                    List <Ingredient> list = null;
                    Recipe.MealTime   time = Food.GetCurrentMealTime();

                    int    num  = RandomUtil.GetInt(7);
                    int    num2 = 0;
                    Recipe recipe;
                    TeppanyakiGrill.TGFoodInfo tGFoodInfo;
                    while (true)
                    {
                        tGFoodInfo = TeppanyakiGrill.TGFoodInfos[num];
                        if (Recipe.NameToRecipeHash.TryGetValue(tGFoodInfo.mName, out recipe) && (recipe.CookingSkillLevelRequired == 0 || (skill != null && skill.SkillLevel >= recipe.CookingSkillLevelRequired)) &&
                            recipe.IsAvailableFor(time) && recipe.BuildIngredientList(simIngredients, lotIngredients, ref list, ref list).Count == 0)
                        {
                            break;
                        }
                        if (++num2 >= 8)
                        {
                            return(false);
                        }
                        if (++num >= 8)
                        {
                            num = 0;
                        }
                    }
                    target.mCurrentRecipe = recipe;
                    ChosenRecipe          = recipe;
                    mTGFoodInfo           = tGFoodInfo;
                    return(true);
                }
            }
            return(base.SpecificTest(actor, target, isAutonomous, ref greyedOutTooltipCallback) &&
                   (Cost == 0 || Food.PrepareTestResultCheckAndGrayedOutPieMenuSet(actor, ChosenRecipe, Recipe.CanMakeFoodTestResult.Fail_NeedIngredients, ref greyedOutTooltipCallback)));
        }
Example #2
0
        public override void AddInteractions(InteractionObjectPair iop, Sim actor, TeppanyakiGrill target, List <InteractionObjectPair> results)
        {
            List <Ingredient> simIngredients = Recipe.GetCookableIngredients(actor.Inventory);
            List <Ingredient> lotIngredients = actor.Household != null && actor.Household.SharedFridgeInventory != null?Recipe.GetCookableIngredients(actor.Household.SharedFridgeInventory.Inventory) : new List <Ingredient>();

            List <Ingredient> list = null;

            Recipe.MealTime currentMealTime = Food.GetCurrentMealTime();
            string[]        menuPath        = new string[]
            {
                TeppanyakiGrill.LocalizeString("Serve") /*+ " " + Food.GetMealTimeString(currentMealTime)*/ + Localization.Ellipsis
            };
            foreach (TeppanyakiGrill.TGFoodInfo info in TeppanyakiGrill.TGFoodInfos)
            {
                Recipe current;
                if (Recipe.NameToRecipeHash.TryGetValue(info.mName, out current) && current.IsAvailableFor(currentMealTime))
                {
                    int cost = current.BuildIngredientList(simIngredients, lotIngredients, ref list, ref list).Count == 0 ? 0 : -1;
                    results.Add(new InteractionObjectPair(new OverridedTGCookDefinition(current.GenericName, current, menuPath, target, Recipe.MealDestination.SurfaceAndCallToMeal, Recipe.MealQuantity.Group, Recipe.MealRepetition.MakeOne, false, cost), iop.Target));
                }
            }
        }
        public override bool SpecificTest(Sim actor, TeppanyakiGrill target, bool isAutonomous, ref GreyedOutTooltipCallback greyedOutTooltipCallback)
        {
            if (isAutonomous)
            {
                if (target.InUse)
                {
                    return false;
                }
                if (actor.IsSelectable)
                {
                    mTGFoodInfo = null;
                    Cooking skill = actor.SkillManager.GetSkill<Cooking>(SkillNames.Cooking);

                    List<Ingredient> simIngredients = Recipe.GetCookableIngredients(actor.Inventory);
                    List<Ingredient> lotIngredients = actor.Household != null && actor.Household.SharedFridgeInventory != null ? Recipe.GetCookableIngredients(actor.Household.SharedFridgeInventory.Inventory) : new List<Ingredient>();
                    List<Ingredient> list = null;
                    Recipe.MealTime time = Food.GetCurrentMealTime();

                    int num = RandomUtil.GetInt(7);
                    int num2 = 0;
                    Recipe recipe;
                    TeppanyakiGrill.TGFoodInfo tGFoodInfo;
                    while (true)
                    {
                        tGFoodInfo = TeppanyakiGrill.TGFoodInfos[num];
                        if (Recipe.NameToRecipeHash.TryGetValue(tGFoodInfo.mName, out recipe) && (recipe.CookingSkillLevelRequired == 0 || (skill != null && skill.SkillLevel >= recipe.CookingSkillLevelRequired))
                            && recipe.IsAvailableFor(time) && recipe.BuildIngredientList(simIngredients, lotIngredients, ref list, ref list).Count == 0)
                        {
                            break;
                        }
                        if (++num2 >= 8)
                        {
                            return false;
                        }
                        if (++num >= 8)
                        {
                            num = 0;
                        }
                    }
                    target.mCurrentRecipe = recipe;
                    ChosenRecipe = recipe;
                    mTGFoodInfo = tGFoodInfo;
                    return true;
                }
            }
            return base.SpecificTest(actor, target, isAutonomous, ref greyedOutTooltipCallback)
                && (Cost == 0 || Food.PrepareTestResultCheckAndGrayedOutPieMenuSet(actor, ChosenRecipe, Recipe.CanMakeFoodTestResult.Fail_NeedIngredients, ref greyedOutTooltipCallback));
        }
        public override void AddInteractions(InteractionObjectPair iop, Sim actor, TeppanyakiGrill target, List<InteractionObjectPair> results)
        {
            List<Ingredient> simIngredients = Recipe.GetCookableIngredients(actor.Inventory);
            List<Ingredient> lotIngredients = actor.Household != null && actor.Household.SharedFridgeInventory != null ? Recipe.GetCookableIngredients(actor.Household.SharedFridgeInventory.Inventory) : new List<Ingredient>();
            List<Ingredient> list = null;

            Recipe.MealTime currentMealTime = Food.GetCurrentMealTime();
            string[] menuPath = new string[]
                {
                    TeppanyakiGrill.LocalizeString("Serve") /*+ " " + Food.GetMealTimeString(currentMealTime)*/ + Localization.Ellipsis
                };
            foreach (TeppanyakiGrill.TGFoodInfo info in TeppanyakiGrill.TGFoodInfos)
            {
                Recipe current;
                if (Recipe.NameToRecipeHash.TryGetValue(info.mName, out current) && current.IsAvailableFor(currentMealTime))
                {
                    int cost = current.BuildIngredientList(simIngredients, lotIngredients, ref list, ref list).Count == 0 ? 0 : -1;
                    results.Add(new InteractionObjectPair(new OverridedTGCookDefinition(current.GenericName, current, menuPath, target, Recipe.MealDestination.SurfaceAndCallToMeal, Recipe.MealQuantity.Group, Recipe.MealRepetition.MakeOne, false, cost), iop.Target));
                }
            }
        }