Added a context menu to the debugger breakpoint list(toggle only), and edited the description for the cheat toggle item a little.
This commit is contained in:
parent
6c991885bf
commit
0a2e4bf547
|
@ -62,6 +62,9 @@ int WP_edit=-1;
|
||||||
int ChangeWait=0,ChangeWait2=0;
|
int ChangeWait=0,ChangeWait2=0;
|
||||||
uint8 debugger_open=0;
|
uint8 debugger_open=0;
|
||||||
HWND hDebug;
|
HWND hDebug;
|
||||||
|
static HMENU hDebugcontext; //Handle to context menu
|
||||||
|
static HMENU hDebugcontextsub; //Handle to context sub menu
|
||||||
|
|
||||||
static HFONT hFont;
|
static HFONT hFont;
|
||||||
static SCROLLINFO si;
|
static SCROLLINFO si;
|
||||||
|
|
||||||
|
@ -998,7 +1001,7 @@ void LoadGameDebuggerData(HWND hwndDlg = hDebug) {
|
||||||
|
|
||||||
BOOL CALLBACK DebuggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) {
|
BOOL CALLBACK DebuggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) {
|
||||||
RECT wrect;
|
RECT wrect;
|
||||||
char str[256]={0},*ptr,dotdot[4];
|
char str[256]={0},str2[256]={0},*ptr,dotdot[4];
|
||||||
int tmp,tmp2;
|
int tmp,tmp2;
|
||||||
int mouse_x,mouse_y;
|
int mouse_x,mouse_y;
|
||||||
int ret,i;
|
int ret,i;
|
||||||
|
@ -1058,6 +1061,9 @@ BOOL CALLBACK DebuggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
|
||||||
|
|
||||||
// ################################## End of SP CODE ###########################
|
// ################################## End of SP CODE ###########################
|
||||||
|
|
||||||
|
// Enable Context Sub-Menus
|
||||||
|
hDebugcontext = LoadMenu(fceu_hInstance,"DEBUGCONTEXTMENUS");
|
||||||
|
|
||||||
FCEUI_Debugger().badopbreak = false;
|
FCEUI_Debugger().badopbreak = false;
|
||||||
debugger_open = 1;
|
debugger_open = 1;
|
||||||
inDebugger = true;
|
inDebugger = true;
|
||||||
|
@ -1161,6 +1167,34 @@ BOOL CALLBACK DebuggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case WM_CONTEXTMENU:
|
||||||
|
{
|
||||||
|
// Handle certain subborn context menus for nearly incapable controls.
|
||||||
|
|
||||||
|
// Only need 9, but I'd rather double it to be safe
|
||||||
|
//char TestHwnd[17];
|
||||||
|
//char TestwParam[17];
|
||||||
|
|
||||||
|
// Convert wParam to a string
|
||||||
|
sprintf(str,"%08x",wParam);
|
||||||
|
|
||||||
|
// Convert HWND of IDC_LIST_CHEATS to a string
|
||||||
|
sprintf(str2,"%08x",GetDlgItem(hwndDlg,IDC_DEBUGGER_BP_LIST));
|
||||||
|
|
||||||
|
// Compare the now-compatible data with strcmp.
|
||||||
|
if (!strcmp(str, str2)) {
|
||||||
|
// Only open the menu if a cheat is selected
|
||||||
|
int test = SendDlgItemMessage(hwndDlg,IDC_DEBUGGER_BP_LIST,LB_GETCURSEL,0,0);
|
||||||
|
if (SendDlgItemMessage(hwndDlg,IDC_DEBUGGER_BP_LIST,LB_GETCURSEL,0,0) >= 0) {
|
||||||
|
// Open IDC_LIST_CHEATS Context Menu
|
||||||
|
hDebugcontextsub = GetSubMenu(hDebugcontext,0);
|
||||||
|
TrackPopupMenu(hDebugcontextsub,0,LOWORD(lParam),HIWORD(lParam),TPM_RIGHTBUTTON,hwndDlg,0); //Create menu
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
case WM_MOUSEWHEEL: //just handle page up/down and mousewheel messages together
|
case WM_MOUSEWHEEL: //just handle page up/down and mousewheel messages together
|
||||||
i = (short)HIWORD(wParam);///WHEEL_DELTA;
|
i = (short)HIWORD(wParam);///WHEEL_DELTA;
|
||||||
GetScrollInfo((HWND)lParam,SB_CTL,&si);
|
GetScrollInfo((HWND)lParam,SB_CTL,&si);
|
||||||
|
@ -1421,6 +1455,7 @@ BOOL CALLBACK DebuggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
|
||||||
// ################################## End of SP CODE ###########################
|
// ################################## End of SP CODE ###########################
|
||||||
|
|
||||||
case IDC_DEBUGGER_ROM_PATCHER: DoPatcher(-1,hwndDlg); break;
|
case IDC_DEBUGGER_ROM_PATCHER: DoPatcher(-1,hwndDlg); break;
|
||||||
|
case DEBUGGER_CONTEXT_TOGGLEBREAK: DebuggerCallB(hwndDlg, WM_COMMAND, (LBN_DBLCLK * 0x10000) | (IDC_DEBUGGER_BP_LIST), lParam); break;
|
||||||
}
|
}
|
||||||
//UpdateDebugger();
|
//UpdateDebugger();
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -424,12 +424,20 @@ CHEATCONTEXTMENUS MENU
|
||||||
BEGIN
|
BEGIN
|
||||||
POPUP "CheatListPopup"
|
POPUP "CheatListPopup"
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "Toggle Cheat", CHEAT_CONTEXT_TOGGLECHEAT
|
MENUITEM "Toggle Cheat\tDbl-Clk", CHEAT_CONTEXT_TOGGLECHEAT
|
||||||
MENUITEM "Poke Cheat Value", CHEAT_CONTEXT_POKECHEATVALUE
|
MENUITEM "Poke Cheat Value", CHEAT_CONTEXT_POKECHEATVALUE
|
||||||
MENUITEM "Goto In Hex Editor", CHEAT_CONTEXT_GOTOINHEXEDITOR
|
MENUITEM "Goto In Hex Editor", CHEAT_CONTEXT_GOTOINHEXEDITOR
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
|
|
||||||
|
DEBUGCONTEXTMENUS MENU
|
||||||
|
BEGIN
|
||||||
|
POPUP "DebugListPopup"
|
||||||
|
BEGIN
|
||||||
|
MENUITEM "Toggle Breakpoint\tDbl-Clk", DEBUGGER_CONTEXT_TOGGLEBREAK
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
||||||
LUAWINDOW_MENU MENU
|
LUAWINDOW_MENU MENU
|
||||||
BEGIN
|
BEGIN
|
||||||
POPUP "Console"
|
POPUP "Console"
|
||||||
|
|
|
@ -145,6 +145,7 @@
|
||||||
#define CHECK_SOUND_MUTEFA 130
|
#define CHECK_SOUND_MUTEFA 130
|
||||||
#define IDC_DISABLE_HW_ACCEL_WIN 130
|
#define IDC_DISABLE_HW_ACCEL_WIN 130
|
||||||
#define IDC_DISABLE_HW_ACCEL_FS 131
|
#define IDC_DISABLE_HW_ACCEL_FS 131
|
||||||
|
#define DEBUGGER_CONTEXT_TOGGLEBREAK 132
|
||||||
#define MENU_RECORD_MOVIE 141
|
#define MENU_RECORD_MOVIE 141
|
||||||
#define MENU_REPLAY_MOVIE 142
|
#define MENU_REPLAY_MOVIE 142
|
||||||
#define MENU_STOP_MOVIE 143
|
#define MENU_STOP_MOVIE 143
|
||||||
|
|
Loading…
Reference in New Issue