2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:43:35 -06:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 22:30:24 -07:00
|
|
|
|
2014-02-22 15:36:30 -07:00
|
|
|
#include <string>
|
|
|
|
#include <wx/dialog.h>
|
2014-07-24 19:46:46 -06:00
|
|
|
#include <wx/msgdlg.h>
|
2014-02-22 15:36:30 -07:00
|
|
|
#include <wx/sizer.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
|
|
|
|
#include "Common/BreakPoints.h"
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/StringUtil.h"
|
|
|
|
#include "Core/PowerPC/PowerPC.h"
|
2014-02-18 18:56:29 -07:00
|
|
|
#include "DolphinWX/WxUtils.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "DolphinWX/Debugger/BreakpointDlg.h"
|
|
|
|
#include "DolphinWX/Debugger/BreakpointWindow.h"
|
2008-12-07 22:30:24 -07:00
|
|
|
|
2011-02-27 16:03:08 -07:00
|
|
|
BreakPointDlg::BreakPointDlg(CBreakPointWindow *_Parent)
|
2014-05-17 11:17:28 -06:00
|
|
|
: wxDialog(_Parent, wxID_ANY, _("Add Breakpoint"))
|
2011-02-27 16:03:08 -07:00
|
|
|
, Parent(_Parent)
|
2008-12-07 22:30:24 -07:00
|
|
|
{
|
2014-11-05 20:19:52 -07:00
|
|
|
Bind(wxEVT_BUTTON, &BreakPointDlg::OnOK, this, wxID_OK);
|
|
|
|
|
2014-05-17 11:17:28 -06:00
|
|
|
m_pEditAddress = new wxTextCtrl(this, wxID_ANY, "80000000");
|
2011-02-27 16:03:08 -07:00
|
|
|
|
|
|
|
wxBoxSizer *sMainSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
sMainSizer->Add(m_pEditAddress, 0, wxEXPAND | wxALL, 5);
|
2011-03-16 22:26:01 -06:00
|
|
|
sMainSizer->Add(CreateButtonSizer(wxOK | wxCANCEL), 0, wxALL, 5);
|
2008-12-07 22:30:24 -07:00
|
|
|
|
2011-03-16 22:26:01 -06:00
|
|
|
SetSizerAndFit(sMainSizer);
|
|
|
|
SetFocus();
|
2008-12-07 22:30:24 -07:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:26:01 -06:00
|
|
|
void BreakPointDlg::OnOK(wxCommandEvent& event)
|
2008-12-07 22:30:24 -07:00
|
|
|
{
|
|
|
|
wxString AddressString = m_pEditAddress->GetLineText(0);
|
|
|
|
u32 Address = 0;
|
2014-03-12 13:33:41 -06:00
|
|
|
if (AsciiToHex(WxStrToStr(AddressString), Address))
|
2008-12-07 22:30:24 -07:00
|
|
|
{
|
2009-06-28 05:47:39 -06:00
|
|
|
PowerPC::breakpoints.Add(Address);
|
2009-08-27 05:08:52 -06:00
|
|
|
Parent->NotifyUpdate();
|
2013-04-07 23:16:50 -06:00
|
|
|
Close();
|
2008-12-07 22:30:24 -07:00
|
|
|
}
|
2011-02-27 16:03:08 -07:00
|
|
|
else
|
2013-04-07 23:16:50 -06:00
|
|
|
{
|
2014-07-24 19:46:46 -06:00
|
|
|
WxUtils::ShowErrorDialog(wxString::Format(_("The address %s is invalid."), WxStrToStr(AddressString).c_str()));
|
2013-04-07 23:16:50 -06:00
|
|
|
}
|
2008-12-07 22:30:24 -07:00
|
|
|
|
2011-03-16 22:26:01 -06:00
|
|
|
event.Skip();
|
2008-12-07 22:30:24 -07:00
|
|
|
}
|