2020-05-03 18:54:50 -04:00
|
|
|
using Ryujinx.Cpu;
|
2020-12-01 18:23:43 -05:00
|
|
|
using Ryujinx.Memory;
|
2018-07-14 22:57:41 -04:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.Utilities
|
2018-07-14 22:57:41 -04:00
|
|
|
{
|
|
|
|
class StructWriter
|
|
|
|
{
|
2020-12-01 18:23:43 -05:00
|
|
|
private IVirtualMemoryManager _memory;
|
2018-07-14 22:57:41 -04:00
|
|
|
|
|
|
|
public long Position { get; private set; }
|
|
|
|
|
2020-12-01 18:23:43 -05:00
|
|
|
public StructWriter(IVirtualMemoryManager memory, long position)
|
2018-07-14 22:57:41 -04:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
_memory = memory;
|
|
|
|
Position = position;
|
2018-07-14 22:57:41 -04:00
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
public void Write<T>(T value) where T : struct
|
2018-07-14 22:57:41 -04:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
MemoryHelper.Write(_memory, Position, value);
|
2018-07-14 22:57:41 -04:00
|
|
|
|
|
|
|
Position += Marshal.SizeOf<T>();
|
|
|
|
}
|
2020-04-29 23:03:05 -04:00
|
|
|
|
|
|
|
public void SkipBytes(long count)
|
|
|
|
{
|
|
|
|
Position += count;
|
|
|
|
}
|
2018-07-14 22:57:41 -04:00
|
|
|
}
|
|
|
|
}
|