mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-10 10:04:37 +01:00
chore: convert Dalamud to file-scoped namespaces
This commit is contained in:
parent
b093323acc
commit
987ff8dc8f
368 changed files with 55081 additions and 55450 deletions
|
|
@ -5,114 +5,113 @@ using System.Runtime.InteropServices;
|
|||
|
||||
using JetBrains.Annotations;
|
||||
|
||||
namespace Dalamud.Game
|
||||
namespace Dalamud.Game;
|
||||
|
||||
/// <summary>
|
||||
/// Base memory address resolver.
|
||||
/// </summary>
|
||||
public abstract class BaseAddressResolver
|
||||
{
|
||||
/// <summary>
|
||||
/// Base memory address resolver.
|
||||
/// Gets a list of memory addresses that were found, to list in /xldata.
|
||||
/// </summary>
|
||||
public abstract class BaseAddressResolver
|
||||
public static Dictionary<string, List<(string ClassName, IntPtr Address)>> DebugScannedValues { get; } = new();
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the resolver has successfully run <see cref="Setup32Bit(SigScanner)"/> or <see cref="Setup64Bit(SigScanner)"/>.
|
||||
/// </summary>
|
||||
protected bool IsResolved { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver, calling the appropriate method based on the process architecture,
|
||||
/// using the default SigScanner.
|
||||
///
|
||||
/// For plugins. Not intended to be called from Dalamud Service{T} constructors.
|
||||
/// </summary>
|
||||
[UsedImplicitly]
|
||||
public void Setup() => this.Setup(Service<SigScanner>.Get());
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver, calling the appropriate method based on the process architecture.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
public void Setup(SigScanner scanner)
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets a list of memory addresses that were found, to list in /xldata.
|
||||
/// </summary>
|
||||
public static Dictionary<string, List<(string ClassName, IntPtr Address)>> DebugScannedValues { get; } = new();
|
||||
// Because C# don't allow to call virtual function while in ctor
|
||||
// we have to do this shit :\
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the resolver has successfully run <see cref="Setup32Bit(SigScanner)"/> or <see cref="Setup64Bit(SigScanner)"/>.
|
||||
/// </summary>
|
||||
protected bool IsResolved { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver, calling the appropriate method based on the process architecture,
|
||||
/// using the default SigScanner.
|
||||
///
|
||||
/// For plugins. Not intended to be called from Dalamud Service{T} constructors.
|
||||
/// </summary>
|
||||
[UsedImplicitly]
|
||||
public void Setup() => this.Setup(Service<SigScanner>.Get());
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver, calling the appropriate method based on the process architecture.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
public void Setup(SigScanner scanner)
|
||||
if (this.IsResolved)
|
||||
{
|
||||
// Because C# don't allow to call virtual function while in ctor
|
||||
// we have to do this shit :\
|
||||
|
||||
if (this.IsResolved)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (scanner.Is32BitProcess)
|
||||
{
|
||||
this.Setup32Bit(scanner);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Setup64Bit(scanner);
|
||||
}
|
||||
|
||||
this.SetupInternal(scanner);
|
||||
|
||||
var className = this.GetType().Name;
|
||||
var list = new List<(string, IntPtr)>();
|
||||
lock (DebugScannedValues)
|
||||
DebugScannedValues[className] = list;
|
||||
|
||||
foreach (var property in this.GetType().GetProperties().Where(x => x.PropertyType == typeof(IntPtr)))
|
||||
{
|
||||
list.Add((property.Name, (IntPtr)property.GetValue(this)));
|
||||
}
|
||||
|
||||
this.IsResolved = true;
|
||||
return;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Fetch vfunc N from a pointer to the vtable and return a delegate function pointer.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">The delegate to marshal the function pointer to.</typeparam>
|
||||
/// <param name="address">The address of the virtual table.</param>
|
||||
/// <param name="vtableOffset">The offset from address to the vtable pointer.</param>
|
||||
/// <param name="count">The vfunc index.</param>
|
||||
/// <returns>A delegate function pointer that can be invoked.</returns>
|
||||
public T GetVirtualFunction<T>(IntPtr address, int vtableOffset, int count) where T : class
|
||||
if (scanner.Is32BitProcess)
|
||||
{
|
||||
// Get vtable
|
||||
var vtable = Marshal.ReadIntPtr(address, vtableOffset);
|
||||
|
||||
// Get an address to the function
|
||||
var functionAddress = Marshal.ReadIntPtr(vtable, IntPtr.Size * count);
|
||||
|
||||
return Marshal.GetDelegateForFunctionPointer<T>(functionAddress);
|
||||
this.Setup32Bit(scanner);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Setup64Bit(scanner);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver by finding any necessary memory addresses.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
protected virtual void Setup32Bit(SigScanner scanner)
|
||||
this.SetupInternal(scanner);
|
||||
|
||||
var className = this.GetType().Name;
|
||||
var list = new List<(string, IntPtr)>();
|
||||
lock (DebugScannedValues)
|
||||
DebugScannedValues[className] = list;
|
||||
|
||||
foreach (var property in this.GetType().GetProperties().Where(x => x.PropertyType == typeof(IntPtr)))
|
||||
{
|
||||
throw new NotSupportedException("32 bit version is not supported.");
|
||||
list.Add((property.Name, (IntPtr)property.GetValue(this)));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver by finding any necessary memory addresses.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
protected virtual void Setup64Bit(SigScanner scanner)
|
||||
{
|
||||
throw new NotSupportedException("64 bit version is not supported.");
|
||||
}
|
||||
this.IsResolved = true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver by finding any necessary memory addresses.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
protected virtual void SetupInternal(SigScanner scanner)
|
||||
{
|
||||
// Do nothing
|
||||
}
|
||||
/// <summary>
|
||||
/// Fetch vfunc N from a pointer to the vtable and return a delegate function pointer.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">The delegate to marshal the function pointer to.</typeparam>
|
||||
/// <param name="address">The address of the virtual table.</param>
|
||||
/// <param name="vtableOffset">The offset from address to the vtable pointer.</param>
|
||||
/// <param name="count">The vfunc index.</param>
|
||||
/// <returns>A delegate function pointer that can be invoked.</returns>
|
||||
public T GetVirtualFunction<T>(IntPtr address, int vtableOffset, int count) where T : class
|
||||
{
|
||||
// Get vtable
|
||||
var vtable = Marshal.ReadIntPtr(address, vtableOffset);
|
||||
|
||||
// Get an address to the function
|
||||
var functionAddress = Marshal.ReadIntPtr(vtable, IntPtr.Size * count);
|
||||
|
||||
return Marshal.GetDelegateForFunctionPointer<T>(functionAddress);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver by finding any necessary memory addresses.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
protected virtual void Setup32Bit(SigScanner scanner)
|
||||
{
|
||||
throw new NotSupportedException("32 bit version is not supported.");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver by finding any necessary memory addresses.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
protected virtual void Setup64Bit(SigScanner scanner)
|
||||
{
|
||||
throw new NotSupportedException("64 bit version is not supported.");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver by finding any necessary memory addresses.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
protected virtual void SetupInternal(SigScanner scanner)
|
||||
{
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue