2020-05-03 22:54:50 +00:00
|
|
|
using Ryujinx.Cpu;
|
2018-07-15 02:57:41 +00:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.Utilities
|
2018-07-15 02:57:41 +00:00
|
|
|
{
|
|
|
|
class StructReader
|
|
|
|
{
|
2019-10-31 18:09:03 +00:00
|
|
|
private MemoryManager _memory;
|
2018-07-15 02:57:41 +00:00
|
|
|
|
|
|
|
public long Position { get; private set; }
|
|
|
|
|
2019-10-31 18:09:03 +00:00
|
|
|
public StructReader(MemoryManager memory, long position)
|
2018-07-15 02:57:41 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_memory = memory;
|
|
|
|
Position = position;
|
2018-07-15 02:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public T Read<T>() where T : struct
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
T value = MemoryHelper.Read<T>(_memory, Position);
|
2018-07-15 02:57:41 +00:00
|
|
|
|
|
|
|
Position += Marshal.SizeOf<T>();
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
return value;
|
2018-07-15 02:57:41 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public T[] Read<T>(int size) where T : struct
|
2018-07-15 02:57:41 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int structSize = Marshal.SizeOf<T>();
|
2018-07-15 02:57:41 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
int count = size / structSize;
|
2018-07-15 02:57:41 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
T[] output = new T[count];
|
2018-07-15 02:57:41 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
for (int index = 0; index < count; index++)
|
2018-07-15 02:57:41 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
output[index] = MemoryHelper.Read<T>(_memory, Position);
|
2018-07-15 02:57:41 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
Position += structSize;
|
2018-07-15 02:57:41 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
return output;
|
2018-07-15 02:57:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|