MemoryWidget add dual views for two separate column types. Force first column to be Hex32.

This commit is contained in:
TryTwo 2022-04-06 22:50:05 -07:00
parent 0ec3f3a6ae
commit cc22f1a558
4 changed files with 125 additions and 52 deletions

View File

@ -91,31 +91,32 @@ static int GetTypeSize(MemoryViewWidget::Type type)
static int GetCharacterCount(MemoryViewWidget::Type type)
{
// Max number of characters +1 for spacing between columns.
switch (type)
{
case MemoryViewWidget::Type::ASCII:
return 1;
case MemoryViewWidget::Type::Hex8:
return 2;
case MemoryViewWidget::Type::Unsigned8:
case MemoryViewWidget::Type::Hex8:
return 3;
case MemoryViewWidget::Type::Unsigned8:
return 4;
case MemoryViewWidget::Type::Hex16:
case MemoryViewWidget::Type::Signed8:
return 4;
case MemoryViewWidget::Type::Unsigned16:
return 5;
case MemoryViewWidget::Type::Signed16:
case MemoryViewWidget::Type::Unsigned16:
return 6;
case MemoryViewWidget::Type::Signed16:
return 7;
case MemoryViewWidget::Type::Hex32:
return 8;
case MemoryViewWidget::Type::Float32:
return 9;
case MemoryViewWidget::Type::Float32:
return 11;
case MemoryViewWidget::Type::Double:
case MemoryViewWidget::Type::Unsigned32:
case MemoryViewWidget::Type::Signed32:
return 10;
return 12;
default:
return 8;
return 10;
}
}
@ -128,7 +129,10 @@ void MemoryViewWidget::Update()
const int data_columns = m_bytes_per_row / GetTypeSize(m_type);
setColumnCount(2 + data_columns);
if (m_dual_view)
setColumnCount(2 + 2 * data_columns + (m_bytes_per_row == 8 ? 1 : 0));
else
setColumnCount(2 + data_columns);
if (rowCount() == 0)
setRowCount(1);
@ -179,33 +183,68 @@ void MemoryViewWidget::Update()
continue;
}
}
bool row_breakpoint = true;
int starting_column = 2;
if (m_dual_view)
{
// Match left columns to number of right columns.
Type left_type = Type::Hex32;
if (GetTypeSize(m_type) == 1)
left_type = Type::Hex8;
else if (GetTypeSize(m_type) == 2)
left_type = Type::Hex16;
UpdateColumns(left_type, starting_column);
int column_count = m_bytes_per_row / GetTypeSize(left_type);
// Update column width
for (int i = starting_column; i < starting_column + column_count; i++)
setColumnWidth(i, m_font_width * GetCharacterCount(left_type));
starting_column += column_count;
}
UpdateColumns(m_type, starting_column);
UpdateBreakpointTags();
setColumnWidth(0, rowHeight(0));
for (int i = starting_column; i < columnCount(); i++)
setColumnWidth(i, m_font_width * GetCharacterCount(m_type));
viewport()->update();
update();
}
void MemoryViewWidget::UpdateColumns(Type type, int first_column)
{
const int data_columns = m_bytes_per_row / GetTypeSize(type);
const AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_address_space);
auto text_alignment = Qt::AlignLeft;
if (type == Type::Signed32 || type == Type::Unsigned32 || type == Type::Signed16 ||
type == Type::Unsigned16 || type == Type::Signed8 || type == Type::Unsigned8)
text_alignment = Qt::AlignRight;
for (int i = 0; i < rowCount(); i++)
{
u32 row_address = item(i, 1)->data(Qt::UserRole).toUInt();
if (!accessors->IsValidAddress(row_address))
continue;
auto update_values = [&](auto value_to_string) {
for (int c = 0; c < data_columns; c++)
{
auto* cell_item = new QTableWidgetItem;
cell_item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
cell_item->setTextAlignment(text_alignment);
if (m_type == Type::Signed32 || m_type == Type::Unsigned32 || m_type == Type::Signed16 ||
m_type == Type::Unsigned16 || m_type == Type::Signed8 || m_type == Type::Unsigned8)
cell_item->setTextAlignment(Qt::AlignRight);
const u32 cell_address = row_address + c * GetTypeSize(type);
const u32 cell_address = row_address + c * GetTypeSize(m_type);
// GetMemCheck is more accurate than OverlapsMemcheck, unless standard alginments are
// enforced.
if (m_address_space == AddressSpace::Type::Effective &&
PowerPC::memchecks.GetMemCheck(cell_address, GetTypeSize(m_type)) != nullptr)
{
cell_item->setBackground(Qt::red);
}
else
{
row_breakpoint = false;
}
setItem(i, 2 + c, cell_item);
setItem(i, first_column + c, cell_item);
if (accessors->IsValidAddress(cell_address))
{
@ -219,7 +258,7 @@ void MemoryViewWidget::Update()
}
}
};
switch (m_type)
switch (type)
{
case Type::Hex8:
update_values([&accessors](u32 address) {
@ -295,29 +334,50 @@ void MemoryViewWidget::Update()
});
break;
}
}
}
void MemoryViewWidget::UpdateBreakpointTags()
{
for (int i = 0; i < rowCount(); i++)
{
bool row_breakpoint = true;
for (int c = 2; c < columnCount(); c++)
{
// Pull address from cell itself, helpful for dual column view.
auto cell = item(i, c);
u32 address = cell->data(Qt::UserRole).toUInt();
if (address == 0)
{
row_breakpoint = false;
continue;
}
// In dual view the only sizes that dont match up on both left and right views are for
// Double, which uses two columns of hex32.
int type_size = GetTypeSize(m_type);
if (m_dual_view && m_type == Type::Double && c < 4)
type_size = 4;
if (m_address_space == AddressSpace::Type::Effective &&
PowerPC::memchecks.GetMemCheck(address, type_size) != nullptr)
{
cell->setBackground(Qt::red);
}
else
{
row_breakpoint = false;
}
}
if (row_breakpoint)
{
bp_item->setData(Qt::DecorationRole, Resources::GetScaledThemeIcon("debugger_breakpoint")
.pixmap(QSize(rowHeight(0) - 3, rowHeight(0) - 3)));
item(i, 0)->setData(Qt::DecorationRole,
Resources::GetScaledThemeIcon("debugger_breakpoint")
.pixmap(QSize(rowHeight(0) - 3, rowHeight(0) - 3)));
}
}
setColumnWidth(0, rowHeight(0));
// Number of characters possible.
int max_length = GetCharacterCount(m_type);
// Column width is the max number of characters + 1 or 2 for the space between columns. A longer
// length means less columns, so a bigger spacing is fine.
max_length += max_length < 8 ? 1 : 2;
const int width = m_font_width * max_length;
for (int i = 2; i < columnCount(); i++)
setColumnWidth(i, width);
viewport()->update();
update();
}
void MemoryViewWidget::SetAddressSpace(AddressSpace::Type address_space)
@ -335,12 +395,12 @@ AddressSpace::Type MemoryViewWidget::GetAddressSpace() const
{
return m_address_space;
}
void MemoryViewWidget::SetDisplay(Type type, int bytes_per_row, int alignment, bool dual_view)
void MemoryViewWidget::SetDisplay(Type type, int bytes_per_row, int alignment)
{
m_type = type;
m_bytes_per_row = bytes_per_row;
m_dual_view = dual_view;
if (alignment == 0)
m_alignment = GetTypeSize(type);
else

View File

@ -48,7 +48,7 @@ public:
void SetAddressSpace(AddressSpace::Type address_space);
AddressSpace::Type GetAddressSpace() const;
void SetDisplay(Type type, int bytes_per_row, int alignment);
void SetDisplay(Type type, int bytes_per_row, int alignment, bool dual_view);
void SetBPType(BPType type);
void SetAddress(u32 address);
@ -70,6 +70,8 @@ private:
void OnContextMenu();
void OnCopyAddress();
void OnCopyHex();
void UpdateBreakpointTags();
void UpdateColumns(Type type, int first_column);
AddressSpace::Type m_address_space{};
Type m_type = Type::Hex8;
@ -82,4 +84,5 @@ private:
int m_font_vspace = 0;
int m_bytes_per_row = 16;
int m_alignment = 16;
bool m_dual_view = false;
};

View File

@ -215,9 +215,12 @@ void MemoryWidget::CreateWidgets()
m_row_length_combo->addItem(tr("8 Bytes"), 8);
m_row_length_combo->addItem(tr("16 Bytes"), 16);
m_dual_check = new QCheckBox(tr("Dual View"));
displaytype_layout->addWidget(m_display_combo);
displaytype_layout->addWidget(m_align_combo);
displaytype_layout->addWidget(m_row_length_combo);
displaytype_layout->addWidget(m_dual_check);
// MBP options
auto* bp_group = new QGroupBox(tr("Memory breakpoint options"));
@ -318,6 +321,8 @@ void MemoryWidget::ConnectWidgets()
&MemoryWidget::OnDisplayChanged);
}
connect(m_dual_check, &QCheckBox::toggled, this, &MemoryWidget::OnDisplayChanged);
for (auto* radio : {m_bp_read_write, m_bp_read_only, m_bp_write_only})
connect(radio, &QRadioButton::toggled, this, &MemoryWidget::OnBPTypeChanged);
@ -431,6 +436,10 @@ void MemoryWidget::OnDisplayChanged()
const auto type = static_cast<MemoryViewWidget::Type>(m_display_combo->currentData().toInt());
int bytes_per_row = m_row_length_combo->currentData().toInt();
int alignment;
bool dual_view = m_dual_check->isChecked();
if (dual_view)
bytes_per_row = 4;
if (type == MemoryViewWidget::Type::Double && bytes_per_row == 4)
bytes_per_row = 8;
@ -443,7 +452,7 @@ void MemoryWidget::OnDisplayChanged()
else
alignment = m_align_combo->currentData().toInt();
m_memory_view->SetDisplay(type, bytes_per_row, alignment);
m_memory_view->SetDisplay(type, bytes_per_row, alignment, dual_view);
SaveSettings();
}

View File

@ -98,6 +98,7 @@ private:
QComboBox* m_display_combo;
QComboBox* m_align_combo;
QComboBox* m_row_length_combo;
QCheckBox* m_dual_check;
QPushButton* m_set_value;
QPushButton* m_from_file;
QPushButton* m_dump_mram;