2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:43:35 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/image.h>
|
|
|
|
#include <wx/listbase.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/aui/auibar.h>
|
|
|
|
#include <wx/aui/framemanager.h>
|
|
|
|
|
|
|
|
#include "Common/BreakPoints.h"
|
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/IniFile.h"
|
2014-10-24 13:13:53 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/HW/Memmap.h"
|
|
|
|
#include "Core/PowerPC/PowerPC.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "DolphinWX/WxUtils.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/Debugger/BreakpointDlg.h"
|
|
|
|
#include "DolphinWX/Debugger/BreakpointView.h"
|
|
|
|
#include "DolphinWX/Debugger/BreakpointWindow.h"
|
|
|
|
#include "DolphinWX/Debugger/CodeWindow.h"
|
|
|
|
#include "DolphinWX/Debugger/MemoryCheckDlg.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
class CBreakPointBar : public wxAuiToolBar
|
2011-02-25 23:15:53 +00:00
|
|
|
{
|
2011-02-27 23:03:08 +00:00
|
|
|
public:
|
2013-01-13 09:12:29 +00:00
|
|
|
CBreakPointBar(CBreakPointWindow* parent, const wxWindowID id)
|
2011-02-27 23:03:08 +00:00
|
|
|
: wxAuiToolBar(parent, id, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_TEXT)
|
|
|
|
{
|
|
|
|
SetToolBitmapSize(wxSize(24, 24));
|
|
|
|
|
2015-12-19 10:34:01 +00:00
|
|
|
m_Bitmaps[Toolbar_Delete] = WxUtils::LoadResourceBitmap("toolbar_debugger_delete");
|
|
|
|
m_Bitmaps[Toolbar_Add_BP] = WxUtils::LoadResourceBitmap("toolbar_add_breakpoint");
|
|
|
|
m_Bitmaps[Toolbar_Add_MC] = WxUtils::LoadResourceBitmap("toolbar_add_memorycheck");
|
2011-02-27 23:03:08 +00:00
|
|
|
|
2014-05-17 17:17:28 +00:00
|
|
|
AddTool(ID_DELETE, _("Delete"), m_Bitmaps[Toolbar_Delete]);
|
2014-05-17 16:49:00 +00:00
|
|
|
Bind(wxEVT_TOOL, &CBreakPointWindow::OnDelete, parent, ID_DELETE);
|
2011-02-27 23:03:08 +00:00
|
|
|
|
2014-05-17 17:17:28 +00:00
|
|
|
AddTool(ID_CLEAR, _("Clear"), m_Bitmaps[Toolbar_Delete]);
|
2014-05-17 16:49:00 +00:00
|
|
|
Bind(wxEVT_TOOL, &CBreakPointWindow::OnClear, parent, ID_CLEAR);
|
2011-02-27 23:03:08 +00:00
|
|
|
|
2014-05-17 17:17:28 +00:00
|
|
|
AddTool(ID_ADDBP, "+BP", m_Bitmaps[Toolbar_Add_BP]);
|
2014-05-17 16:49:00 +00:00
|
|
|
Bind(wxEVT_TOOL, &CBreakPointWindow::OnAddBreakPoint, parent, ID_ADDBP);
|
2011-02-27 23:03:08 +00:00
|
|
|
|
|
|
|
// Add memory breakpoints if you can use them
|
|
|
|
if (Memory::AreMemoryBreakpointsActivated())
|
|
|
|
{
|
2014-05-17 17:17:28 +00:00
|
|
|
AddTool(ID_ADDMC, "+MC", m_Bitmaps[Toolbar_Add_MC]);
|
2014-05-17 16:49:00 +00:00
|
|
|
Bind(wxEVT_TOOL, &CBreakPointWindow::OnAddMemoryCheck, parent, ID_ADDMC);
|
2011-02-27 23:03:08 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 17:17:28 +00:00
|
|
|
AddTool(ID_LOAD, _("Load"), m_Bitmaps[Toolbar_Delete]);
|
2014-10-24 13:13:53 +00:00
|
|
|
Bind(wxEVT_TOOL, &CBreakPointWindow::Event_LoadAll, parent, ID_LOAD);
|
2011-02-27 23:03:08 +00:00
|
|
|
|
2014-05-17 17:17:28 +00:00
|
|
|
AddTool(ID_SAVE, _("Save"), m_Bitmaps[Toolbar_Delete]);
|
2014-05-17 16:49:00 +00:00
|
|
|
Bind(wxEVT_TOOL, &CBreakPointWindow::Event_SaveAll, parent, ID_SAVE);
|
2011-02-27 23:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2011-02-25 23:15:53 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
Toolbar_Delete,
|
|
|
|
Toolbar_Add_BP,
|
|
|
|
Toolbar_Add_MC,
|
2011-02-27 23:03:08 +00:00
|
|
|
Num_Bitmaps
|
2011-02-25 23:15:53 +00:00
|
|
|
};
|
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
enum
|
2011-02-25 23:15:53 +00:00
|
|
|
{
|
2011-02-27 23:03:08 +00:00
|
|
|
ID_DELETE = 2000,
|
|
|
|
ID_CLEAR,
|
|
|
|
ID_ADDBP,
|
|
|
|
ID_ADDMC,
|
|
|
|
ID_LOAD,
|
|
|
|
ID_SAVE
|
|
|
|
};
|
|
|
|
|
|
|
|
wxBitmap m_Bitmaps[Num_Bitmaps];
|
2011-02-25 23:15:53 +00:00
|
|
|
};
|
|
|
|
|
2010-07-27 02:39:12 +00:00
|
|
|
CBreakPointWindow::CBreakPointWindow(CCodeWindow* _pCodeWindow, wxWindow* parent,
|
2014-02-17 04:51:41 +00:00
|
|
|
wxWindowID id, const wxString& title, const wxPoint& position,
|
|
|
|
const wxSize& size, long style)
|
2011-02-27 23:03:08 +00:00
|
|
|
: wxPanel(parent, id, position, size, style, title)
|
2010-07-26 03:46:14 +00:00
|
|
|
, m_pCodeWindow(_pCodeWindow)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-11-06 03:19:52 +00:00
|
|
|
Bind(wxEVT_CLOSE_WINDOW, &CBreakPointWindow::OnClose, this);
|
|
|
|
|
2011-02-28 20:40:15 +00:00
|
|
|
m_mgr.SetManagedWindow(this);
|
|
|
|
m_mgr.SetFlags(wxAUI_MGR_DEFAULT | wxAUI_MGR_LIVE_RESIZE);
|
|
|
|
|
|
|
|
m_BreakPointListView = new CBreakPointView(this, wxID_ANY);
|
2014-11-06 03:19:52 +00:00
|
|
|
m_BreakPointListView->Bind(wxEVT_LIST_ITEM_SELECTED, &CBreakPointWindow::OnSelectBP, this);
|
2011-02-28 20:40:15 +00:00
|
|
|
|
|
|
|
m_mgr.AddPane(new CBreakPointBar(this, wxID_ANY), wxAuiPaneInfo().ToolbarPane().Top().
|
2014-10-24 11:24:17 +00:00
|
|
|
LeftDockable(true).RightDockable(true).BottomDockable(false).Floatable(false));
|
2011-02-28 20:40:15 +00:00
|
|
|
m_mgr.AddPane(m_BreakPointListView, wxAuiPaneInfo().CenterPane());
|
|
|
|
m_mgr.Update();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
CBreakPointWindow::~CBreakPointWindow()
|
|
|
|
{
|
|
|
|
m_mgr.UnInit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBreakPointWindow::OnClose(wxCloseEvent& event)
|
2011-02-25 09:35:56 +00:00
|
|
|
{
|
|
|
|
SaveAll();
|
2011-02-27 23:03:08 +00:00
|
|
|
event.Skip();
|
2011-02-25 09:35:56 +00:00
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void CBreakPointWindow::NotifyUpdate()
|
|
|
|
{
|
2011-02-27 23:03:08 +00:00
|
|
|
m_BreakPointListView->Update();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
void CBreakPointWindow::OnDelete(wxCommandEvent& WXUNUSED(event))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-02-27 23:03:08 +00:00
|
|
|
m_BreakPointListView->DeleteCurrentSelection();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2011-02-25 09:35:56 +00:00
|
|
|
// jump to begin addr
|
|
|
|
void CBreakPointWindow::OnSelectBP(wxListEvent& event)
|
2009-08-27 11:08:52 +00:00
|
|
|
{
|
2010-07-26 03:46:14 +00:00
|
|
|
long Index = event.GetIndex();
|
|
|
|
if (Index >= 0)
|
|
|
|
{
|
|
|
|
u32 Address = (u32)m_BreakPointListView->GetItemData(Index);
|
2011-02-25 09:35:56 +00:00
|
|
|
if (m_pCodeWindow)
|
2010-07-26 03:46:14 +00:00
|
|
|
m_pCodeWindow->JumpToAddress(Address);
|
|
|
|
}
|
2009-08-27 11:08:52 +00:00
|
|
|
}
|
|
|
|
|
2011-02-25 09:35:56 +00:00
|
|
|
// Clear all breakpoints and memchecks
|
2011-02-27 23:03:08 +00:00
|
|
|
void CBreakPointWindow::OnClear(wxCommandEvent& WXUNUSED(event))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-03-06 01:51:27 +00:00
|
|
|
PowerPC::debug_interface.ClearAllBreakpoints();
|
|
|
|
PowerPC::debug_interface.ClearAllMemChecks();
|
|
|
|
|
2009-08-27 11:08:52 +00:00
|
|
|
NotifyUpdate();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2010-07-26 03:46:14 +00:00
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
void CBreakPointWindow::OnAddBreakPoint(wxCommandEvent& WXUNUSED(event))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-02-27 23:03:08 +00:00
|
|
|
BreakPointDlg bpDlg(this);
|
2008-12-08 05:30:24 +00:00
|
|
|
bpDlg.ShowModal();
|
|
|
|
}
|
2010-07-26 03:46:14 +00:00
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
void CBreakPointWindow::OnAddMemoryCheck(wxCommandEvent& WXUNUSED(event))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
MemoryCheckDlg memDlg(this);
|
|
|
|
memDlg.ShowModal();
|
|
|
|
}
|
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
void CBreakPointWindow::Event_SaveAll(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
SaveAll();
|
|
|
|
}
|
|
|
|
|
2011-02-25 09:35:56 +00:00
|
|
|
void CBreakPointWindow::SaveAll()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-02-25 09:35:56 +00:00
|
|
|
// simply dump all to bp/mc files in a way we can read again
|
2008-12-08 05:30:24 +00:00
|
|
|
IniFile ini;
|
2015-06-12 11:56:53 +00:00
|
|
|
ini.Load(File::GetUserPath(D_GAMESETTINGS_IDX) + SConfig::GetInstance().GetUniqueID() + ".ini", false);
|
2014-10-24 13:13:53 +00:00
|
|
|
ini.SetLines("BreakPoints", PowerPC::breakpoints.GetStrings());
|
|
|
|
ini.SetLines("MemoryChecks", PowerPC::memchecks.GetStrings());
|
2015-06-12 11:56:53 +00:00
|
|
|
ini.Save(File::GetUserPath(D_GAMESETTINGS_IDX) + SConfig::GetInstance().GetUniqueID() + ".ini");
|
2014-10-24 13:13:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CBreakPointWindow::Event_LoadAll(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
LoadAll();
|
|
|
|
return;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-09-02 21:00:45 +00:00
|
|
|
|
2014-10-24 13:13:53 +00:00
|
|
|
void CBreakPointWindow::LoadAll()
|
2011-02-25 09:35:56 +00:00
|
|
|
{
|
|
|
|
IniFile ini;
|
|
|
|
BreakPoints::TBreakPointsStr newbps;
|
|
|
|
MemChecks::TMemChecksStr newmcs;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-06-12 11:56:53 +00:00
|
|
|
if (!ini.Load(File::GetUserPath(D_GAMESETTINGS_IDX) + SConfig::GetInstance().GetUniqueID() + ".ini", false))
|
2014-03-15 02:29:53 +00:00
|
|
|
{
|
2011-02-25 09:35:56 +00:00
|
|
|
return;
|
2014-03-15 02:29:53 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2014-03-15 02:29:53 +00:00
|
|
|
if (ini.GetLines("BreakPoints", &newbps, false))
|
|
|
|
{
|
2014-10-24 13:13:53 +00:00
|
|
|
PowerPC::breakpoints.Clear();
|
2011-02-25 09:35:56 +00:00
|
|
|
PowerPC::breakpoints.AddFromStrings(newbps);
|
2014-03-15 02:29:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ini.GetLines("MemoryChecks", &newmcs, false))
|
|
|
|
{
|
2014-10-24 13:13:53 +00:00
|
|
|
PowerPC::memchecks.Clear();
|
2011-02-25 09:35:56 +00:00
|
|
|
PowerPC::memchecks.AddFromStrings(newmcs);
|
2014-03-15 02:29:53 +00:00
|
|
|
}
|
2011-02-25 09:35:56 +00:00
|
|
|
|
|
|
|
NotifyUpdate();
|
|
|
|
}
|