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