Reading session -- no build available, so: verify things instead of writing code. - Cross-checked the eight stat declarations against their definitions and use sites. Identical. The one compile risk I had only eyeballed is now retired. - REVIEW_FINDINGS: the GetDensityWithParams and BuildChunkCache splits are now counter-productive rather than optional -- the op stack is replacing the first, and FRoomGraphSource deliberately CALLS the second so a restructure forks what was kept unforked. The two passage enums are not duplicates and are UMETA-serialised into authored assets; merging them rewrites content for tidiness. Judged: leave, and close the item. - CODEX-TASK-002's acceptance said "20-30% of lookups", a guess wearing a number. Replaced with arithmetic from the real grid: 1225 columns/tile over 35 Z planes, load factor 0.299, ~317 colliding columns, ~12000 vs 1225 computations = ~9.8x. Plus the reading rule that matters -- the overhang and cliff mods re-query the same XY and add HITS only, so compare the ratio of the two hypotheses, not an absolute percentage. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
11 KiB
VoxelForge — Review Findings (2026-06-23)
Local-LLM cross-file QUALITY review (Qwen3.6-27B @128K, codemap-guardrailed) + Claude verification. Scope: performance, redundancy, dead code, over-complexity (not correctness bugs). Verdict: codebase is healthy — no perf regressions. Items below are improvements, by appetite.
Reconciled against
fable-idea.md+ the perf-pass history (2026-06-23). The big density/ streaming perf wins are already SHIPPED and are not listed here (T1.a surface cache, T1.b grid normals, T1.c LOD0 collision, CullTiles spiral fix, region foliage, passage shortlist). Everything below is net-new (redundancy / dead code / complexity — a different axis), except the two notes flagged inline. Before acting on a PERF item, glance atfable-idea.mdPart I.
Legend: ✅ verified against code · ◻️ checklist box.
2026-07-04 full-codebase pass (Fable 5) — applied everything marked
[x]below, plus NEW items found reviewing the un-built two-grid deco + density-volume work: • Deco launch stall fix — a pending cell already in flight from a previous build was dropped, permanently stalling its region build (blank region until strate change). Now deferred + retried. • Capture gating — level-0 tiles outside the shadow window no longer pay the mesher capture (quantize + 32 KB queue payload) nor polluteCaptureCache(IsTileCaptureUseful, both ends). • Per-tick material pushes change-detected —UpdateTerrainMaterialParams(10 vectors + 3 textures × every terrain MID) and the orb MPC writes now no-op on idle frames; staticFNames. • Landmark cave march bounded —FindLandmarkColumnnow honoursColDepth(same bedrock early-stop as the deco march); it ran the full strate band synchronously on the game thread. •UploadDirtyTexturesnow callsEnsureTextures— GPU upload toggled ON at runtime works. Deliberately NOT done: the big behavior-preserving splits below (un-built tree; compile risk).
2026-07-04 perf pass 2 (per-voxel hot path, Fable 5) — ✅ BUILT & WORKING (ticked 2026-07-27). All bit-identical (same hashes/math, hoisted per chunk/cell): • DiffLayer snapshot API (
HasAnyMods/GetModsVersion/GetChunkModsSnapshot/staticEvaluateMods+ModsVersionatomic) —GetDensityAtsnapshots a chunk's mods once per (chunk, version) via athread_local64-slot cache: ~27 lock ops per tile task instead of ~86k once any carve exists. • Room shape pre-bake —FCachedRoom::ShapeType/ShapeA/ShapeB/ShapeRbaked inBuildChunkCache;EvaluateSDFCachedsignature changed (RoomShapeVarietyremoved, 8 call sites updated). • Strate-index memo inGetDensityWithParams, keyed (chunkZ,GetLayoutVersion()) — new inline getter onUVoxelStrateManager. • Per-cell lattice bakes (thread_local, keyed cell+seed+params): slab columns, maze open edges, vertical shafts + cross-connectors, floating-island constants, disturbance chasms/bridges/ridges. • Worm N2 short-circuit — skip the 2nd Perlin when N1 ≥ WormThreshold (lossless). Regression fixed same day: pass 1's skip-if-identical cache on the orb MPC writes broke the mini-sun lighting (MPC world instances reset behind the writer) — REVERTED,LastOrbMPCremoved; never de-duplicate writes to externally resettable state. The MID-side change detection stays (MIDs own their values).
2026-07-04 batch 3 (Fable 5) — Jahni green-lit multiple changes per build + visual deltas ("nothing is set in stone"). ✅ BUILT & WORKING together with pass 2 (ticked 2026-07-27): • Terracing gradient Z-only (6→2 SDF samples — see the ticked item above). • Lerp X-macro + BakeRoomFeature dedupe (both ticked above, bit-identical). • T2.b LOD octave drop — opt-in
UVoxelSettings::LODOctaveDrop(default 0 = byte-identical);VoxelGenLOD::OctaveBiasthread_local set per tile inGenerateMesh, per-voxel fractal sites wrapped inVoxelGenLOD::Eff(N), XY-field noise deliberately excluded. ARCHITECTURE §8.10. • T2.c tile component pool —TileComponentPool+Acquire/ReleaseTileComponent; unload parks (RemoveSectionGroup strips geometry+collision, hidden, stays registered), apply pops. Bonus:ApplyMeshToTilereuses the existingURealtimeMesh(GetRealtimeMeshAs) — the old unconditionalInitializeRealtimeMeshallocated + orphaned one mesh UObject PER APPLY. • T2.d worker clamp —GetMaxConcurrentTasks()caps the asset budget to logical cores − 2 (the BackgroundNormal priority half had already shipped). Tier 2 is now COMPLETE — T2.a was already done (float SSEVoxelNoisecore, §8.10). • F2 determinism validator —AVoxelWorld::ValidateDeterminismCallInEditor button: boundary points sampled under two cache-window alignments + a repeat pass; any non-zero delta = §8.4 regression. The tool that VERIFIES all the "bit-identical" claims above.
Performance
RE-VERIFIED 2026-07-04: misdiagnosed. The 6VoxelGenerator.cpp(terrain-op gradient) — compute once per voxel and reuse.EvaluateSDFCachedcalls in the terracing block are six DISTINCT sample positions (±1 on each axis) for one central-difference gradient — computed once per voxel already, gated to terrace-enabled rooms near surfaces. Nothing is redundantly re-evaluated. Optional lossy halving: APPLIED 2026-07-04 (Jahni approved visual deltas). SDFs are ≈unit-gradient, soHorizontality = clamp(|SDF(Z+1)−SDF(Z−1)|/2)— the 4 X/Y samples are gone (6→2 SDF evals per terrace-voxel); terraces fade slightly differently on SmoothMin'd slopes.VoxelContentManager.cpp(BuildCellSpawns) — slope-gate cosines now precomputed per entry (CosMaxSlope/CosMinSlopearrays), bit-identical gating. (2026-07-04)VoxelContentManager.cpp(LaunchDecoTasks) — head-index drain + oneRemoveAt(0, Head)compaction (was O(N) per pop). Bonus fix: a pending cell still in flight from a previous build is now DEFERRED, not dropped (dropping stalled its region build forever → permanently blank region). (2026-07-04)VoxelStrateManager.cpp— linearBoundRadiusstored onFVoxelPassage; shortlist no longer Sqrt's per passage. (2026-07-04)
Redundancy (factor out)
VoxelCaveMorphology.cpp— Pit/Chimney/Column baking loops → sharedBakeRoomFeaturehash-placement skeleton (gate/XY/radius chain) + per-type Emit lambda. Bit-identical (same salts, same hash order). (2026-07-04, batch 3 — Jahni green-lit batching without intermediate builds)VoxelStrateTypes.h—FStrateGenerationParams::Lerpnow expands theVF_STRATE_PARAM_FIELDSX-macro (all 74 fields verified present — no drift had happened yet). New struct fields MUST be added to that list. Bit-identical. (2026-07-04, batch 3)VoxelWorld.cppbrush methods — Carve/Fill sphere now funnel throughApplyModificationlike Box/Capsule already did (one diff-layer + remesh dispatch). (2026-07-04)VoxelContentManager.cpp— duplicated drain/reset loops →DrainDecoResults()+ResetGridBuildState(FDecoGrid&). (2026-07-04)EVoxelPassageTypevsEVoxelPassageStyle— two overlapping passage-shape enums, both in active use (11 refs). Consider consolidating to one. (judgment call, not dead) JUDGED 2026-08-16 — LEAVE THEM. Recommendation: close this item rather than act on it. They read as duplicates from the index and are not:EVoxelPassageType(VoxelStrateTypes.h~42) is the global inter-strate bore shape the layout generator picks (SlopedTunnel/VerticalShaft/ helix…);EVoxelPassageStyle(~1741) is per-strate descent styling onFStratePassageConfig(Straight/Worm/Spiral/Cascading). Different owners, different value sets, different lifetimes. And both areUMETA-tagged, i.e. serialised into Jahni's authored strate assets — merging them silently rewrites saved content. That is a content-risk change bought for cosmetic tidiness, which is the wrong trade at any time and especially before the content lock.
Dead code
UVoxelMarchingCubesMesher::GetDensity()— removed, along withInterpolateEdge,ComputeGradientNormalandGradientOffset(all dead since T1.b). (2026-07-04)- Vestigial
MidPoint—MidPoint/bHasMidPointfields + the unreachable debug-draw branch removed. (2026-07-04) - Codemap-known dead/legacy —
GetLODForChunk,LODToStep,IsChunkInRange,LOD0Distance,LOD1Distance,ContentMaxLevel,VoxelChunk.h(whole file —FVoxelTileKeyis the identity now) all removed 2026-07-04.MaxLODLevel/DecorationActorRadiusChunkswere already replaced by the two-grid deco redesign (StreamTier/DecorationNearRadiusChunks). CORRECTION:GetStrateChunkZBoundsis NOT dead —BuildDesiredTilesuses it for the strate-aware vertical clamp; struck from the dead list.
Over-complexity (behavior-preserving splits, optional)
⛔ REASSESSED 2026-08-16 — do not pick these up as filler work. They were written before the operator-stack refactor existed, and two of them are now actively counter-productive rather than merely optional. Read the reason before ticking anything here.
- ~
→ DON'T. ⛔ Two independent reasons. (1) The operator stack is replacing this function archetype by archetype — splitting it produces code that gets deleted, and churns the eight equivalence tests that compare the stack against it bit for bit. (2) It is the hottest path in the plugin and carries theGetDensityWithParams(600-1000 L)ARCHITECTURE §8.10invariants (thread_localbox-valid caches, two-pass MC loop, SSE noise). The one time a "behaviour-preserving" change was made here it silently deleted the overhang and only 1 sample in 20 000 crossed the isosurface — a perf change can be a correctness change. Revisit only once theswitchpath is retired for good. - ~
→ DON'T, same reason.BuildChunkCache(450 L)FRoomGraphSourcedeliberately callsBuildChunkCache/EvaluateSDFCachedinstead of transcribing them, precisely so there is one definition. Restructuring it now forks the thing that was kept unforked on purpose. GenerateMesh(~250 L) →PrecalcDensityGrid/MarchCells/GenerateSkirts. ⚠️ Still genuinely optional, but the two-pass loop is an§8.10invariant — a split must not merge the passes, and the Z-outermost pre-sample order is load-bearing for every column cache downstream (see the column-memo work of 2026-08-16). Low value, non-zero risk.GetGenerationParams(~180 L) → extractApplyBoundaryTransition(...). The safest of the six — pure params math, no caches, andAUDIT §C2already forced a close reading of both Gradient arms. If any of these is ever worth doing, it is this one.GeneratePassages(~150 L) →ComputePlacement/BuildControlChain/ComputeBoundsBuildCellSpawns(~150 L) →FindSurfaceCrossings/PlaceDecorationsAtCrossings
Full method notes + raw per-pass output: E:\LocalLLM\reviews\QUALITY_VoxelForge.md (+ QUALITY_pass1/2/3).