示例#1
0
        /// <summary>
        /// 行動方針の決定
        /// </summary>
        protected virtual void PlanAction()
        {
            ActionStrategyArgs args = new ActionStrategyArgs {
                Agi = Agi, GuessResult = LatestGuess
            };

            LatestPlan = ActionPlanner.Execute(args);
        }
示例#2
0
        /// <summary>
        /// 行動方針の決定
        /// </summary>
        protected override void PlanAction()
        {
            ActionStrategyArgs args = new ActionStrategyArgs {
                Agi = Agi, GuessResult = LatestGuess
            };

            args.Items.Add("AgentStatistics", statistics);
            LatestPlan = ActionPlanner.Execute(args);
        }