2015-07-02 03:17:14 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2015-07-05 23:05:33 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.IO.Compression;
|
2015-07-02 03:17:14 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesen.GUI
|
|
|
|
|
{
|
|
|
|
|
public class InteropEmu
|
|
|
|
|
{
|
|
|
|
|
private const string DLLPath = "WinMesen.dll";
|
2015-07-11 12:27:22 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void InitializeEmu([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string homeFolder, IntPtr windowHandle, IntPtr dxViewerHandle);
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void Release();
|
2015-07-06 02:23:44 +00:00
|
|
|
|
|
2015-07-11 12:27:22 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void LoadROM([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string filename);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void AddKnowGameFolder([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string folder);
|
2015-07-06 02:23:44 +00:00
|
|
|
|
|
2015-07-11 01:07:24 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void AddKeyMappings(int port, KeyMapping mapping);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void ClearKeyMappings(int port);
|
|
|
|
|
[DllImport(DLLPath)] public static extern UInt32 GetPressedKey();
|
2015-07-11 12:27:22 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern UInt32 GetKeyCode([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string keyName);
|
2015-07-11 01:07:24 +00:00
|
|
|
|
[DllImport(DLLPath, EntryPoint="GetKeyName")] private static extern IntPtr GetKeyNameWrapper(UInt32 key);
|
|
|
|
|
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void Run();
|
|
|
|
|
[DllImport(DLLPath)] public static extern void Pause();
|
|
|
|
|
[DllImport(DLLPath)] public static extern void Resume();
|
|
|
|
|
[DllImport(DLLPath)] public static extern bool IsPaused();
|
|
|
|
|
[DllImport(DLLPath)] public static extern void Stop();
|
2015-07-05 23:05:33 +00:00
|
|
|
|
[DllImport(DLLPath, EntryPoint="GetROMPath")] private static extern IntPtr GetROMPathWrapper();
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void Reset();
|
|
|
|
|
[DllImport(DLLPath)] public static extern void StartServer(UInt16 port);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void StopServer();
|
|
|
|
|
[DllImport(DLLPath)] public static extern bool IsServerRunning();
|
2015-07-11 12:27:22 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void Connect(string host, UInt16 port, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string playerName, byte[] avatarData, UInt32 avatarSize);
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void Disconnect();
|
|
|
|
|
[DllImport(DLLPath)] public static extern bool IsConnected();
|
2015-07-05 23:05:33 +00:00
|
|
|
|
|
|
|
|
|
[DllImport(DLLPath)] public static extern void TakeScreenshot();
|
|
|
|
|
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern IntPtr RegisterNotificationCallback(NotificationListener.NotificationCallback callback);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void UnregisterNotificationCallback(IntPtr notificationListener);
|
|
|
|
|
|
2015-07-21 03:33:23 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void DisplayMessage([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string title, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string message);
|
2015-07-02 03:17:14 +00:00
|
|
|
|
|
2015-07-11 12:27:22 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void MoviePlay([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string filename);
|
2015-08-02 23:27:02 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void MovieRecord([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string filename, [MarshalAs(UnmanagedType.I1)]bool reset);
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void MovieStop();
|
|
|
|
|
[DllImport(DLLPath)] public static extern bool MoviePlaying();
|
|
|
|
|
[DllImport(DLLPath)] public static extern bool MovieRecording();
|
|
|
|
|
|
|
|
|
|
[DllImport(DLLPath)] public static extern void SaveState(UInt32 stateIndex);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void LoadState(UInt32 stateIndex);
|
|
|
|
|
[DllImport(DLLPath)] public static extern Int64 GetStateInfo(UInt32 stateIndex);
|
|
|
|
|
|
2015-08-02 23:27:02 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void CheatAddCustom(UInt32 address, Byte value, Int32 compareValue, [MarshalAs(UnmanagedType.I1)]bool isRelativeAddress);
|
2015-07-05 23:05:33 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void CheatAddGameGenie(string code);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void CheatAddProActionRocky(UInt32 code);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void CheatClear();
|
|
|
|
|
|
2015-07-18 00:58:57 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void SetFlags(UInt32 flags);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void ClearFlags(UInt32 flags);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void SetChannelVolume(UInt32 channel, double volume);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void SetAudioLatency(UInt32 msLatency);
|
2015-07-22 03:05:27 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void SetNesModel(NesModel model);
|
2015-08-25 00:27:07 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void SetEmulationSpeed(UInt32 emulationSpeed);
|
2015-07-24 03:16:31 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void SetOverscanDimensions(UInt32 left, UInt32 right, UInt32 top, UInt32 bottom);
|
2015-07-18 00:58:57 +00:00
|
|
|
|
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugInitialize();
|
2015-08-02 23:27:02 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugRelease();
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugGetState(ref DebugState state);
|
2015-08-02 23:27:02 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugAddBreakpoint(BreakpointType type, UInt32 address, [MarshalAs(UnmanagedType.I1)]bool isAbsoluteAddr, [MarshalAs(UnmanagedType.I1)]bool enabled);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugRemoveBreakpoint(BreakpointType type, UInt32 address, [MarshalAs(UnmanagedType.I1)]bool isAbsoluteAddr);
|
2015-07-02 03:17:14 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugStep(UInt32 count);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugStepCycles(UInt32 count);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugStepOut();
|
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugStepOver();
|
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugRun();
|
|
|
|
|
[DllImport(DLLPath)] public static extern bool DebugIsCodeChanged();
|
|
|
|
|
[DllImport(DLLPath)] public static extern IntPtr DebugGetCode();
|
|
|
|
|
[DllImport(DLLPath)] public static extern Byte DebugGetMemoryValue(UInt32 addr);
|
|
|
|
|
[DllImport(DLLPath)] public static extern UInt32 DebugGetRelativeAddress(UInt32 addr);
|
2015-08-18 01:59:22 +00:00
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugSetNextStatement(UInt16 addr);
|
|
|
|
|
|
2015-08-17 23:32:10 +00:00
|
|
|
|
|
|
|
|
|
[DllImport(DLLPath)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool DebugLoadCdlFile([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string cdlFilepath);
|
|
|
|
|
[DllImport(DLLPath)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool DebugSaveCdlFile([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(UTF8Marshaler))]string cdlFilepath);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugGetCdlRatios(ref CdlRatios ratios);
|
|
|
|
|
[DllImport(DLLPath)] public static extern void DebugResetCdlLog();
|
2015-07-02 03:17:14 +00:00
|
|
|
|
|
2015-08-09 18:47:27 +00:00
|
|
|
|
[DllImport(DLLPath, EntryPoint="DebugGetMemoryState")] private static extern UInt32 DebugGetMemoryStateWrapper(DebugMemoryType type, IntPtr buffer);
|
2015-08-06 00:40:10 +00:00
|
|
|
|
public static byte[] DebugGetMemoryState(DebugMemoryType type)
|
|
|
|
|
{
|
|
|
|
|
byte[] buffer = new byte[10485760]; //10mb buffer
|
|
|
|
|
GCHandle handle = GCHandle.Alloc(buffer, GCHandleType.Pinned);
|
|
|
|
|
try {
|
|
|
|
|
UInt32 memorySize = InteropEmu.DebugGetMemoryStateWrapper(type, handle.AddrOfPinnedObject());
|
|
|
|
|
Array.Resize(ref buffer, (int)memorySize);
|
|
|
|
|
} finally {
|
|
|
|
|
handle.Free();
|
|
|
|
|
}
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
2015-07-05 23:05:33 +00:00
|
|
|
|
|
2015-08-09 18:47:27 +00:00
|
|
|
|
[DllImport(DLLPath, EntryPoint="DebugGetNametable")] private static extern void DebugGetNametableWrapper(UInt32 nametableIndex, IntPtr frameBuffer, IntPtr tileData, IntPtr attributeData);
|
2015-08-09 02:36:39 +00:00
|
|
|
|
public static void DebugGetNametable(int nametableIndex, out byte[] frameData, out byte[] tileData, out byte[] attributeData)
|
|
|
|
|
{
|
|
|
|
|
frameData = new byte[256*240*4];
|
|
|
|
|
tileData = new byte[32*30];
|
|
|
|
|
attributeData = new byte[32*30];
|
|
|
|
|
|
|
|
|
|
GCHandle hFrameData = GCHandle.Alloc(frameData, GCHandleType.Pinned);
|
|
|
|
|
GCHandle hTileData = GCHandle.Alloc(tileData, GCHandleType.Pinned);
|
|
|
|
|
GCHandle hAttributeData = GCHandle.Alloc(attributeData, GCHandleType.Pinned);
|
|
|
|
|
try {
|
|
|
|
|
InteropEmu.DebugGetNametableWrapper((UInt32)nametableIndex, hFrameData.AddrOfPinnedObject(), hTileData.AddrOfPinnedObject(), hAttributeData.AddrOfPinnedObject());
|
|
|
|
|
} finally {
|
|
|
|
|
hFrameData.Free();
|
|
|
|
|
hTileData.Free();
|
|
|
|
|
hAttributeData.Free();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-09 18:47:27 +00:00
|
|
|
|
[DllImport(DLLPath, EntryPoint="DebugGetChrBank")] private static extern void DebugGetChrBankWrapper(UInt32 bankIndex, IntPtr frameBuffer, Byte palette);
|
2015-08-09 02:36:39 +00:00
|
|
|
|
public static byte[] DebugGetChrBank(int bankIndex, int palette)
|
|
|
|
|
{
|
|
|
|
|
byte[] frameData = new byte[128*128*4];
|
|
|
|
|
|
|
|
|
|
GCHandle hFrameData = GCHandle.Alloc(frameData, GCHandleType.Pinned);
|
|
|
|
|
try {
|
|
|
|
|
InteropEmu.DebugGetChrBankWrapper((UInt32)bankIndex, hFrameData.AddrOfPinnedObject(), (Byte)palette);
|
|
|
|
|
} finally {
|
|
|
|
|
hFrameData.Free();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return frameData;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-09 18:47:27 +00:00
|
|
|
|
[DllImport(DLLPath, EntryPoint="DebugGetSprites")] private static extern void DebugGetSpritesWrapper(IntPtr frameBuffer);
|
2015-08-09 02:36:39 +00:00
|
|
|
|
public static byte[] DebugGetSprites()
|
|
|
|
|
{
|
|
|
|
|
byte[] frameData = new byte[64*128*4];
|
|
|
|
|
|
|
|
|
|
GCHandle hFrameData = GCHandle.Alloc(frameData, GCHandleType.Pinned);
|
|
|
|
|
try {
|
|
|
|
|
InteropEmu.DebugGetSpritesWrapper(hFrameData.AddrOfPinnedObject());
|
|
|
|
|
} finally {
|
|
|
|
|
hFrameData.Free();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return frameData;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-09 18:47:27 +00:00
|
|
|
|
[DllImport(DLLPath, EntryPoint="DebugGetPalette")] private static extern void DebugGetPaletteWrapper(IntPtr frameBuffer);
|
2015-08-09 02:36:39 +00:00
|
|
|
|
public static byte[] DebugGetPalette()
|
|
|
|
|
{
|
|
|
|
|
byte[] frameData = new byte[4*8*4];
|
|
|
|
|
|
|
|
|
|
GCHandle hFrameData = GCHandle.Alloc(frameData, GCHandleType.Pinned);
|
|
|
|
|
try {
|
|
|
|
|
InteropEmu.DebugGetPaletteWrapper(hFrameData.AddrOfPinnedObject());
|
|
|
|
|
} finally {
|
|
|
|
|
hFrameData.Free();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return frameData;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-09 18:47:27 +00:00
|
|
|
|
[DllImport(DLLPath, EntryPoint="DebugGetCallstack")] private static extern void DebugGetCallstackWrapper(IntPtr callstackAbsolute, IntPtr callstackRelative);
|
|
|
|
|
public static void DebugGetCallstack(out Int32[] callstackAbsolute, out Int32[] callstackRelative)
|
|
|
|
|
{
|
|
|
|
|
callstackAbsolute = new Int32[1024];
|
|
|
|
|
callstackRelative = new Int32[1024];
|
|
|
|
|
|
|
|
|
|
GCHandle hAbsolute = GCHandle.Alloc(callstackAbsolute, GCHandleType.Pinned);
|
|
|
|
|
GCHandle hRelative = GCHandle.Alloc(callstackRelative, GCHandleType.Pinned);
|
|
|
|
|
try {
|
|
|
|
|
InteropEmu.DebugGetCallstackWrapper(hAbsolute.AddrOfPinnedObject(), hRelative.AddrOfPinnedObject());
|
|
|
|
|
} finally {
|
|
|
|
|
hAbsolute.Free();
|
|
|
|
|
hRelative.Free();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-11 12:27:22 +00:00
|
|
|
|
public static string GetROMPath() { return PtrToStringUtf8(InteropEmu.GetROMPathWrapper()); }
|
|
|
|
|
public static string GetKeyName(UInt32 key) { return PtrToStringUtf8(InteropEmu.GetKeyNameWrapper(key)); }
|
|
|
|
|
|
|
|
|
|
private static string PtrToStringUtf8(IntPtr ptr)
|
|
|
|
|
{
|
|
|
|
|
if(ptr == IntPtr.Zero) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int len = 0;
|
|
|
|
|
while(System.Runtime.InteropServices.Marshal.ReadByte(ptr, len) != 0) {
|
|
|
|
|
len++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(len == 0) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
byte[] array = new byte[len];
|
|
|
|
|
System.Runtime.InteropServices.Marshal.Copy(ptr, array, 0, len);
|
|
|
|
|
return System.Text.Encoding.UTF8.GetString(array);
|
|
|
|
|
}
|
2015-07-05 23:05:33 +00:00
|
|
|
|
|
2015-07-02 03:17:14 +00:00
|
|
|
|
public enum ConsoleNotificationType
|
|
|
|
|
{
|
|
|
|
|
GameLoaded = 0,
|
|
|
|
|
StateLoaded = 1,
|
|
|
|
|
GameReset = 2,
|
|
|
|
|
GamePaused = 3,
|
|
|
|
|
GameResumed = 4,
|
|
|
|
|
GameStopped = 5,
|
|
|
|
|
CodeBreak = 6,
|
2015-08-09 02:36:39 +00:00
|
|
|
|
CheatAdded = 7,
|
|
|
|
|
CheatRemoved = 8,
|
|
|
|
|
PpuFrameDone = 9,
|
2015-07-02 03:17:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-11 01:07:24 +00:00
|
|
|
|
public struct KeyMapping
|
|
|
|
|
{
|
|
|
|
|
public UInt32 A;
|
|
|
|
|
public UInt32 B;
|
|
|
|
|
public UInt32 Up;
|
|
|
|
|
public UInt32 Down;
|
|
|
|
|
public UInt32 Left;
|
|
|
|
|
public UInt32 Right;
|
|
|
|
|
public UInt32 Start;
|
|
|
|
|
public UInt32 Select;
|
|
|
|
|
public UInt32 TurboA;
|
|
|
|
|
public UInt32 TurboB;
|
|
|
|
|
public UInt32 TurboStart;
|
|
|
|
|
public UInt32 TurboSelect;
|
|
|
|
|
public UInt32 TurboSpeed;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-02 03:17:14 +00:00
|
|
|
|
public class NotificationEventArgs
|
|
|
|
|
{
|
|
|
|
|
public ConsoleNotificationType NotificationType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class NotificationListener : IDisposable
|
|
|
|
|
{
|
|
|
|
|
public delegate void NotificationCallback(int type);
|
|
|
|
|
public delegate void NotificationEventHandler(NotificationEventArgs e);
|
|
|
|
|
public event NotificationEventHandler OnNotification;
|
|
|
|
|
|
|
|
|
|
//Need to keep a reference to this callback, or it will get garbage collected (since the only reference to it is on the native side)
|
|
|
|
|
NotificationCallback _callback;
|
|
|
|
|
IntPtr _notificationListener;
|
|
|
|
|
|
|
|
|
|
public NotificationListener()
|
|
|
|
|
{
|
|
|
|
|
_callback = (int type) => {
|
|
|
|
|
this.ProcessNotification(type);
|
|
|
|
|
};
|
|
|
|
|
_notificationListener = InteropEmu.RegisterNotificationCallback(_callback);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
InteropEmu.UnregisterNotificationCallback(_notificationListener);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ProcessNotification(int type)
|
|
|
|
|
{
|
|
|
|
|
if(this.OnNotification != null) {
|
|
|
|
|
this.OnNotification(new NotificationEventArgs() { NotificationType = (ConsoleNotificationType)type });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-17 23:32:10 +00:00
|
|
|
|
public struct CdlRatios
|
|
|
|
|
{
|
|
|
|
|
public float CodeRatio;
|
|
|
|
|
public float DataRatio;
|
|
|
|
|
public float PrgRatio;
|
|
|
|
|
|
|
|
|
|
public float ChrRatio;
|
|
|
|
|
public float ChrReadRatio;
|
|
|
|
|
public float ChrDrawnRatio;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-02 03:17:14 +00:00
|
|
|
|
public struct DebugState
|
|
|
|
|
{
|
|
|
|
|
public CPUState CPU;
|
|
|
|
|
public PPUDebugState PPU;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public struct PPUDebugState
|
|
|
|
|
{
|
|
|
|
|
public PPUControlFlags ControlFlags;
|
|
|
|
|
public PPUStatusFlags StatusFlags;
|
|
|
|
|
public PPUState State;
|
|
|
|
|
public Int32 Scanline;
|
|
|
|
|
public UInt32 Cycle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public struct PPUState
|
|
|
|
|
{
|
|
|
|
|
public Byte Control;
|
|
|
|
|
public Byte Mask;
|
|
|
|
|
public Byte Status;
|
|
|
|
|
public UInt32 SpriteRamAddr;
|
|
|
|
|
public UInt16 VideoRamAddr;
|
|
|
|
|
public Byte XScroll;
|
|
|
|
|
public UInt16 TmpVideoRamAddr;
|
|
|
|
|
public Byte WriteToggle;
|
|
|
|
|
|
|
|
|
|
public UInt16 HighBitShift;
|
|
|
|
|
public UInt16 LowBitShift;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public struct PPUControlFlags
|
|
|
|
|
{
|
|
|
|
|
public Byte VerticalWrite;
|
|
|
|
|
public UInt16 SpritePatternAddr;
|
|
|
|
|
public UInt16 BackgroundPatternAddr;
|
|
|
|
|
public Byte LargeSprites;
|
|
|
|
|
public Byte VBlank;
|
|
|
|
|
|
|
|
|
|
public Byte Grayscale;
|
|
|
|
|
public Byte BackgroundMask;
|
|
|
|
|
public Byte SpriteMask;
|
|
|
|
|
public Byte BackgroundEnabled;
|
|
|
|
|
public Byte SpritesEnabled;
|
|
|
|
|
public Byte IntensifyRed;
|
|
|
|
|
public Byte IntensifyGreen;
|
|
|
|
|
public Byte IntensifyBlue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public struct PPUStatusFlags
|
|
|
|
|
{
|
|
|
|
|
public Byte SpriteOverflow;
|
|
|
|
|
public Byte Sprite0Hit;
|
|
|
|
|
public Byte VerticalBlank;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public struct CPUState
|
|
|
|
|
{
|
|
|
|
|
public UInt16 PC;
|
|
|
|
|
public Byte SP;
|
|
|
|
|
public Byte A;
|
|
|
|
|
public Byte X;
|
|
|
|
|
public Byte Y;
|
|
|
|
|
public Byte PS;
|
|
|
|
|
public IRQSource IRQFlag;
|
2015-08-02 23:27:02 +00:00
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.I1)]
|
2015-07-02 03:17:14 +00:00
|
|
|
|
public bool NMIFlag;
|
2015-08-02 23:27:02 +00:00
|
|
|
|
|
|
|
|
|
public UInt16 DebugPC;
|
2015-07-02 03:17:14 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum IRQSource : uint
|
|
|
|
|
{
|
|
|
|
|
External = 1,
|
|
|
|
|
FrameCounter = 2,
|
|
|
|
|
DMC = 4,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum PSFlags
|
|
|
|
|
{
|
|
|
|
|
Carry = 0x01,
|
|
|
|
|
Zero = 0x02,
|
|
|
|
|
Interrupt = 0x04,
|
|
|
|
|
Decimal = 0x08,
|
|
|
|
|
Break = 0x10,
|
|
|
|
|
Reserved = 0x20,
|
|
|
|
|
Overflow = 0x40,
|
|
|
|
|
Negative = 0x80
|
|
|
|
|
}
|
2015-07-05 23:05:33 +00:00
|
|
|
|
|
2015-07-18 01:18:57 +00:00
|
|
|
|
[Flags]
|
|
|
|
|
public enum EmulationFlags
|
|
|
|
|
{
|
|
|
|
|
Paused = 0x01,
|
2015-08-24 00:24:24 +00:00
|
|
|
|
ShowFPS = 0x02,
|
2015-07-18 01:18:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-19 15:55:53 +00:00
|
|
|
|
public enum BreakpointType
|
|
|
|
|
{
|
|
|
|
|
Execute = 0,
|
|
|
|
|
Read = 1,
|
|
|
|
|
Write = 2
|
|
|
|
|
};
|
|
|
|
|
|
2015-07-22 03:05:27 +00:00
|
|
|
|
public enum NesModel
|
|
|
|
|
{
|
|
|
|
|
Auto = 0,
|
|
|
|
|
NTSC = 1,
|
|
|
|
|
PAL = 2
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-06 00:40:10 +00:00
|
|
|
|
public enum DebugMemoryType
|
|
|
|
|
{
|
|
|
|
|
CpuMemory = 0,
|
|
|
|
|
PpuMemory = 1,
|
2015-08-06 01:43:53 +00:00
|
|
|
|
PaletteMemory = 2,
|
|
|
|
|
SpriteMemory = 3,
|
|
|
|
|
SecondarySpriteMemory = 4,
|
|
|
|
|
PrgRom = 5,
|
|
|
|
|
ChrRom = 6,
|
2015-08-06 00:40:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-05 23:05:33 +00:00
|
|
|
|
public class MD5Helper
|
|
|
|
|
{
|
|
|
|
|
public static string GetMD5Hash(string filename)
|
|
|
|
|
{
|
|
|
|
|
var md5 = System.Security.Cryptography.MD5.Create();
|
|
|
|
|
if(filename.EndsWith(".nes", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
return BitConverter.ToString(md5.ComputeHash(File.ReadAllBytes(filename))).Replace("-", "");
|
|
|
|
|
} else if(filename.EndsWith(".zip", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
foreach(var entry in ZipFile.OpenRead(filename).Entries) {
|
|
|
|
|
if(entry.Name.EndsWith(".nes", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
return BitConverter.ToString(md5.ComputeHash(entry.Open())).Replace("-", "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-07-11 12:27:22 +00:00
|
|
|
|
|
|
|
|
|
public class UTF8Marshaler : ICustomMarshaler
|
|
|
|
|
{
|
|
|
|
|
static UTF8Marshaler _instance;
|
|
|
|
|
|
|
|
|
|
public IntPtr MarshalManagedToNative(object managedObj)
|
|
|
|
|
{
|
|
|
|
|
if(managedObj == null) {
|
|
|
|
|
return IntPtr.Zero;
|
|
|
|
|
}
|
|
|
|
|
if(!(managedObj is string)) {
|
|
|
|
|
throw new MarshalDirectiveException("UTF8Marshaler must be used on a string.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// not null terminated
|
|
|
|
|
byte[] strbuf = Encoding.UTF8.GetBytes((string)managedObj);
|
|
|
|
|
IntPtr buffer = Marshal.AllocHGlobal(strbuf.Length + 1);
|
|
|
|
|
Marshal.Copy(strbuf, 0, buffer, strbuf.Length);
|
|
|
|
|
|
|
|
|
|
// write the terminating null
|
|
|
|
|
Marshal.WriteByte(buffer + strbuf.Length, 0);
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public unsafe object MarshalNativeToManaged(IntPtr pNativeData)
|
|
|
|
|
{
|
|
|
|
|
byte* walk = (byte*)pNativeData;
|
|
|
|
|
|
|
|
|
|
// find the end of the string
|
|
|
|
|
while(*walk != 0) {
|
|
|
|
|
walk++;
|
|
|
|
|
}
|
|
|
|
|
int length = (int)(walk - (byte*)pNativeData);
|
|
|
|
|
|
|
|
|
|
// should not be null terminated
|
|
|
|
|
byte[] strbuf = new byte[length];
|
|
|
|
|
// skip the trailing null
|
|
|
|
|
Marshal.Copy((IntPtr)pNativeData, strbuf, 0, length);
|
|
|
|
|
string data = Encoding.UTF8.GetString(strbuf);
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void CleanUpNativeData(IntPtr pNativeData)
|
|
|
|
|
{
|
|
|
|
|
Marshal.FreeHGlobal(pNativeData);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void CleanUpManagedData(object managedObj)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int GetNativeDataSize()
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static ICustomMarshaler GetInstance(string cookie)
|
|
|
|
|
{
|
|
|
|
|
if(_instance == null) {
|
|
|
|
|
return _instance = new UTF8Marshaler();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-07-02 03:17:14 +00:00
|
|
|
|
}
|