feat(rendering): complete current-path render referee

Extend the non-drawing oracle through ordered PView routes, dispatcher visibility and final instance payloads, and accepted retail selection parts. Lifecycle artifacts can now referee the later shadow scene without influencing production visibility or draw decisions.
This commit is contained in:
Erik 2026-07-24 21:28:12 +02:00
parent dbaea19269
commit f9b68f8f2a
11 changed files with 964 additions and 41 deletions

View file

@ -1,6 +1,7 @@
using System.Numerics;
using System.Reflection;
using AcDream.App.Rendering;
using AcDream.App.Rendering.Scene;
using AcDream.Core.World;
namespace AcDream.App.Tests.Rendering;
@ -126,6 +127,37 @@ public sealed class RetailPViewPassExecutorTests
Assert.Contains("phantom-objects", executor.Operations);
}
[Fact]
public void DrawInside_referee_records_the_exact_routed_entity_buckets()
{
var oracle = new CurrentRenderSceneOracle();
var renderer = new RetailPViewRenderer(oracle);
using var executor = new RecordingExecutor();
LoadedCell interior = InteriorWithExit(0xA9B40100u);
WorldEntity cellStatic = Entity(20u, parentCellId: interior.CellId);
WorldEntity dynamic = Entity(
21u,
serverGuid: 0x80000021u,
parentCellId: interior.CellId);
renderer.DrawInside(Frame(interior, [cellStatic, dynamic]), executor);
Assert.Equal(1uL, oracle.Snapshot.CompletedPViewFrameSequence);
Assert.Equal(2, oracle.Snapshot.PViewCandidateCount);
Assert.Collection(
oracle.PViewCandidates,
candidate =>
{
Assert.Equal(CurrentRenderPViewRoute.CellStatic, candidate.Route);
Assert.Equal(cellStatic.Id, candidate.Projection.EntityId);
},
candidate =>
{
Assert.Equal(CurrentRenderPViewRoute.DynamicLast, candidate.Route);
Assert.Equal(dynamic.Id, candidate.Projection.EntityId);
});
}
[Fact]
public void DrawInside_interior_root_executes_the_nearby_building_look_in_punch()
{