mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 17:06:40 +00:00
9cb57fb4bb
* Change naming convention for Ryujinx project * Change naming convention for ChocolArm64 project * Fix NaN * Remove unneeded this. from Ryujinx project * Adjust naming from new PRs * Name changes based on feedback * How did this get removed? * Rebasing fix * Change FP enum case * Remove prefix from ChocolArm64 classes - Part 1 * Remove prefix from ChocolArm64 classes - Part 2 * Fix alignment from last commit's renaming * Rename namespaces * Rename stragglers * Fix alignment * Rename OpCode class * Missed a few * Adjust alignment
45 lines
1,021 B
C#
45 lines
1,021 B
C#
using ChocolArm64.Memory;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.HLE.Utilities
|
|
{
|
|
class StructReader
|
|
{
|
|
private MemoryManager Memory;
|
|
|
|
public long Position { get; private set; }
|
|
|
|
public StructReader(MemoryManager Memory, long Position)
|
|
{
|
|
this.Memory = Memory;
|
|
this.Position = Position;
|
|
}
|
|
|
|
public T Read<T>() where T : struct
|
|
{
|
|
T Value = MemoryHelper.Read<T>(Memory, Position);
|
|
|
|
Position += Marshal.SizeOf<T>();
|
|
|
|
return Value;
|
|
}
|
|
|
|
public T[] Read<T>(int Size) where T : struct
|
|
{
|
|
int StructSize = Marshal.SizeOf<T>();
|
|
|
|
int Count = Size / StructSize;
|
|
|
|
T[] Output = new T[Count];
|
|
|
|
for (int Index = 0; Index < Count; Index++)
|
|
{
|
|
Output[Index] = MemoryHelper.Read<T>(Memory, Position);
|
|
|
|
Position += StructSize;
|
|
}
|
|
|
|
return Output;
|
|
}
|
|
}
|
|
}
|