mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
117 lines
3.5 KiB
C#
117 lines
3.5 KiB
C#
using Dalamud.Data;
|
|
using Dalamud.Game.ClientState.Objects;
|
|
using Dalamud.Game.ClientState.Objects.Types;
|
|
|
|
using Lumina.Excel;
|
|
|
|
namespace Dalamud.Game.ClientState.Buddy;
|
|
|
|
/// <summary>
|
|
/// Interface representing represents a buddy such as the chocobo companion, summoned pets, squadron groups and trust parties.
|
|
/// </summary>
|
|
public interface IBuddyMember
|
|
{
|
|
/// <summary>
|
|
/// Gets the address of the buddy in memory.
|
|
/// </summary>
|
|
IntPtr Address { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the object ID of this buddy.
|
|
/// </summary>
|
|
[Obsolete("Renamed to EntityId")]
|
|
uint ObjectId { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the entity ID of this buddy.
|
|
/// </summary>
|
|
uint EntityId { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the actor associated with this buddy.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This iterates the actor table, it should be used with care.
|
|
/// </remarks>
|
|
IGameObject? GameObject { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the current health of this buddy.
|
|
/// </summary>
|
|
uint CurrentHP { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the maximum health of this buddy.
|
|
/// </summary>
|
|
uint MaxHP { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the data ID of this buddy.
|
|
/// </summary>
|
|
uint DataID { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the Mount data related to this buddy. It should only be used with companion buddies.
|
|
/// </summary>
|
|
RowRef<Lumina.Excel.Sheets.Mount> MountData { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the Pet data related to this buddy. It should only be used with pet buddies.
|
|
/// </summary>
|
|
RowRef<Lumina.Excel.Sheets.Pet> PetData { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the Trust data related to this buddy. It should only be used with battle buddies.
|
|
/// </summary>
|
|
RowRef<Lumina.Excel.Sheets.DawnGrowMember> TrustData { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// This class represents a buddy such as the chocobo companion, summoned pets, squadron groups and trust parties.
|
|
/// </summary>
|
|
internal unsafe class BuddyMember : IBuddyMember
|
|
{
|
|
[ServiceManager.ServiceDependency]
|
|
private readonly ObjectTable objectTable = Service<ObjectTable>.Get();
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="BuddyMember"/> class.
|
|
/// </summary>
|
|
/// <param name="address">Buddy address.</param>
|
|
internal BuddyMember(IntPtr address)
|
|
{
|
|
this.Address = address;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IntPtr Address { get; }
|
|
|
|
/// <inheritdoc />
|
|
public uint ObjectId => this.Struct->EntityId;
|
|
|
|
/// <inheritdoc />
|
|
public uint EntityId => this.Struct->EntityId;
|
|
|
|
/// <inheritdoc />
|
|
public IGameObject? GameObject => this.objectTable.SearchById(this.ObjectId);
|
|
|
|
/// <inheritdoc />
|
|
public uint CurrentHP => this.Struct->CurrentHealth;
|
|
|
|
/// <inheritdoc />
|
|
public uint MaxHP => this.Struct->MaxHealth;
|
|
|
|
/// <inheritdoc />
|
|
public uint DataID => this.Struct->DataId;
|
|
|
|
/// <inheritdoc />
|
|
public RowRef<Lumina.Excel.Sheets.Mount> MountData => LuminaUtils.CreateRef<Lumina.Excel.Sheets.Mount>(this.DataID);
|
|
|
|
/// <inheritdoc />
|
|
public RowRef<Lumina.Excel.Sheets.Pet> PetData => LuminaUtils.CreateRef<Lumina.Excel.Sheets.Pet>(this.DataID);
|
|
|
|
/// <inheritdoc />
|
|
public RowRef<Lumina.Excel.Sheets.DawnGrowMember> TrustData => LuminaUtils.CreateRef<Lumina.Excel.Sheets.DawnGrowMember>(this.DataID);
|
|
|
|
private FFXIVClientStructs.FFXIV.Client.Game.UI.Buddy.BuddyMember* Struct => (FFXIVClientStructs.FFXIV.Client.Game.UI.Buddy.BuddyMember*)this.Address;
|
|
}
|