partially reverted a95d40c6 (debugger widgets needed for saveOldState)

This commit is contained in:
thrust26 2021-01-24 10:01:32 +01:00
parent 3fbaff31c9
commit bd3f34ba91
2 changed files with 16 additions and 27 deletions

View File

@ -84,6 +84,7 @@ Debugger::Debugger(OSystem& osystem, Console& console)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Debugger::~Debugger() Debugger::~Debugger()
{ {
delete myDialog; myDialog = nullptr;
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@ -99,6 +100,11 @@ void Debugger::initialize()
myOSystem.settings().setValue("dbg.res", mySize); myOSystem.settings().setValue("dbg.res", mySize);
delete myDialog; myDialog = nullptr;
myDialog = new DebuggerDialog(myOSystem, *this, 0, 0, mySize.w, mySize.h);
myCartDebug->setDebugWidget(&(myDialog->cartDebug()));
saveOldState(); saveOldState();
} }
@ -122,9 +128,9 @@ bool Debugger::start(const string& message, int address, bool read,
ostringstream buf; ostringstream buf;
buf << message; buf << message;
if(address > -1) if(address > -1)
buf << cartDebug().getLabel(CartDebug::BankAddress(address), read, 4); buf << cartDebug().getLabel(address, read, 4);
dialog().message().setText(buf.str()); myDialog->message().setText(buf.str());
dialog().message().setToolTip(toolTip); myDialog->message().setToolTip(toolTip);
return true; return true;
} }
return false; return false;
@ -137,7 +143,7 @@ bool Debugger::startWithFatalError(const string& message)
{ {
// This must be done *after* we enter debug mode, // This must be done *after* we enter debug mode,
// so the dialog is properly shown // so the dialog is properly shown
dialog().showFatalMessage(message); myDialog->showFatalMessage(message);
return true; return true;
} }
return false; return false;
@ -574,8 +580,8 @@ void Debugger::nextFrame(int frames)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void Debugger::updateRewindbuttons(const RewindManager& r) void Debugger::updateRewindbuttons(const RewindManager& r)
{ {
dialog().rewindButton().setEnabled(!r.atFirst()); myDialog->rewindButton().setEnabled(!r.atFirst());
dialog().unwindButton().setEnabled(!r.atLast()); myDialog->unwindButton().setEnabled(!r.atLast());
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@ -679,13 +685,13 @@ void Debugger::setStartState()
updateRewindbuttons(r); updateRewindbuttons(r);
// Set the 're-disassemble' flag, but don't do it until the next scheduled time // Set the 're-disassemble' flag, but don't do it until the next scheduled time
dialog().rom().invalidate(false); myDialog->rom().invalidate(false);
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void Debugger::setQuitState() void Debugger::setQuitState()
{ {
dialog().saveConfig(); myDialog->saveConfig();
saveOldState(); saveOldState();
// Bus must be unlocked for normal operation when leaving debugger mode // Bus must be unlocked for normal operation when leaving debugger mode
@ -840,18 +846,6 @@ bool Debugger::canExit() const
return baseDialogIsActive(); return baseDialogIsActive();
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DebuggerDialog& Debugger::dialog()
{
if(myDialog == nullptr)
{
myDialog = make_unique<DebuggerDialog>(myOSystem, *this, 0, 0, mySize.w, mySize.h);
myCartDebug->setDebugWidget(&(myDialog->cartDebug()));
}
return *myDialog;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
std::array<Debugger::BuiltinFunction, 18> Debugger::ourBuiltinFunctions = { { std::array<Debugger::BuiltinFunction, 18> Debugger::ourBuiltinFunctions = { {
// left joystick: // left joystick:

View File

@ -279,7 +279,7 @@ class Debugger : public DialogContainer
/** /**
Return (and possibly create) the bottom-most dialog of this container. Return (and possibly create) the bottom-most dialog of this container.
*/ */
Dialog* baseDialog() override { return &dialog(); } Dialog* baseDialog() override { return myDialog; }
private: private:
/** /**
@ -332,16 +332,11 @@ class Debugger : public DialogContainer
void loadState(int state); void loadState(int state);
void loadAllStates(); void loadAllStates();
/**
Return (and possibly create) the debugger dialog.
*/
DebuggerDialog& dialog();
private: private:
Console& myConsole; Console& myConsole;
System& mySystem; System& mySystem;
unique_ptr<DebuggerDialog> myDialog; DebuggerDialog* myDialog{nullptr};
unique_ptr<DebuggerParser> myParser; unique_ptr<DebuggerParser> myParser;
unique_ptr<CartDebug> myCartDebug; unique_ptr<CartDebug> myCartDebug;
unique_ptr<CpuDebug> myCpuDebug; unique_ptr<CpuDebug> myCpuDebug;