1
- using LiteNetLib ;
1
+ extern alias zip ;
2
+
3
+ using LiteNetLib ;
2
4
using Multiplayer . Common ;
3
5
using RimWorld ;
4
6
using Steamworks ;
13
15
using UnityEngine ;
14
16
using Verse ;
15
17
using Verse . Steam ;
18
+ using zip ::Ionic . Zip ;
16
19
17
20
namespace Multiplayer . Client
18
21
{
@@ -315,7 +318,7 @@ private void DrawSaveList(List<SaveFile> saves, float width, ref float y)
315
318
if ( Widgets . ButtonInvisible ( entryRect ) )
316
319
{
317
320
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 ) ) ) ) ;
319
322
else
320
323
selectedFile = saveFile ;
321
324
}
@@ -324,6 +327,64 @@ private void DrawSaveList(List<SaveFile> saves, float width, ref float y)
324
327
}
325
328
}
326
329
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
+
327
388
private bool ButtonImage ( Rect rect , Texture2D image , Color imageColor , Vector2 ? imageSize )
328
389
{
329
390
bool result = Widgets . ButtonText ( rect , string . Empty , true , false , true ) ;
0 commit comments