-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathOnMainThread.cs
100 lines (82 loc) · 2.87 KB
/
OnMainThread.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
using Multiplayer.Client.Networking;
using Multiplayer.Common;
using System;
using System.Collections.Generic;
using Multiplayer.Client.Util;
using UnityEngine;
using Verse;
using Verse.Steam;
namespace Multiplayer.Client
{
public class OnMainThread : MonoBehaviour
{
private static ActionQueue queue = new();
private static List<(Action action, float atTime)> scheduled = new();
public void Update()
{
// Changing scene
if (LongEventHandler.currentEvent is { levelToLoad: not null })
return;
MpInput.Update();
try
{
Multiplayer.session?.netClient?.PollEvents();
}
catch (Exception e)
{
Log.Error($"Exception handling network events: {e}");
}
queue.RunQueue(Log.Error);
RunScheduled();
if (SteamManager.Initialized)
SteamIntegration.UpdateRichPresence();
if (Multiplayer.Client == null) return;
Multiplayer.session.Update();
SyncFieldUtil.UpdateSync();
if (!Multiplayer.arbiterInstance && Application.isFocused && !TickPatch.Simulating && !Multiplayer.session.desynced)
Multiplayer.session.playerCursors.SendVisuals();
if (Multiplayer.Client is SteamBaseConn steamConn && SteamManager.Initialized)
foreach (var packet in SteamIntegration.ReadPackets(steamConn.recvChannel))
// Note: receive can lead to disconnection
if (steamConn.remoteId == packet.remote && Multiplayer.Client != null)
ClientUtil.HandleReceive(packet.data, packet.reliable);
}
public void OnApplicationQuit()
{
Multiplayer.StopMultiplayer();
}
private static void RunScheduled()
{
for (int i = scheduled.Count - 1; i >= 0; i--)
{
try
{
var item = scheduled[i];
if (Time.realtimeSinceStartup > item.atTime)
{
scheduled.RemoveAt(i);
item.action();
}
}
catch (Exception e)
{
Log.Error($"Exception running scheduled action: {e}");
}
if (scheduled.Count == 0) // The action can call ClearScheduled
return;
}
}
public static void Enqueue(Action action)
{
queue.Enqueue(action);
}
public static void Schedule(Action action, float time)
{
scheduled.Add((action, Time.realtimeSinceStartup + time));
}
public static void ClearScheduled()
{
scheduled.Clear();
}
}
}