-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPORT_LEDGER.json
More file actions
2243 lines (2243 loc) · 96.2 KB
/
Copy pathPORT_LEDGER.json
File metadata and controls
2243 lines (2243 loc) · 96.2 KB
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
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": 1,
"project": "MiniQuake",
"current_package": "BP-094",
"current_delivery_revision": "BP-090-094R15",
"delivery_parent": "BP-090-094R14",
"parent_package": "BP-093",
"compatibility_target": {
"reference": "WinQuake/GLQuake 1.09",
"profile": "compat_109",
"network_protocol": 15,
"savegame_version": 5,
"visual_target": ">95% similarity without requiring pixel identity"
},
"baseline": {
"archive": "MiniQuake_Source24.07.2026.zip",
"archive_sha256": "bb2b5bf173fe687cada6e7fec2dcdb8b2099589f2ebc039417a5571ced9729d3",
"tested_runtime_baseline_archive": "MiniQuake_BP000R1_TextBridgeFix_20260724.zip",
"tested_runtime_baseline_archive_sha256": "796619cd28adaa69d4c2142f92a350c7cf6e27278d0172a9807075fabd7ba3b0",
"main_native_exports": 160,
"buffered_text_exports": 11,
"logical_original_units_carried_forward": 63
},
"bp000r1_acceptance": {
"result_archive": "MiniQuake_BP-000R1_RESULTS_20260724-122402.zip",
"result_archive_sha256": "c7dd4963d21145c51ae839558032f51663b7a1dabd6a45ebd554b283b4006abc",
"status": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"udp_loopback": "PASS"
},
"bp001_acceptance": {
"result_archive": "MiniQuake_BP-001_RESULTS_20260724-155921.zip",
"result_archive_sha256": "ff364f85b3394b11628e22aee805bf6d707d3b7dfb97a6cd5eaabed8640938eb",
"status": "FAIL",
"classification": "B0 build blocker in newly added diagnostics",
"first_diagnostic": "Expression temp overflow in compat_diagnostics.contextJson",
"second_diagnostic": "Expression temp overflow in compat_trace.canonicalFrame",
"runtime_reached": false
},
"bp001r1_acceptance": {
"result_archive": "MiniQuake_BP-001R1_RESULTS_20260724-172632.zip",
"result_archive_sha256": "5f0c9edf96187e3b4e310cc7a759308f0cbadb45645619a28003e66753caec81",
"status": "PARTIAL PASS; deterministic trace A failed",
"static_verification": "PASS",
"build": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"diagnostics_tests": "8/8 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"udp_loopback": "PASS",
"trace_a": "FAIL after Host_Frame 0; header and frame_complete context written, no canonical frame row",
"classification": "B1 runtime blocker in newly added diagnostics; no engine-semantic failure observed",
"root_cause": "clientEntitiesHash/clientEntitiesJson dereferenced void slots in the intentionally sparse client entity table"
},
"bp080084r2_acceptance": {
"result_archive": "MiniQuake_BP-080-084R2_RESULTS_20260731-114042.zip",
"result_archive_sha256": "7d4969d9ed05877fbbcc7c071ea8d1d52f8d0892f3fa57a667df03d083503ef7",
"status": "PASS",
"source_functions": "1094/1094 classified",
"source_inventory_sha256": "31f437bb54a84fa690ff96011c50f8ca3e7dfabde05b4f450e58049eae5d8837",
"trace_sha256": "e91f4c9e32c8c9df39d7cb4ceaf83efaa78c51057516323da2ba6cc3412f0c7b",
"black_port_corpus": "start/e1m1/e1m2/e1m3, pairwise byte-identical",
"retail_core_assets": "A/B byte-identical",
"retail_audio": "A/B byte-identical",
"render_evidence": "byte-identical, SSIM 1.0",
"network_evidence": "2 UDP control pairs plus loopback PASS"
},
"package": {
"id": "BP-094",
"parent": "BP-093",
"block_id": "BP-090-094",
"block_parent": "BP-085-089R8",
"date": "2026-08-01",
"title": "original GLQuake provenance, bidirectional binary interop and external visual-reference closure",
"status": "Windows acceptance pending; R14 passed bidirectional original binary interop and demo1/demo2 visual parity; R15 aligns original and MiniQuake visual simulation timesteps for demo3",
"original_reference_status": "original_reference_109_candidate_v1",
"original_reference_fingerprint": "0xdc355175",
"compat_final_status": "compat_109_final_candidate_v1",
"compat_final_fingerprint": "0xe04a7727",
"original_glquake_sha256": "04862c835c399bc9184f62101ae0390c2a758c21656ec06dcc0384e0f373d588",
"external_gates": [
"original_binary_interop",
"external_glquake_visual_reference"
],
"fixtures": 104,
"original_binary_redistributed": false,
"quake_game_data_redistributed": false
},
"diagnostic_schemas": {
"trace": "MiniQuakeCompatTrace|schema=1",
"snapshot": "MiniQuakeSnapshot/1",
"crash_context": "MiniQuakeCrashContext/1",
"summary": "MiniQuakeTraceSummary/1",
"sparse_client_entities": "JSON null retains slot indexes; digest includes length/index/occupancy",
"trace_comparison": "schema_version=1 JSON; first differing line/frame/fields",
"external_input_policy": "headless sessions never poll live Win32 button bindings",
"typed_vector_failures": "precise subsystem/entity/field label before any .x/.y/.z access",
"snapshot_failure_split": "serialization and file-write errors reported separately"
},
"port_units": {
"total": 63,
"state": "All 1,094 selected compat_109 source definitions are classified and Windows-accepted. BP-090..094 add exact original reference provenance, bidirectional original-binary Protocol-15 interop and raw external visual-reference gates; Windows acceptance of those external gates is pending.",
"reclassified_units": [
{
"unit": 5,
"original": "cl_main.c/client.h",
"scope": "CL_SignonReply and signon completion",
"status": "BP-011 Windows-accepted; BP-015 signon queue/frame-boundary parity Windows block-specific fixtures PASS; R1 historical milestone revalidation pending"
},
{
"unit": 6,
"original": "cl_parse.c/protocol.h",
"scope": "complete SVC catalog and fast-update decoding",
"status": "BP-011 Windows-accepted; BP-018 demo/network message filtering and BP-019 closure Windows block-specific fixtures PASS; R1 historical milestone revalidation pending"
},
{
"unit": 7,
"original": "cl_tent.c/client.h/protocol.h",
"scope": "all temporary entities, fixed 24-slot beam pool, expiry and overflow diagnostic",
"status": "BP-014R1 beam retained-state/active-view hotfix Windows-accepted"
},
{
"unit": 26,
"original": "host.c/quakedef.h",
"scope": "signon orchestration plus graceful client drop and scoreboard reset",
"status": "BP-013 graceful drop Windows-accepted; BP-015/BP-016 signon and reliable scheduling Windows block-specific fixtures PASS; R1 historical milestone revalidation pending"
},
{
"unit": 27,
"original": "host_cmd.c/quakedef.h",
"scope": "prespawn/spawn/begin, name/color and scoreboard spawn semantics",
"status": "BP-011/BP-013 Windows-accepted; BP-015 prespawn/spawn/begin queue parity Windows block-specific fixtures PASS; R1 historical milestone revalidation pending"
},
{
"unit": 36,
"original": "pr_cmds.c/progs.h",
"scope": "PF_sound C-float/int argument conversion and shared dynamic-sound dispatch",
"status": "BP-014R1 dynamic-sound and runtime-event path Windows-accepted"
},
{
"unit": 41,
"original": "snd_dma.c/sound.h",
"scope": "dynamic/static sound scalar ABI received from Protocol-15 client parser",
"status": "BP-014R1 dynamic/static sound parser-to-mixer boundary Windows-accepted"
},
{
"unit": 45,
"original": "sv_main.c/server.h",
"scope": "fast updates, server payloads, particles, dynamic sound, reliable fanout, datagram planning and cleanup",
"status": "BP-014R1 server event/runtime layer Windows-accepted; BP-015/BP-016 server scheduling Windows block-specific fixtures PASS; R1 historical milestone revalidation pending"
},
{
"unit": 48,
"original": "sv_user.c/server.h",
"scope": "signed CLC command framing and malformed-message handling",
"status": "BP-011 signed CLC framing Windows-accepted; BP-019 CLC catalog frozen and block-specific Windows fixtures PASS; R1 historical milestone revalidation pending"
},
{
"unit": 57,
"original": "protocol.h",
"scope": "Protocol-15 constants, wire primitives, commands, fast updates, server payloads, static/runtime events and delivery boundaries",
"status": "Protocol 15 through BP-014R1 Windows-accepted; BP-015 through BP-019 closure/freeze Windows block-specific fixtures PASS; R1 historical milestone revalidation pending"
}
],
"function_level_ledger": "Protocol 15 series BP-010 through BP-019"
},
"known_constraints": [
"the supplied baseline lacks third_party/stb/stb_vorbis.c",
"the main native bridge remains a statically verified prebuilt DLL",
"the buffered text bridge is fully reproducible from included source",
"the original 16-byte fast-update preflight can admit a theoretical 17/18-byte update; MiniQuake preserves the scheduling gate and adds an exact fit check to avoid memory corruption",
"BP-014R1 is the accepted Windows runtime parent for the cumulative BP-015-019 block",
"protocol15_frozen_v1 is a source-guided compatibility contract; original Quake binary client/server interoperability is not yet claimed",
"all cumulative block-specific Windows runtime gates passed; only the corrected historical milestone harness awaits BP-015-019R1 revalidation",
"the original GLQuake screenshot corpus is not bundled; BP-048 currently proves cross-process MiniQuake framebuffer determinism",
"the final >95% original-vs-MiniQuake image claim requires a separately captured external GLQuake reference corpus"
],
"next_package": "Windows acceptance of BP-090-094; if green, final release packaging/cleanup without widening the compatibility claim.",
"bp001r2_acceptance": {
"result_archive": "MiniQuake_BP-001R2_RESULTS_20260724-181843.zip",
"result_archive_sha256": "a6373b21653760800af9cc67fc969b07a7b7f385e409e5c5f9bced718262816c",
"status": "PARTIAL PASS; both traces complete, byte identity failed",
"static_verification": "PASS",
"build": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"diagnostics_tests": "9/9 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"trace_a": "64/64 PASS, clean shutdown",
"trace_b": "64/64 PASS, clean shutdown",
"first_difference": "frame 15: player pitch -2.8125 degrees in A versus 0 in B; QuakeC and edict hashes diverge as consequences",
"classification": "D1 deterministic input contamination in the diagnostic/headless execution environment",
"root_cause_hypothesis": "host.sendClientIntentions continued polling live Win32 button bindings in headless mode; the pitch progression exactly matches cl_pitchspeed at the fixed 0.02 second step"
},
"bp001r3_acceptance": {
"result_archive": "MiniQuake_BP-001R3_RESULTS_20260724-191119.zip",
"result_archive_sha256": "59ae0c40c959287020ca9411fe3aca65241036027bc7586817172693c3ea7ff3",
"source_archive": "MiniQuake_BP001R3_InputIsolation_20260724.zip",
"source_archive_sha256": "6bff3638fd1f2ae7731db28b60cdb74cb837d3cd1769692f5a5dee522c820d7a",
"source_manifest_sha256": "f991999a147bdcd3ddd779d0f6ad5c24cfb5322a3ba3181ba321dd7389b5d61d",
"status": "PASS",
"steps": "17/17 PASS",
"build": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"diagnostics_tests": "10/10 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"trace_a": "64/64 PASS",
"trace_b": "64/64 PASS",
"trace_sha256": "d77620a5f14a0ba2c5d983f3398b539a3dda6fc2cb27d4fe8131bbfa27b52918",
"trace_rolling_hash": "7f4939f9",
"trace_byte_identity": "PASS",
"snapshot_context_summary": "PASS",
"udp_loopback": "PASS",
"classification": "accepted deterministic diagnostics baseline"
},
"protocol15_evidence": {
"reference_units": [
"common.c:MSG_*",
"common.c:SZ_*",
"protocol.h",
"cl_input.c:CL_SendMove",
"sv_main.c:SV_CreateBaseline"
],
"golden_schema": "MiniQuakeProtocol15Golden/1",
"golden_vectors": 13,
"oracle_source": "tools/oracle/protocol15_common_oracle.c",
"oracle_sha256": "34d1a2aecb72c829288dc8be09b071796960a24635d9f9ac7384818c6180ea39",
"python_model": "tools/check_protocol15_vectors.py",
"minilang_fixtures": 15,
"protocol_constants_checked": 18,
"safe_divergences": [
"truncated MSG_ReadFloat sets badRead and returns -1.0 instead of out-of-bounds C access",
"SZ_Print handles an empty buffer without reading data[-1]",
"trailing-NUL SZ_Print overflow safely restarts the complete string instead of writing before data[0] after clear",
"fatal Sys_Error paths propagate as MiniLang error values"
],
"float_parameter_boundary": "C float conversion is applied before coord/angle scaling; integer caller 16777217 rounds to binary32 16777216",
"atomic_string_reservations": "MSG_WriteString and the no-terminator SZ_Print path reserve payload plus trailing NUL in one SZ_GetSpace operation, preserving overflow-clear semantics",
"atomic_reservation": "MSG_WriteString and the SZ_Print no-NUL path reserve payload plus terminator in one SZ_GetSpace operation"
},
"bp010_acceptance": {
"result_archive": "MiniQuake_BP-010_RESULTS_20260724-203941.zip",
"result_archive_sha256": "5f099c56ae95f5c7c604331fa316da045da1e7e3bb1776b31a20b236c7ee51f3",
"status": "FAIL before runtime",
"static_verification": "PASS",
"golden_vector_verification": "13/13 PASS; 18 constants PASS",
"build": "FAIL (MiniLang compiler exit code 2)",
"first_diagnostic": "Undefined variable 'value' in protocol_text.encodeBytes",
"latent_followup_found_during_review": "branch-local 'offset' merge in sizebuf.printText",
"runtime_tests": "NOT_REACHED",
"classification": "B0 build blocker in newly added BP-010 source; no engine-semantic runtime failure observed"
},
"bp010r1_acceptance": {
"result_archive": "MiniQuake_BP-010R1_RESULTS_20260724-220016.zip",
"result_archive_sha256": "0607115e74346ca472dee257598af39227d5b139d362f89584d5eb5fb9747418",
"status": "PASS",
"steps": "18/18 PASS",
"build": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"diagnostics_tests": "10/10 PASS",
"protocol15_wire_tests": "15/15 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"traces": "two independent 64-frame traces byte-identical",
"trace_sha256": "0584b1e9b4d72dfab3b03b9ffdb877233ba979d35288836bd67762591bf27596",
"rolling_hash": "7f4939f9",
"udp_loopback": "PASS"
},
"bp011_acceptance": {
"result_archive": "MiniQuake_BP-011_RESULTS_20260724-231530.zip",
"result_archive_sha256": "9c1255139521c0ab4b09a7a95c616ad02598cb522dd4132e32fac6af8f9e34ec",
"status": "PASS",
"steps": "19/19 PASS",
"build": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"diagnostics_tests": "10/10 PASS",
"protocol15_wire_tests": "15/15 PASS",
"protocol15_command_tests": "14/14 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"traces": "two independent 64-frame traces byte-identical",
"trace_sha256": "f60811d39320379d75abfeae2db1f2b4f426c91b782a0ca8cbb309fff0fe886c",
"rolling_hash": "2d302e1b",
"udp_loopback": "PASS"
},
"protocol15_serverdata_evidence": {
"reference_units": [
"sv_main.c:SV_SendServerinfo",
"sv_main.c:SV_StartSound",
"sv_main.c:SV_WriteClientdataToMessage",
"sv_main.c:SV_CreateBaseline",
"sv_main.c:SV_SendClientDatagram",
"sv_main.c:SV_UpdateToReliableMessages",
"sv_main.c:SV_SendClientMessages",
"sv_main.c:SV_CleanupEnts"
],
"golden_schema": "MiniQuakeProtocol15ServerDataGolden/1",
"golden_vectors": 11,
"initial_delivery_cases": 6,
"reliable_delivery_cases": 8,
"datagram_cases": 5,
"fast_update_cases": 6,
"oracle_source": "tools/oracle/protocol15_serverdata_oracle.c",
"python_model": "tools/check_protocol15_serverdata.py",
"minilang_fixtures": 17,
"protocol_constants_checked": 28,
"safe_divergences": [
"the original 16-byte entity-update scheduling gate is retained but MiniQuake additionally requires the exact 17/18-byte update to fit",
"fatal Sys_Error paths propagate as controlled MiniLang error values"
],
"playerstate_ground_adapter": "set/clear/integrated/sv_main/client-roundtrip coverage added in BP-012R1"
},
"bp012_acceptance": {
"result_archive": "MiniQuake_BP-012_RESULTS_20260725-002822.zip",
"result_archive_sha256": "220c23189a70cb98df6aada652a4bdacf8586d99801019b98cc5e00868000a1a",
"source_archive": "MiniQuake_BP012_Protocol15ServerData_20260724.zip",
"source_archive_sha256": "1a0a508afd4cdf327543d79208cac97151a4007080a285887b7236884d6deece",
"status": "FAIL after successful build and core tests",
"static_verification": "PASS",
"protocol15_wire_vectors": "13/13 PASS",
"protocol15_command_vectors": "14/14 PASS",
"protocol15_serverdata_vectors": "11/11 PASS",
"build": "all seven EXE targets PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "FAIL at 19/24: clientdata onground expected true, got false",
"remaining_runtime_gates": "NOT_REACHED",
"classification": "P15-A1 PlayerState-to-clientdata adapter mirror defect"
},
"bp012r1_evidence": {
"original_reference": "sv_main.c:SV_WriteClientdataToMessage uses ent->v.flags & FL_ONGROUND",
"adapter_rule": "PlayerState.onGround mirrors FL_ONGROUND only when no authoritative QuakeC edict value is available",
"set_case": "covered",
"clear_case": "covered",
"integrated_writer": "covered",
"sv_main_writer": "covered",
"client_roundtrip": "covered",
"golden_payloads_changed": false
},
"bp012r1_acceptance": {
"result_archive": "MiniQuake_BP-012R1_RESULTS_20260725-010934(1).zip",
"result_archive_sha256": "9359b7f638131fa0b402c5676ee5202f6987f2f72dcfaa8b08979f46a7b1a575",
"status": "PASS",
"acceptance_steps": "20/20 PASS",
"build": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"diagnostics_tests": "10/10 PASS",
"wire_tests": "15/15 PASS",
"command_update_tests": "14/14 PASS",
"serverdata_tests": "17/17 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"deterministic_trace_sha256": "2671e9da30a832692ad2478575e9398d0603f82d4e34119ad50b26b888658c51",
"rolling_hash": "2688e0a1",
"udp_loopback": "PASS"
},
"protocol15_event_evidence": {
"reference_units": [
"sv_main.c:SV_StartParticle",
"host.c:SV_DropClient",
"host_cmd.c:Host_Name_f",
"host_cmd.c:Host_Color_f",
"host_cmd.c:Host_Spawn_f",
"pr_cmds.c:PF_makestatic",
"pr_cmds.c:PF_ambientsound",
"r_part.c:R_ParseParticleEffect"
],
"golden_schema": "MiniQuakeProtocol15EventsGolden/1",
"golden_vectors": 15,
"semantic_cases": 13,
"oracle_source": "tools/oracle/protocol15_events_oracle.c",
"python_model": "tools/check_protocol15_events.py",
"minilang_fixtures": 22,
"shared_writer_families": 8,
"safe_divergences": [
"controlled MiniLang errors replace fatal or memory-unsafe C failures without changing valid wire payloads"
]
},
"bp013_acceptance": {
"result_archive": "MiniQuake_BP-013_RESULTS_20260725-021620.zip",
"result_archive_sha256": "41952ba5df59e99e8e80341895afb86ac9053b0ac19a48477742ac630cc8cc1a",
"source_archive": "MiniQuake_BP013_Protocol15Events_20260725.zip",
"source_archive_sha256": "e1348e90fda9fc628391a8cfd17b1425ea0826694e752b92d1f1b614c574b9bf",
"status": "PASS",
"acceptance_steps": "21/21 PASS",
"build": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"diagnostics_tests": "10/10 PASS",
"wire_tests": "15/15 PASS",
"command_update_tests": "14/14 PASS",
"serverdata_tests": "17/17 PASS",
"event_tests": "22/22 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"deterministic_trace_sha256": "7fbda101eee416cc472f3fa645d931cf6b3f5e2fb09cc0208488e7b475309b37",
"rolling_hash": "2688e0a1",
"udp_loopback": "PASS"
},
"protocol15_runtime_event_evidence": {
"reference_units": [
"cl_tent.c:CL_ParseTEnt/CL_ParseBeam",
"cl_parse.c:CL_ParseStartSoundPacket/CL_ParseStaticSound",
"sv_main.c:SV_StartSound/SV_SendNop/SV_ConnectClient",
"pr_cmds.c:PF_sound",
"host.c/host_cmd.c:drop and reconnect boundaries"
],
"golden_schema": "MiniQuakeProtocol15RuntimeEventsGolden/1",
"golden_vectors": 10,
"semantic_cases": 49,
"oracle_source": "tools/oracle/protocol15_runtime_events_oracle.c",
"python_model": "tools/check_protocol15_runtime_events.py",
"minilang_fixtures": 28,
"temporary_entity_types": 14,
"beam_slots": 24,
"safe_divergences": [
"controlled MiniLang errors replace fatal or memory-unsafe C failures without changing valid wire payloads",
"compact beam records retain explicit original slot numbers instead of exposing a fixed C beam_t array"
],
"beam_state_view_contract": "retained 24-slot state separated from strict-expiry active view",
"bp014_windows_failure": "milestone 12 beam expiry expected 0 got 1",
"bp014r1_status": "hotfix implemented; Windows acceptance pending"
},
"bp014_acceptance": {
"result_archive": "MiniQuake_BP-014_RESULTS_20260725-103243.zip",
"result_archive_sha256": "b4e2c262fd6c433a1bff6fd705e914b0ab50af078002a851a11cae390771b1a1",
"source_archive": "MiniQuake_BP014_Protocol15RuntimeEvents_20260725.zip",
"source_archive_sha256": "0dc6a82f4d08b94f4d348615c32a33e4a1717e52f88a62821f8e8df02b06d149",
"status": "PARTIAL PASS; milestone tests failed at 12/24",
"static_verification": "PASS",
"protocol15_checkers": "wire, command/update, serverdata, events and runtime-events PASS",
"build": "all 9 EXE targets PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "FAIL at 12/24 client effects",
"first_diagnostic": "beam expiry: expected 0, got 1",
"later_runtime_tests": "not reached",
"real_game_trace_udp": "not reached",
"classification": "P15-B1 adapter/state-model defect in newly changed beam path",
"root_cause": "retained fixed-slot beam state was returned as the active CL_UpdateTEnts view; expired same-entity ownership and active visibility require separate representations"
},
"bp014r1_acceptance": {
"result_archive": "MiniQuake_BP-014R1_RESULTS_20260725-155308.zip",
"result_archive_sha256": "5cd9f27fa4ea5996fdacaaa473d0943229a78063bffb3b6e6f21609f8f470d0d",
"status": "PASS",
"acceptance_steps": "22/22 PASS",
"build": "PASS",
"core_tests": "16/16 PASS",
"milestone_tests": "24/24 PASS",
"diagnostics_tests": "10/10 PASS",
"wire_tests": "15/15 PASS",
"command_update_tests": "14/14 PASS",
"serverdata_tests": "17/17 PASS",
"event_tests": "22/22 PASS",
"runtime_event_tests": "28/28 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "120 frames PASS",
"deterministic_trace_sha256": "f29015910ccba93d67e538dec986567ec30b4f6e42790ef946cdc935d1f49bd9",
"rolling_hash": "2688e0a1",
"udp_loopback": "PASS"
},
"bp015_signon_evidence": {
"reference_units": [
"cl_main.c:CL_SignonReply",
"cl_parse.c signon progression",
"host_cmd.c:Host_PreSpawn_f/Host_Spawn_f/Host_Begin_f",
"sv_main.c:SV_SendClientMessages"
],
"golden_schema": "MiniQuakeProtocol15SignonGolden/1",
"vectors": 6,
"semantic_cases": 6,
"minilang_fixtures": 12,
"status": "Windows runtime fixtures PASS in first cumulative block run; R1 historical milestone revalidation pending"
},
"bp016_delivery_evidence": {
"reference_units": [
"cl_main.c:CL_SendCmd",
"sv_main.c:SV_SendClientMessages/SV_SendNop",
"host.c:SV_DropClient",
"net_main.c"
],
"golden_schema": "MiniQuakeProtocol15DeliveryGolden/1",
"oracle_cases": 14,
"minilang_fixtures": 14,
"status": "Windows runtime fixtures PASS in first cumulative block run; R1 historical milestone revalidation pending"
},
"bp017_datagram_evidence": {
"reference_units": [
"net_dgrm.c",
"net.h",
"net_main.c"
],
"golden_schema": "MiniQuakeProtocol15DatagramGolden/1",
"oracle_cases": 18,
"minilang_fixtures": 18,
"status": "Windows runtime fixtures PASS in first cumulative block run; R1 historical milestone revalidation pending"
},
"bp018_demo_evidence": {
"reference_units": [
"cl_demo.c",
"cl_main.c:CL_GetMessage",
"host.c record integration"
],
"golden_schema": "MiniQuakeProtocol15DemoGolden/1",
"oracle_rows": 12,
"minilang_fixtures": 19,
"status": "Windows runtime fixtures PASS in first cumulative block run; R1 historical milestone revalidation pending"
},
"bp019_protocol15_closure": {
"block_id": "BP-015-019",
"parent_package_id": "BP-014R1",
"final_package_id": "BP-019",
"protocol_status": "protocol15_frozen_v1",
"protocol_fingerprint": "0x0cf1e12a",
"component_checkers": 9,
"authoritative_files": 15,
"new_runtime_fixtures": 78,
"closure_fixtures": 15,
"original_quake_binary_interop": "external future gate; not claimed",
"status": "Windows closure fixtures, headless runtime, deterministic traces and UDP PASS; R1 historical milestone revalidation pending"
},
"bp015019_acceptance": {
"result_archive": "MiniQuake_BP-015-019_RESULTS_20260725-173630.zip",
"result_archive_sha256": "60cecc48944c8da5faad037f7c1df33fe48ac82a9cabcd7dce52c06a03ba6e8f",
"status": "PARTIAL PASS; exactly one stale historical milestone assertion failed",
"independent_failures": 1,
"first_failure": "BASE milestone tests, [20/24] complete loopback signon: server consumes prespawn expected 1 got 0",
"build": "14/14 executable targets PASS",
"core_tests": "PASS",
"milestone_tests": "19/24 completed; stale immediate-signon-send expectation at test 20",
"parent_protocol_tests": "all PASS",
"bp015_signon": "12/12 PASS",
"bp016_delivery": "14/14 PASS",
"bp017_datagram": "18/18 PASS",
"bp018_demo": "19/19 PASS",
"bp019_closure": "15/15 PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "300 frames PASS",
"trace_a": "128/128 PASS",
"trace_b": "128/128 PASS",
"trace_byte_identity": "PASS",
"trace_sha256": "635b830d00997026fab868ab135e66062a367ef2855a103be38d96a7c04a3ddd",
"trace_rolling_hash": "58a7d245",
"snapshot_context_summary": "PASS",
"udp_loopback": "PASS",
"classification": "stale test assumption; production signon queue/transport semantics are supported by original source and all BP-015 runtime fixtures"
},
"bp015019r1_hotfix": {
"delivery_revision": "BP-015-019R1",
"engine_package_id": "BP-019",
"parent_delivery": "BP-015-019",
"scope": "test-and-delivery-only",
"production_engine_files_changed": 0,
"protocol_freeze_changed": false,
"protocol_fingerprint": "0x0cf1e12a",
"changes": [
"historical loopback milestone explicitly crosses CL_SendCmd for every client signon reply",
"historical loopback milestone explicitly crosses the server reliable-send phase for queued signon payloads",
"negative pre-send assertions prove that parsers and command handlers do not transport data immediately",
"milestone_signon_phase_contract prevents regression to the stale immediate-send model",
"acceptance and result collection use the BP-015-019R1 delivery identity while retaining BP-019 executable identity"
],
"status": "implemented; Windows acceptance pending"
},
"bp015019r1_acceptance": {
"result_archive": "MiniQuake_BP-015-019R1_RESULTS_20260725-182626.zip",
"result_archive_sha256": "f9653da642c897049302159a87528184f2381704d3b6ce965a0722c58608870b",
"status": "PASS",
"acceptance_steps": "40/40 PASS",
"build": "PASS",
"all_protocol_tests": "PASS",
"real_game_validation": "id1/start PASS",
"headless_runtime": "300 frames PASS",
"trace_a": "128/128 PASS",
"trace_b": "128/128 PASS",
"trace_byte_identity": "PASS",
"trace_sha256": "635b830d00997026fab868ab135e66062a367ef2855a103be38d96a7c04a3ddd",
"trace_rolling_hash": "58a7d245",
"snapshot_context_summary": "PASS",
"udp_loopback": "PASS"
},
"bp020_quakec_progs": {
"runtime_fixtures": 18,
"oracle_rows": 11,
"status": "R2 Windows 18/18 PASS; stock qcc parameter storage and runtime CRC confirmed"
},
"bp021_quakec_vm": {
"runtime_fixtures": 16,
"oracle_rows": 15,
"status": "R2 Windows 16/16 PASS"
},
"bp022_quakec_edicts": {
"runtime_fixtures": 22,
"oracle_rows": 12,
"status": "R2 Windows 21/22; exact-size shared Quake-byte serializer implemented in R3; Windows acceptance pending"
},
"bp023_quakec_builtins": {
"runtime_fixtures": 22,
"oracle_rows": 13,
"builtin_slots": 79,
"fixme_slots": 14,
"builtin_fingerprint": "0xb86a0245",
"status": "R2 Windows 22/22 PASS"
},
"bp024_quakec_closure": {
"block_id": "BP-020-024",
"parent_delivery": "BP-015-019R1",
"final_package_id": "BP-024R3",
"quakec_status": "quakec_109_frozen_v1",
"contract_fingerprint": "0xbc89cbf1",
"runtime_fixtures": 20,
"stock_progs_gate": true,
"required_globals": 54,
"required_fields": 77,
"required_functions": 11,
"status": "BP-020..024R3 fully Windows-accepted: 20/20 closure, stock id1/progs.dat, game validation, 300 frames, deterministic traces and UDP PASS"
},
"bp020024_initial_acceptance": {
"result_archive": "MiniQuake_BP-020-024_RESULTS_20260725-201735.zip",
"result_archive_sha256": "91797f541fbcbe83bd304bcb1d3fcc02551ac6d2c51dce451abda5cc6ac1d5b8",
"status": "FAIL",
"static_verification": "PASS",
"build": "PASS",
"base_core": "15/16; stale synthetic progs.dat fixture rejected by the new mandatory-NUL guard",
"base_milestones": "24/24 PASS",
"diagnostics_and_protocol_regressions": "all PASS",
"bp020": "18/18 PASS",
"bp021": "15/16; fixture installed builtin #1 in slot 0",
"bp022": "20/22; signed-zero literal boundary and ED_Write concatenation boundary",
"bp023": "22/22 PASS",
"bp024": "20/20 PASS",
"installed_game_validation": "FAIL exit 2; initial runner did not preserve native stdout",
"stock_gate": "not reached",
"trace_and_udp": "not reached"
},
"bp020024r1_hotfix": {
"delivery_revision": "BP-020-024R1",
"engine_package_id": "BP-024R1",
"parent_delivery": "BP-020-024",
"protocol_freeze_changed": false,
"quakec_contract_fingerprint": "0xbc89cbf1",
"production_changes": [
"format/progs accepts negative-first-statement qcc builtins whose declared parameter words exceed zero locals",
"edict/savegame serialization preserves the raw Binary32 sign bit and avoids inline void concatenation"
],
"test_changes": [
"large synthetic progs fixture includes the required leading NUL string",
"VM trace fixture maps builtin #1 to array slot 1",
"negative zero is constructed from QuakeC word 0x80000000"
],
"delivery_changes": [
"stock, installed-game and headless-runtime gates are independent and fully logged"
],
"status": "partially confirmed; superseded by R2 for stock-qcc parameter storage and ED_Write"
},
"bp020024r1_acceptance": {
"result_archive": "MiniQuake_BP-020-024R1_RESULTS_20260725-214138.zip",
"result_archive_sha256": "3936e942473029af1cdf2dad784919e45fc34c3ba8b91bdf06f2328f4e7468e1",
"status": "FAIL",
"acceptance_steps": "37/42 PASS",
"build": "PASS",
"core_milestones_protocol": "all PASS",
"bp020": "18/18 PASS",
"bp021": "16/16 PASS",
"bp022": "21/22",
"bp023": "22/22 PASS",
"bp024": "20/20 PASS",
"stock_progs": "FAIL: parameters exceed locals in SUB_AttackFinished",
"game_validation": "FAIL at progs.dat",
"headless_runtime": "FAIL at Host_Init",
"trace_a": "0/128; before_filter; exit 3"
},
"bp020024r2_hotfix": {
"delivery_revision": "BP-020-024R2",
"engine_package_id": "BP-024R2",
"parent_delivery": "BP-020-024R1",
"protocol_freeze_changed": false,
"quakec_contract_fingerprint": "0xbc89cbf1",
"production_changes": [
"normal parse uses loadable-program checks while validateProgram remains the explicit strict audit",
"parameter storage is checked against globals instead of the unrelated locals count",
"edict/global/save text uses typed serialization and checked stepwise quoted-pair appends"
],
"test_changes": [
"BP-020 covers bytecode parameters with locals zero, out-of-range parameter destinations and builtin signatures",
"BP-022 covers exact ED_Write/ED_WriteGlobals/savegame text and void rejection before concatenation"
],
"status": "implemented; R2 Windows accepted all production/runtime gates; BP-022 synthetic ED_Write fixture remained 21/22"
},
"bp020024r2_acceptance": {
"result_archive": "MiniQuake_BP-020-024R2_RESULTS_20260725-224602.zip",
"result_archive_sha256": "fec22c41880ff1d34a66f0e254281e5d72777db5a19f0feb60f077deeedae060",
"status": "FAIL; one independent synthetic BP-022 fixture failed, 51/52 groups passed",
"build": "PASS; 19/19 executables",
"base_and_protocol": "all PASS",
"bp020": "18/18 PASS",
"bp021": "16/16 PASS",
"bp022": "21/22",
"bp023": "22/22 PASS",
"bp024": "20/20 PASS",
"stock_progs": "PASS",
"game_validation": "PASS",
"headless_runtime": "300 frames PASS",
"trace_frames": 128,
"trace_sha256": "2efa7130b9dacabb1c463d35c903f1e8f8b3e24feeca27b649d1211a6fc62c17",
"trace_rolling_hash": "58a7d245",
"udp_loopback": "PASS",
"failure": "ED_Write: Cannot stringify void for string concatenation"
},
"bp020024r3_hotfix": {
"delivery_revision": "BP-020-024R3",
"engine_package_id": "BP-024R3",
"parent_delivery": "BP-020-024R2",
"protocol_freeze_changed": false,
"quakec_contract_fingerprint": "0xbc89cbf1",
"production_changes": [
"two-pass exact-size Quake-byte serialization for ED_Write and ED_WriteGlobals",
"shared direct/savegame definition serializer",
"single final quake_latin1_cstring_v1 decode after byte-document completion",
"original ED_WriteGlobals emission of eligible zero-valued DEF_SAVEGLOBAL entries"
],
"test_changes": [
"type-safe ED_Write result diagnostics",
"exact extended-byte 0xe9 output checks",
"cumulative appendQuotedPair check",
"zero float, empty string and entity-zero saveglobal checks"
],
"status": "Windows-accepted in BP-020-024R3; all QuakeC fixtures and full runtime gates PASS"
},
"bp020024r3_acceptance": {
"result_archive": "MiniQuake_BP-020-024R3_RESULTS_20260725-233340.zip",
"result_archive_sha256": "d9fa5aa62854a8c9b5175c2d8aa789e49516c530ded3294b5f7a5515467e820f",
"status": "PASS",
"build": "PASS",
"base_protocol_quakec": "all PASS",
"stock_progs": "PASS",
"game_validation": "PASS",
"headless_runtime": "300 frames PASS",
"trace_frames": 128,
"trace_sha256": "28fb377c9d694ed7ac14dac1d7110fa6fcb6cdcd2ffdf8a3c7cdbad3ffefe5cd",
"trace_rolling_hash": "58a7d245",
"udp_loopback": "PASS"
},
"bp025029": {
"delivery_revision": "BP-025-029",
"engine_package_id": "BP-029",
"parent": "BP-024R3",
"protocol_status": "protocol15_frozen_v1",
"quakec_status": "quakec_109_frozen_v1",
"world_physics_status": "world_physics_109_frozen_v1",
"world_physics_fingerprint": "0x2235d77c",
"runtime_fixtures": 125,
"steps": {
"BP-025": "world hull and trace",
"BP-026": "linking and collision filters",
"BP-027": "monster movement",
"BP-028": "server physics and client movement",
"BP-029": "server user and cumulative closure"
},
"production_integration": "server.runNonClientPhysicsWithRetouch delegates world and non-client edicts to physics.SV_Physics_NonClientEntity",
"status": "implemented; R2 reached full runtime/trace/UDP gates with 63/67 groups; R3 acceptance pending"
},
"bp025029_initial_windows_result": {
"result_archive": "MiniQuake_BP-025-029_RESULTS_20260726-010226.zip",
"result_archive_sha256": "40282cedd6a11449b85272e50bec3fba98f75eea0e73bd9c0b63e40db7710549",
"status": "FAIL during cumulative build before new runtime fixtures",
"static_verifier": "32/32 PASS",
"compiled_executables_before_failure": 21,
"failure_target": "MiniQuakeWorldTraceTests.exe",
"failure": "import alias bsp refers to multiple packages: miniquake.format.bsp and miniquake.world_bsp",
"runtime_gates": "not reached"
},
"bp025029r1_hotfix": {
"delivery_revision": "BP-025-029R1",
"engine_package_id": "BP-029",
"parent_delivery": "BP-025-029",
"scope": "test-and-delivery-only",
"production_source_changed": false,
"changes": [
"world_bsp test alias bsp renamed to bspworld",
"server_move closure-test alias movement renamed to serverMovement",
"transitive explicit import-alias closure verifier added for all MiniLang entry points",
"R1-specific acceptance and result-collection scripts added"
],
"world_physics_fingerprint": "0x2235d77c",
"status": "Windows preflight PASS; 27/28 targets compiled; final closure target exposed nonexistent world_hull.pointContents fixture call"
},
"bp025029r1_windows_result": {
"result_archive": "MiniQuake_BP-025-029R1_RESULTS_20260726-015350.zip",
"result_archive_sha256": "08f1dfb4ee1cd0e703b94177f02334a1a0a3f68cf152e6e8412b0b6ea02dd9af",
"status": "FAIL during final cumulative compile target",
"static_verifier": "34/34 PASS",
"compiled_executables": "27/28",
"failure_target": "MiniQuakeWorldPhysicsClosureTests.exe",
"failure": "tests/world_physics_closure_tests.ml called nonexistent miniquake.world_hull.pointContents",
"runtime_gates": "not reached"
},
"bp025029r2_hotfix": {
"delivery_revision": "BP-025-029R2",
"engine_package_id": "BP-029",
"parent_delivery": "BP-025-029R1",
"scope": "test-and-delivery-only",
"production_source_changed": false,
"changes": [
"closure test uses world_hull.pointContentsFromNode(box, 0, point)",
"box-hull closure statements expanded into independent lines",
"exported world_hull member contract added to tools/verify.py",
"R2-specific acceptance and collection metadata added"
],
"world_physics_fingerprint": "0x2235d77c",
"status": "R2 Windows built and completed runtime/trace/UDP gates; four independent runtime groups exposed R3 corrections"
},
"bp025029r2_windows_result": {
"delivery_revision": "BP-025-029R2",
"status": "FAIL; 63/67 independent groups passed",
"result_archive": "MiniQuake_BP-025-029R2_RESULTS_20260726-101120.zip",
"result_archive_sha256": "b036b509ec770e20407eda763978f32cdda5009d5651369c2916ebe76e9365dc",
"build": "PASS; all targets compiled",
"historical_protocol_quakec": "PASS",
"installed_game_validation": "PASS",
"headless_runtime": "300 frames PASS",
"trace_frames": 128,
"trace_sha256": "24830a3e183784de44a9c7261a42cc8e5aebf8fd1c8fdbafc32ea447ee0eba9f",
"trace_rolling_hash": "4d8fc98d",
"trace_byte_identity": "PASS",
"udp_loopback": "PASS",
"failures": [
"BP-025 translated brush fixture used reversed hull0 drawing-node children",
"BP-028 MSG_ReadAngle signed-byte fixture expected +180 instead of -180",
"BP-029 allowed command adapter used handler convenience return as acceptance result",
"BP-029 ping fixture skipped the protocol Binary32 decode boundary",
"BP-029 closure fixture accessed nonexistent Hull.nodes"
]
},
"bp025029r3_hotfix": {
"delivery_revision": "BP-025-029R3",
"engine_package_id": "BP-029",
"parent_delivery": "BP-025-029R2",
"scope": "one production adapter correction plus fixture/oracle parity repairs",
"production_source_changed": true,
"production_changes": [
"svuExecuteString treats a successfully dispatched whitelisted command as accepted, matching void Cmd_ExecuteString semantics"
],
"test_oracle_changes": [
"translated brush fixture child order corrected for hull0 drawing nodes",
"MSG_ReadAngle byte 0x80 expectation corrected to -180 degrees",
"ping expectation passes through protocol Binary32 decode before double subtraction and float storage",
"box-hull closure validates algorithmic node 5/6 boundary instead of nonexistent Hull.nodes"
],
"world_physics_fingerprint": "0x2235d77c",
"runtime_fixture_counts": 125,
"status": "implemented; awaiting Windows acceptance"
},
"bp025029r3_acceptance": {
"result_archive": "MiniQuake_BP-025-029R3_RESULTS_20260726-115205.zip",
"result_archive_sha256": "518b080fe6dbb69d10c5395a7d96ad0c9cbab585b0054a6e810ca762da88c556",
"status": "PASS",
"headless_runtime": "300 frames PASS",
"trace_frames": "128/128 twice, byte-identical",
"trace_sha256": "24830a3e183784de44a9c7261a42cc8e5aebf8fd1c8fdbafc32ea447ee0eba9f",
"trace_rolling_hash": "4d8fc98d",
"udp_loopback": "PASS",
"world_physics_status": "world_physics_109_frozen_v1"
},
"bp030_host_timing": {
"fixtures": 18,
"status": "implemented; Windows acceptance pending",
"original": [
"host.c",
"quakedef.h"
]
},
"bp031_command_cvar": {
"fixtures": 20,
"status": "implemented; Windows acceptance pending",
"original": [
"cmd.c",
"cvar.c"
]
},
"bp032_demo_lifecycle": {
"fixtures": 20,
"status": "implemented; Windows acceptance pending",
"original": [
"cl_demo.c"
]
},
"bp033_savegame_v5": {
"fixtures": 24,
"status": "implemented; Windows acceptance pending",
"original": [
"host_cmd.c",
"pr_edict.c"
],
"version": 5
},
"bp034_host_lifecycle_closure": {
"fixtures": 24,
"status": "implemented; Windows acceptance pending",
"contract_status": "host_lifecycle_109_frozen_v1",
"contract_fingerprint": "0x8cbb709f"
},
"bp030034_initial_acceptance": {
"result_archive": "MiniQuake_BP-030-034_RESULTS_20260726-134405.zip",
"result_archive_sha256": "1bf865b23206b74dc6ad0f3785bf7171cd9ffac3193bd86d3af6b674f4e1d4c9",
"status": "FAIL; only BP-030 host timing fixture 3/18 failed",
"build": "PASS",
"bp031_bp034": "PASS",
"installed_game_validation": "PASS",
"headless_runtime": "300 frames PASS",
"trace_sha256": "31647a08ecb3204cd58b71b4fc6f441f5ed814d6c27aa6813ac3e566bf1c4769",
"trace_rolling_hash": "0658dd48",
"trace_byte_identity": "PASS",
"udp_loopback": "PASS",
"root_cause": "fixture incorrectly expected 0.007+0.007 to remain below 1/72"
},
"bp030034r1_delivery": {
"delivery_revision": "BP-030-034R1",
"parent": "BP-030-034",
"production_source_changed": false,
"runtime_fixture_counts_changed": false,
"status": "awaiting Windows acceptance"
},
"bp030034r1_acceptance": {
"result_archive": "MiniQuake_BP-030-034R1_RESULTS_20260726-142334.zip",
"result_archive_sha256": "04e4653b8d1533d345ae24bfed8fdbbc8468e9800a91d25ef6c5b4a0a189b362",
"status": "PASS",
"headless_runtime": "300 frames PASS",
"trace_frames": 128,
"trace_sha256": "31647a08ecb3204cd58b71b4fc6f441f5ed814d6c27aa6813ac3e566bf1c4769",
"trace_rolling_hash": "0658dd48",
"trace_byte_identity": "PASS",
"udp_loopback": "PASS"
},
"bp035_client_state_render": {
"runtime_fixtures": 20,
"status": "implemented; BP-035-039R1 Windows acceptance pending"
},
"bp036_view_chase": {
"runtime_fixtures": 22,
"status": "implemented; BP-035-039R1 Windows acceptance pending"
},
"bp037_temp_beam_render": {
"runtime_fixtures": 22,
"status": "implemented; BP-035-039R1 Windows acceptance pending"
},
"bp038_particle_runtime": {
"runtime_fixtures": 22,
"status": "implemented; BP-035-039R1 Windows acceptance pending"
},
"bp039_client_render_closure": {
"runtime_fixtures": 24,
"status": "client_render_109_frozen_v1; accepted on Windows",
"fingerprint": "0x95e2b295"
},
"bp035039_initial_acceptance": {
"result_archive": "MiniQuake_BP-035-039_RESULTS_20260726-190144.zip",
"result_archive_sha256": "96a612797e6e59a09642600d91fd6ab4bce0bf2aa236aeb510169767809a4919",
"status": "FAIL; only BP-035 rotate fixture 18/20 failed",
"build": "PASS",
"bp036_bp039": "PASS",
"installed_game_validation": "PASS",
"headless_runtime": "300 frames PASS",
"trace_sha256": "e4c5334bf6aa4205b3a8d6c0c408a398a16bf042852703ea0bf29ba31c1919a1",
"trace_rolling_hash": "0658dd48",
"trace_byte_identity": "PASS",
"udp_loopback": "PASS",
"root_cause": "fixture ignored CL_LerpPoint no-lerp time snap before bobjrotate calculation"
},
"bp035039r1_delivery": {
"delivery_revision": "BP-035-039R1",
"parent": "BP-035-039",
"production_source_changed": false,
"runtime_fixture_counts_changed": false,
"status": "PASS; accepted on Windows"
},
"bp035039r1_acceptance": {
"result_archive": "MiniQuake_BP-035-039R1_RESULTS_20260726-213106.zip",
"result_archive_sha256": "2bdab8329975fbd2108c4cf644c70178769c0b713aceec2cfbc8d9a2a2bf613b",
"status": "PASS",
"headless_runtime": "300 frames PASS",
"trace_frames": 128,
"trace_sha256": "e4c5334bf6aa4205b3a8d6c0c408a398a16bf042852703ea0bf29ba31c1919a1",
"trace_rolling_hash": "0658dd48",
"trace_byte_identity": "PASS",
"udp_loopback": "PASS",
"client_render_status": "client_render_109_frozen_v1"
},
"bp040_world_surfaces": {
"runtime_fixtures": 20,
"status": "implemented; R2 Windows acceptance pending",
"original": [