mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
307 lines
9.5 KiB
C#
307 lines
9.5 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
using Dalamud.Game.ClientState.Objects.Enums;
|
|
using Dalamud.Game.ClientState.Objects.SubKinds;
|
|
using Dalamud.Game.ClientState.Objects.Types;
|
|
using Dalamud.IoC;
|
|
using Dalamud.IoC.Internal;
|
|
using Dalamud.Plugin.Internal;
|
|
using Dalamud.Plugin.Services;
|
|
using Dalamud.Utility;
|
|
|
|
using Microsoft.Extensions.ObjectPool;
|
|
|
|
using Serilog;
|
|
|
|
using CSGameObject = FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject;
|
|
|
|
namespace Dalamud.Game.ClientState.Objects;
|
|
|
|
/// <summary>
|
|
/// This collection represents the currently spawned FFXIV game objects.
|
|
/// </summary>
|
|
[PluginInterface]
|
|
[ServiceManager.EarlyLoadedService]
|
|
#pragma warning disable SA1015
|
|
[ResolveVia<IObjectTable>]
|
|
#pragma warning restore SA1015
|
|
internal sealed partial class ObjectTable : IServiceType, IObjectTable
|
|
{
|
|
private const int ObjectTableLength = 599;
|
|
|
|
private readonly ClientState clientState;
|
|
private readonly CachedEntry[] cachedObjectTable = new CachedEntry[ObjectTableLength];
|
|
|
|
private readonly ObjectPool<Enumerator> multiThreadedEnumerators =
|
|
new DefaultObjectPoolProvider().Create<Enumerator>();
|
|
|
|
private readonly Enumerator?[] frameworkThreadEnumerators = new Enumerator?[4];
|
|
|
|
private long nextMultithreadedUsageWarnTime;
|
|
|
|
[ServiceManager.ServiceConstructor]
|
|
private unsafe ObjectTable(ClientState clientState)
|
|
{
|
|
this.clientState = clientState;
|
|
|
|
var nativeObjectTableAddress = (CSGameObject**)this.clientState.AddressResolver.ObjectTable;
|
|
for (var i = 0; i < this.cachedObjectTable.Length; i++)
|
|
this.cachedObjectTable[i] = new(nativeObjectTableAddress, i);
|
|
|
|
for (var i = 0; i < this.frameworkThreadEnumerators.Length; i++)
|
|
this.frameworkThreadEnumerators[i] = new(this, i);
|
|
|
|
Log.Verbose($"Object table address 0x{this.clientState.AddressResolver.ObjectTable.ToInt64():X}");
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public nint Address
|
|
{
|
|
get
|
|
{
|
|
_ = this.WarnMultithreadedUsage();
|
|
|
|
return this.clientState.AddressResolver.ObjectTable;
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public int Length => ObjectTableLength;
|
|
|
|
/// <inheritdoc/>
|
|
public GameObject? this[int index]
|
|
{
|
|
get
|
|
{
|
|
_ = this.WarnMultithreadedUsage();
|
|
|
|
return index is >= ObjectTableLength or < 0 ? null : this.cachedObjectTable[index].Update();
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public GameObject? SearchById(ulong gameObjectId)
|
|
{
|
|
_ = this.WarnMultithreadedUsage();
|
|
|
|
if (gameObjectId is 0)
|
|
return null;
|
|
|
|
foreach (var e in this.cachedObjectTable)
|
|
{
|
|
if (e.Update() is { } o && o.GameObjectId == gameObjectId)
|
|
return o;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public unsafe nint GetObjectAddress(int index)
|
|
{
|
|
_ = this.WarnMultithreadedUsage();
|
|
|
|
return index is < 0 or >= ObjectTableLength ? nint.Zero : (nint)this.cachedObjectTable[index].Address;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public unsafe GameObject? CreateObjectReference(nint address)
|
|
{
|
|
_ = this.WarnMultithreadedUsage();
|
|
|
|
if (this.clientState.LocalContentId == 0)
|
|
return null;
|
|
|
|
if (address == nint.Zero)
|
|
return null;
|
|
|
|
var obj = (CSGameObject*)address;
|
|
var objKind = (ObjectKind)obj->ObjectKind;
|
|
return objKind switch
|
|
{
|
|
ObjectKind.Player => new PlayerCharacter(address),
|
|
ObjectKind.BattleNpc => new BattleNpc(address),
|
|
ObjectKind.EventNpc => new Npc(address),
|
|
ObjectKind.Retainer => new Npc(address),
|
|
ObjectKind.EventObj => new EventObj(address),
|
|
ObjectKind.Companion => new Npc(address),
|
|
ObjectKind.MountType => new Npc(address),
|
|
ObjectKind.Ornament => new Npc(address),
|
|
_ => new GameObject(address),
|
|
};
|
|
}
|
|
|
|
[Api10ToDo("Use ThreadSafety.AssertMainThread() instead of this.")]
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
private bool WarnMultithreadedUsage()
|
|
{
|
|
if (ThreadSafety.IsMainThread)
|
|
return false;
|
|
|
|
var n = Environment.TickCount64;
|
|
if (this.nextMultithreadedUsageWarnTime < n)
|
|
{
|
|
this.nextMultithreadedUsageWarnTime = n + 30000;
|
|
|
|
Log.Warning(
|
|
"{plugin} is accessing {objectTable} outside the main thread. This is deprecated.",
|
|
Service<PluginManager>.Get().FindCallingPlugin()?.Name ?? "<unknown plugin>",
|
|
nameof(ObjectTable));
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>Stores an object table entry, with preallocated concrete types.</summary>
|
|
internal readonly unsafe struct CachedEntry
|
|
{
|
|
private readonly CSGameObject** gameObjectPtrPtr;
|
|
private readonly PlayerCharacter playerCharacter;
|
|
private readonly BattleNpc battleNpc;
|
|
private readonly Npc npc;
|
|
private readonly EventObj eventObj;
|
|
private readonly GameObject gameObject;
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="CachedEntry"/> struct.</summary>
|
|
/// <param name="ownerTable">The object table that this entry should be pointing to.</param>
|
|
/// <param name="slot">The slot index inside the table.</param>
|
|
public CachedEntry(CSGameObject** ownerTable, int slot)
|
|
{
|
|
this.gameObjectPtrPtr = ownerTable + slot;
|
|
this.playerCharacter = new(nint.Zero);
|
|
this.battleNpc = new(nint.Zero);
|
|
this.npc = new(nint.Zero);
|
|
this.eventObj = new(nint.Zero);
|
|
this.gameObject = new(nint.Zero);
|
|
}
|
|
|
|
/// <summary>Gets the address of the underlying native object. May be null.</summary>
|
|
public CSGameObject* Address
|
|
{
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
get => *this.gameObjectPtrPtr;
|
|
}
|
|
|
|
/// <summary>Updates and gets the wrapped game object pointed by this struct.</summary>
|
|
/// <returns>The pointed object, or <c>null</c> if no object exists at that slot.</returns>
|
|
public GameObject? Update()
|
|
{
|
|
var address = this.Address;
|
|
if (address is null)
|
|
return null;
|
|
|
|
var activeObject = (ObjectKind)address->ObjectKind switch
|
|
{
|
|
ObjectKind.Player => this.playerCharacter,
|
|
ObjectKind.BattleNpc => this.battleNpc,
|
|
ObjectKind.EventNpc => this.npc,
|
|
ObjectKind.Retainer => this.npc,
|
|
ObjectKind.EventObj => this.eventObj,
|
|
ObjectKind.Companion => this.npc,
|
|
ObjectKind.MountType => this.npc,
|
|
ObjectKind.Ornament => this.npc,
|
|
_ => this.gameObject,
|
|
};
|
|
activeObject.Address = (nint)address;
|
|
return activeObject;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// This collection represents the currently spawned FFXIV game objects.
|
|
/// </summary>
|
|
internal sealed partial class ObjectTable
|
|
{
|
|
/// <inheritdoc/>
|
|
public IEnumerator<GameObject> GetEnumerator()
|
|
{
|
|
// If something's trying to enumerate outside the framework thread, we use the ObjectPool.
|
|
if (this.WarnMultithreadedUsage())
|
|
{
|
|
// let's not
|
|
var e = this.multiThreadedEnumerators.Get();
|
|
e.InitializeForPooledObjects(this);
|
|
return e;
|
|
}
|
|
|
|
// If we're on the framework thread, see if there's an already allocated enumerator available for use.
|
|
foreach (ref var x in this.frameworkThreadEnumerators.AsSpan())
|
|
{
|
|
if (x is not null)
|
|
{
|
|
var t = x;
|
|
x = null;
|
|
t.Reset();
|
|
return t;
|
|
}
|
|
}
|
|
|
|
// No reusable enumerator is available; allocate a new temporary one.
|
|
return new Enumerator(this, -1);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
IEnumerator IEnumerable.GetEnumerator() => this.GetEnumerator();
|
|
|
|
private sealed class Enumerator : IEnumerator<GameObject>, IResettable
|
|
{
|
|
private readonly int slotId;
|
|
private ObjectTable? owner;
|
|
|
|
private int index = -1;
|
|
|
|
public Enumerator() => this.slotId = -1;
|
|
|
|
public Enumerator(ObjectTable owner, int slotId)
|
|
{
|
|
this.owner = owner;
|
|
this.slotId = slotId;
|
|
}
|
|
|
|
public GameObject Current { get; private set; } = null!;
|
|
|
|
object IEnumerator.Current => this.Current;
|
|
|
|
public bool MoveNext()
|
|
{
|
|
if (this.index == ObjectTableLength)
|
|
return false;
|
|
|
|
var cache = this.owner!.cachedObjectTable.AsSpan();
|
|
for (this.index++; this.index < ObjectTableLength; this.index++)
|
|
{
|
|
if (cache[this.index].Update() is { } ao)
|
|
{
|
|
this.Current = ao;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public void InitializeForPooledObjects(ObjectTable ot) => this.owner = ot;
|
|
|
|
public void Reset() => this.index = -1;
|
|
|
|
public void Dispose()
|
|
{
|
|
if (this.owner is not { } o)
|
|
return;
|
|
|
|
if (this.slotId == -1)
|
|
o.multiThreadedEnumerators.Return(this);
|
|
else
|
|
o.frameworkThreadEnumerators[this.slotId] = this;
|
|
}
|
|
|
|
public bool TryReset()
|
|
{
|
|
this.Reset();
|
|
return true;
|
|
}
|
|
}
|
|
}
|