示例#1
0
 public override void notify(AICommunicationSymbols symbols)
 {
     if (symbols == AICommunicationSymbols.AI_STOP)
     {
         isDone = true;
     }
 }
示例#2
0
        public bool notify(AICommunicationSymbols symbols, bool deepOnly)
        {
            if (aiSteps.Count > 0)
            {
                if (deepOnly)
                {
                    if (!CurrentStep.notify(symbols, deepOnly))
                    {
                        CurrentStep.notify(symbols);
                        return(true);
                    }
                }
                else
                {
                    CurrentStep.notify(symbols);
                    CurrentStep.notify(symbols, deepOnly);
                    return(true);
                }
            }

            return(false);
        }
示例#3
0
 public virtual void notify(AICommunicationSymbols symbols)
 {
 }