-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathConnectingWindow.cs
112 lines (88 loc) · 3.51 KB
/
ConnectingWindow.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
using Multiplayer.Client.Networking;
using Steamworks;
using System.Linq;
using Multiplayer.Client.Util;
using UnityEngine;
using Verse;
namespace Multiplayer.Client
{
public abstract class BaseConnectingWindow : Window, IConnectionStatusListener
{
public override Vector2 InitialSize => new(400f, 150f);
protected abstract string ConnectingString { get; }
public bool returnToServerBrowser;
protected string result;
// Only show this window if there aren't any others during connecting
private bool ShouldShow => Find.WindowStack.Windows.Count(w => w.layer == WindowLayer.Dialog) == 1;
public BaseConnectingWindow()
{
closeOnAccept = false;
closeOnCancel = false;
}
// ExtraOnGUI is called before drawing the window shadow and WindowOnGUI
public override void ExtraOnGUI()
{
drawShadow = ShouldShow;
}
public override void WindowOnGUI()
{
if (ShouldShow)
base.WindowOnGUI();
}
public override void DoWindowContents(Rect inRect)
{
string label;
if (Multiplayer.Client?.StateObj is ClientLoadingState { subState: LoadingState.Waiting })
label = "MpWaitingForGameData".Translate() + MpUI.FixedEllipsis();
else if (Multiplayer.Client?.StateObj is ClientLoadingState { subState: LoadingState.Downloading })
label = "MpDownloading".Translate(Multiplayer.Client.FragmentProgress);
else
label = result ?? (ConnectingString + MpUI.FixedEllipsis());
const float buttonHeight = 40f;
const float buttonWidth = 120f;
Rect textRect = inRect;
textRect.yMax -= (buttonHeight + 10f);
Text.Anchor = TextAnchor.MiddleCenter;
Widgets.Label(textRect, label);
Text.Anchor = TextAnchor.UpperLeft;
Rect buttonRect = new Rect((inRect.width - buttonWidth) / 2f, inRect.height - buttonHeight - 10f, buttonWidth, buttonHeight);
if (Widgets.ButtonText(buttonRect, "CancelButton".Translate(), true, false, true))
{
Close();
}
}
public override void PostClose()
{
Multiplayer.StopMultiplayer();
if (returnToServerBrowser)
Find.WindowStack.Add(new ServerBrowser());
}
public void Connected() => result = "MpConnected".Translate();
public void Disconnected() { }
}
public class RejoiningWindow : BaseConnectingWindow
{
protected override string ConnectingString => "MpJoining".Translate();
}
public class ConnectingWindow : BaseConnectingWindow
{
protected override string ConnectingString =>
string.Format("MpConnectingTo".Translate("{0}", port), address);
private string address;
private int port;
public ConnectingWindow(string address, int port)
{
this.address = address;
this.port = port;
}
}
public class SteamConnectingWindow : BaseConnectingWindow
{
protected override string ConnectingString => (hostUsername.NullOrEmpty() ? "" : $"{"MpSteamConnectingTo".Translate(hostUsername)}\n") + "MpSteamConnectingWaiting".Translate();
public string hostUsername;
public SteamConnectingWindow(CSteamID hostId)
{
hostUsername = SteamFriends.GetFriendPersonaName(hostId);
}
}
}