示例#1
0
        public async Task ProcessWebSocket(HttpContext context, WebSocket webSocket)
        {
            var connection = new Connection(context, webSocket);
            Console.WriteLine("Connect: {0}", context.Connection.RemoteIpAddress);

            var cancelToken = CancellationToken.None;
            var buffer = new byte[1024];
            WebSocketReceiveResult received =
                await webSocket.ReceiveAsync(new ArraySegment<byte>(buffer), cancelToken);

            while (!webSocket.CloseStatus.HasValue)
            {
                string text = System.Text.Encoding.UTF8.GetString(buffer, 0, received.Count);

                Console.WriteLine("Recd: {0}", text);

                try
                {
                    Cmd.Parse(text, connection)?.Run();
                }
                catch (Exception ex)
                {
                    Console.WriteLine("Unhandled exception: {0}", ex);
                }

                received = await webSocket.ReceiveAsync(new ArraySegment<byte>(buffer), cancelToken);
            }

            await webSocket.CloseAsync(webSocket.CloseStatus.Value, webSocket.CloseStatusDescription, cancelToken);
        }
示例#2
0
        public async Task ProcessWebSocket(HttpContext context, WebSocket webSocket)
        {
            var connection = new Connection(context, webSocket);
            _allConnections.Add(connection);
            Console.WriteLine("Connect: {0}", context.Connection.RemoteIpAddress);

            var cancelToken = CancellationToken.None;
            var buffer = new byte[1024];
            WebSocketReceiveResult received =
                await webSocket.ReceiveAsync(new ArraySegment<byte>(buffer), cancelToken);

            while (!webSocket.CloseStatus.HasValue)
            {
                string text = System.Text.Encoding.UTF8.GetString(buffer, 0, received.Count);

                Console.WriteLine("Recd: {0}", text);

                try
                {
                    var cmd = Cmd.Parse(text, connection);
                    if (cmd != null) {
                        // TODO: Remove these dependencies from Cmd
                        cmd.SpawnDaemon = _spawnDaemon;
                        cmd.DecayDaemon = _decayDaemon;
                        cmd.Run();
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine("Unhandled exception: {0}", ex);
                }

                received = await webSocket.ReceiveAsync(new ArraySegment<byte>(buffer), cancelToken);
            }

            _allConnections.Remove(connection);
            await webSocket.CloseAsync(webSocket.CloseStatus.Value, webSocket.CloseStatusDescription, cancelToken);
        }
示例#3
0
文件: Logout.cs 项目: McBits/DungeonR
 public LogoutCmd(Connection connection) : base(connection)
 {
     AccessLevel = None;
 }
示例#4
0
文件: Unhide.cs 项目: McBits/DungeonR
 public UnhideCmd(Connection connection)
     : base(connection)
 {
 }
示例#5
0
 public RegisterCmd(Connection connection) : base(connection)
 {
     this.AccessLevel = None;
 }
示例#6
0
文件: Get.cs 项目: McBits/DungeonR
 public GetCmd(Connection connection)
     : base(connection)
 {
 }
示例#7
0
文件: Drop.cs 项目: McBits/DungeonR
 public DropCmd(Connection connection)
     : base(connection)
 {
 }
示例#8
0
文件: Eat.cs 项目: McBits/DungeonR
 public EatCmd(Connection connection)
     : base(connection)
 {
 }
示例#9
0
文件: Give.cs 项目: McBits/DungeonR
 public GiveCmd(Connection connection)
     : base(connection)
 {
 }
示例#10
0
文件: Score.cs 项目: McBits/DungeonR
 public ScoreCmd(Connection connection) : base(connection)
 {
     AccessLevel = Guest;
 }
示例#11
0
文件: Attack.cs 项目: McBits/DungeonR
 public AttackCmd(Connection connection) : base(connection) { }
示例#12
0
 public MoveToSceneCmd(Connection connection)
     : base(connection)
 {
 }
示例#13
0
 public HideItemCmd(Connection connection)
     : base(connection)
 {
 }
示例#14
0
文件: Use.cs 项目: McBits/DungeonR
 public UseCmd(Connection connection)
     : base(connection)
 {
 }
示例#15
0
文件: Put.cs 项目: McBits/DungeonR
 public PutCmd(Connection connection)
     : base(connection)
 {
 }