mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
Add some small map helpers (#1756)
* feat: Add new `.GetMapCoordinates` extension method - Used to easily resolve player-friendly map coordinates for any GameObject. * feat: Add MapID to ClientState - Provides easy access to the player's current map ID
This commit is contained in:
parent
99d5e44c23
commit
de6dcb8b53
3 changed files with 54 additions and 0 deletions
|
|
@ -12,6 +12,8 @@ using Dalamud.Logging.Internal;
|
||||||
using Dalamud.Plugin.Services;
|
using Dalamud.Plugin.Services;
|
||||||
using Dalamud.Utility;
|
using Dalamud.Utility;
|
||||||
using FFXIVClientStructs.FFXIV.Client.Game;
|
using FFXIVClientStructs.FFXIV.Client.Game;
|
||||||
|
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
|
||||||
|
|
||||||
using Lumina.Excel.GeneratedSheets;
|
using Lumina.Excel.GeneratedSheets;
|
||||||
|
|
||||||
using Action = System.Action;
|
using Action = System.Action;
|
||||||
|
|
@ -89,6 +91,16 @@ internal sealed class ClientState : IInternalDisposableService, IClientState
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public ushort TerritoryType { get; private set; }
|
public ushort TerritoryType { get; private set; }
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public unsafe uint MapId
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
var agentMap = AgentMap.Instance();
|
||||||
|
return agentMap != null ? AgentMap.Instance()->CurrentMapId : 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public PlayerCharacter? LocalPlayer => Service<ObjectTable>.GetNullable()?[0] as PlayerCharacter;
|
public PlayerCharacter? LocalPlayer => Service<ObjectTable>.GetNullable()?[0] as PlayerCharacter;
|
||||||
|
|
||||||
|
|
@ -237,6 +249,9 @@ internal class ClientStatePluginScoped : IInternalDisposableService, IClientStat
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public ushort TerritoryType => this.clientStateService.TerritoryType;
|
public ushort TerritoryType => this.clientStateService.TerritoryType;
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public uint MapId => this.clientStateService.MapId;
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public PlayerCharacter? LocalPlayer => this.clientStateService.LocalPlayer;
|
public PlayerCharacter? LocalPlayer => this.clientStateService.LocalPlayer;
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,11 @@ public interface IClientState
|
||||||
/// Gets the current Territory the player resides in.
|
/// Gets the current Territory the player resides in.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ushort TerritoryType { get; }
|
public ushort TerritoryType { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the current Map the player resides in.
|
||||||
|
/// </summary>
|
||||||
|
public uint MapId { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the local player character, if one is present.
|
/// Gets the local player character, if one is present.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
|
|
||||||
|
using Dalamud.Data;
|
||||||
|
using Dalamud.Game.ClientState.Objects.Types;
|
||||||
|
|
||||||
|
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
|
||||||
|
|
||||||
|
using Lumina;
|
||||||
using Lumina.Excel.GeneratedSheets;
|
using Lumina.Excel.GeneratedSheets;
|
||||||
|
|
||||||
namespace Dalamud.Utility;
|
namespace Dalamud.Utility;
|
||||||
|
|
@ -128,4 +134,32 @@ public static class MapUtil
|
||||||
{
|
{
|
||||||
return WorldToMap(worldCoordinates, map.OffsetX, map.OffsetY, map.SizeFactor);
|
return WorldToMap(worldCoordinates, map.OffsetX, map.OffsetY, map.SizeFactor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Extension method to get the current position of a GameObject in Map Coordinates (visible to players in the
|
||||||
|
/// minimap or chat). A Z (height) value will always be returned, even on maps that do not natively show one.
|
||||||
|
/// </summary>
|
||||||
|
/// <exception cref="InvalidOperationException">Thrown if ClientState is unavailable.</exception>
|
||||||
|
/// <param name="go">The GameObject to get the position for.</param>
|
||||||
|
/// <param name="correctZOffset">Whether to "correct" a Z offset to sane values for maps that don't have one.</param>
|
||||||
|
/// <returns>A Vector3 that represents the X (east/west), Y (north/south), and Z (height) position of this object.</returns>
|
||||||
|
public static unsafe Vector3 GetMapCoordinates(this GameObject go, bool correctZOffset = false)
|
||||||
|
{
|
||||||
|
var agentMap = AgentMap.Instance();
|
||||||
|
|
||||||
|
if (agentMap == null || agentMap->CurrentMapId == 0)
|
||||||
|
throw new InvalidOperationException("Could not determine active map - data may not be loaded yet?");
|
||||||
|
|
||||||
|
var territoryTransient = Service<DataManager>.Get()
|
||||||
|
.GetExcelSheet<TerritoryTypeTransient>()!
|
||||||
|
.GetRow(agentMap->CurrentTerritoryId);
|
||||||
|
|
||||||
|
return WorldToMap(
|
||||||
|
go.Position,
|
||||||
|
agentMap->CurrentOffsetX,
|
||||||
|
agentMap->CurrentOffsetY,
|
||||||
|
territoryTransient?.OffsetZ ?? 0,
|
||||||
|
(uint)agentMap->CurrentMapSizeFactor,
|
||||||
|
correctZOffset);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue