2018-07-15 04:57:41 +02:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
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 StructWriter
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private MemoryManager _memory;
|
2018-07-15 04:57:41 +02:00
|
|
|
|
|
|
|
public long Position { get; private set; }
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public StructWriter(MemoryManager 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
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void Write<T>(T value) where T : struct
|
2018-07-15 04:57:41 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
MemoryHelper.Write(_memory, Position, value);
|
2018-07-15 04:57:41 +02:00
|
|
|
|
|
|
|
Position += Marshal.SizeOf<T>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|