예제 #1
0
파일: Client.cs 프로젝트: steffalon/Tango
 /// <summary>
 ///     Attempt to disconnect from the server
 /// </summary>
 public void Disconnect()
 {
     _logger.Info("Disconnecting from server...");
     // Update status and stop client
     Status = ClientStatus.Disconnected;
     _netClient.Stop();
 }
예제 #2
0
        /// <summary>
        ///     Stops the server
        /// </summary>
        public void StopServer()
        {
            // Update status and stop the server
            Status = ServerStatus.Stopped;
            _netServer.Stop();

            MultiplayerManager.Instance.PlayerList.Clear();

            CSM.Log("Stopped server");
        }
예제 #3
0
파일: Client.cs 프로젝트: nzgamer41/Tango
        /// <summary>
        ///     Attempt to disconnect from the server
        /// </summary>
        public void Disconnect()
        {
            // Update status and stop client
            Status = ClientStatus.Disconnected;
            _netClient.Stop();
            MultiplayerManager.Instance.PlayerList.Clear();
            TransactionHandler.ClearTransactions();

            _logger.Info("Disconnected from server");
        }
예제 #4
0
        /// <summary>
        ///     Stops the server
        /// </summary>
        public void StopServer()
        {
            // Update status and stop the server
            Status = ServerStatus.Stopped;
            _netServer.Stop();

            MultiplayerManager.Instance.PlayerList.Clear();
            TransactionHandler.ClearTransactions();

            _logger.Info("Server stopped.");
        }
예제 #5
0
        /// <summary>
        ///     Attempt to disconnect from the server
        /// </summary>
        public void Disconnect()
        {
            bool needsUnload = (Status == ClientStatus.Connected);

            // Update status and stop client
            Status = ClientStatus.Disconnected;
            _netClient.Stop();
            MultiplayerManager.Instance.PlayerList.Clear();
            TransactionHandler.ClearTransactions();
            ToolSimulator.Clear();

            if (needsUnload)
            {
                // Go back to the main menu after disconnecting
                Singleton <LoadingManager> .instance.UnloadLevel();
            }

            _logger.Info("Disconnected from server");
        }
예제 #6
0
파일: Client.cs 프로젝트: slimlime/Tango
 /// <summary>
 ///     Attempt to disconnect from the server
 /// </summary>
 public void Disconnect()
 {
     // Update status and stop client
     Status = ClientStatus.Disconnected;
     _netClient.Stop();
 }