Exemplo n.º 1
0
        public static void Welcome(Packet _packet)
        {
            string _msg  = _packet.ReadString();
            int    _myId = _packet.ReadInt();

            Debug.Log($"Message from server: {_msg}");
            Client.instance.myId = _myId;
            ClientSend.WelcomeReceived();
            //At this point both test are complete. The client is able to communicate with the server by both TCP and UDP.
            UIManager.instance.serverStatusText.color = Color.green;
            UIManager.instance.serverStatusText.text  = "Online";
            UIManager.instance.serverStatusText.GetComponentInChildren <Image>().color = Color.green;
            Client.instance.isConnected = true;
            Client.instance.udp.Connect(((IPEndPoint)Client.instance.tcp.socket.Client.LocalEndPoint).Port);
        }
Exemplo n.º 2
0
 public void LoginToServerButtonClick()
 {
     // Client.instance.ClientLoginRequest(usernameField.text, passwordField.text);
     ClientSend.SendLoginRequest();
 }