#pragma once #include "stdafx.h" #include "Emu/Memory/Memory.h" #include "Emu/System.h" #include "Emu/IdManager.h" #include "Emu/CPU/CPUThread.h" #include "Emu/CPU/CPUDisAsm.h" #include "Emu/Cell/PPUThread.h" #include "Emu/Cell/SPUThread.h" #include "Emu/Cell/RawSPUThread.h" #include "Emu/PSP2/ARMv7Thread.h" #include "Emu/Cell/PPUDisAsm.h" #include "Emu/Cell/SPUDisAsm.h" #include "Emu/PSP2/ARMv7DisAsm.h" #include "Emu/Cell/PPUInterpreter.h" #include "instruction_editor_dialog.h" #include "register_editor_dialog.h" #include "gui_settings.h" #include #include #include #include #include #include #include #include #include class debugger_list; class debugger_frame : public QDockWidget { Q_OBJECT debugger_list* m_list; QSplitter* m_right_splitter; QFont m_mono; QTextEdit* m_regs; QPushButton* m_go_to_addr; QPushButton* m_go_to_pc; QPushButton* m_btn_capture; QPushButton* m_btn_step; QPushButton* m_btn_run; QComboBox* m_choice_units; QString m_current_choice; bool m_no_thread_selected = true; u64 m_threads_created = 0; u64 m_threads_deleted = 0; u32 m_last_pc = -1; u32 m_last_stat = 0; QTimer* m_update; QSplitter* m_splitter; const QString NoThread = tr("No Thread"); const QString Run = tr("Run"); const QString Pause = tr("Pause"); std::shared_ptr xgui_settings; QAction* m_breakpoints_list_delete; public: std::unique_ptr m_disasm; QListWidget* m_breakpoints_list; std::weak_ptr cpu; public: explicit debugger_frame(std::shared_ptr settings, QWidget *parent = 0); void SaveSettings(); void ChangeColors(); void UpdateUI(); void UpdateUnitList(); u32 GetPc() const; u32 CentrePc(u32 pc) const; void DoUpdate(); void WriteRegs(); void EnableButtons(bool enable); void ClearBreakpoints(); void OnUpdate(); protected: /** Override inherited method from Qt to allow signalling when close happened.*/ void closeEvent(QCloseEvent* event); void showEvent(QShowEvent* event); void hideEvent(QHideEvent* event); Q_SIGNALS: void DebugFrameClosed(); public Q_SLOTS: void DoStep(); private Q_SLOTS: void OnBreakpointList_doubleClicked(); void OnBreakpointList_rightClicked(const QPoint &pos); void OnBreakpointList_delete(); void OnSelectUnit(); void Show_Val(); void Show_PC(); void EnableUpdateTimer(bool state); }; class debugger_list : public QListWidget { Q_OBJECT debugger_frame* m_debugFrame; public: u32 m_pc; u32 m_item_count; bool m_no_thread_selected; QColor m_color_bp; QColor m_color_pc; QColor m_text_color_bp; QColor m_text_color_pc; public: debugger_list(debugger_frame* parent); void ShowAddr(u32 addr); void RemoveBreakPoint(u32 pc, bool eraseFromMap = true); private: bool IsBreakPoint(u32 pc); void AddBreakPoint(u32 pc); protected: void keyPressEvent(QKeyEvent* event); void mouseDoubleClickEvent(QMouseEvent* event); void wheelEvent(QWheelEvent* event); void resizeEvent(QResizeEvent* event); }; Q_DECLARE_METATYPE(u32);