mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
151 lines
3.5 KiB
C#
151 lines
3.5 KiB
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using SanAndreasUnity.Utilities;
|
|
using SanAndreasUnity.Net;
|
|
using System.Linq;
|
|
|
|
namespace SanAndreasUnity.UI
|
|
{
|
|
|
|
public class JoinGameWindow : PauseMenuWindow
|
|
{
|
|
[SerializeField] string m_ipStr = "127.0.0.1";
|
|
string m_portStr = NetManager.defaultListenPortNumber.ToString();
|
|
|
|
string[] m_tabNames = new string[]{"Direct", "LAN"};
|
|
int m_currentTabIndex = 0;
|
|
|
|
Mirror.NetworkDiscoveryHUD m_netDiscoveryHUD;
|
|
|
|
|
|
|
|
JoinGameWindow()
|
|
{
|
|
|
|
// set default parameters
|
|
|
|
this.windowName = "Join Game";
|
|
this.useScrollView = true;
|
|
|
|
}
|
|
|
|
void Start ()
|
|
{
|
|
// adjust rect
|
|
float width = Mathf.Min(650, Screen.width * 0.9f);
|
|
this.windowRect = GUIUtils.GetCenteredRect(new Vector2(width, 400));
|
|
|
|
m_netDiscoveryHUD = Mirror.NetworkManager.singleton.GetComponentOrThrow<Mirror.NetworkDiscoveryHUD>();
|
|
m_netDiscoveryHUD.connectAction = this.ConnectFromDiscovery;
|
|
m_netDiscoveryHUD.drawGUI = false;
|
|
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
if (PauseMenu.IsOpened)
|
|
this.IsOpened = false;
|
|
}
|
|
|
|
|
|
protected override void OnWindowGUI ()
|
|
{
|
|
|
|
m_currentTabIndex = GUIUtils.TabsControl(m_currentTabIndex, m_tabNames);
|
|
|
|
GUILayout.Space(20);
|
|
|
|
if (0 == m_currentTabIndex)
|
|
{
|
|
GUILayout.Label ("IP:");
|
|
m_ipStr = GUILayout.TextField(m_ipStr, GUILayout.Width(200));
|
|
|
|
GUILayout.Label ("Port:");
|
|
m_portStr = GUILayout.TextField(m_portStr, GUILayout.Width(100));
|
|
}
|
|
else if (1 == m_currentTabIndex)
|
|
{
|
|
m_netDiscoveryHUD.width = (int) this.WindowSize.x - 30;
|
|
m_netDiscoveryHUD.DisplayServers();
|
|
}
|
|
|
|
}
|
|
|
|
protected override void OnWindowGUIAfterContent()
|
|
{
|
|
|
|
// label with status
|
|
string strStatus = "Disconnected";
|
|
if (NetStatus.IsClientConnecting())
|
|
{
|
|
strStatus = "Connecting.";
|
|
for (int i = 0; i < ((int)Time.realtimeSinceStartup) % 3; i++)
|
|
strStatus += ".";
|
|
}
|
|
else if (NetStatus.IsClientConnected())
|
|
{
|
|
strStatus = "Connected";
|
|
}
|
|
GUILayout.Label("Status: " + strStatus);
|
|
|
|
// button for connecting/disconnecting/refreshing LAN
|
|
|
|
string buttonText = "Connect";
|
|
System.Action buttonAction = this.ConnectDirectly;
|
|
if (NetStatus.IsClientConnecting())
|
|
{
|
|
buttonText = "Disconnect";
|
|
buttonAction = this.Disconnect;
|
|
}
|
|
else if (NetStatus.IsClientConnected())
|
|
{
|
|
GUI.enabled = false;
|
|
buttonText = "Connected";
|
|
buttonAction = () => {};
|
|
}
|
|
else
|
|
{
|
|
if (1 == m_currentTabIndex)
|
|
{
|
|
GUI.enabled = ! m_netDiscoveryHUD.IsRefreshing;
|
|
buttonText = m_netDiscoveryHUD.IsRefreshing ? ( "Refreshing." + new string('.', (int) ((Time.time * 2) % 3)) ) : "Refresh LAN";
|
|
buttonAction = () => m_netDiscoveryHUD.Refresh();
|
|
}
|
|
}
|
|
|
|
if (GUIUtils.ButtonWithCalculatedSize(buttonText, 80, 30))
|
|
buttonAction();
|
|
|
|
}
|
|
|
|
void ConnectDirectly()
|
|
{
|
|
this.Connect(m_ipStr, ushort.Parse(m_portStr));
|
|
}
|
|
|
|
void ConnectFromDiscovery(Mirror.NetworkDiscovery.DiscoveryInfo info)
|
|
{
|
|
this.Connect(info.EndPoint.Address.ToString(), ushort.Parse( info.KeyValuePairs[Mirror.NetworkDiscovery.kPortKey] ));
|
|
}
|
|
|
|
void Connect(string ip, ushort port)
|
|
{
|
|
try
|
|
{
|
|
NetManager.StartClient(ip, port);
|
|
}
|
|
catch (System.Exception ex)
|
|
{
|
|
Debug.LogException(ex);
|
|
MessageBox.Show("Error", ex.ToString());
|
|
}
|
|
}
|
|
|
|
void Disconnect()
|
|
{
|
|
NetManager.StopNetwork();
|
|
}
|
|
|
|
}
|
|
|
|
}
|