fix(gfx): op 0x215 query registry is separate from the geometry store
The retained-mode "2nd CG renders off-screen" bug: GfxState conflated two distinct native structures. It assigned a fabricated AcquireSlot() slot on every GetOrCreate (called by all geometry/draw ops) and returned it from QuerySlot (op 0x215). But Ghidra (gfx_op_0x215_register_query @0x42a0b0 / gfx_op_0x1a2_registry_insert @0x42d360) shows 0x215 does map.find(handle) over a registry populated ONLY by op 0x1a2 -- it never allocates a slot. So a CG handle (never 0x1a2-registered) read back as "existing", took the existing branch of label_12649, ran get-texture-size on the wrong slot (0), got size 0, and computed dst = pos(0,0) - (w/2,h) = (-400,-600) -> off-screen. The real engine returns -1 -> the fresh branch -> anchor from the INIT2 arrays -> dst=(0,0). Fix: GfxState keeps a separate _registry (HashSet) populated only by Register() (op 0x1a2); QuerySlot returns the handle if registered else -1, and no longer consults the geometry store or invents slots. Drop AcquireSlot / GfxObject.Slot / the free-list. Verified: Age.Cli gfx --boot SC0000.BIN -> all event CGs dst=(0,0), zero (-400,-600) draws; Godot --boot pages 1/2/4 render opening CGs full-screen; engine 44/44; sweep parity 284 exit / 13 STEP-LIMIT unchanged. Docs: engine-re.md (query-registry-vs-geometry-store section), opcodes.toml 0x1a2/0x215 rebuilt; Ghidra helpers gfx_registry_map_find/hash_insert annotated + saved. Tests rewritten to the native contract. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -36,21 +36,27 @@ public class GfxCommandBufferTests
|
||||
Assert.Equal(30, vm.Globals[7]);
|
||||
}
|
||||
|
||||
private static (int, Operand[]) Register(int handle) => (0x1a2, new[] { G(handle) });
|
||||
|
||||
[Fact]
|
||||
public void QueryReturnsDistinctSlotsPerHandle_NotZero()
|
||||
public void QueryReturnsMinusOneUntilRegistered_ThenTheHandle()
|
||||
{
|
||||
// Native contract (docs/engine-re.md op 0x215/0x1a2): the query registry is populated ONLY by op 0x1a2
|
||||
// (gfx-cmd-register). Giving a handle geometry via set-geom (0x217) must NOT register it — query stays -1
|
||||
// so a CG handle takes label_12649's fresh branch. After 0x1a2, query returns the handle (native
|
||||
// map[handle]=handle; small system handles double as their surface slot).
|
||||
var t = T();
|
||||
// create two objects via set-geom, then query each into g[10], g[11].
|
||||
var scene = ScriptAssembler.Assemble(t, "GFX", new List<(int, Operand[])>
|
||||
{
|
||||
MovGI(1, 0x1000), MovGI(2, 0x2000), MovGI(3, 0),
|
||||
SetGeom3(1, 3, 3, 3), SetGeom3(2, 3, 3, 3),
|
||||
MovGI(1, 0xcb2a), MovGI(2, 0xd), MovGI(3, 0),
|
||||
SetGeom3(1, 3, 3, 3), // 0xcb2a: geometry only, NOT registered
|
||||
Register(2), // 0xd: op 0x1a2 registers it
|
||||
Query(10, 1), Query(11, 2), Exit(),
|
||||
}, System.Array.Empty<string>());
|
||||
var vm = new VirtualMachine(scene, t, new RecordingHost());
|
||||
vm.Run();
|
||||
Assert.NotEqual(0, vm.Globals[10]); // not collapsed to slot 0
|
||||
Assert.NotEqual(vm.Globals[10], vm.Globals[11]); // distinct slots => no collapse
|
||||
Assert.Equal(-1, vm.Globals[10]); // geometry-only CG handle -> -1 -> fresh branch (the bug fix)
|
||||
Assert.Equal(0xd, vm.Globals[11]); // 0x1a2-registered handle -> its value (== handle)
|
||||
}
|
||||
|
||||
private static (int, Operand[]) BlitColor(int h, int x, int y, int alpha, int color)
|
||||
|
||||
@@ -4,14 +4,19 @@ using Xunit;
|
||||
public class GfxStateTests
|
||||
{
|
||||
[Fact]
|
||||
public void DistinctHandlesGetDistinctSlots()
|
||||
public void QueryRegistryIsPopulatedOnlyByRegister_NotByGeometryOps()
|
||||
{
|
||||
// Native contract (docs/engine-re.md op 0x215/0x1a2): the op-0x215 query registry is populated ONLY by
|
||||
// op 0x1a2 (gfx-cmd-register). Merely giving a handle geometry (GetOrCreate, as the set-geom ops do)
|
||||
// must NOT make query-gfx-object return a slot for it — otherwise a CG handle (never 0x1a2-registered)
|
||||
// wrongly takes label_12649's existing branch and collapses off-screen.
|
||||
var g = new GfxState();
|
||||
int s1 = g.GetOrCreate(0x1000).Slot;
|
||||
int s2 = g.GetOrCreate(0x2000).Slot;
|
||||
Assert.NotEqual(s1, s2);
|
||||
Assert.Equal(s1, g.QuerySlot(0x1000)); // stable
|
||||
Assert.Equal(-1, g.QuerySlot(0x9999)); // unknown -> -1 (matches native 0xffffffff)
|
||||
g.GetOrCreate(0xcb2a).V18 = (400, 600, 0); // geometry only, like the fresh CG-load branch
|
||||
Assert.Equal(-1, g.QuerySlot(0xcb2a)); // NOT registered => -1 => fresh branch (correct)
|
||||
|
||||
g.Register(0xd); // op 0x1a2 registers a small system/UI handle
|
||||
Assert.Equal(0xd, g.QuerySlot(0xd)); // native map[handle]=handle; the value doubles as its slot
|
||||
Assert.Equal(-1, g.QuerySlot(0x9999)); // unknown -> -1 (matches native 0xffffffff)
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -26,13 +31,13 @@ public class GfxStateTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void ReleaseFreesTheSlotForReuse()
|
||||
public void ReleaseRemovesTheHandleFromTheQueryRegistry()
|
||||
{
|
||||
var g = new GfxState();
|
||||
int s1 = g.GetOrCreate(0x1000).Slot;
|
||||
g.Release(0x1000);
|
||||
Assert.Equal(-1, g.QuerySlot(0x1000));
|
||||
Assert.Equal(s1, g.GetOrCreate(0x2000).Slot); // freed slot reused
|
||||
g.Register(0x10);
|
||||
Assert.Equal(0x10, g.QuerySlot(0x10));
|
||||
g.Release(0x10); // op 0x1fa / 0x1f7 tear down the registration too
|
||||
Assert.Equal(-1, g.QuerySlot(0x10));
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -43,7 +48,7 @@ public class GfxStateTests
|
||||
public void EraseRangeRemovesHandlesInRange()
|
||||
{
|
||||
var g = new GfxState();
|
||||
g.GetOrCreate(0x10); g.GetOrCreate(0x11); g.GetOrCreate(0x12); g.GetOrCreate(0x20);
|
||||
g.Register(0x10); g.Register(0x11); g.Register(0x12); g.Register(0x20);
|
||||
g.EraseRange(0x10, 3); // count>1 → erase [0x10, 0x13)
|
||||
Assert.Equal(-1, g.QuerySlot(0x10));
|
||||
Assert.Equal(-1, g.QuerySlot(0x12));
|
||||
@@ -54,7 +59,7 @@ public class GfxStateTests
|
||||
public void EraseRangeCountLeOneErasesSingleHandle()
|
||||
{
|
||||
var g = new GfxState();
|
||||
g.GetOrCreate(0x10); g.GetOrCreate(0x11);
|
||||
g.Register(0x10); g.Register(0x11);
|
||||
g.EraseRange(0x10, 1); // count<=1 → single handle
|
||||
Assert.Equal(-1, g.QuerySlot(0x10));
|
||||
Assert.NotEqual(-1, g.QuerySlot(0x11));
|
||||
|
||||
Reference in New Issue
Block a user