2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-10-19 10:45:40 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <cstddef>
|
2014-10-24 11:24:17 +00:00
|
|
|
|
|
|
|
#include <wx/bitmap.h>
|
2014-10-19 10:45:40 +00:00
|
|
|
#include <wx/panel.h>
|
2014-10-24 11:24:17 +00:00
|
|
|
#include <wx/aui/auibar.h>
|
2014-10-19 10:45:40 +00:00
|
|
|
|
2014-10-24 11:24:17 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/IniFile.h"
|
2014-10-24 13:13:53 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
2014-10-24 11:24:17 +00:00
|
|
|
#include "Core/PowerPC/PowerPC.h"
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
2014-10-19 10:45:40 +00:00
|
|
|
#include "DolphinWX/Debugger/WatchView.h"
|
|
|
|
#include "DolphinWX/Debugger/WatchWindow.h"
|
|
|
|
|
2014-10-24 11:24:17 +00:00
|
|
|
extern "C" {
|
|
|
|
#include "DolphinWX/resources/toolbar_debugger_delete.c"
|
|
|
|
}
|
|
|
|
|
|
|
|
class CWatchToolbar : public wxAuiToolBar
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CWatchToolbar(CWatchWindow* parent, const wxWindowID id)
|
|
|
|
: wxAuiToolBar(parent, id, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_TEXT)
|
|
|
|
{
|
|
|
|
SetToolBitmapSize(wxSize(16, 16));
|
|
|
|
|
|
|
|
m_Bitmaps[Toolbar_File] = wxBitmap(wxGetBitmapFromMemory(toolbar_delete_png).ConvertToImage().Rescale(16, 16));
|
|
|
|
|
|
|
|
AddTool(ID_LOAD, _("Load"), m_Bitmaps[Toolbar_File]);
|
2014-10-24 13:13:53 +00:00
|
|
|
Bind(wxEVT_TOOL, &CWatchWindow::Event_LoadAll, parent, ID_LOAD);
|
2014-10-24 11:24:17 +00:00
|
|
|
|
|
|
|
AddTool(ID_SAVE, _("Save"), m_Bitmaps[Toolbar_File]);
|
|
|
|
Bind(wxEVT_TOOL, &CWatchWindow::Event_SaveAll, parent, ID_SAVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Toolbar_File,
|
|
|
|
Num_Bitmaps
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ID_LOAD,
|
|
|
|
ID_SAVE
|
|
|
|
};
|
|
|
|
|
|
|
|
wxBitmap m_Bitmaps[Num_Bitmaps];
|
|
|
|
};
|
2014-10-19 10:45:40 +00:00
|
|
|
|
|
|
|
CWatchWindow::CWatchWindow(wxWindow* parent, wxWindowID id,
|
|
|
|
const wxPoint& position, const wxSize& size,
|
|
|
|
long style, const wxString& name)
|
|
|
|
: wxPanel(parent, id, position, size, style, name)
|
|
|
|
, m_GPRGridView(nullptr)
|
|
|
|
{
|
2014-10-24 11:24:17 +00:00
|
|
|
m_mgr.SetManagedWindow(this);
|
|
|
|
m_mgr.SetFlags(wxAUI_MGR_DEFAULT | wxAUI_MGR_LIVE_RESIZE);
|
2014-10-19 10:45:40 +00:00
|
|
|
|
2015-02-24 13:31:50 +00:00
|
|
|
m_GPRGridView = new CWatchView(this);
|
2014-10-19 10:45:40 +00:00
|
|
|
|
2014-10-24 11:24:17 +00:00
|
|
|
m_mgr.AddPane(new CWatchToolbar(this, wxID_ANY), wxAuiPaneInfo().ToolbarPane().Top().
|
|
|
|
LeftDockable(true).RightDockable(true).BottomDockable(false).Floatable(false));
|
|
|
|
m_mgr.AddPane(m_GPRGridView, wxAuiPaneInfo().CenterPane());
|
|
|
|
m_mgr.Update();
|
2014-10-19 10:45:40 +00:00
|
|
|
}
|
|
|
|
|
2014-10-24 13:13:53 +00:00
|
|
|
CWatchWindow::~CWatchWindow()
|
|
|
|
{
|
|
|
|
m_mgr.UnInit();
|
|
|
|
}
|
|
|
|
|
2014-10-19 10:45:40 +00:00
|
|
|
void CWatchWindow::NotifyUpdate()
|
|
|
|
{
|
|
|
|
if (m_GPRGridView != nullptr)
|
|
|
|
m_GPRGridView->Update();
|
|
|
|
}
|
2014-10-24 11:24:17 +00:00
|
|
|
|
|
|
|
void CWatchWindow::Event_SaveAll(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
SaveAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWatchWindow::SaveAll()
|
|
|
|
{
|
|
|
|
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("Watches", PowerPC::watches.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 CWatchWindow::Event_LoadAll(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
LoadAll();
|
2014-10-24 11:24:17 +00:00
|
|
|
}
|
|
|
|
|
2014-10-24 13:13:53 +00:00
|
|
|
void CWatchWindow::LoadAll()
|
2014-10-24 11:24:17 +00:00
|
|
|
{
|
|
|
|
IniFile ini;
|
|
|
|
Watches::TWatchesStr watches;
|
|
|
|
|
2015-06-12 11:56:53 +00:00
|
|
|
if (!ini.Load(File::GetUserPath(D_GAMESETTINGS_IDX) + SConfig::GetInstance().GetUniqueID() + ".ini", false))
|
2014-10-24 11:24:17 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ini.GetLines("Watches", &watches, false))
|
|
|
|
{
|
2014-10-24 13:13:53 +00:00
|
|
|
PowerPC::watches.Clear();
|
2014-10-24 11:24:17 +00:00
|
|
|
PowerPC::watches.AddFromStrings(watches);
|
|
|
|
}
|
|
|
|
|
|
|
|
NotifyUpdate();
|
|
|
|
}
|