Example #1
0
 // private Center _Center;
 public Logic(
     ISoulBinder binder,
     Regulus.Utility.Console.IViewer viewer)
 {
     _Binder = binder;
     _Viewer = viewer;
 }
Example #2
0
        public TcpController(Regulus.Utility.Command command, Regulus.Utility.Console.IViewer view)
        {
            _Command = command;
            _View = view;

            _Machine = new Game.StageMachine();
        }
Example #3
0
        public Console(IEnumerable <Type> watch_types, Regulus.Utility.Console.IViewer view, Regulus.Utility.Console.IInput input) : base(view, input)
        {
            _WatchTypes = watch_types.Union(new Type[0]).ToArray();

            _Users    = new List <User>();
            _Updater  = new Utility.Updater();
            _Register = new AgentCommandRegister(Command);
        }
Example #4
0
        public RemotingController(Regulus.Utility.Command command, Regulus.Utility.Console.IViewer view)
        {
            _View    = view;
            _User    = new User();
            _Updater = new Regulus.Utility.Updater();

            _Command = command;
        }
Example #5
0
 public Visual(
     IGhostQuerier ghost_querier,
     Command command,
     Regulus.Utility.Console.IViewer viewer)
 {
     _GhostQuerier = ghost_querier;
     _Command      = command;
     _Viewer       = viewer;
 }
Example #6
0
        public StageRun(IEntry core, IProtocol protocol, Command command, int port, Regulus.Utility.Console.IViewer viewer, IListenable server)
        {
            _View    = viewer;
            _Command = command;

            _Server             = new Service(core, port, protocol, server);
            _Server.BreakEvent += _Break;
            _Launcher           = new Launcher();
            _Launcher.Push(_Server);
        }
Example #7
0
 public Bot(TestNativeUser.IUser user, string name,Regulus.Utility.Console.IViewer view,string ip,int port)
 {
     _Ip = ip; ;
     _Port = port;
     // TODO: Complete member initialization
     this.User = user;
     this._Name = name;
     _Machine = new Regulus.Utility.StageMachine();
     _View = view;
 }
Example #8
0
 public Bot(TestNativeUser.IUser user, string name, Regulus.Utility.Console.IViewer view, string ip, int port)
 {
     _Ip   = ip;;
     _Port = port;
     // TODO: Complete member initialization
     this.User  = user;
     this._Name = name;
     _Machine   = new Regulus.Utility.StageMachine();
     _View      = view;
 }
Example #9
0
 public Application(Regulus.Utility.Console.IViewer view, Regulus.Utility.Console.IInput input)
     : base(view, input)
 {
 }
Example #10
0
 public Appliaction(TestNativeUser.Application appliaction , Regulus.Utility.Console.IViewer view)
 {
     _Bots = new Regulus.Utility.Updater();
     this._Appliaction = appliaction;
     _View = view;
 }
Example #11
0
 public StageStart(Regulus.Utility.Command command , Regulus.Utility.Console.IViewer view)
 {
     _View = view;
     _Command = command;
 }
Example #12
0
 public SendStage(TestNativeUser.IUser user, Regulus.Utility.Console.IViewer view)
 {
     _User = user;
     _View = view;
 }
Example #13
0
 public Appliction(Regulus.Utility.Console.IViewer view)
 {
     _SampleClass = new SampleClass();
     _View = view;
 }
Example #14
0
 public Appliaction(TestNativeUser.Application appliaction, Regulus.Utility.Console.IViewer view)
 {
     _Bots             = new Regulus.Utility.Updater();
     this._Appliaction = appliaction;
     _View             = view;
 }
Example #15
0
 public SendStage(TestNativeUser.IUser user, Regulus.Utility.Console.IViewer view)
 {
     _User = user;
     _View = view;
 }