コード例 #1
0
 public static NetworkClient getInstance(string ipAddress, int sendPort, int listenPort)
 {
     if (instance == null)
     {
         instance = new NetworkClient(ipAddress, sendPort, listenPort);
         return instance;
     }
     instance.StopListening();
     instance.Set(ipAddress, sendPort, listenPort);
     return instance;
 }
コード例 #2
0
ファイル: Game1.cs プロジェクト: janakact/Game_Client_XNA
        private void ProcessKeyboardHome()
        {
            KeyboardState keybState = Keyboard.GetState();
            if (keybState.IsKeyDown(Keys.Enter))
            {
                Constant.LoadFromText(textboxAddress.Text);
                if(networkClient!=null)
                networkClient.StopListening();

                networkClient = NetworkClient.getInstance(Constant.SERVER_IP, Constant.SEND_PORT, Constant.LISTEN_PORT);

                //Join the game
                networkClient.Send("JOIN#");

                networkClient.StartListening();

                //To send messages
                msgSender = new Game.AI.MessageSender(networkClient);
                isHome = false;
            }
        }