Skip to content
This repository was archived by the owner on Jul 18, 2020. It is now read-only.

Commit 994f60b

Browse files
committed
Version 0.4.2, bugfixes
1 parent e545e89 commit 994f60b

10 files changed

+48
-12
lines changed

About/Manifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Manifest>
44

55
<identifier>Multiplayer</identifier>
6-
<version>0.4.1</version>
6+
<version>0.4.2</version>
77
<manifestUri>https://raw.githubusercontent.com/Zetrith/Multiplayer/master/About/Manifest.xml</manifestUri>
88
<downloadUri>https://github.com/Zetrith/Multiplayer/releases/latest</downloadUri>
99

Source/Client/ArbiterPatches.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace Multiplayer.Client
1414
{
15-
[HarmonyPatch(typeof(GUI), nameof(GUI.skin), MethodType.Getter)]
15+
[MpPatch(typeof(GUI), "get_" + nameof(GUI.skin))]
1616
static class GUISkinArbiter_Patch
1717
{
1818
static bool Prefix(ref GUISkin __result)
@@ -53,6 +53,7 @@ static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstruction> inst
5353
[MpPatch(typeof(Section), nameof(Section.RegenerateLayers))]
5454
[MpPatch(typeof(SectionLayer), nameof(SectionLayer.DrawLayer))]
5555
[MpPatch(typeof(Map), nameof(Map.MapUpdate))]
56+
[MpPatch(typeof(GUIStyle), nameof(GUIStyle.CalcSize))]
5657
static class CancelForArbiter
5758
{
5859
static bool Prefix() => !Multiplayer.arbiterInstance;

Source/Client/ClientNetworking.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ public SteamServerConn(CSteamID remoteId) : base(remoteId)
494494

495495
protected override void OnDisconnect()
496496
{
497-
serverPlayer.Server.OnDisconnected(this);
497+
serverPlayer.Server.OnDisconnected(this, MpDisconnectReason.ClientLeft);
498498
}
499499
}
500500

Source/Client/Multiplayer.cs

+20-3
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,8 @@ static Multiplayer()
152152
Sync.InitHandlers();
153153

154154
HandleCommandLine();
155+
156+
RuntimeHelpers.RunClassConstructor(typeof(Text).TypeHandle);
155157
}
156158

157159
private static void SetUsername()
@@ -174,6 +176,11 @@ private static void SetUsername()
174176
Multiplayer.username = "Player" + Rand.Range(0, 9999);
175177
}
176178

179+
private static void DoubleLongEvent(Action action, string textKey)
180+
{
181+
LongEventHandler.QueueLongEvent(() => LongEventHandler.QueueLongEvent(action, textKey, false, null), textKey, false, null);
182+
}
183+
177184
private static void HandleCommandLine()
178185
{
179186
if (GenCommandLine.TryGetCommandLineArg("connect", out string ip))
@@ -190,7 +197,7 @@ private static void HandleCommandLine()
190197
int.TryParse(split[1], out port);
191198

192199
if (IPAddress.TryParse(ip, out IPAddress addr))
193-
LongEventHandler.QueueLongEvent(() => ClientUtil.TryConnect(addr, port), "Connecting", false, null);
200+
DoubleLongEvent(() => ClientUtil.TryConnect(addr, port), "Connecting");
194201
}
195202

196203
if (GenCommandLine.CommandLineArgPassed("arbiter"))
@@ -202,7 +209,7 @@ private static void HandleCommandLine()
202209

203210
if (GenCommandLine.TryGetCommandLineArg("replay", out string replay))
204211
{
205-
LongEventHandler.QueueLongEvent(() =>
212+
DoubleLongEvent(() =>
206213
{
207214
Replay.LoadReplay(Replay.ReplayFile(replay), true, () =>
208215
{
@@ -214,7 +221,7 @@ private static void HandleCommandLine()
214221

215222
Application.Quit();
216223
});
217-
}, "Replay", false, null);
224+
}, "Replay");
218225
}
219226

220227
if (GenCommandLine.CommandLineArgPassed("printsync"))
@@ -332,6 +339,16 @@ private static void DoPatches()
332339
new HarmonyMethod(typeof(PageModsPatch), nameof(PageModsPatch.Postfix))
333340
);
334341
}
342+
343+
var cancelForArbiter = new HarmonyMethod(typeof(CancelForArbiter), "Prefix");
344+
345+
var prisonLaborBehavior = MpReflection.GetTypeByName("PrisonLabor.Behaviour_MotivationIcon");
346+
if (prisonLaborBehavior != null)
347+
harmony.Patch(prisonLaborBehavior.GetMethod("Update", new Type[0]), cancelForArbiter);
348+
349+
var prisonLaborPawnIcons = MpReflection.GetTypeByName("PrisonLabor.Core.GUI_Components.PawnIcons") ?? MpReflection.GetTypeByName("PrisonLabor.MapComponent_Icons");
350+
if (prisonLaborPawnIcons != null)
351+
harmony.Patch(prisonLaborPawnIcons.GetMethod("MapComponentTick", new Type[0]), cancelForArbiter);
335352
}
336353

337354
public static UniqueList<Texture2D> icons = new UniqueList<Texture2D>();

Source/Client/Patches.cs

+16
Original file line numberDiff line numberDiff line change
@@ -830,6 +830,7 @@ static class LoadGameMarker
830830
[MpPatch(typeof(SoundStarter), nameof(SoundStarter.PlayOneShot))]
831831
[MpPatch(typeof(Command_SetPlantToGrow), nameof(Command_SetPlantToGrow.WarnAsAppropriate))]
832832
[MpPatch(typeof(TutorUtility), nameof(TutorUtility.DoModalDialogIfNotKnown))]
833+
[MpPatch(typeof(CameraJumper), nameof(CameraJumper.TryHideWorld))]
833834
static class CancelFeedbackNotTargetedAtMe
834835
{
835836
public static bool Cancel =>
@@ -840,6 +841,18 @@ static class CancelFeedbackNotTargetedAtMe
840841
static bool Prefix() => !Cancel;
841842
}
842843

844+
[HarmonyPatch(typeof(Targeter), nameof(Targeter.BeginTargeting), typeof(TargetingParameters), typeof(Action<LocalTargetInfo>), typeof(Pawn), typeof(Action), typeof(Texture2D))]
845+
static class CancelBeginTargeting
846+
{
847+
static bool Prefix()
848+
{
849+
if (TickPatch.currentExecutingCmdIssuedBySelf && MapAsyncTimeComp.executingCmdMap != null)
850+
MapAsyncTimeComp.keepTheMap = true;
851+
852+
return !CancelFeedbackNotTargetedAtMe.Cancel;
853+
}
854+
}
855+
843856
[MpPatch(typeof(MoteMaker), nameof(MoteMaker.MakeStaticMote), new[] { typeof(IntVec3), typeof(Map), typeof(ThingDef), typeof(float) })]
844857
[MpPatch(typeof(MoteMaker), nameof(MoteMaker.MakeStaticMote), new[] { typeof(Vector3), typeof(Map), typeof(ThingDef), typeof(float) })]
845858
static class CancelMotesNotTargetedAtMe
@@ -1058,6 +1071,9 @@ public static void SetupMap(Map map)
10581071
async.mapTicks = Find.Maps.Where(m => m != map).Select(m => m.AsyncTime()?.mapTicks).Max() ?? Find.TickManager.TicksGame;
10591072
async.storyteller = new Storyteller(Find.Storyteller.def, Find.Storyteller.difficulty);
10601073
async.storyWatcher = new StoryWatcher();
1074+
1075+
if (!Multiplayer.WorldComp.asyncTime)
1076+
async.TimeSpeed = Find.TickManager.CurTimeSpeed;
10611077
}
10621078
}
10631079

Source/Client/PlayerCursors.cs

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ static void Postfix()
7474
{
7575
if (!drawnThisUpdate.Add(sel.Key)) continue;
7676
if (!ThingsById.thingsById.TryGetValue(sel.Key, out Thing thing)) continue;
77+
if (thing.Map != Find.CurrentMap) continue;
7778

7879
selTimes[thing] = sel.Value;
7980
SelectionDrawerUtility.CalculateSelectionBracketPositionsWorld(SelectionDrawer.bracketLocs, thing, thing.DrawPos, thing.RotatedSize.ToVector2(), selTimes, Vector2.one, 1f);

Source/Client/ScribeUtil.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void UnregisterAllTemp()
3131

3232
public void UnregisterAllFrom(Map map)
3333
{
34-
foreach (var val in allObjectsByLoadID.Values)
34+
foreach (var val in allObjectsByLoadID.Values.ToArray())
3535
{
3636
if (val is Thing thing && thing.Map == map ||
3737
val is PassingShip ship && ship.Map == map ||

Source/Common/MultiplayerServer.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public ServerPlayer OnConnected(IConnection conn)
220220
return conn.serverPlayer;
221221
}
222222

223-
public void OnDisconnected(IConnection conn)
223+
public void OnDisconnected(IConnection conn, MpDisconnectReason reason)
224224
{
225225
if (conn.State == ConnectionStateEnum.Disconnected) return;
226226

@@ -243,7 +243,7 @@ public void OnDisconnected(IConnection conn)
243243

244244
conn.State = ConnectionStateEnum.Disconnected;
245245

246-
MpLog.Log($"Disconnected: {conn}");
246+
MpLog.Log($"Disconnected ({reason}): {conn}");
247247
}
248248

249249
public void SendToAll(Packets id)
@@ -371,7 +371,7 @@ public void OnPeerConnected(NetPeer peer)
371371
public void OnPeerDisconnected(NetPeer peer, DisconnectInfo disconnectInfo)
372372
{
373373
IConnection conn = peer.GetConnection();
374-
server.OnDisconnected(conn);
374+
server.OnDisconnected(conn, MpDisconnectReason.ClientLeft);
375375
}
376376

377377
public void OnNetworkLatencyUpdate(NetPeer peer, int latency)
@@ -468,7 +468,7 @@ public void Disconnect(string reasonKey)
468468
public void Disconnect(MpDisconnectReason reason, byte[] data = null)
469469
{
470470
conn.Close(reason, data);
471-
Server.OnDisconnected(conn);
471+
Server.OnDisconnected(conn, reason);
472472
}
473473

474474
public void SendChat(string msg)

Source/Common/Networking.cs

+1
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ public enum MpDisconnectReason : byte
253253
ServerClosed,
254254
ServerFull,
255255
Kick,
256+
ClientLeft,
256257
}
257258

258259
public class PacketReadException : Exception

Source/Common/Version.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
public static class MpVersion
44
{
5-
public const string Version = "0.4.1";
5+
public const string Version = "0.4.2";
66
public const int Protocol = 11;
77

88
#if DEBUG

0 commit comments

Comments
 (0)