Ryujinx/Ryujinx.HLE/Utilities/StructReader.cs
LDj3SNuD eee639d6ba .NET Core 3.0 is here! (#784)
* .NET Core 3.0 is here!

* Remove IMemoryManager.cs and its references.

* Add T Math/F.FusedMultiplyAdd(T, T, T). Nits.

* Nit.

* Update appveyor.yml

* Revert "Resolve Visual Studio build issues"

This reverts commit 1772128ce0.

* Update SvcTable.cs
2019-10-31 19:09:03 +01:00

46 lines
1,014 B
C#

using ARMeilleure.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)
{
_memory = memory;
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;
}
}
}