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

Commit bf9dbe9

Browse files
committed
Version 0.1.9, protocol 8
/steaminfo chat cmd
1 parent 2a39b14 commit bf9dbe9

8 files changed

+127
-81
lines changed

About/Manifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<Manifest>
44
<identifier>Multiplayer</identifier>
5-
<version>0.1.8</version>
5+
<version>0.1.9</version>
66
<manifestUri>https://github.com/Zetrith/Multiplayer/master/About/Manifest.xml</manifestUri>
77
<downloadUri>https://github.com/Zetrith/Multiplayer/releases/latest</downloadUri>
8-
</Manifest>
8+
</Manifest>

Source/Client/ChatWindow.cs

+37-1
Original file line numberDiff line numberDiff line change
@@ -284,14 +284,50 @@ public void SendMsg()
284284

285285
if (currentMsg.NullOrEmpty()) return;
286286

287-
if (Multiplayer.Client == null)
287+
if (currentMsg == "/steaminfo")
288+
OpenSteamDebug();
289+
else if (Multiplayer.Client == null)
288290
Multiplayer.session.AddMsg(Multiplayer.username + ": " + currentMsg);
289291
else
290292
Multiplayer.Client.Send(Packets.Client_Chat, currentMsg);
291293

292294
currentMsg = "";
293295
}
294296

297+
private void OpenSteamDebug()
298+
{
299+
var text = new StringBuilder();
300+
301+
if (Multiplayer.session != null)
302+
{
303+
foreach (var remote in Multiplayer.session.knownUsers)
304+
{
305+
text.AppendLine(SteamFriends.GetFriendPersonaName(remote));
306+
text.AppendLine(remote.ToString());
307+
308+
if (SteamNetworking.GetP2PSessionState(remote, out P2PSessionState_t state))
309+
{
310+
text.AppendLine($"Active: {state.m_bConnectionActive}");
311+
text.AppendLine($"Connecting: {state.m_bConnecting}");
312+
text.AppendLine($"Error: {state.m_eP2PSessionError}");
313+
text.AppendLine($"Using relay: {state.m_bUsingRelay}");
314+
text.AppendLine($"Bytes to send: {state.m_nBytesQueuedForSend}");
315+
text.AppendLine($"Packets to send: {state.m_nPacketsQueuedForSend}");
316+
text.AppendLine($"Remote IP: {state.m_nRemoteIP}");
317+
text.AppendLine($"Remote port: {state.m_nRemotePort}");
318+
}
319+
else
320+
{
321+
text.AppendLine("No connection");
322+
}
323+
324+
text.Append("\n");
325+
}
326+
}
327+
328+
Find.WindowStack.Add(new DebugTextWindow(text.ToString()));
329+
}
330+
295331
public void OnChatReceived()
296332
{
297333
chatScroll.y = messagesHeight;

Source/Client/DesyncCheck.cs

-74
Original file line numberDiff line numberDiff line change
@@ -287,78 +287,4 @@ public SyncMapInfo(int mapId)
287287
}
288288
}
289289

290-
public class DesyncInfoWindow : Window
291-
{
292-
public override Vector2 InitialSize => new Vector2(600, 300);
293-
294-
private Vector2 scroll;
295-
private string text;
296-
297-
public DesyncInfoWindow(Replay replay)
298-
{
299-
absorbInputAroundWindow = true;
300-
doCloseX = true;
301-
302-
var text = new StringBuilder();
303-
304-
using (var zip = replay.ZipFile)
305-
{
306-
try
307-
{
308-
text.AppendLine("[info]");
309-
text.AppendLine(zip["info"].GetString());
310-
text.AppendLine();
311-
}
312-
catch { }
313-
314-
try
315-
{
316-
PrintSyncInfo(text, zip, "sync_local");
317-
}
318-
catch { }
319-
320-
try
321-
{
322-
PrintSyncInfo(text, zip, "sync_remote");
323-
}
324-
catch { }
325-
326-
try
327-
{
328-
text.AppendLine("[desync_info]");
329-
var desyncInfo = new ByteReader(zip["desync_info"].GetBytes());
330-
text.AppendLine($"Arbiter online: {desyncInfo.ReadBool()}");
331-
text.AppendLine($"Last valid tick: {desyncInfo.ReadInt32()}");
332-
text.AppendLine($"Last valid arbiter online: {desyncInfo.ReadBool()}");
333-
text.AppendLine($"Mod version: {desyncInfo.ReadString()}");
334-
text.AppendLine($"Mod is debug: {desyncInfo.ReadBool()}");
335-
text.AppendLine($"Dev mode: {desyncInfo.ReadBool()}");
336-
}
337-
catch { }
338-
}
339-
340-
this.text = text.ToString();
341-
}
342-
343-
private void PrintSyncInfo(StringBuilder text, ZipFile zip, string file)
344-
{
345-
text.AppendLine($"[{file}]");
346-
347-
var sync = SyncInfo.Deserialize(new ByteReader(zip[file].GetBytes()));
348-
text.AppendLine($"Start: {sync.startTick}");
349-
text.AppendLine($"Map count: {sync.maps.Count}");
350-
text.AppendLine($"Last map state: {sync.maps.Select(m => $"{m.mapId}/{m.map.LastOrDefault()}/{m.map.Count}").ToStringSafeEnumerable()}");
351-
text.AppendLine($"Last world state: {sync.world.LastOrDefault()}/{sync.world.Count}");
352-
text.AppendLine($"Last cmd state: {sync.cmds.LastOrDefault()}/{sync.cmds.Count}");
353-
text.AppendLine($"Trace hashes: {sync.traceHashes.Count}");
354-
355-
text.AppendLine();
356-
}
357-
358-
public override void DoWindowContents(Rect inRect)
359-
{
360-
Widgets.TextAreaScrollable(inRect, text, ref scroll);
361-
}
362-
}
363-
364290
}

Source/Client/Multiplayer.cs

+1
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ private static void InitSteam()
189189
if (session?.localSettings != null && session.localSettings.steam && !session.pendingSteam.Contains(req.m_steamIDRemote))
190190
{
191191
session.pendingSteam.Add(req.m_steamIDRemote);
192+
session.knownUsers.Add(req.m_steamIDRemote);
192193
session.hasUnread = true;
193194
SteamFriends.RequestUserInformation(req.m_steamIDRemote, true);
194195
}

Source/Client/MultiplayerSession.cs

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public class MultiplayerSession
3636

3737
public bool allowSteam;
3838
public List<CSteamID> pendingSteam = new List<CSteamID>();
39+
public List<CSteamID> knownUsers = new List<CSteamID>();
3940

4041
public const int MaxMessages = 200;
4142
public List<ChatMsg> messages = new List<ChatMsg>();

Source/Client/ServerBrowser.cs

+63-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using LiteNetLib;
1+
extern alias zip;
2+
3+
using LiteNetLib;
24
using Multiplayer.Common;
35
using RimWorld;
46
using Steamworks;
@@ -13,6 +15,7 @@
1315
using UnityEngine;
1416
using Verse;
1517
using Verse.Steam;
18+
using zip::Ionic.Zip;
1619

1720
namespace Multiplayer.Client
1821
{
@@ -315,7 +318,7 @@ private void DrawSaveList(List<SaveFile> saves, float width, ref float y)
315318
if (Widgets.ButtonInvisible(entryRect))
316319
{
317320
if (saveFile.replay && Event.current.button == 1 && MpVersion.IsDebug)
318-
Find.WindowStack.Add(new DesyncInfoWindow(Replay.ForLoading(saveFile.file)));
321+
Find.WindowStack.Add(new DebugTextWindow(GetDebugString(Replay.ForLoading(saveFile.file))));
319322
else
320323
selectedFile = saveFile;
321324
}
@@ -324,6 +327,64 @@ private void DrawSaveList(List<SaveFile> saves, float width, ref float y)
324327
}
325328
}
326329

330+
private static string GetDebugString(Replay replay)
331+
{
332+
var text = new StringBuilder();
333+
334+
using (var zip = replay.ZipFile)
335+
{
336+
try
337+
{
338+
text.AppendLine("[info]");
339+
text.AppendLine(zip["info"].GetString());
340+
text.AppendLine();
341+
}
342+
catch { }
343+
344+
try
345+
{
346+
PrintSyncInfo(text, zip, "sync_local");
347+
}
348+
catch { }
349+
350+
try
351+
{
352+
PrintSyncInfo(text, zip, "sync_remote");
353+
}
354+
catch { }
355+
356+
try
357+
{
358+
text.AppendLine("[desync_info]");
359+
var desyncInfo = new ByteReader(zip["desync_info"].GetBytes());
360+
text.AppendLine($"Arbiter online: {desyncInfo.ReadBool()}");
361+
text.AppendLine($"Last valid tick: {desyncInfo.ReadInt32()}");
362+
text.AppendLine($"Last valid arbiter online: {desyncInfo.ReadBool()}");
363+
text.AppendLine($"Mod version: {desyncInfo.ReadString()}");
364+
text.AppendLine($"Mod is debug: {desyncInfo.ReadBool()}");
365+
text.AppendLine($"Dev mode: {desyncInfo.ReadBool()}");
366+
}
367+
catch { }
368+
}
369+
370+
return text.ToString();
371+
372+
void PrintSyncInfo(StringBuilder builder, ZipFile zip, string file)
373+
{
374+
builder.AppendLine($"[{file}]");
375+
376+
var sync = SyncInfo.Deserialize(new ByteReader(zip[file].GetBytes()));
377+
builder.AppendLine($"Start: {sync.startTick}");
378+
builder.AppendLine($"Map count: {sync.maps.Count}");
379+
builder.AppendLine($"Last map state: {sync.maps.Select(m => $"{m.mapId}/{m.map.LastOrDefault()}/{m.map.Count}").ToStringSafeEnumerable()}");
380+
builder.AppendLine($"Last world state: {sync.world.LastOrDefault()}/{sync.world.Count}");
381+
builder.AppendLine($"Last cmd state: {sync.cmds.LastOrDefault()}/{sync.cmds.Count}");
382+
builder.AppendLine($"Trace hashes: {sync.traceHashes.Count}");
383+
384+
builder.AppendLine();
385+
}
386+
}
387+
327388
private bool ButtonImage(Rect rect, Texture2D image, Color imageColor, Vector2? imageSize)
328389
{
329390
bool result = Widgets.ButtonText(rect, string.Empty, true, false, true);

Source/Client/Windows.cs

+21
Original file line numberDiff line numberDiff line change
@@ -216,4 +216,25 @@ private bool TrySave()
216216
}
217217
}
218218

219+
public class DebugTextWindow : Window
220+
{
221+
public override Vector2 InitialSize => new Vector2(600, 300);
222+
223+
private Vector2 scroll;
224+
private string text;
225+
226+
public DebugTextWindow(string text)
227+
{
228+
absorbInputAroundWindow = true;
229+
doCloseX = true;
230+
231+
this.text = text;
232+
}
233+
234+
public override void DoWindowContents(Rect inRect)
235+
{
236+
Widgets.TextAreaScrollable(inRect, text, ref scroll);
237+
}
238+
}
239+
219240
}

Source/Common/Version.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
{
33
public static class MpVersion
44
{
5-
public const string Version = "0.1.8";
6-
public const int Protocol = 7;
5+
public const string Version = "0.1.9";
6+
public const int Protocol = 8;
77

88
#if DEBUG
99
public const bool IsDebug = true;

0 commit comments

Comments
 (0)