public static async void SendController(List <GameSession> session, int protocol, Dictionary <string, string> keyValue)
 {
     foreach (var row in session)
     {
         await Task.Factory.StartNew(() =>
         {
             ControllerContext context = new ControllerContext(keyValue);
             ControllerBase controller = CreateController(context);
             byte[] sendByte           = controller.ProcessAction();
             List <byte> list          = new List <byte>();
             list.Add((byte)(protocol >> 8));
             list.Add((byte)(protocol & 0xFF));
             list.AddRange(sendByte);
             row.SocketClient.Send(list.ToArray());
         }
                                     );
     }
 }
Exemplo n.º 2
0
        public static void Init(string ip, int port)
        {
            var server = new WebSocketServer(string.Format("ws://{0}:{1}", ip, port));

            server.Start(socket =>
            {
                socket.OnOpen = () =>
                {
                    GameSessionManager.AddSession(GameSession.Parse(socket));
                    WebSocketServerWrappe.OnOpen(socket.ConnectionInfo.ClientIpAddress + ":" + socket.ConnectionInfo.ClientPort);
                };
                socket.OnClose = () =>
                {
                    GameSession session = GameSessionManager.RemoveSession(socket);


                    WebSocketServerWrappe.OnClose(socket.ConnectionInfo.ClientIpAddress + ":" + socket.ConnectionInfo.ClientPort, session.User);
                };
                socket.OnMessage = message =>
                {
                    try
                    {
                        if (message == "ping")
                        {
                            return;
                        }

                        message = Crypto.DESDecrypt(message, DesKey);

                        WebSocketServerWrappe.OnRevice(message);
                        Dictionary <string, string> keyValue = WebSocketPackage.UnPackage(message);

                        if (keyValue == null)
                        {
                            socket.OnError(new Exception("异常包"));
                            return;
                        }

                        ControllerContext context = new ControllerContext(keyValue);
                        context.Session           = GameSessionManager.GetSession(socket);
                        ControllerBase controller = ControllerFactory.CreateController(context);
                        if (controller.IsAuth() && !controller.IsLogin())
                        {
                            if (controller.Login())
                            {
                                byte[] sendByte = controller.ProcessAction();
                                if (sendByte == null)
                                {
                                    return;
                                }
                                List <byte> list = new List <byte>();
                                list.Add((byte)(context.ProtocolId >> 8));
                                list.Add((byte)(context.ProtocolId & 0xFF));
                                list.AddRange(sendByte);
                                WebSocketServerWrappe.OnSend(list.ToArray());
                                socket.Send(list.ToArray());
                            }
                            else
                            {
                                socket.OnError(new Exception("断线重登处理失败"));
                            }
                        }
                        else
                        {
                            byte[] sendByte = controller.ProcessAction();
                            if (sendByte != null)
                            {
                                List <byte> list = new List <byte>();
                                list.Add((byte)(context.ProtocolId >> 8));
                                list.Add((byte)(context.ProtocolId & 0xFF));
                                list.AddRange(sendByte);
                                WebSocketServerWrappe.OnSend(list.ToArray());
                                socket.Send(list.ToArray());
                            }
                        }
                    }
                    catch (Exception ex)
                    {
                        socket.OnError(ex);
                    }
                };

                socket.OnError = error =>
                {
                    if (!socket.IsAvailable)
                    {
                        socket.OnClose();
                    }
                    else
                    {
                        byte[] array     = WebSocketServerWrappe.OnErrorMessage(error.Message, error);
                        List <byte> list = new List <byte>();
                        list.Add((byte)(9999 >> 8));
                        list.Add((byte)(9999 & 0xFF));
                        list.AddRange(array);
                        socket.Send(list.ToArray());
                    }
                };
            });
        }