Пример #1
0
        private ArrayList _history; // store the previous agenda items

        public PlanGraph(SQLiteKBase kbase, Executor exec)
        {
            this._kbase = kbase;
            this._exec = exec;
            this._root = null;
            this._currDlgAct = null;
            this._agenda = new ArrayList();
            this._history = new ArrayList();
            this._respList = new ArrayList();
        }
Пример #2
0
 public DialogueManager(string context, ArcMapManager mapMgr, string kbase)
 {
     this._context      = context;
     this._dlgID        = Utility.GetUniqueKey();
     this._exec         = new Executor(mapMgr);
     this._kbase        = new SQLiteKBase(kbase);;
     this._participants = new ArrayList();
     this._initiator    = null;
     this._parser       = new SimpleParser();
 }
Пример #3
0
        private ArrayList _history; // store the previous agenda items

        public PlanGraph(SQLiteKBase kbase, Executor exec)
        {
            this._kbase           = kbase;
            this._exec            = exec;
            this._root            = null;
            this._currDlgAct      = null;
            this._actionNodeStack = new Stack <ActionNode>();
            this._agenda          = new ArrayList();
            this._history         = new ArrayList();
            this._respList        = new ArrayList();
        }
Пример #4
0
        public DialogueManager(string context, ArcMapManager mapMgr, string kbase)
        {
            this._context = context;
            this._dlgID = Utility.GetUniqueKey();

            this._exec = new Executor(mapMgr);
            this._kbase = new SQLiteKBase(kbase); ;
            this._participants = new ArrayList();
            
            this._initiator = null;
            this._parser = new SimpleParser();
        }