1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-02-23 18:45:34 +00:00
Ryujinx/Ryujinx.HLE/Utilities/StructReader.cs

46 lines
1,014 B
C#
Raw Normal View History

using ChocolArm64.Memory;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.Utilities
{
class StructReader
{
2018-12-01 14:01:59 -06:00
private MemoryManager _memory;
public long Position { get; private set; }
2018-12-01 14:01:59 -06:00
public StructReader(MemoryManager memory, long position)
{
2018-12-01 14:24:37 -06:00
_memory = memory;
Position = position;
}
public T Read<T>() where T : struct
{
2018-12-01 14:01:59 -06:00
T value = MemoryHelper.Read<T>(_memory, Position);
Position += Marshal.SizeOf<T>();
2018-12-01 14:01:59 -06:00
return value;
}
2018-12-01 14:01:59 -06:00
public T[] Read<T>(int size) where T : struct
{
2018-12-01 14:01:59 -06:00
int structSize = Marshal.SizeOf<T>();
2018-12-01 14:01:59 -06:00
int count = size / structSize;
2018-12-01 14:01:59 -06:00
T[] output = new T[count];
2018-12-01 14:01:59 -06:00
for (int index = 0; index < count; index++)
{
2018-12-01 14:01:59 -06:00
output[index] = MemoryHelper.Read<T>(_memory, Position);
2018-12-01 14:01:59 -06:00
Position += structSize;
}
2018-12-01 14:01:59 -06:00
return output;
}
}
}