-
Notifications
You must be signed in to change notification settings - Fork 450
Expand file tree
/
Copy pathMainMemoryLuaLibrary.cs
More file actions
372 lines (321 loc) · 14.3 KB
/
MainMemoryLuaLibrary.cs
File metadata and controls
372 lines (321 loc) · 14.3 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
using System.ComponentModel;
using System.Linq;
using BizHawk.Emulation.Common;
using NLua;
// ReSharper disable UnusedMember.Global
namespace BizHawk.Client.Common
{
[Description("Main memory library reads and writes from the Main memory domain (the default memory domain set by any given core)")]
public sealed class MainMemoryLuaLibrary : LuaLibraryBase
{
public MainMemoryLuaLibrary(ILuaLibraries luaLibsImpl, ApiContainer apiContainer, Action<string> logOutputCallback)
: base(luaLibsImpl, apiContainer, logOutputCallback) {}
public override string Name => "mainmemory";
private MemoryDomain _mainMemDomain;
private string _mainMemName;
private MemoryDomain Domain => _mainMemDomain ??= ((MemoryApi) APIs.Memory).DomainList[MainMemName]!;
private string MainMemName => _mainMemName ??= APIs.Memory.MainMemoryName;
public override void Restarted()
{
_mainMemDomain = null;
_mainMemName = null;
}
[LuaMethodExample("local stmaiget = mainmemory.getname( );")]
[LuaMethod("getname", "returns the name of the domain defined as main memory for the given core")]
#pragma warning disable CA1721 // method name is prop name prefixed with "Get"
public string GetName()
#pragma warning restore CA1721
=> MainMemName;
[LuaMethodExample("local uimaiget = mainmemory.getcurrentmemorydomainsize( );")]
[LuaMethod("getcurrentmemorydomainsize", "Returns the number of bytes of the domain defined as main memory")]
public uint GetSize()
{
return (uint)Domain.Size;
}
[LuaMethodExample("local uimairea = mainmemory.readbyte( 0x100 );")]
[LuaMethod("readbyte", "gets the value from the given address as an unsigned byte")]
public uint ReadByte(long addr)
=> APIs.Memory.ReadByte(addr, MainMemName);
[LuaMethodExample("mainmemory.writebyte( 0x100, 1000 );")]
[LuaMethod("writebyte", "Writes the given value to the given address as an unsigned byte")]
public void WriteByte(long addr, uint value)
=> APIs.Memory.WriteByte(addr, value, MainMemName);
[LuaDeprecatedMethod]
[LuaMethod("readbyterange", "Reads the address range that starts from address, and is length long. Returns a zero-indexed table containing the read values (an array of bytes.)")]
[return: LuaZeroIndexed]
public LuaTable ReadByteRange(long addr, int length)
=> _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, MainMemName), indexFrom: 0);
[LuaMethodExample("local bytes = mainmemory.read_bytes_as_array(0x100, 30);")]
[LuaMethod("read_bytes_as_array", "Reads length bytes starting at addr into an array-like table (1-indexed).")]
public LuaTable ReadBytesAsArray(long addr, int length)
=> _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, MainMemName));
[LuaMethodExample("local bytes = mainmemory.read_bytes_as_dict(0x100, 30);")]
[LuaMethod("read_bytes_as_dict", "Reads length bytes starting at addr into a dict-like table (where the keys are the addresses, relative to the start of the main memory).")]
[return: LuaZeroIndexed]
public LuaTable ReadBytesAsDict(long addr, int length)
=> _th.MemoryBlockToTable(APIs.Memory.ReadByteRange(addr, length, MainMemName), addr);
#pragma warning disable MA0136 // [LuaMethodExample] normalizes line endings
[LuaMethodExample("""
local data = mainmemory.read_bytes_as_binary_string(0x100, 32)
local some_s32_le, some_float = string.unpack("<i4f", data)
for i = 1, #data do
print(data:byte(i))
end
""")]
[LuaMethod("read_bytes_as_binary_string", "Reads {{length}} bytes starting at {{addr}} into a binary string. This string can be read with functions such as {{string.byte}} and {{string.unpack}}. This string can contain any bytes including null bytes, and is not suitable for display as text.")]
public byte[] ReadBytesAsString(long addr, int length)
{
var bytes = APIs.Memory.ReadByteRange(addr, length, MainMemName);
return bytes as byte[] ?? bytes.ToArray();
}
[LuaDeprecatedMethod]
[LuaMethod("writebyterange", "Writes the given values to the given addresses as unsigned bytes")]
public void WriteByteRange([LuaZeroIndexed] LuaTable memoryblock)
{
#if true
WriteBytesAsDict(memoryblock);
#else
var d = Domain;
if (d.CanPoke())
{
foreach (var (addr0, v) in memoryblock)
{
var addr = (long) addr0;
if (addr < d.Size)
{
d.PokeByte(addr, (byte) v);
}
else
{
Log($"Warning: Attempted write {addr} outside memory domain size of {d.Size} in writebyterange()");
}
}
}
else
{
Log($"Error: the domain {d.Name} is not writable");
}
#endif
}
[LuaMethodExample("mainmemory.write_bytes_as_array(0x100, { 0xAB, 0x12, 0xCD, 0x34 });")]
[LuaMethod("write_bytes_as_array", "Writes sequential bytes starting at addr.")]
public void WriteBytesAsArray(long addr, LuaTable bytes)
=> APIs.Memory.WriteByteRange(addr, _th.EnumerateValues<long>(bytes).Select(l => (byte) l).ToArray(), MainMemName);
[LuaMethodExample("mainmemory.write_bytes_as_dict({ [0x100] = 0xAB, [0x104] = 0xCD, [0x106] = 0x12, [0x107] = 0x34, [0x108] = 0xEF });")]
[LuaMethod("write_bytes_as_dict", "Writes bytes at arbitrary addresses (the keys of the given table are the addresses, relative to the start of the main memory).")]
public void WriteBytesAsDict([LuaZeroIndexed] LuaTable addrMap)
{
foreach (var (addr, v) in addrMap)
{
APIs.Memory.WriteByte((long) addr, (uint) v, MainMemName);
}
}
[LuaMethodExample("""
mainmemory.write_bytes_as_binary_string(0x100, string.pack("<i4f", 1234, 456.789))
mainmemory.write_bytes_as_binary_string(0x108, "\xFE\xED")
mainmemory.write_bytes_as_binary_string(0x10A, string.char(0xBE, 0xEF))
""")]
[LuaMethod("write_bytes_as_binary_string", "Writes bytes from a binary string to {{addr}}. The string can be created with functions such as {{string.pack}}, and can contain any bytes including null bytes. This is not a text encoding function.")]
public void WriteBytesAsString(long addr, byte[] bytes)
=> APIs.Memory.WriteByteRange(addr, bytes, MainMemName);
#pragma warning restore MA0136
[LuaMethodExample("local simairea = mainmemory.readfloat(0x100, false);")]
[LuaMethod("readfloat", "Reads the given address as a 32-bit float value from the main memory domain with th e given endian")]
public float ReadFloat(long addr, bool bigendian)
{
APIs.Memory.SetBigEndian(bigendian);
return APIs.Memory.ReadFloat(addr, MainMemName);
}
[LuaMethodExample("mainmemory.writefloat( 0x100, 10.0, false );")]
[LuaMethod("writefloat", "Writes the given 32-bit float value to the given address and endian")]
public void WriteFloat(long addr, float value, bool bigendian)
{
APIs.Memory.SetBigEndian(bigendian);
APIs.Memory.WriteFloat(addr, value, MainMemName);
}
[LuaMethodExample("local inmairea = mainmemory.read_s8( 0x100 );")]
[LuaMethod("read_s8", "read signed byte")]
public int ReadS8(long addr)
=> APIs.Memory.ReadS8(addr, MainMemName);
[LuaMethodExample("mainmemory.write_s8( 0x100, 1000 );")]
[LuaMethod("write_s8", "write signed byte")]
public void WriteS8(long addr, uint value)
=> APIs.Memory.WriteS8(addr, unchecked((int) value), MainMemName);
[LuaMethodExample("local uimairea = mainmemory.read_u8( 0x100 );")]
[LuaMethod("read_u8", "read unsigned byte")]
public uint ReadU8(long addr)
=> APIs.Memory.ReadU8(addr, MainMemName);
[LuaMethodExample("mainmemory.write_u8( 0x100, 1000 );")]
[LuaMethod("write_u8", "write unsigned byte")]
public void WriteU8(long addr, uint value)
=> APIs.Memory.WriteU8(addr, value, MainMemName);
[LuaMethodExample("local inmairea = mainmemory.read_s16_le( 0x100 );")]
[LuaMethod("read_s16_le", "read signed 2 byte value, little endian")]
public int ReadS16Little(long addr)
{
APIs.Memory.SetBigEndian(false);
return APIs.Memory.ReadS16(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_s16_le( 0x100, -1000 );")]
[LuaMethod("write_s16_le", "write signed 2 byte value, little endian")]
public void WriteS16Little(long addr, int value)
{
APIs.Memory.SetBigEndian(false);
APIs.Memory.WriteS16(addr, value, MainMemName);
}
[LuaMethodExample("local inmairea = mainmemory.read_s16_be( 0x100 );")]
[LuaMethod("read_s16_be", "read signed 2 byte value, big endian")]
public int ReadS16Big(long addr)
{
APIs.Memory.SetBigEndian();
return APIs.Memory.ReadS16(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_s16_be( 0x100, -1000 );")]
[LuaMethod("write_s16_be", "write signed 2 byte value, big endian")]
public void WriteS16Big(long addr, int value)
{
APIs.Memory.SetBigEndian();
APIs.Memory.WriteS16(addr, value, MainMemName);
}
[LuaMethodExample("local uimairea = mainmemory.read_u16_le( 0x100 );")]
[LuaMethod("read_u16_le", "read unsigned 2 byte value, little endian")]
public uint ReadU16Little(long addr)
{
APIs.Memory.SetBigEndian(false);
return APIs.Memory.ReadU16(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_u16_le( 0x100, 1000 );")]
[LuaMethod("write_u16_le", "write unsigned 2 byte value, little endian")]
public void WriteU16Little(long addr, uint value)
{
APIs.Memory.SetBigEndian(false);
APIs.Memory.WriteU16(addr, value, MainMemName);
}
[LuaMethodExample("local uimairea = mainmemory.read_u16_be( 0x100 );")]
[LuaMethod("read_u16_be", "read unsigned 2 byte value, big endian")]
public uint ReadU16Big(long addr)
{
APIs.Memory.SetBigEndian();
return APIs.Memory.ReadU16(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_u16_be( 0x100, 1000 );")]
[LuaMethod("write_u16_be", "write unsigned 2 byte value, big endian")]
public void WriteU16Big(long addr, uint value)
{
APIs.Memory.SetBigEndian();
APIs.Memory.WriteU16(addr, value, MainMemName);
}
[LuaMethodExample("local inmairea = mainmemory.read_s24_le( 0x100 );")]
[LuaMethod("read_s24_le", "read signed 24 bit value, little endian")]
public int ReadS24Little(long addr)
{
APIs.Memory.SetBigEndian(false);
return APIs.Memory.ReadS24(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_s24_le( 0x100, -1000 );")]
[LuaMethod("write_s24_le", "write signed 24 bit value, little endian")]
public void WriteS24Little(long addr, int value)
{
APIs.Memory.SetBigEndian(false);
APIs.Memory.WriteS24(addr, value, MainMemName);
}
[LuaMethodExample("local inmairea = mainmemory.read_s24_be( 0x100 );")]
[LuaMethod("read_s24_be", "read signed 24 bit value, big endian")]
public int ReadS24Big(long addr)
{
APIs.Memory.SetBigEndian();
return APIs.Memory.ReadS24(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_s24_be( 0x100, -1000 );")]
[LuaMethod("write_s24_be", "write signed 24 bit value, big endian")]
public void WriteS24Big(long addr, int value)
{
APIs.Memory.SetBigEndian();
APIs.Memory.WriteS24(addr, value, MainMemName);
}
[LuaMethodExample("local uimairea = mainmemory.read_u24_le( 0x100 );")]
[LuaMethod("read_u24_le", "read unsigned 24 bit value, little endian")]
public uint ReadU24Little(long addr)
{
APIs.Memory.SetBigEndian(false);
return APIs.Memory.ReadU24(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_u24_le( 0x100, 1000 );")]
[LuaMethod("write_u24_le", "write unsigned 24 bit value, little endian")]
public void WriteU24Little(long addr, uint value)
{
APIs.Memory.SetBigEndian(false);
APIs.Memory.WriteU24(addr, value, MainMemName);
}
[LuaMethodExample("local uimairea = mainmemory.read_u24_be( 0x100 );")]
[LuaMethod("read_u24_be", "read unsigned 24 bit value, big endian")]
public uint ReadU24Big(long addr)
{
APIs.Memory.SetBigEndian();
return APIs.Memory.ReadU24(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_u24_be( 0x100, 1000 );")]
[LuaMethod("write_u24_be", "write unsigned 24 bit value, big endian")]
public void WriteU24Big(long addr, uint value)
{
APIs.Memory.SetBigEndian();
APIs.Memory.WriteU24(addr, value, MainMemName);
}
[LuaMethodExample("local inmairea = mainmemory.read_s32_le( 0x100 );")]
[LuaMethod("read_s32_le", "read signed 4 byte value, little endian")]
public int ReadS32Little(long addr)
{
APIs.Memory.SetBigEndian(false);
return APIs.Memory.ReadS32(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_s32_le( 0x100, -1000 );")]
[LuaMethod("write_s32_le", "write signed 4 byte value, little endian")]
public void WriteS32Little(long addr, int value)
{
APIs.Memory.SetBigEndian(false);
APIs.Memory.WriteS32(addr, value, MainMemName);
}
[LuaMethodExample("local inmairea = mainmemory.read_s32_be( 0x100 );")]
[LuaMethod("read_s32_be", "read signed 4 byte value, big endian")]
public int ReadS32Big(long addr)
{
APIs.Memory.SetBigEndian();
return APIs.Memory.ReadS32(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_s32_be( 0x100, -1000 );")]
[LuaMethod("write_s32_be", "write signed 4 byte value, big endian")]
public void WriteS32Big(long addr, int value)
{
APIs.Memory.SetBigEndian();
APIs.Memory.WriteS32(addr, value, MainMemName);
}
[LuaMethodExample("local uimairea = mainmemory.read_u32_le( 0x100 );")]
[LuaMethod("read_u32_le", "read unsigned 4 byte value, little endian")]
public uint ReadU32Little(long addr)
{
APIs.Memory.SetBigEndian(false);
return APIs.Memory.ReadU32(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_u32_le( 0x100, 1000 );")]
[LuaMethod("write_u32_le", "write unsigned 4 byte value, little endian")]
public void WriteU32Little(long addr, uint value)
{
APIs.Memory.SetBigEndian(false);
APIs.Memory.WriteU32(addr, value, MainMemName);
}
[LuaMethodExample("local uimairea = mainmemory.read_u32_be( 0x100 );")]
[LuaMethod("read_u32_be", "read unsigned 4 byte value, big endian")]
public uint ReadU32Big(long addr)
{
APIs.Memory.SetBigEndian();
return APIs.Memory.ReadU32(addr, MainMemName);
}
[LuaMethodExample("mainmemory.write_u32_be( 0x100, 1000 );")]
[LuaMethod("write_u32_be", "write unsigned 4 byte value, big endian")]
public void WriteU32Big(long addr, uint value)
{
APIs.Memory.SetBigEndian();
APIs.Memory.WriteU32(addr, value, MainMemName);
}
}
}