コード例 #1
0
ファイル: World.cs プロジェクト: ndech/Alpha
        public IEnumerable <Notification> GetLiveNotifications(RealmToken realm)
        {
            List <Notification> notification = _liveNotifications.Where(n => n.ValidForRealm(realm)).ToList();

            _liveNotifications.Clear();
            return(notification);
        }
コード例 #2
0
ファイル: World.cs プロジェクト: ndech/Alpha
 public void RegisterCommands(RealmToken source, IEnumerable <Command> commands)
 {
     foreach (Command command in commands)
     {
         RegisterCommand(source, command);
     }
 }
コード例 #3
0
ファイル: World.cs プロジェクト: ndech/Alpha
 public void RegisterCommand(RealmToken source, Command command)
 {
     command.Source = source;
     if (_interactiveModeRealms.Contains(source))
     {
         DebugConsole.WriteLine("Interactive command : " + command);
         new Thread(() => _datalock.ImmediateWrite(() => ExecuteCommand(command))).Start();
         DebugConsole.WriteLine("Interactive command done : " + command);
         return;
     }
     DebugConsole.WriteLine("Defered command : " + command);
     _commands.Enqueue(command);
 }
コード例 #4
0
ファイル: Game.cs プロジェクト: ndech/Alpha
 private void NewRealm(RealmToken token)
 {
     _tokens.Add(token);
     _ais.Add(new Ai(token, _world));
 }
コード例 #5
0
ファイル: World.cs プロジェクト: ndech/Alpha
 public void RegisterInteractiveRealm(RealmToken token)
 {
     _interactiveModeRealms.Add(token);
 }
コード例 #6
0
ファイル: World.cs プロジェクト: ndech/Alpha
 public void RegisterInteractiveRealm(RealmToken token)
 {
     _interactiveModeRealms.Add(token);
 }
コード例 #7
0
ファイル: World.cs プロジェクト: ndech/Alpha
 public void RegisterCommands(RealmToken source, IEnumerable<Command> commands)
 {
     foreach (Command command in commands)
         RegisterCommand(source, command);
 }
コード例 #8
0
ファイル: World.cs プロジェクト: ndech/Alpha
 public void RegisterCommand(RealmToken source, Command command)
 {
     command.Source = source;
     if (_interactiveModeRealms.Contains(source))
     {
         DebugConsole.WriteLine("Interactive command : " + command);
         new Thread(()=>_datalock.ImmediateWrite(() => ExecuteCommand(command))).Start();
         DebugConsole.WriteLine("Interactive command done : " + command);
         return;
     }
     DebugConsole.WriteLine("Defered command : "+command);
     _commands.Enqueue(command);
 }
コード例 #9
0
ファイル: World.cs プロジェクト: ndech/Alpha
 public IEnumerable<Notification> GetLiveNotifications(RealmToken realm)
 {
     List<Notification> notification = _liveNotifications.Where(n=>n.ValidForRealm(realm)).ToList();
     _liveNotifications.Clear();
     return notification;
 }
コード例 #10
0
ファイル: Ai.cs プロジェクト: ndech/Alpha
 public Ai(RealmToken realm, IWorld world)
 {
     _realm = realm;
     _world = world;
 }