-
Notifications
You must be signed in to change notification settings - Fork 450
Expand file tree
/
Copy pathMemoryDomainImpls.cs
More file actions
405 lines (356 loc) · 11.1 KB
/
MemoryDomainImpls.cs
File metadata and controls
405 lines (356 loc) · 11.1 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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#nullable disable
using System.Runtime.InteropServices;
using BizHawk.Common;
namespace BizHawk.Emulation.Common
{
public class MemoryDomainDelegate : MemoryDomain
{
private Action<long, byte> _poke;
// TODO: use an array of Ranges
private Action<Range<long>, byte[]> _bulkPeekByte { get; set; }
private Action<Range<long>, bool, ushort[]> _bulkPeekUshort { get; set; }
private Action<Range<long>, bool, uint[]> _bulkPeekUint { get; set; }
public Func<long, byte> Peek { get; set; }
public Action<long, byte> Poke
{
get => _poke;
set
{
_poke = value;
Writable = value != null;
}
}
public override byte PeekByte(long addr)
{
if (addr < 0 || Size <= addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
return Peek(addr);
}
public override void PokeByte(long addr, byte val)
{
if (_poke is null)
{
FailPokingNotAllowed();
return;
}
if (addr < 0 || Size <= addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
_poke.Invoke(addr, val);
}
public override void BulkPeekByte(Range<long> addresses, byte[] values)
{
if (_bulkPeekByte != null)
{
_bulkPeekByte.Invoke(addresses, values);
}
else
{
base.BulkPeekByte(addresses, values);
}
}
public override void BulkPeekUshort(Range<long> addresses, bool bigEndian, ushort[] values)
{
if (_bulkPeekUshort != null)
{
var start = addresses.Start;
if (start < 0 || Size <= start) throw new ArgumentOutOfRangeException(paramName: nameof(addresses), start, message: string.Format(ERR_FMT_STR_START_OOR, Size));
var endExcl = start + checked((long) addresses.Count());
if (Size < endExcl) throw new ArgumentOutOfRangeException(paramName: nameof(addresses), endExcl, message: string.Format(ERR_FMT_STR_END_OOR, Size));
_bulkPeekUshort.Invoke(addresses, bigEndian, values);
}
else
{
base.BulkPeekUshort(addresses, bigEndian, values);
}
}
public override void BulkPeekUint(Range<long> addresses, bool bigEndian, uint[] values)
{
if (_bulkPeekUint != null)
{
var start = addresses.Start;
if (start < 0 || Size <= start) throw new ArgumentOutOfRangeException(paramName: nameof(addresses), start, message: string.Format(ERR_FMT_STR_START_OOR, Size));
var endExcl = start + checked((long) addresses.Count());
if (Size < endExcl) throw new ArgumentOutOfRangeException(paramName: nameof(addresses), endExcl, message: string.Format(ERR_FMT_STR_END_OOR, Size));
_bulkPeekUint.Invoke(addresses, bigEndian, values);
}
else
{
base.BulkPeekUint(addresses, bigEndian, values);
}
}
public MemoryDomainDelegate(
string name,
long size,
Endian endian,
Func<long, byte> peek,
Action<long, byte> poke,
int wordSize,
Action<Range<long>, byte[]> bulkPeekByte = null,
Action<Range<long>, bool, ushort[]> bulkPeekUshort = null,
Action<Range<long>, bool, uint[]> bulkPeekUint = null)
{
Name = name;
EndianType = endian;
Size = size;
Peek = peek;
_poke = poke;
Writable = poke != null;
WordSize = wordSize;
_bulkPeekByte = bulkPeekByte;
_bulkPeekUshort = bulkPeekUshort;
_bulkPeekUint = bulkPeekUint;
}
}
public class MemoryDomainByteArray : MemoryDomain
{
private byte[] _data;
public byte[] Data
{
get => _data;
set
{
_data = value;
Size = _data.LongLength;
}
}
public override byte PeekByte(long addr)
{
return Data[addr];
}
public override void PokeByte(long addr, byte val)
{
if (!Writable)
{
FailPokingNotAllowed();
return;
}
Data[addr] = val;
}
public MemoryDomainByteArray(string name, Endian endian, byte[] data, bool writable, int wordSize)
{
Name = name;
EndianType = endian;
Data = data;
Writable = writable;
WordSize = wordSize;
}
}
public class MemoryDomainUshortArray : MemoryDomain
{
private ushort[] _data;
public ushort[] Data
{
get => _data;
set
{
_data = value;
Size = _data.LongLength*2;
}
}
public override byte PeekByte(long addr)
{
long bit0 = addr & 1;
addr >>= 1;
if(bit0==0)
return (byte)(_data[addr] & 0xFF);
else
return (byte)((_data[addr]>>8)&0xFF);
}
public override void PokeByte(long addr, byte val)
{
if (!Writable)
{
FailPokingNotAllowed();
return;
}
long bit0 = addr & 1;
addr >>= 1;
if (bit0 == 0)
Data[addr] = (ushort)((_data[addr] & 0xFF00) | val);
else
Data[addr] = (ushort)((_data[addr] & 0x00FF) | (val<<8));
}
public MemoryDomainUshortArray(string name, Endian endian, ushort[] data, bool writable)
{
Name = name;
EndianType = endian;
Data = data;
Writable = writable;
WordSize = 2;
}
}
public class MemoryDomainIntPtr : MemoryDomain
{
public IntPtr Data { get; set; }
public unsafe override byte PeekByte(long addr)
{
if ((ulong) Size <= (ulong) addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
return ((byte*) Data)[addr];
}
public override unsafe void PokeByte(long addr, byte val)
{
if (!Writable)
{
FailPokingNotAllowed();
return;
}
//TODO why are we casting `long`s to `ulong` here?
if ((ulong) Size <= (ulong) addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
((byte*) Data)[addr] = val;
}
public override void BulkPeekByte(Range<long> addresses, byte[] values)
{
//TODO why are we casting `long`s to `ulong` here?
var start = (ulong)addresses.Start;
if ((ulong) Size <= start) throw new ArgumentOutOfRangeException(paramName: nameof(addresses), start, message: string.Format(ERR_FMT_STR_START_OOR, Size));
var count = addresses.Count();
var endExcl = start + count;
if ((ulong) Size < endExcl) throw new ArgumentOutOfRangeException(paramName: nameof(addresses), endExcl, message: string.Format(ERR_FMT_STR_END_OOR, Size));
Marshal.Copy(source: (IntPtr) ((ulong) Data + start), destination: values, startIndex: 0, length: (int) count);
}
public void SetSize(long size)
{
Size = size;
}
public MemoryDomainIntPtr(string name, Endian endian, IntPtr data, long size, bool writable, int wordSize)
{
Name = name;
EndianType = endian;
Data = data;
Size = size;
Writable = writable;
WordSize = wordSize;
}
}
public unsafe class MemoryDomainIntPtrMonitor : MemoryDomain
{
public IntPtr Data { get; set; }
private readonly IMonitor _monitor;
public override byte PeekByte(long addr)
{
//TODO why are we casting `long`s to `ulong` here?
if ((ulong) Size <= (ulong) addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
using (_monitor.EnterExit()) return ((byte*) Data)[addr];
}
public override void PokeByte(long addr, byte val)
{
if (!Writable)
{
FailPokingNotAllowed();
return;
}
//TODO why are we casting `long`s to `ulong` here?
if ((ulong) Size <= (ulong) addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
using (_monitor.EnterExit()) ((byte*) Data)[addr] = val;
}
public void SetSize(long size)
{
Size = size;
}
public MemoryDomainIntPtrMonitor(string name, Endian endian, IntPtr data, long size, bool writable, int wordSize,
IMonitor monitor)
{
Name = name;
EndianType = endian;
Data = data;
Size = size;
Writable = writable;
WordSize = wordSize;
_monitor = monitor;
}
public override void Enter()
=> _monitor.Enter();
public override void Exit()
=> _monitor.Exit();
}
public unsafe class MemoryDomainIntPtrSwap16 : MemoryDomain
{
public IntPtr Data { get; set; }
public override byte PeekByte(long addr)
{
//TODO why are we casting `long`s to `ulong` here?
if ((ulong) Size <= (ulong) addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
return ((byte*) Data)[addr ^ 1L];
}
public override void PokeByte(long addr, byte val)
{
if (!Writable)
{
FailPokingNotAllowed();
return;
}
//TODO why are we casting `long`s to `ulong` here?
if ((ulong) Size <= (ulong) addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
((byte*) Data)[addr ^ 1L] = val;
}
public MemoryDomainIntPtrSwap16(string name, Endian endian, IntPtr data, long size, bool writable)
{
Name = name;
EndianType = endian;
Data = data;
Size = size;
Writable = writable;
WordSize = 2;
}
}
public unsafe class MemoryDomainIntPtrSwap16Monitor : MemoryDomain
{
public IntPtr Data { get; set; }
private readonly IMonitor _monitor;
public override byte PeekByte(long addr)
{
//TODO why are we casting `long`s to `ulong` here?
if ((ulong) Size <= (ulong) addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
using (_monitor.EnterExit()) return ((byte*) Data)[addr ^ 1L];
}
public override void PokeByte(long addr, byte val)
{
if (!Writable)
{
FailPokingNotAllowed();
return;
}
//TODO why are we casting `long`s to `ulong` here?
if ((ulong) Size <= (ulong) addr) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: string.Format(ERR_FMT_STR_ADDR_OOR, Size));
using (_monitor.EnterExit()) ((byte*) Data)[addr ^ 1L] = val;
}
public MemoryDomainIntPtrSwap16Monitor(string name, Endian endian, IntPtr data, long size, bool writable,
IMonitor monitor)
{
Name = name;
EndianType = endian;
Data = data;
Size = size;
Writable = writable;
WordSize = 2;
_monitor = monitor;
}
public override void Enter()
=> _monitor.Enter();
public override void Exit()
=> _monitor.Exit();
}
public class MemoryDomainDelegateSysBusNES : MemoryDomainDelegate
{
private readonly Action<int, byte, int, int> sendcheattocore;
public override void SendCheatToCore(int addr, byte value, int compare, int comparetype)
{
if (sendcheattocore != null)
{
sendcheattocore.Invoke(addr, value, compare, comparetype);
}
else
{
base.SendCheatToCore(addr, value, compare, comparetype);
}
}
public MemoryDomainDelegateSysBusNES(
string name,
long size,
Endian endian,
Func<long, byte> peek,
Action<long, byte> poke,
int wordSize,
Action<int, byte, int, int> nescheatpoke = null)
: base(name, size, endian, peek, poke, wordSize)
=> sendcheattocore = nescheatpoke;
}
}