36 lines
932 B
C#
36 lines
932 B
C#
using Dalamud.Game.ClientState.Conditions;
|
|
using Dalamud.Plugin.Services;
|
|
using Pal.Common;
|
|
|
|
namespace Pal.Client.Floors;
|
|
|
|
public sealed class TerritoryState
|
|
{
|
|
private readonly IClientState _clientState;
|
|
private readonly ICondition _condition;
|
|
|
|
public TerritoryState(IClientState clientState, ICondition condition)
|
|
{
|
|
_clientState = clientState;
|
|
_condition = condition;
|
|
}
|
|
|
|
public ushort LastTerritory { get; set; }
|
|
public PomanderState PomanderOfSight { get; set; } = PomanderState.Inactive;
|
|
public PomanderState PomanderOfIntuition { get; set; } = PomanderState.Inactive;
|
|
|
|
public bool IsInDeepDungeon() =>
|
|
_clientState.IsLoggedIn
|
|
&& _condition[ConditionFlag.InDeepDungeon]
|
|
&& typeof(ETerritoryType).IsEnumDefined(_clientState.TerritoryType);
|
|
|
|
}
|
|
|
|
public enum PomanderState
|
|
{
|
|
Inactive,
|
|
Active,
|
|
FoundOnCurrentFloor,
|
|
PomanderOfSafetyUsed,
|
|
}
|