mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
fix: also set correct item spacing for Util.ShowStruct
This commit is contained in:
parent
cb51d2f033
commit
6d22edb390
2 changed files with 14 additions and 10 deletions
|
|
@ -118,7 +118,7 @@ namespace Dalamud.Interface.Internal
|
||||||
|
|
||||||
object addonObj = *atkUnitBase;
|
object addonObj = *atkUnitBase;
|
||||||
|
|
||||||
Util.ShowStruct(addonObj, (ulong)atkUnitBase, new List<string>());
|
Util.ShowStruct(addonObj, (ulong)atkUnitBase);
|
||||||
|
|
||||||
ImGui.Dummy(new Vector2(25 * ImGui.GetIO().FontGlobalScale));
|
ImGui.Dummy(new Vector2(25 * ImGui.GetIO().FontGlobalScale));
|
||||||
ImGui.Separator();
|
ImGui.Separator();
|
||||||
|
|
@ -200,7 +200,7 @@ namespace Dalamud.Interface.Internal
|
||||||
case NodeType.Collision: Util.ShowStruct(*(AtkCollisionNode*)node, (ulong)node); break;
|
case NodeType.Collision: Util.ShowStruct(*(AtkCollisionNode*)node, (ulong)node); break;
|
||||||
case NodeType.NineGrid: Util.ShowStruct(*(AtkNineGridNode*)node, (ulong)node); break;
|
case NodeType.NineGrid: Util.ShowStruct(*(AtkNineGridNode*)node, (ulong)node); break;
|
||||||
case NodeType.Counter: Util.ShowStruct(*(AtkCounterNode*)node, (ulong)node); break;
|
case NodeType.Counter: Util.ShowStruct(*(AtkCounterNode*)node, (ulong)node); break;
|
||||||
default: Util.ShowStruct(*node, (ulong)node, new List<string>()); break;
|
default: Util.ShowStruct(*node, (ulong)node); break;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.PrintResNode(node);
|
this.PrintResNode(node);
|
||||||
|
|
|
||||||
|
|
@ -169,10 +169,11 @@ namespace Dalamud.Utility
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="obj">The structure to show.</param>
|
/// <param name="obj">The structure to show.</param>
|
||||||
/// <param name="addr">The address to the structure.</param>
|
/// <param name="addr">The address to the structure.</param>
|
||||||
/// <param name="path">The already followed path.</param>
|
|
||||||
/// <param name="autoExpand">Whether or not this structure should start out expanded.</param>
|
/// <param name="autoExpand">Whether or not this structure should start out expanded.</param>
|
||||||
public static void ShowStruct(object obj, ulong addr, IEnumerable<string>? path = null, bool autoExpand = false)
|
/// <param name="path">The already followed path.</param>
|
||||||
|
public static void ShowStruct(object obj, ulong addr, bool autoExpand = false, IEnumerable<string>? path = null)
|
||||||
{
|
{
|
||||||
|
ImGui.PushStyleVar(ImGuiStyleVar.ItemSpacing, new Vector2(3, 2));
|
||||||
path ??= new List<string>();
|
path ??= new List<string>();
|
||||||
|
|
||||||
if (moduleEndAddr == 0 && moduleStartAddr == 0)
|
if (moduleEndAddr == 0 && moduleStartAddr == 0)
|
||||||
|
|
@ -242,24 +243,27 @@ namespace Dalamud.Utility
|
||||||
{
|
{
|
||||||
ImGui.PopStyleColor();
|
ImGui.PopStyleColor();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ImGui.PopStyleVar();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Show a GameObject's internal data in an ImGui-context.
|
/// Show a GameObject's internal data in an ImGui-context.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="go">The GameObject to show.</param>
|
/// <param name="go">The GameObject to show.</param>
|
||||||
public static unsafe void ShowGameObjectStruct(GameObject go)
|
/// <param name="autoExpand">Whether or not the struct should start as expanded.</param>
|
||||||
|
public static unsafe void ShowGameObjectStruct(GameObject go, bool autoExpand = true)
|
||||||
{
|
{
|
||||||
switch (go)
|
switch (go)
|
||||||
{
|
{
|
||||||
case BattleChara bchara:
|
case BattleChara bchara:
|
||||||
ShowStruct(*bchara.Struct, (ulong)bchara.Address);
|
ShowStruct(*bchara.Struct, (ulong)bchara.Address, autoExpand);
|
||||||
break;
|
break;
|
||||||
case Character chara:
|
case Character chara:
|
||||||
ShowStruct(*chara.Struct, (ulong)chara.Address);
|
ShowStruct(*chara.Struct, (ulong)chara.Address, autoExpand);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ShowStruct(*go.Struct, (ulong)go.Address);
|
ShowStruct(*go.Struct, (ulong)go.Address, autoExpand);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -453,7 +457,7 @@ namespace Dalamud.Utility
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ShowStruct(ptrObj, (ulong)unboxed, new List<string>(path));
|
ShowStruct(ptrObj, (ulong)unboxed, path: new List<string>(path));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
|
|
@ -470,7 +474,7 @@ namespace Dalamud.Utility
|
||||||
{
|
{
|
||||||
if (!type.IsPrimitive)
|
if (!type.IsPrimitive)
|
||||||
{
|
{
|
||||||
ShowStruct(value, addr, new List<string>(path));
|
ShowStruct(value, addr, path: new List<string>(path));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue