mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
47 lines
992 B
C++
47 lines
992 B
C++
#pragma once
|
|
#include "Common/CommonWindows.h"
|
|
#include "Common/CommonTypes.h"
|
|
#include "Core/Debugger/DebugInterface.h"
|
|
#include "Core/Debugger/Breakpoints.h"
|
|
|
|
class BreakpointWindow
|
|
{
|
|
HWND parentHwnd;
|
|
DebugInterface* cpu;
|
|
|
|
bool memory;
|
|
bool read;
|
|
bool write;
|
|
bool enabled;
|
|
bool log;
|
|
bool onChange;
|
|
u32 address;
|
|
u32 size;
|
|
char condition[128];
|
|
PostfixExpression compiledCondition;
|
|
|
|
static BreakpointWindow* bp;
|
|
bool fetchDialogData(HWND hwnd);
|
|
public:
|
|
BreakpointWindow(HWND parent, DebugInterface* cpu): cpu(cpu)
|
|
{
|
|
parentHwnd = parent;
|
|
memory = true;
|
|
onChange = false;
|
|
read = write = true;
|
|
enabled = log = true;
|
|
address = -1;
|
|
size = 1;
|
|
condition[0] = 0;
|
|
};
|
|
|
|
|
|
static INT_PTR CALLBACK dlgFunc(HWND hWnd, UINT iMsg, WPARAM wParam, LPARAM lParam);
|
|
bool exec();
|
|
bool isMemoryBreakpoint() { return memory; };
|
|
|
|
void addBreakpoint();
|
|
void loadFromMemcheck(MemCheck& memcheck);
|
|
void loadFromBreakpoint(BreakPoint& memcheck);
|
|
void initBreakpoint(u32 address);
|
|
}; |