File: sync_debug.cpp

package info (click to toggle)
warzone2100 4.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 660,320 kB
  • sloc: cpp: 676,209; ansic: 391,201; javascript: 78,238; python: 16,632; php: 4,294; sh: 4,094; makefile: 2,629; lisp: 1,492; cs: 489; xml: 404; perl: 224; ruby: 156; java: 89
file content (878 lines) | stat: -rw-r--r-- 36,172 bytes parent folder | download
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
// SPDX-License-Identifier: GPL-2.0-or-later

/*
	This file is part of Warzone 2100.
	Copyright (C) 2024-2025  Warzone 2100 Project

	Warzone 2100 is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	Warzone 2100 is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with Warzone 2100; if not, write to the Free Software
	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "sync_debug.h"

#include "lib/framework/wzglobal.h"
#include "lib/framework/crc.h"
#include "lib/framework/macros.h"
#include "lib/framework/string_ext.h"
#include "lib/framework/file.h"
#include "lib/framework/debug.h"
#include "lib/framework/physfs_ext.h"
#include "lib/gamelib/gtime.h"
#include "lib/netplay/byteorder_funcs_wrapper.h"
#include "nettypes.h"
#include "netplay.h"

#include <physfs.h>

#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <algorithm>
#include <limits>
#include <string>
#include <vector>
#include <array>

#if defined(WZ_OS_LINUX) && defined(__GLIBC__)
#include <execinfo.h>  // Nonfatal runtime backtraces.
#endif // defined(WZ_OS_LINUX) && defined(__GLIBC__)

static uint32_t verboseDebugOutputAllSyncLogsUntilGameTime = 0;

struct SyncDebugEntry
{
	char const* function;
};

struct SyncDebugString : public SyncDebugEntry
{
	void set(uint32_t& crc, char const* f, char const* string)
	{
		function = f;
		crc = wz::crc_update(crc, function, strlen(function) + 1);
		crc = wz::crc_update(crc, string, strlen(string) + 1);
	}
	int snprint(char* buf, size_t bufSize, char const*& string) const
	{
		int ret = snprintf(buf, bufSize, "[%s] %s\n", function, string);
		string += strlen(string) + 1;
		return ret;
	}
};

struct SyncDebugValueChange : public SyncDebugEntry
{
	void set(uint32_t& crc, char const* f, char const* vn, int nv, int i)
	{
		function = f;
		variableName = vn;
		newValue = nv;
		id = i;
		uint32_t valueBytes = wz_htonl(newValue);
		crc = wz::crc_update(crc, function, strlen(function) + 1);
		crc = wz::crc_update(crc, variableName, strlen(variableName) + 1);
		crc = wz::crc_update(crc, &valueBytes, 4);
	}
	int snprint(char* buf, size_t bufSize) const
	{
		if (id != -1)
		{
			return snprintf(buf, bufSize, "[%s] %d %s = %d\n", function, id, variableName, newValue);
		}
		return snprintf(buf, bufSize, "[%s] %s = %d\n", function, variableName, newValue);
	}

	int         newValue;
	int         id;
	char const* variableName;
};

struct SyncDebugIntList : public SyncDebugEntry
{
	void set(uint32_t& crc, char const* f, char const* s, int const* ints, size_t num)
	{
		function = f;
		string = s;
		uint32_t valueBytes[40];
		numInts = std::min(num, ARRAY_SIZE(valueBytes));
		for (unsigned n = 0; n < numInts; ++n)
		{
			valueBytes[n] = wz_htonl(ints[n]);
		}
		crc = wz::crc_update(crc, valueBytes, 4 * numInts);
	}
	int snprint(char* buf, size_t bufSize, int const*& ints) const
	{
		size_t index = 0;
		if (index < bufSize)
		{
			index += snprintf(buf + index, bufSize - index, "[%s] ", function);
		}
		if (index < bufSize)
		{
			switch (numInts)
			{
			case  0: index += snprintf(buf + index, bufSize - index, "%s", string); break;
			case  1: index += snprintf(buf + index, bufSize - index, string, ints[0]); break;
			case  2: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1]); break;
			case  3: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2]); break;
			case  4: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3]); break;
			case  5: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4]); break;
			case  6: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5]); break;
			case  7: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6]); break;
			case  8: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7]); break;
			case  9: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8]); break;
			case 10: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9]); break;
			case 11: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10]); break;
			case 12: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11]); break;
			case 13: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12]); break;
			case 14: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13]); break;
			case 15: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14]); break;
			case 16: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15]); break;
			case 17: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16]); break;
			case 18: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17]); break;
			case 19: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18]); break;
			case 20: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19]); break;
			case 21: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20]); break;
			case 22: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21]); break;
			case 23: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22]); break;
			case 24: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23]); break;
			case 25: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24]); break;
			case 26: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25]); break;
			case 27: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26]); break;
			case 28: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27]); break;
			case 29: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28]); break;
			case 30: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29]); break;
			case 31: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30]); break;
			case 32: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31]); break;
			case 33: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31], ints[32]); break;
			case 34: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31], ints[32], ints[33]); break;
			case 35: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31], ints[32], ints[33], ints[34]); break;
			case 36: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31], ints[32], ints[33], ints[34], ints[35]); break;
			case 37: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31], ints[32], ints[33], ints[34], ints[35], ints[36]); break;
			case 38: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31], ints[32], ints[33], ints[34], ints[35], ints[36], ints[37]); break;
			case 39: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31], ints[32], ints[33], ints[34], ints[35], ints[36], ints[37], ints[38]); break;
			case 40: index += snprintf(buf + index, bufSize - index, string, ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7], ints[8], ints[9], ints[10], ints[11], ints[12], ints[13], ints[14], ints[15], ints[16], ints[17], ints[18], ints[19], ints[20], ints[21], ints[22], ints[23], ints[24], ints[25], ints[26], ints[27], ints[28], ints[29], ints[30], ints[31], ints[32], ints[33], ints[34], ints[35], ints[36], ints[37], ints[38], ints[39]); break;
			default: index += snprintf(buf + index, bufSize - index, "Too many ints in intlist."); break;
			}
		}
		if (index < bufSize)
		{
			index += snprintf(buf + index, bufSize - index, "\n");
		}
		ints += numInts;
		return index;
	}

	char const* string;
	unsigned numInts;
};

struct SyncDebugLog
{
	SyncDebugLog() : time(0), crc(0x00000000) {}
	void clear()
	{
		log.clear();
		time = 0;
		crc = wz::crc_init();
		//printf("Freeing %d strings, %d valueChanges, %d intLists, %d chars, %d ints\n", (int)strings.size(), (int)valueChanges.size(), (int)intLists.size(), (int)chars.size(), (int)ints.size());
		strings.clear();
		valueChanges.clear();
		intLists.clear();
		chars.clear();
		ints.clear();
	}
	void string(char const* f, char const* s)
	{
		size_t offset = chars.size();
		chars.resize(chars.size() + strlen(s) + 1);
		char* buf = &chars[offset];
		strcpy(buf, s);

		strings.resize(strings.size() + 1);
		strings.back().set(crc, f, buf);

		log.push_back('s');
	}
	void valueChange(char const* f, char const* vn, int nv, int i)
	{
		valueChanges.resize(valueChanges.size() + 1);
		valueChanges.back().set(crc, f, vn, nv, i);
		log.push_back('v');
	}
	void intList(char const* f, char const* s, int* begin, size_t num)
	{
		size_t offset = ints.size();
		ints.resize(ints.size() + num);
		int* buf = &ints[offset];
		std::copy(begin, begin + num, buf);

		intLists.resize(intLists.size() + 1);
		intLists.back().set(crc, f, s, buf, num);
		log.push_back('i');
	}
	int snprint(char* buf, size_t bufSize)
	{
		SyncDebugString const* stringPtr = strings.empty() ? nullptr : &strings[0]; // .empty() check, since &strings[0] is undefined if strings is empty(), even if it's likely to work, anyway.
		SyncDebugValueChange const* valueChangePtr = valueChanges.empty() ? nullptr : &valueChanges[0];
		SyncDebugIntList const* intListPtr = intLists.empty() ? nullptr : &intLists[0];
		char const* charPtr = chars.empty() ? nullptr : &chars[0];
		int const* intPtr = ints.empty() ? nullptr : &ints[0];

		int printRes = 0;
		int index = 0;
		for (size_t n = 0; n < log.size() && (size_t)index < bufSize; ++n)
		{
			char type = log[n];
			switch (type)
			{
			case 's':
				printRes = stringPtr++->snprint(buf + index, bufSize - index, charPtr);
				break;
			case 'v':
				printRes = valueChangePtr++->snprint(buf + index, bufSize - index);
				break;
			case 'i':
				printRes = intListPtr++->snprint(buf + index, bufSize - index, intPtr);
				break;
			default:
				abort();
				break;
			}
			index += std::max<int>(printRes, 0);
		}
		return index;
	}
	uint32_t getGameTime() const
	{
		return time;
	}
	uint32_t getCrc() const
	{
		return ~crc;  // Invert bits, since everyone else seems to do that with CRCs...
	}
	size_t getNumEntries() const
	{
		return log.size();
	}
	void setGameTime(uint32_t newTime)
	{
		time = newTime;
	}
	void setCrc(uint32_t newCrc)
	{
		crc = ~newCrc;  // Invert bits, since everyone else seems to do that with CRCs...
	}

private:
	std::vector<char> log;
	uint32_t time;
	uint32_t crc;

	std::vector<SyncDebugString> strings;
	std::vector<SyncDebugValueChange> valueChanges;
	std::vector<SyncDebugIntList> intLists;

	std::vector<char> chars;
	std::vector<int> ints;

private:
	SyncDebugLog(SyncDebugLog const&)/* = delete*/;
	SyncDebugLog& operator =(SyncDebugLog const&)/* = delete*/;
};

#define MAX_LEN_LOG_LINE 512  // From debug.c - no use printing something longer.
#define MAX_SYNC_HISTORY 12

static unsigned syncDebugNext = 0;
static SyncDebugLog syncDebugLog[MAX_SYNC_HISTORY];
static uint32_t syncDebugExtraGameTime;
static uint32_t syncDebugExtraCrc;

static uint32_t syncDebugNumDumps = 0;
constexpr uint32_t MaxPlayerSyncDebugDumps = 2;

// 5 MiB seems to be a reasonable size limit (at the moment)
// - If other limits are raised (map size, unit cap, player limit) this may need to be adjusted
//   to receive a complete desync log in late-game / high complexity game tick situations
constexpr size_t MaxDesyncLogSize = 5000000;
constexpr uint32_t NetMessageOverheadMax = 1 + 4; // 1 byte for message type, 4 bytes for max uint32_t
constexpr uint32_t MAX_DESYNC_LOG_TRANSFER_PACKET = MaxMsgSize - NetMessageOverheadMax - 8; // - overhead
class DesyncLogOutputter
{
public:
	DesyncLogOutputter();
	static std::string getFilename(uint32_t time, unsigned player);
	void expectDesyncLog(uint32_t time);
	void willLogLocalDesyncLog(uint32_t time);
	bool canWriteLogFor(uint32_t time, unsigned player);
	bool alreadyWroteLogFor(uint32_t time, unsigned player);
	bool write(uint32_t time, unsigned player, const uint8_t* buf, size_t bufLen);
	bool closeEOF(uint32_t time, unsigned player);
	void clear();
private:
	struct PlayerDesyncLogOutput
	{
	public:
		void setExpectDesyncLog(uint32_t time);
		bool canWriteLogFor(uint32_t time);
		bool alreadyWroteLogFor(uint32_t time);
		bool write(uint32_t time, unsigned player, const uint8_t* buf, size_t bufLen);
		bool closeEOF(uint32_t time, unsigned player);
		void clear();
	private:
		struct LogOutputter
		{
		public:
			~LogOutputter();
		public:
			bool write(uint32_t time, unsigned player, const uint8_t* buf, size_t bufLen);
			bool closeEOF();
			bool getNoFurtherWrites() const { return noFurtherWrites; }
			size_t getWrittenSize() const { return writtenSize; }
		private:
			PHYSFS_file* fp = nullptr;
			bool noFurtherWrites = false;
			size_t writtenSize = 0;
		};
		typedef std::unordered_map<uint32_t, LogOutputter> DesyncOutputs;
		DesyncOutputs outputs;
	};
	std::array<PlayerDesyncLogOutput, MAX_GAMEQUEUE_SLOTS> players;
};

static DesyncLogOutputter playerDesyncLogOutput;

static std::vector<uint8_t> debugSyncTmpBuf;
constexpr size_t kDefaultDebugSyncBufferSize = 4000000;
static_assert(kDefaultDebugSyncBufferSize < MaxDesyncLogSize, "");
constexpr size_t kMaxDebugSyncBufferSize = MaxDesyncLogSize;
static size_t targetDebugSyncTmpBufSize = kDefaultDebugSyncBufferSize;

// MARK: - DesyncLogOutputter

DesyncLogOutputter::DesyncLogOutputter()
{ }

std::string DesyncLogOutputter::getFilename(uint32_t time, unsigned int player)
{
	return astringf("logs/desync%u_p%u.txt", time, player);
}

void DesyncLogOutputter::expectDesyncLog(uint32_t time)
{
	for (auto& a : players)
	{
		a.setExpectDesyncLog(time);
	}
}

void DesyncLogOutputter::willLogLocalDesyncLog(uint32_t time)
{
	if (selectedPlayer < players.size())
	{
		players[selectedPlayer].setExpectDesyncLog(time);
	}
}

bool DesyncLogOutputter::canWriteLogFor(uint32_t time, unsigned player)
{
	ASSERT_OR_RETURN(false, player < players.size(), "Invalid player idx: %u", player);
	return players[player].canWriteLogFor(time);
}

bool DesyncLogOutputter::alreadyWroteLogFor(uint32_t time, unsigned player)
{
	ASSERT_OR_RETURN(false, player < players.size(), "Invalid player idx: %u", player);
	return players[player].alreadyWroteLogFor(time);
}

bool DesyncLogOutputter::write(uint32_t time, unsigned player, const uint8_t* buf, size_t bufLen)
{
	ASSERT_OR_RETURN(false, player < players.size(), "Invalid player idx: %u", player);
	return players[player].write(time, player, buf, bufLen);
}

bool DesyncLogOutputter::closeEOF(uint32_t time, unsigned player)
{
	return players[player].closeEOF(time, player);
}

void DesyncLogOutputter::clear()
{
	for (auto& a : players)
	{
		a.clear();
	}
}

void DesyncLogOutputter::PlayerDesyncLogOutput::setExpectDesyncLog(uint32_t time)
{
	outputs.insert(DesyncOutputs::value_type(time, {}));
}

bool DesyncLogOutputter::PlayerDesyncLogOutput::canWriteLogFor(uint32_t time)
{
	return outputs.count(time) > 0 || outputs.size() < MaxPlayerSyncDebugDumps;
}

bool DesyncLogOutputter::PlayerDesyncLogOutput::alreadyWroteLogFor(uint32_t time)
{
	auto it = outputs.find(time);
	if (it == outputs.end())
	{
		return false;
	}
	return it->second.getNoFurtherWrites();
}

bool DesyncLogOutputter::PlayerDesyncLogOutput::write(uint32_t time, unsigned player, const uint8_t *buf, size_t bufLen)
{
	auto it = outputs.find(time);
	if (it == outputs.end())
	{
		if (outputs.size() >= MaxPlayerSyncDebugDumps)
		{
			return false;
		}
		it = outputs.insert(DesyncOutputs::value_type(time, {})).first;
	}
	return it->second.write(time, player, buf, bufLen);
}

bool DesyncLogOutputter::PlayerDesyncLogOutput::closeEOF(uint32_t time, unsigned player)
{
	auto it = outputs.find(time);
	if (it == outputs.end())
	{
		return false;
	}
	return it->second.closeEOF();
}

void DesyncLogOutputter::PlayerDesyncLogOutput::clear()
{
	outputs.clear();
}

DesyncLogOutputter::PlayerDesyncLogOutput::LogOutputter::~LogOutputter()
{
	closeEOF();
}

bool DesyncLogOutputter::PlayerDesyncLogOutput::LogOutputter::closeEOF()
{
	if (fp == nullptr)
	{
		return false;
	}
	PHYSFS_close(fp);
	fp = nullptr;
	noFurtherWrites = true;
	return true;
}

bool DesyncLogOutputter::PlayerDesyncLogOutput::LogOutputter::write(uint32_t time, unsigned int player, const uint8_t *buf, size_t bufLen)
{
	bool retVal = true;

	if (noFurtherWrites)
	{
		return false;
	}
	size_t bytesToWrite = bufLen;
	if (bytesToWrite > MaxDesyncLogSize - writtenSize)
	{
		// truncate - and further attempts to write data will fail
		bytesToWrite = MaxDesyncLogSize - writtenSize;
		retVal = false;
	}
	if (bytesToWrite > 0)
	{
		// Open file if not already open
		if (!fp)
		{
			auto fname = DesyncLogOutputter::getFilename(time, player);
			fp = openSaveFile(fname.c_str());
			if (!fp)
			{
				debug(LOG_ERROR, "Failed to open file for writing: %s", fname.c_str());
				noFurtherWrites = true; // don't repeatedly try to open the file if the first attempt fails
				return false;
			}
			WZ_PHYSFS_SETBUFFER(fp, 1024 * 1024)
		}

		// Write to file
		ASSERT(bytesToWrite <= static_cast<size_t>(std::numeric_limits<PHYSFS_uint32>::max()), "bytesToWrite (%zu) exceeds PHYSFS_uint32::max", bytesToWrite);
		WZ_PHYSFS_writeBytes(fp, buf, static_cast<PHYSFS_uint32>(bytesToWrite));

		writtenSize += bytesToWrite;
	}
	return retVal;
}

// MARK: -

void _syncDebug(const char* function, const char* str, ...)
{
#ifdef WZ_CC_MSVC
	char const* f = function; while (*f != '\0') if (*f++ == ':')
	{
		function = f;    // Strip "Class::" from "Class::myFunction".
	}
#endif

	va_list ap;
	char outputBuffer[MAX_LEN_LOG_LINE];

	va_start(ap, str);
	vssprintf(outputBuffer, str, ap);
	va_end(ap);

	syncDebugLog[syncDebugNext].string(function, outputBuffer);
}

void _syncDebugIntList(const char* function, const char* str, int* ints, size_t numInts)
{
#ifdef WZ_CC_MSVC
	char const* f = function; while (*f != '\0') if (*f++ == ':')
	{
		function = f;    // Strip "Class::" from "Class::myFunction".
	}
#endif

	syncDebugLog[syncDebugNext].intList(function, str, ints, numInts);
}

void _syncDebugBacktrace(const char* function)
{
#ifdef WZ_CC_MSVC
	char const* f = function; while (*f != '\0') if (*f++ == ':')
	{
		function = f;    // Strip "Class::" from "Class::myFunction".
	}
#endif

	uint32_t backupCrc = syncDebugLog[syncDebugNext].getCrc();  // Ignore CRC changes from _syncDebug(), since identical backtraces can be printed differently.

#if defined(WZ_OS_LINUX) && defined(__GLIBC__)
	void* btv[20];
	unsigned num = backtrace(btv, sizeof(btv) / sizeof(*btv));
	char** btc = backtrace_symbols(btv, num);
	unsigned i;
	for (i = 1; i + 2 < num; ++i)  // =1: Don't print "src/warzone2100(syncDebugBacktrace+0x16) [0x6312d1]". +2: Don't print last two lines of backtrace such as "/lib/libc.so.6(__libc_start_main+0xe6) [0x7f91e040ea26]", since the address varies (even with the same binary).
	{
		_syncDebug("BT", "%s", btc[i]);
	}
	free(btc);
#else
	_syncDebug("BT", "Sorry, syncDebugBacktrace() not implemented on your system. Called from %s.", function);
#endif

	// Use CRC of something platform-independent, to avoid false positive desynchs.
	backupCrc = ~wz::crc_update(~backupCrc, function, strlen(function) + 1);
	syncDebugLog[syncDebugNext].setCrc(backupCrc);
}

uint32_t syncDebugGetCrc()
{
	return syncDebugLog[syncDebugNext].getCrc();
}

void syncDebugSetCrc(uint32_t crc)
{
	syncDebugLog[syncDebugNext].setCrc(crc);
}

void resetSyncDebug()
{
	for (unsigned i = 0; i < MAX_SYNC_HISTORY; ++i)
	{
		syncDebugLog[i].clear();
	}

	syncDebugExtraGameTime = 0;
	syncDebugExtraCrc = 0xFFFFFFFF;

	syncDebugNext = 0;

	syncDebugNumDumps = 0;
	playerDesyncLogOutput.clear();

	debugSyncTmpBuf.clear();
	debugSyncTmpBuf.shrink_to_fit();
	targetDebugSyncTmpBufSize = kDefaultDebugSyncBufferSize;
}

GameCrcType nextDebugSync()
{
	uint32_t ret = syncDebugLog[syncDebugNext].getCrc();

	// Save gameTime, so we know which CRC to compare with, later.
	syncDebugLog[syncDebugNext].setGameTime(gameTime);

	// Go to next position, and free it ready for use.
	syncDebugNext = (syncDebugNext + 1) % MAX_SYNC_HISTORY;
	syncDebugLog[syncDebugNext].clear();

	return (GameCrcType)ret;
}

static void dbgOutputDumpedSyncLog(uint32_t time, uint32_t player, bool partial = false, bool syncError = true)
{
	auto fname = DesyncLogOutputter::getFilename(time, player);
	bool isSpectator = player < NetPlay.players.size() && NetPlay.players[player].isSpectator;
	std::string typeDescription = (syncError) ? "sync error" : "sync log";
	std::string playerDescription = (isSpectator) ? "spectator" : "player";
	debug(LOG_ERROR, "Dumped %s %u's %s%s at gameTime %u to file: %s%s", playerDescription.c_str(), player, (partial) ? "<partial> " : "", typeDescription.c_str(), time, WZ_PHYSFS_getRealDir_String(fname.c_str()).c_str(), fname.c_str());
}

static void dumpLocalPlayerDebugSync(const uint8_t* buf, size_t bufLen, uint32_t time, bool syncError = true)
{
	playerDesyncLogOutput.write(time, selectedPlayer, buf, bufLen);
	playerDesyncLogOutput.closeEOF(time, selectedPlayer);
	dbgOutputDumpedSyncLog(time, selectedPlayer, false, syncError);
}

static void sendDebugSync(uint8_t* buf, uint32_t bufLen, uint32_t time)
{
	// Save our own, before sending, so that if we have 2 clients running on the same computer, to guarantee that it is done saving before the other client saves on top.
	dumpLocalPlayerDebugSync(buf, bufLen, time);

	// Send multiple messages, of max MAX_DESYNC_LOG_TRANSFER_PACKET bytes of log data, until the full desync log is sent
	uint32_t bytesWritten = 0;
	uint32_t bytesToWrite = 0;
	size_t numMessages = 0;
	while (bytesWritten < bufLen)
	{
		bytesToWrite = std::min<uint32_t>(MAX_DESYNC_LOG_TRANSFER_PACKET, bufLen - bytesWritten);
		auto w = NETbeginEncode(NETbroadcastQueue(), NET_DEBUG_SYNC);
		NETuint32_t(w, time);
		NETuint32_t(w, bytesToWrite);
		NETbin(w, buf + bytesWritten, bytesToWrite);
		NETend(w);
		bytesWritten += bytesToWrite;
		numMessages++;
	}
	// plus one 0-length buffer packet to signify EOF
	bytesToWrite = 0;
	auto w = NETbeginEncode(NETbroadcastQueue(), NET_DEBUG_SYNC);
	NETuint32_t(w, time);
	NETuint32_t(w, bytesToWrite);
	NETend(w);
	numMessages++;

	debug(LOG_INFO, "Broadcast sync log (time: %" PRIu32 ", size: %" PRIu32 ") in %zu messages", time, bufLen, numMessages);
}

static size_t dumpLocalDebugSyncLog(unsigned logIndex)
{
	if (debugSyncTmpBuf.size() < targetDebugSyncTmpBufSize)
	{
		debugSyncTmpBuf.clear();
		debugSyncTmpBuf.resize(targetDebugSyncTmpBufSize);
	}
	const size_t bufSizeLimit = debugSyncTmpBuf.size();
	size_t bufIndex = 0;
	auto enforceLimit = [&bufIndex, &bufSizeLimit]() {
		if (bufIndex > bufSizeLimit)
		{
			bufIndex = bufSizeLimit;
			// grow buffer slightly for next debug sync log send (up to max)
			targetDebugSyncTmpBufSize = std::min<size_t>(targetDebugSyncTmpBufSize + 500000, kMaxDebugSyncBufferSize);
		}
	};
	// Dump our version, and also erase it, so we only dump it at most once.
	bufIndex += snprintf((char*)debugSyncTmpBuf.data() + bufIndex, bufSizeLimit - bufIndex, "===== BEGIN gameTime=%u, %zu entries, CRC 0x%08X =====\n", syncDebugLog[logIndex].getGameTime(), syncDebugLog[logIndex].getNumEntries(), syncDebugLog[logIndex].getCrc());
	enforceLimit();  // snprintf will not overflow debugSyncTmpBuf, but returns as much as it would have printed if possible.
	bufIndex += syncDebugLog[logIndex].snprint((char*)debugSyncTmpBuf.data() + bufIndex, bufSizeLimit - bufIndex);
	enforceLimit();  // snprintf will not overflow debugSyncTmpBuf, but returns as much as it would have printed if possible.
	bufIndex += snprintf((char*)debugSyncTmpBuf.data() + bufIndex, bufSizeLimit - bufIndex, "===== END gameTime=%u, %zu entries, CRC 0x%08X =====\n", syncDebugLog[logIndex].getGameTime(), syncDebugLog[logIndex].getNumEntries(), syncDebugLog[logIndex].getCrc());
	enforceLimit();  // snprintf will not overflow debugSyncTmpBuf, but returns as much as it would have printed if possible.

	return bufIndex;
}

static size_t dumpLocalDebugSyncLogByTime(uint32_t time)
{
	unsigned logIndex;
	for (logIndex = 0; logIndex < MAX_SYNC_HISTORY; ++logIndex)
	{
		if (syncDebugLog[logIndex].getGameTime() == time)
		{
			break; // found the log index for this time
		}
	}

	if (logIndex >= MAX_SYNC_HISTORY)
	{
		// did not find it
		debug(LOG_WARNING, "Couldn't find gameTime: %" PRIu32 " in history", time);
		return 0;
	}

	return dumpLocalDebugSyncLog(logIndex);
}

void recvDebugSync(NETQUEUE queue)
{
	ASSERT_OR_RETURN(, queue.index < MAX_CONNECTED_PLAYERS, "Invalid queue.index: %" PRIu8, queue.index);
	unsigned player = queue.index;

	uint32_t time = 0;
	uint32_t bufLen = 0;

	uint8_t recvBuff[MAX_DESYNC_LOG_TRANSFER_PACKET] = {};

	// Receive a message of desync data (the next chunk of a desync log)
	auto r = NETbeginDecode(queue, NET_DEBUG_SYNC);
	NETuint32_t(r, time);
	NETuint32_t(r, bufLen);
	if (!playerDesyncLogOutput.canWriteLogFor(time, player))
	{
		NETend(r);
		return;
	}
	if (bufLen > MAX_DESYNC_LOG_TRANSFER_PACKET)
	{
		// invalid packet - terminate
		if (playerDesyncLogOutput.closeEOF(time, player))
		{
			dbgOutputDumpedSyncLog(time, player, true);
		}
		NETend(r);
		return;
	}
	NETbin(r, recvBuff, bufLen);
	NETend(r);

	if (bufLen > 0)
	{
		playerDesyncLogOutput.write(time, player, recvBuff, bufLen);
	}
	else
	{
		// 0-length buffer packet considered EOF
		if (playerDesyncLogOutput.closeEOF(time, player))
		{
			dbgOutputDumpedSyncLog(time, player, false);
		}
	}

	// Also dump the debug sync log for this local client (if possible & needed)
	if (!playerDesyncLogOutput.alreadyWroteLogFor(time, selectedPlayer))
	{
		debug(LOG_INFO, "Dumping local debug sync log in response to received for gameTime: %" PRIu32, time);
		bufLen = dumpLocalDebugSyncLogByTime(time);
		if (bufLen > 0)
		{
			playerDesyncLogOutput.willLogLocalDesyncLog(time);
			dumpLocalPlayerDebugSync(debugSyncTmpBuf.data(), bufLen, time, false);
		}
	}
}

// Set whether verbose debug mode - outputting the current player's sync log for every single game tick - is enabled
// WARNING: This may significantly impact performance *and* will fill up your drive with a lot of logs data!
// It is only intended to be used for debugging issues such as: replays desyncing when gameplay does not, etc. (And don't let the game run too long!)
void NET_setDebuggingModeVerboseOutputAllSyncLogs(uint32_t untilGameTime)
{
	verboseDebugOutputAllSyncLogsUntilGameTime = untilGameTime;
	if (verboseDebugOutputAllSyncLogsUntilGameTime)
	{
		debug(LOG_INFO, "WARNING: Verbose sync log output is enabled!");
	}
}

void debugVerboseLogSyncIfNeeded()
{
	if (!verboseDebugOutputAllSyncLogsUntilGameTime || gameTime > verboseDebugOutputAllSyncLogsUntilGameTime)
	{
		return;
	}

	auto bufLen = dumpLocalDebugSyncLogByTime(gameTime);
	if (bufLen > 0)
	{
		char fname[100];
		ssprintf(fname, "logs/sync%u_p%u.txt", gameTime, selectedPlayer);
		PHYSFS_file* fp = openSaveFile(fname);
		if (!fp)
		{
			debug(LOG_ERROR, "Failed to open file for writing: %s", fname);
			return;
		}
		ASSERT(bufLen <= static_cast<size_t>(std::numeric_limits<PHYSFS_uint32>::max()), "bufLen (%zu) exceeds PHYSFS_uint32::max", bufLen);
		WZ_PHYSFS_writeBytes(fp, debugSyncTmpBuf.data(), static_cast<PHYSFS_uint32>(bufLen));
		PHYSFS_close(fp);
	}
}

bool checkDebugSync(uint32_t checkGameTime, GameCrcType checkCrc)
{
	if (checkGameTime == syncDebugLog[syncDebugNext].getGameTime())  // Can't happen - and syncDebugGameTime[] == 0, until just before sending the CRC, anyway.
	{
		debug(LOG_ERROR, "Huh? We aren't done yet...");
		return true;
	}

	unsigned logIndex;
	for (logIndex = 0; logIndex < MAX_SYNC_HISTORY; ++logIndex)
	{
		if (syncDebugLog[logIndex].getGameTime() == checkGameTime)
		{
			if ((GameCrcType)syncDebugLog[logIndex].getCrc() == checkCrc)
			{
				return true;                    // Check passed. (So far... There might still be more players to compare CRCs with.)
			}

			debug(LOG_NET, "Non-matching crc for gameTime: %" PRIu32 "", checkGameTime);
			break;                                  // Check failed!
		}
	}

	if (logIndex >= MAX_SYNC_HISTORY && syncDebugExtraGameTime == checkGameTime)
	{
		if ((GameCrcType)syncDebugExtraCrc == checkCrc)
		{
			return true;
		}
	}

	if (logIndex >= MAX_SYNC_HISTORY)
	{
		debug(LOG_NET, "Couldn't check gameTime: %" PRIu32 "", checkGameTime);
		return false;                                   // Couldn't check. May have dumped already, or MAX_SYNC_HISTORY isn't big enough compared to the maximum latency.
	}

	if (syncDebugNumDumps < MaxPlayerSyncDebugDumps)
	{
		size_t bufIndex = dumpLocalDebugSyncLog(logIndex);
		++syncDebugNumDumps;
		auto problemGameTime = syncDebugLog[logIndex].getGameTime();
		playerDesyncLogOutput.expectDesyncLog(problemGameTime);
		sendDebugSync(debugSyncTmpBuf.data(), static_cast<uint32_t>(bufIndex), problemGameTime);
	}

	// Backup correct CRC for checking against remaining players, even though we erased the logs (which were dumped already).
	syncDebugExtraGameTime = syncDebugLog[logIndex].getGameTime();
	syncDebugExtraCrc = syncDebugLog[logIndex].getCrc();

	// Finish erasing our version.
	syncDebugLog[logIndex].clear();

	return false;  // Ouch.
}