mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-09 01:14:36 +01:00
Revert "refactor(Dalamud): switch to file-scoped namespaces"
This reverts commit b5f34c3199.
This commit is contained in:
parent
d473826247
commit
1561fbac00
325 changed files with 45549 additions and 45209 deletions
|
|
@ -3,111 +3,112 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Dalamud.Game;
|
||||
|
||||
/// <summary>
|
||||
/// Base memory address resolver.
|
||||
/// </summary>
|
||||
public abstract class BaseAddressResolver
|
||||
namespace Dalamud.Game
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets a list of memory addresses that were found, to list in /xldata.
|
||||
/// Base memory address resolver.
|
||||
/// </summary>
|
||||
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 appopriate method based on the process architecture.
|
||||
/// </summary>
|
||||
public void Setup()
|
||||
public abstract class BaseAddressResolver
|
||||
{
|
||||
var scanner = Service<SigScanner>.Get();
|
||||
this.Setup(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();
|
||||
|
||||
/// <summary>
|
||||
/// Setup the resolver, calling the appopriate method based on the process architecture.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
public void Setup(SigScanner scanner)
|
||||
{
|
||||
// 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; }
|
||||
|
||||
if (this.IsResolved)
|
||||
/// <summary>
|
||||
/// Setup the resolver, calling the appopriate method based on the process architecture.
|
||||
/// </summary>
|
||||
public void Setup()
|
||||
{
|
||||
return;
|
||||
var scanner = Service<SigScanner>.Get();
|
||||
this.Setup(scanner);
|
||||
}
|
||||
|
||||
if (scanner.Is32BitProcess)
|
||||
/// <summary>
|
||||
/// Setup the resolver, calling the appopriate method based on the process architecture.
|
||||
/// </summary>
|
||||
/// <param name="scanner">The SigScanner instance.</param>
|
||||
public void Setup(SigScanner scanner)
|
||||
{
|
||||
this.Setup32Bit(scanner);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Setup64Bit(scanner);
|
||||
// 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;
|
||||
DebugScannedValues[className] = new List<(string, IntPtr)>();
|
||||
|
||||
foreach (var property in this.GetType().GetProperties().Where(x => x.PropertyType == typeof(IntPtr)))
|
||||
{
|
||||
DebugScannedValues[className].Add((property.Name, (IntPtr)property.GetValue(this)));
|
||||
}
|
||||
|
||||
this.IsResolved = true;
|
||||
}
|
||||
|
||||
this.SetupInternal(scanner);
|
||||
|
||||
var className = this.GetType().Name;
|
||||
DebugScannedValues[className] = new List<(string, IntPtr)>();
|
||||
|
||||
foreach (var property in this.GetType().GetProperties().Where(x => x.PropertyType == typeof(IntPtr)))
|
||||
/// <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
|
||||
{
|
||||
DebugScannedValues[className].Add((property.Name, (IntPtr)property.GetValue(this)));
|
||||
// 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.IsResolved = true;
|
||||
}
|
||||
/// <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>
|
||||
/// 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);
|
||||
/// <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.");
|
||||
}
|
||||
|
||||
// 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
|
||||
/// <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