2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "Debugger.h"
|
|
|
|
#include "BreakpointView.h"
|
|
|
|
#include "CodeWindow.h"
|
|
|
|
#include "HW/Memmap.h"
|
2009-08-31 21:07:20 +00:00
|
|
|
#include "BreakpointDlg.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
#include "MemoryCheckDlg.h"
|
2008-12-20 14:00:33 +00:00
|
|
|
#include "Host.h"
|
2009-06-28 11:47:39 +00:00
|
|
|
#include "PowerPC/PowerPC.h"
|
2010-02-02 21:56:29 +00:00
|
|
|
#include "FileUtil.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-07 20:51:02 +00:00
|
|
|
BEGIN_EVENT_TABLE(CBreakPointWindow, wxPanel)
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_CLOSE(CBreakPointWindow::OnClose)
|
2009-09-27 21:28:09 +00:00
|
|
|
EVT_LIST_ITEM_ACTIVATED(ID_BPS, CBreakPointWindow::OnActivated)
|
|
|
|
EVT_LIST_ITEM_SELECTED(ID_TOOLBAR, CBreakPointWindow::OnSelectItem)
|
2008-12-08 05:30:24 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
CBreakPointWindow::CBreakPointWindow(CCodeWindow* _pCodeWindow, wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& position, const wxSize& size, long style)
|
2009-09-07 20:51:02 +00:00
|
|
|
: wxPanel(parent, id, position, size, style, title)
|
2008-12-08 05:30:24 +00:00
|
|
|
, m_BreakPointListView(NULL)
|
|
|
|
, m_pCodeWindow(_pCodeWindow)
|
|
|
|
{
|
|
|
|
CreateGUIControls();
|
|
|
|
}
|
|
|
|
|
2009-08-27 11:08:52 +00:00
|
|
|
void CBreakPointWindow::CreateGUIControls()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
SetSize(8, 8, 400, 370);
|
|
|
|
Center();
|
|
|
|
|
2009-09-27 21:28:09 +00:00
|
|
|
m_BreakPointBar = new CBreakPointBar(this, ID_TOOLBAR, wxDefaultPosition, wxSize(0, 55),
|
|
|
|
wxLC_ICON | wxSUNKEN_BORDER | wxLC_SINGLE_SEL);
|
|
|
|
m_BreakPointListView = new CBreakPointView(this, ID_BPS, wxDefaultPosition, wxDefaultSize,
|
2008-12-08 05:30:24 +00:00
|
|
|
wxLC_REPORT | wxSUNKEN_BORDER | wxLC_ALIGN_LEFT | wxLC_SINGLE_SEL | wxLC_SORT_ASCENDING);
|
|
|
|
|
2009-09-27 21:28:09 +00:00
|
|
|
wxBoxSizer* sizerH = new wxBoxSizer(wxVERTICAL);
|
|
|
|
sizerH->Add(m_BreakPointBar, 0, wxALL | wxEXPAND);
|
|
|
|
sizerH->Add((wxListCtrl*)m_BreakPointListView, 1, wxEXPAND);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-27 21:28:09 +00:00
|
|
|
NotifyUpdate();
|
|
|
|
SetSizer(sizerH);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-09-27 21:28:09 +00:00
|
|
|
void CBreakPointWindow::OnSelectItem(wxListEvent& event)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-09-27 21:28:09 +00:00
|
|
|
switch(event.GetItem().GetId())
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-09-27 21:28:09 +00:00
|
|
|
case IDM_DELETE:
|
|
|
|
OnDelete();
|
|
|
|
m_BreakPointBar->SetItemState(event.GetItem().GetId(), 0, wxLIST_STATE_FOCUSED);
|
|
|
|
break;
|
|
|
|
case IDM_CLEAR:
|
|
|
|
OnClear();
|
|
|
|
m_BreakPointBar->SetItemState(event.GetItem().GetId(), 0, wxLIST_STATE_FOCUSED);
|
|
|
|
break;
|
|
|
|
case IDM_ADD_BREAKPOINT:
|
|
|
|
OnAddBreakPoint();
|
|
|
|
break;
|
|
|
|
case IDM_ADD_BREAKPOINTMANY:
|
|
|
|
OnAddBreakPointMany();
|
|
|
|
break;
|
|
|
|
case IDM_ADD_MEMORYCHECK:
|
|
|
|
OnAddMemoryCheck();
|
|
|
|
break;
|
|
|
|
case IDM_ADD_MEMORYCHECKMANY:
|
|
|
|
OnAddMemoryCheckMany();
|
|
|
|
break;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-27 11:08:52 +00:00
|
|
|
void CBreakPointWindow::OnClose(wxCloseEvent& /*event*/)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
Hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBreakPointWindow::NotifyUpdate()
|
|
|
|
{
|
2009-08-27 11:08:52 +00:00
|
|
|
if (m_BreakPointListView != NULL) m_BreakPointListView->Update();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-09-27 21:28:09 +00:00
|
|
|
void CBreakPointWindow::OnDelete()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
if (m_BreakPointListView)
|
|
|
|
{
|
|
|
|
m_BreakPointListView->DeleteCurrentSelection();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-27 11:08:52 +00:00
|
|
|
void CBreakPointWindow::OnActivated(wxListEvent& event)
|
|
|
|
{
|
|
|
|
long Index = event.GetIndex();
|
|
|
|
if (Index >= 0)
|
|
|
|
{
|
|
|
|
u32 Address = (u32)m_BreakPointListView->GetItemData(Index);
|
|
|
|
if (m_pCodeWindow != NULL)
|
|
|
|
{
|
|
|
|
m_pCodeWindow->JumpToAddress(Address);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-02 21:00:45 +00:00
|
|
|
|
2009-08-27 11:08:52 +00:00
|
|
|
// Breakpoint actions
|
2009-09-08 16:07:13 +00:00
|
|
|
// ---------------------
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// Clear all breakpoints
|
2009-09-27 21:28:09 +00:00
|
|
|
void CBreakPointWindow::OnClear()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-06-28 11:47:39 +00:00
|
|
|
PowerPC::breakpoints.Clear();
|
2009-09-27 21:28:09 +00:00
|
|
|
PowerPC::memchecks.Clear();
|
2009-08-27 11:08:52 +00:00
|
|
|
NotifyUpdate();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-08-27 11:08:52 +00:00
|
|
|
// Add one breakpoint
|
2009-09-27 21:28:09 +00:00
|
|
|
void CBreakPointWindow::OnAddBreakPoint()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-08-27 11:08:52 +00:00
|
|
|
BreakPointDlg bpDlg(this, this);
|
2008-12-08 05:30:24 +00:00
|
|
|
bpDlg.ShowModal();
|
|
|
|
}
|
|
|
|
// Load breakpoints from file
|
2009-09-27 21:28:09 +00:00
|
|
|
void CBreakPointWindow::OnAddBreakPointMany()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
// load ini
|
|
|
|
IniFile ini;
|
2010-02-02 21:56:29 +00:00
|
|
|
std::string filename = std::string(File::GetUserPath(D_GAMECONFIG_IDX)) + "BreakPoints.ini";
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (ini.Load(filename.c_str())) // check if there is any file there
|
|
|
|
{
|
|
|
|
// get lines from a certain section
|
2010-06-03 18:05:08 +00:00
|
|
|
std::vector<std::string> lines;
|
|
|
|
if (!ini.GetLines("BreakPoints", lines))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
wxMessageBox(_T("You have no [BreakPoints] line in your file"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::vector<std::string>::const_iterator iter = lines.begin(); iter != lines.end(); ++iter)
|
|
|
|
{
|
|
|
|
std::string line = StripSpaces(*iter);
|
|
|
|
u32 Address = 0;
|
|
|
|
if (AsciiToHex(line.c_str(), Address))
|
|
|
|
{
|
2009-06-28 11:47:39 +00:00
|
|
|
PowerPC::breakpoints.Add(Address);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
2009-08-27 11:08:52 +00:00
|
|
|
// Only update after we are done with the loop
|
|
|
|
NotifyUpdate();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-02 21:56:29 +00:00
|
|
|
wxMessageBox(_T("Couldn't find GameConfig/BreakPoints.ini file"));
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-27 11:08:52 +00:00
|
|
|
// Memory check actions
|
2009-09-08 16:07:13 +00:00
|
|
|
// ---------------------
|
2008-12-08 05:30:24 +00:00
|
|
|
void
|
2009-09-27 21:28:09 +00:00
|
|
|
CBreakPointWindow::OnAddMemoryCheck()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
MemoryCheckDlg memDlg(this);
|
|
|
|
memDlg.ShowModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load memory checks from file
|
2009-09-27 21:28:09 +00:00
|
|
|
void CBreakPointWindow::OnAddMemoryCheckMany()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
// load ini
|
|
|
|
IniFile ini;
|
2010-02-02 21:56:29 +00:00
|
|
|
std::string filename = std::string(File::GetUserPath(D_GAMECONFIG_IDX)) + "MemoryChecks.ini";
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (ini.Load(filename.c_str()))
|
|
|
|
{
|
|
|
|
// get lines from a certain section
|
2010-06-03 18:05:08 +00:00
|
|
|
std::vector<std::string> lines;
|
|
|
|
if (!ini.GetLines("MemoryChecks", lines))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
wxMessageBox(_T("You have no [MemoryChecks] line in your file"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::vector<std::string>::const_iterator iter = lines.begin(); iter != lines.end(); ++iter)
|
|
|
|
{
|
|
|
|
std::string line = StripSpaces(*iter);
|
|
|
|
std::vector<std::string> pieces;
|
|
|
|
SplitString(line, " ", pieces); // split string
|
|
|
|
|
|
|
|
TMemCheck MemCheck;
|
|
|
|
u32 sAddress = 0;
|
|
|
|
u32 eAddress = 0;
|
|
|
|
bool doCommon = false;
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------
|
|
|
|
// Decide if we have a range or just one address, and if we should break or not
|
|
|
|
// --------------
|
|
|
|
if (
|
|
|
|
pieces.size() == 1
|
|
|
|
&& AsciiToHex(pieces[0].c_str(), sAddress)
|
|
|
|
&& pieces[0].size() == 8
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// address range
|
|
|
|
MemCheck.StartAddress = sAddress;
|
|
|
|
MemCheck.EndAddress = sAddress;
|
|
|
|
doCommon = true;
|
|
|
|
MemCheck.Break = false;
|
|
|
|
}
|
|
|
|
else if(
|
|
|
|
pieces.size() == 2
|
|
|
|
&& AsciiToHex(pieces[0].c_str(), sAddress) && AsciiToHex(pieces[1].c_str(), eAddress)
|
|
|
|
&& pieces[0].size() == 8 && pieces[1].size() == 8
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// address range
|
|
|
|
MemCheck.StartAddress = sAddress;
|
|
|
|
MemCheck.EndAddress = eAddress;
|
|
|
|
doCommon = true;
|
|
|
|
MemCheck.Break = false;
|
|
|
|
}
|
|
|
|
else if(
|
|
|
|
pieces.size() == 3
|
|
|
|
&& AsciiToHex(pieces[0].c_str(), sAddress) && AsciiToHex(pieces[1].c_str(), eAddress)
|
|
|
|
&& pieces[0].size() == 8 && pieces[1].size() == 8 && pieces[2].size() == 1
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// address range
|
|
|
|
MemCheck.StartAddress = sAddress;
|
|
|
|
MemCheck.EndAddress = eAddress;
|
|
|
|
doCommon = true;
|
|
|
|
MemCheck.Break = true;
|
|
|
|
}
|
|
|
|
|
2008-12-20 14:00:33 +00:00
|
|
|
if (doCommon)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
// settings for the memory check
|
|
|
|
MemCheck.OnRead = true;
|
|
|
|
MemCheck.OnWrite = true;
|
|
|
|
MemCheck.Log = true;
|
|
|
|
//MemCheck.Break = false; // this is also what sets Active "on" in the breakpoint window
|
|
|
|
// so don't think it's off because we are only writing this to the log
|
2009-06-28 11:47:39 +00:00
|
|
|
PowerPC::memchecks.Add(MemCheck);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
2009-08-27 11:08:52 +00:00
|
|
|
// Update after we are done with the loop
|
|
|
|
NotifyUpdate();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-02 21:56:29 +00:00
|
|
|
wxMessageBox(_T("You have no ") + wxString::FromAscii(File::GetUserPath(D_GAMECONFIG_IDX)) + _T("MemoryChecks.ini file"));
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-02 21:00:45 +00:00
|
|
|
|