Example #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Welcome to the Navigation Matrix Console by CMDR Antrys\nBased on A.E.R. By SingularTier");
            NMDB data = new NMDB(@"json\");
            NMTalk talk = new NMTalk();
            Personality person = new Personality(talk, data);
            //Settings.ReloadSettings();
            _AerHandler = new NMHandler(data, person);
            //I know this is bad, but there's no good way to get the delegate surfaced out of AerInput in to AerTalk yet.
            // This could be solved with a service registry, but I haven't thought that through yet
            _AerInput = new NMInput(@"Grammars\", person.GrammarLoaded_Handler);

            HandleInput();
        }
Example #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Welcome to the A.E.R. Interface Console");
            AerDB data = new AerDB(@"json\");
            AerTalk talk = new AerTalk();

            Personality person = new Personality(talk, data);
            
            _AerHandler = new AerHandler(data, person);
            //I know this is bad, but there's no good way to get the delegate surfaced out of AerInput in to AerTalk yet.
            // This could be solved with a service registry, but I haven't thought that through yet
            _AerInput = new AerInput(@"Grammars\", person.GrammarLoaded_Handler); 

            HandleInput();
        }
Example #3
0
        public static void ExecuteThread()
        {
            AerTalk talk = new AerTalk();
            AerDB data = new AerDB(AppDomain.CurrentDomain.BaseDirectory + @"\Apps\AER\json\");
            Personality person = new Personality(talk, data);
            _AerHandler = new AerHandler(data, person);
            _AerInput = new AerInput(AppDomain.CurrentDomain.BaseDirectory + @"\Apps\AER\Grammars\", person.GrammarLoaded_Handler);

            while(_RunWorker)
            {
                if (_AerInput.NewInput)
                {
                    _AerInput.NewInput = false;
                    _AerHandler.InputHandler(_AerInput.LastResult);
                }
            }
        }
Example #4
0
        public void ExecuteThread()
        {
            AerDB data = new AerDB(@"json\");
            AerTalk talk = new AerTalk();

            Personality person = new Personality(talk, data);
            AerHandler handler = new AerHandler(data, person);
            //I know this is bad, but there's no good way to get the delegate surfaced out of AerInput in to AerTalk yet.
            // This could be solved with a service registry, but I haven't thought that through yet
            AerInput input = new AerInput(@"Grammars\", person.GrammarLoaded_Handler); 

            while (_RunWorker)
            {
                if (input.NewInput)
                {
                    input.NewInput = false;
                    handler.InputHandler(input.LastResult);
                }
                Thread.Sleep(10); //Keep CPU usage down until we handle responses async
            }
        }
Example #5
0
 public AerHandler(AerDB data, Personality personality)
 {
     _Data = data;
     _Personality = personality;
 }
Example #6
0
 public NMHandler(NMDB data, Personality personality)
 {
     _Data = data;
     _Personality = personality;
 }