mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-26 06:31:48 +01:00
* Use new Lock objects * Fix CA1513: Use ObjectDisposedException.ThrowIf * Fix CA1860: Avoid using 'Enumerable.Any()' extension method * Fix IDE0028: Use collection initializers or expressions * Fix CA2263: Prefer generic overload when type is known * Fix CA1862: Use the 'StringComparison' method overloads to perform case-insensitive string comparisons * Fix IDE0270: Null check can be simplified * Fix IDE0280: Use 'nameof' * Fix IDE0009: Add '.this' * Fix IDE0007: Use 'var' instead of explicit type * Fix IDE0062: Make local function static * Fix CA1859: Use concrete types when possible for improved performance * Fix IDE0066: Use switch expression Only applied to where it doesn't look horrendous. * Use is over switch * Fix CA1847: Use String.Contains(char) instead of String.Contains(string) with single characters * Fix SYSLIB1045: Use 'GeneratedRegexAttribute' to generate the regular expression implementation at compile-time. * Fix CA1866: Use 'string.EndsWith(char)' instead of 'string.EndsWith(string)' when you have a string with a single char * Fix IDE0057: Substring can be simplified * Fix IDE0059: Remove unnecessary value assignment * Fix CA1510: Use ArgumentNullException throw helper * Fix IDE0300: Use collection expression for array * Fix IDE0250: Struct can be made 'readonly' * Fix IDE0018: Inline variable declaration * Fix CA1850: Prefer static HashData method over ComputeHash * Fi CA1872: Prefer 'Convert.ToHexString' and 'Convert.ToHexStringLower' over call chains based on 'BitConverter.ToString' * Update ModuleLog instantiations * Organize usings
68 lines
1.9 KiB
C#
68 lines
1.9 KiB
C#
using System.Collections.Generic;
|
|
|
|
using Dalamud.Bindings.ImGui;
|
|
using Dalamud.Game;
|
|
using Dalamud.Utility;
|
|
|
|
namespace Dalamud.Interface.Internal.Windows.Data.Widgets;
|
|
|
|
/// <summary>
|
|
/// Widget to display resolved .text sigs.
|
|
/// </summary>
|
|
internal class AddressesWidget : IDataWindowWidget
|
|
{
|
|
private string inputSig = string.Empty;
|
|
private nint sigResult = nint.Zero;
|
|
|
|
/// <inheritdoc/>
|
|
public string[]? CommandShortcuts { get; init; } = ["address"];
|
|
|
|
/// <inheritdoc/>
|
|
public string DisplayName { get; init; } = "Addresses";
|
|
|
|
/// <inheritdoc/>
|
|
public bool Ready { get; set; }
|
|
|
|
/// <inheritdoc/>
|
|
public void Load()
|
|
{
|
|
this.Ready = true;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void Draw()
|
|
{
|
|
ImGui.InputText(".text sig"u8, ref this.inputSig, 400);
|
|
if (ImGui.Button("Resolve"u8))
|
|
{
|
|
try
|
|
{
|
|
var sigScanner = Service<TargetSigScanner>.Get();
|
|
this.sigResult = sigScanner.ScanText(this.inputSig);
|
|
}
|
|
catch (KeyNotFoundException)
|
|
{
|
|
this.sigResult = new nint(-1);
|
|
}
|
|
}
|
|
|
|
ImGui.Text($"Result: {this.sigResult.ToInt64():X}");
|
|
ImGui.SameLine();
|
|
if (ImGui.Button($"C##{this.sigResult.ToInt64():X}"))
|
|
ImGui.SetClipboardText(this.sigResult.ToInt64().ToString("X"));
|
|
|
|
foreach (var debugScannedValue in BaseAddressResolver.DebugScannedValues)
|
|
{
|
|
ImGui.Text($"{debugScannedValue.Key}");
|
|
foreach (var valueTuple in debugScannedValue.Value)
|
|
{
|
|
ImGui.Text(
|
|
$" {valueTuple.ClassName} - {Util.DescribeAddress(valueTuple.Address)}");
|
|
ImGui.SameLine();
|
|
|
|
if (ImGui.Button($"C##{valueTuple.Address.ToInt64():X}"))
|
|
ImGui.SetClipboardText(valueTuple.Address.ToInt64().ToString("X"));
|
|
}
|
|
}
|
|
}
|
|
}
|