2018-03-16 05:39:53 -06:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-03-16 05:39:53 -06:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-04-24 23:03:26 -06:00
|
|
|
#include <QWidget>
|
2018-03-16 05:39:53 -06:00
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2019-07-15 21:20:26 -06:00
|
|
|
|
2022-04-23 22:25:42 -06:00
|
|
|
class QPoint;
|
2022-04-25 18:13:18 -06:00
|
|
|
class QScrollBar;
|
2022-04-23 22:25:42 -06:00
|
|
|
|
2019-07-15 21:20:26 -06:00
|
|
|
namespace AddressSpace
|
|
|
|
{
|
|
|
|
enum class Type;
|
|
|
|
}
|
2018-03-16 05:39:53 -06:00
|
|
|
|
2022-04-24 23:03:26 -06:00
|
|
|
class MemoryViewTable;
|
|
|
|
|
|
|
|
class MemoryViewWidget final : public QWidget
|
2018-03-16 05:39:53 -06:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-04-06 03:36:09 -06:00
|
|
|
enum class Type : int
|
2018-03-16 05:39:53 -06:00
|
|
|
{
|
2022-06-29 12:27:44 -06:00
|
|
|
Null = 0,
|
2022-04-06 03:36:09 -06:00
|
|
|
Hex8 = 1,
|
|
|
|
Hex16,
|
|
|
|
Hex32,
|
2022-04-17 01:47:05 -06:00
|
|
|
Hex64,
|
2022-06-29 12:27:44 -06:00
|
|
|
HexString,
|
2022-04-06 03:36:09 -06:00
|
|
|
Unsigned8,
|
|
|
|
Unsigned16,
|
|
|
|
Unsigned32,
|
|
|
|
Signed8,
|
|
|
|
Signed16,
|
|
|
|
Signed32,
|
2018-03-16 05:39:53 -06:00
|
|
|
ASCII,
|
2022-04-06 03:36:09 -06:00
|
|
|
Float32,
|
|
|
|
Double
|
2018-03-16 05:39:53 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class BPType
|
|
|
|
{
|
|
|
|
ReadWrite,
|
|
|
|
ReadOnly,
|
|
|
|
WriteOnly
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit MemoryViewWidget(QWidget* parent = nullptr);
|
|
|
|
|
2022-09-30 16:01:56 -06:00
|
|
|
void CreateTable();
|
2018-03-16 05:39:53 -06:00
|
|
|
void Update();
|
2022-03-28 17:08:31 -06:00
|
|
|
void UpdateFont();
|
2022-04-23 22:25:42 -06:00
|
|
|
void ToggleBreakpoint(u32 addr, bool row);
|
2018-03-16 05:39:53 -06:00
|
|
|
|
2022-06-29 12:27:44 -06:00
|
|
|
std::vector<u8> ConvertTextToBytes(Type type, QString input_text);
|
2019-04-10 23:50:52 -06:00
|
|
|
void SetAddressSpace(AddressSpace::Type address_space);
|
|
|
|
AddressSpace::Type GetAddressSpace() const;
|
2022-04-06 23:50:05 -06:00
|
|
|
void SetDisplay(Type type, int bytes_per_row, int alignment, bool dual_view);
|
2018-03-16 05:39:53 -06:00
|
|
|
void SetBPType(BPType type);
|
|
|
|
void SetAddress(u32 address);
|
|
|
|
|
|
|
|
void SetBPLoggingEnabled(bool enabled);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void BreakpointsChanged();
|
2018-12-28 11:12:30 -07:00
|
|
|
void ShowCode(u32 address);
|
2021-02-17 10:12:27 -07:00
|
|
|
void RequestWatch(QString name, u32 address);
|
2018-03-16 05:39:53 -06:00
|
|
|
|
|
|
|
private:
|
2022-04-23 22:25:42 -06:00
|
|
|
void OnContextMenu(const QPoint& pos);
|
|
|
|
void OnCopyAddress(u32 addr);
|
|
|
|
void OnCopyHex(u32 addr);
|
2022-04-06 23:50:05 -06:00
|
|
|
void UpdateBreakpointTags();
|
2022-09-30 16:01:56 -06:00
|
|
|
void UpdateColumns();
|
2022-04-25 18:13:18 -06:00
|
|
|
void ScrollbarActionTriggered(int action);
|
|
|
|
void ScrollbarSliderReleased();
|
2022-09-30 16:01:56 -06:00
|
|
|
QString ValueToString(u32 address, Type type);
|
2018-03-16 05:39:53 -06:00
|
|
|
|
2022-04-24 23:03:26 -06:00
|
|
|
MemoryViewTable* m_table;
|
2022-04-25 18:13:18 -06:00
|
|
|
QScrollBar* m_scrollbar;
|
2019-07-15 21:20:26 -06:00
|
|
|
AddressSpace::Type m_address_space{};
|
2022-04-17 01:47:05 -06:00
|
|
|
Type m_type = Type::Hex32;
|
2018-03-16 05:39:53 -06:00
|
|
|
BPType m_bp_type = BPType::ReadWrite;
|
|
|
|
bool m_do_log = true;
|
2022-09-30 16:01:56 -06:00
|
|
|
u32 m_address = 0x80000000;
|
2022-03-28 17:08:31 -06:00
|
|
|
int m_font_width = 0;
|
|
|
|
int m_font_vspace = 0;
|
2022-04-06 03:36:09 -06:00
|
|
|
int m_bytes_per_row = 16;
|
|
|
|
int m_alignment = 16;
|
2022-09-30 16:01:56 -06:00
|
|
|
int m_data_columns;
|
2022-04-06 23:50:05 -06:00
|
|
|
bool m_dual_view = false;
|
2022-04-24 23:03:26 -06:00
|
|
|
|
|
|
|
friend class MemoryViewTable;
|
2018-03-16 05:39:53 -06:00
|
|
|
};
|