CurrencyAlertClassic/KamiLib/Atk/AtkValueHelper.cs

58 lines
2.2 KiB
C#
Raw Permalink Normal View History

2023-10-13 09:38:52 +00:00
using System;
using System.Runtime.InteropServices;
using Dalamud.Logging;
using FFXIVClientStructs.FFXIV.Component.GUI;
using ValueType = FFXIVClientStructs.FFXIV.Component.GUI.ValueType;
namespace KamiLib.Atk;
public static class AtkValueHelper
{
/*
2023-10-13 09:38:52 +00:00
public static unsafe void PrintAtkValue(AtkValue value, int index)
{
switch (value.Type)
{
case ValueType.Int:
PluginLog.Debug($"[{index:D3}] [{"int", 7}]: {value.Int}");
break;
case ValueType.Bool:
PluginLog.Debug($"[{index:D3}] [{"bool", 7}]: {(value.Byte != 0 ? "true" : "false")}");
break;
case ValueType.UInt:
PluginLog.Debug($"[{index:D3}] [{"uint", 7}]: {value.UInt}");
break;
case ValueType.Float:
PluginLog.Debug($"[{index:D3}] [{"float", 7}]: {value.Float}");
break;
case ValueType.String:
PluginLog.Debug($"[{index:D3}] [{"string", 7}]: {Marshal.PtrToStringUTF8(new nint(value.String))}");
break;
case ValueType.String8:
PluginLog.Debug($"[{index:D3}] [{"string8", 7}]: {Marshal.PtrToStringUTF8(new nint(value.String))}");
break;
case ValueType.Vector:
PluginLog.Debug($"[{index:D3}] [{"vector", 7}]: No Representation Implemented");
break;
case ValueType.AllocatedString:
PluginLog.Debug($"[{index:D3}] [{"aString", 7}]: {Marshal.PtrToStringUTF8(new nint(value.String))}");
break;
case ValueType.AllocatedVector:
PluginLog.Debug($"[{index:D3}] [{"aVector", 7}]: No Representation Implemented");
break;
default:
PluginLog.Debug($"[{index:D3}] [{"unknown", 7}]: [{value.Type}]: {BitConverter.ToString(BitConverter.GetBytes((long)value.String)).Replace("-", " ")}");
break;
}
}
*/
2023-10-13 09:38:52 +00:00
}
public static class AtkValueExtensions
{
public static unsafe string GetString(this AtkValue value)
{
return Marshal.PtrToStringUTF8(new nint(value.String)) ?? "Unable to Allocate String";
}
}