summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp
blob: bef78872c162faef258d95bc50a1064f318086ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#include <string>
#include <wx/checkbox.h>
#include <wx/dialog.h>
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>

#include "Common/BreakPoints.h"
#include "Common/CommonTypes.h"
#include "Common/StringUtil.h"
#include "Core/PowerPC/PowerPC.h"
#include "DolphinWX/Debugger/BreakpointWindow.h"
#include "DolphinWX/Debugger/MemoryCheckDlg.h"
#include "DolphinWX/WxUtils.h"

#define TEXT_BOX(text) new wxStaticText(this, wxID_ANY, _(text))

MemoryCheckDlg::MemoryCheckDlg(CBreakPointWindow* parent)
    : wxDialog(parent, wxID_ANY, _("Memory Check")), m_parent(parent)
{
  Bind(wxEVT_BUTTON, &MemoryCheckDlg::OnOK, this, wxID_OK);

  m_pEditStartAddress = new wxTextCtrl(this, wxID_ANY, "");
  m_pEditEndAddress = new wxTextCtrl(this, wxID_ANY, "");
  m_pWriteFlag = new wxCheckBox(this, wxID_ANY, _("Write"));
  m_pWriteFlag->SetValue(true);
  m_pReadFlag = new wxCheckBox(this, wxID_ANY, _("Read"));

  m_log_flag = new wxCheckBox(this, wxID_ANY, _("Log"));
  m_log_flag->SetValue(true);
  m_break_flag = new wxCheckBox(this, wxID_ANY, _("Break"));

  wxStaticBoxSizer* sAddressRangeBox = new wxStaticBoxSizer(wxHORIZONTAL, this, _("Address Range"));
  sAddressRangeBox->Add(TEXT_BOX("Start"), 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, 5);
  sAddressRangeBox->Add(m_pEditStartAddress, 1, wxALIGN_CENTER_VERTICAL | wxRIGHT, 10);
  sAddressRangeBox->Add(TEXT_BOX("End"), 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, 5);
  sAddressRangeBox->Add(m_pEditEndAddress, 1, wxALIGN_CENTER_VERTICAL);

  wxStaticBoxSizer* sActionBox = new wxStaticBoxSizer(wxVERTICAL, this, _("Action"));
  sActionBox->Add(m_pWriteFlag);
  sActionBox->Add(m_pReadFlag);

  wxBoxSizer* sFlags = new wxStaticBoxSizer(wxVERTICAL, this, _("Flags"));
  sFlags->Add(m_log_flag);
  sFlags->Add(m_break_flag);

  wxBoxSizer* sControls = new wxBoxSizer(wxHORIZONTAL);
  sControls->Add(sAddressRangeBox, 0, wxEXPAND);
  sControls->Add(sActionBox, 0, wxEXPAND);
  sControls->Add(sFlags, 0, wxEXPAND);

  wxBoxSizer* sMainSizer = new wxBoxSizer(wxVERTICAL);
  sMainSizer->Add(sControls, 0, wxEXPAND | wxALL, 5);
  sMainSizer->Add(CreateButtonSizer(wxOK | wxCANCEL), 0, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5);

  SetSizerAndFit(sMainSizer);
  SetFocus();
}

void MemoryCheckDlg::OnOK(wxCommandEvent& event)
{
  wxString StartAddressString = m_pEditStartAddress->GetLineText(0);
  wxString EndAddressString = m_pEditEndAddress->GetLineText(0);
  bool OnRead = m_pReadFlag->GetValue();
  bool OnWrite = m_pWriteFlag->GetValue();
  bool Log = m_log_flag->GetValue();
  bool Break = m_break_flag->GetValue();

  u32 StartAddress, EndAddress;
  bool EndAddressOK =
      EndAddressString.Len() && AsciiToHex(WxStrToStr(EndAddressString), EndAddress);

  if (AsciiToHex(WxStrToStr(StartAddressString), StartAddress) && (OnRead || OnWrite) &&
      (Log || Break))
  {
    TMemCheck MemCheck;

    if (!EndAddressOK)
      EndAddress = StartAddress;

    MemCheck.StartAddress = StartAddress;
    MemCheck.EndAddress = EndAddress;
    MemCheck.bRange = StartAddress != EndAddress;
    MemCheck.OnRead = OnRead;
    MemCheck.OnWrite = OnWrite;
    MemCheck.Log = Log;
    MemCheck.Break = Break;

    PowerPC::memchecks.Add(MemCheck);
    m_parent->NotifyUpdate();
    Close();
  }

  event.Skip();
}