aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Utilities/StructReader.cs
blob: 441dfd1951a344c63b5ced7e72bb53693ba9a2b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using ChocolArm64.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;
        }
    }
}