fix(rendering): bound portal resource lifetime
Separate logical ownership, render publication, and GPU retirement across live entities, landblocks, particles, textures, mesh arenas, portal/UI teardown, and per-frame scratch storage. Add bounded DAT/texture caches, upload budgets, three-frame fence retirement, exact-incarnation appearance reconciliation, frame pacing, and extensive lifetime conformance coverage.\n\nThe seven-destination connected route now cuts peak working/private memory roughly in half, returns Caul to 125-153 FPS locally, and produces no WER or AMD reset.\n\nCo-authored-by: OpenAI Codex <codex@openai.com>
This commit is contained in:
parent
3971997689
commit
749e8ceeb1
225 changed files with 29107 additions and 3914 deletions
|
|
@ -6,6 +6,7 @@ using AcDream.Core.Items;
|
|||
using AcDream.Core.Textures;
|
||||
using AcDream.Core.Spells;
|
||||
using DatReaderWriter;
|
||||
using AcDream.Content;
|
||||
using DatReaderWriter.DBObjs;
|
||||
|
||||
namespace AcDream.App.UI;
|
||||
|
|
@ -32,7 +33,7 @@ namespace AcDream.App.UI;
|
|||
/// </summary>
|
||||
public sealed class IconComposer
|
||||
{
|
||||
private readonly DatCollection _dats;
|
||||
private readonly IDatReaderWriter _dats;
|
||||
private readonly TextureCache _cache;
|
||||
private readonly Dictionary<(uint, uint, uint, uint, uint), uint> _byTuple = new();
|
||||
private readonly Dictionary<(uint, uint, uint), ComposedIcon> _dragByTuple = new();
|
||||
|
|
@ -59,7 +60,7 @@ public sealed class IconComposer
|
|||
private readonly Dictionary<uint, uint> _effectDidByIndex = new();
|
||||
private readonly Dictionary<uint, DecodedTexture> _effectTileByDid = new();
|
||||
|
||||
public IconComposer(DatCollection dats, TextureCache cache)
|
||||
public IconComposer(IDatReaderWriter dats, TextureCache cache)
|
||||
{
|
||||
_dats = dats;
|
||||
_cache = cache;
|
||||
|
|
@ -93,7 +94,7 @@ public sealed class IconComposer
|
|||
{
|
||||
if (_underlayResolveTried) return;
|
||||
_underlayResolveTried = true;
|
||||
uint masterDid = (uint)_dats.Portal.Header.MasterMapId; // = 0x25000000
|
||||
uint masterDid = (uint)_dats.Portal.Db.Header.MasterMapId; // = 0x25000000
|
||||
if (masterDid == 0) return;
|
||||
if (!_dats.Portal.TryGet<EnumIDMap>(masterDid, out var master)) return;
|
||||
if (!master.ClientEnumToID.TryGetValue(0x10000004u, out var subDid)) return; // → 0x25000008
|
||||
|
|
@ -125,7 +126,7 @@ public sealed class IconComposer
|
|||
{
|
||||
if (_effectResolveTried) return;
|
||||
_effectResolveTried = true;
|
||||
uint masterDid = (uint)_dats.Portal.Header.MasterMapId; // = 0x25000000
|
||||
uint masterDid = (uint)_dats.Portal.Db.Header.MasterMapId; // = 0x25000000
|
||||
if (masterDid == 0) return;
|
||||
if (!_dats.Portal.TryGet<EnumIDMap>(masterDid, out var master)) return;
|
||||
if (!master.ClientEnumToID.TryGetValue(0x10000005u, out var subDid)) return; // → 0x25000009
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue