-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathRejoiner.cs
36 lines (29 loc) · 1.02 KB
/
Rejoiner.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
using Multiplayer.Client.Util;
using Multiplayer.Common;
using Verse;
using Verse.Profile;
namespace Multiplayer.Client;
public static class Rejoiner
{
public static void DoRejoin()
{
Multiplayer.Client.Send(Packets.Client_RequestRejoin);
Multiplayer.Client.ChangeState(ConnectionStateEnum.ClientLoading);
Multiplayer.Client.GetState<ClientLoadingState>()!.subState = LoadingState.Waiting;
Multiplayer.Client.Lenient = true;
Multiplayer.session.desynced = false;
Log.Message("Multiplayer: rejoining");
// From GenScene.GoToMainMenu
LongEventHandler.ClearQueuedEvents();
LongEventHandler.QueueLongEvent(() =>
{
MemoryUtility.ClearAllMapsAndWorld();
Current.Game = null;
LongEventHandler.ExecuteWhenFinished(() =>
{
MpUI.ClearWindowStack();
Find.WindowStack.Add(new RejoiningWindow());
});
}, "Entry", "LoadingLongEvent", true, null, false);
}
}