mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Merge pull request #4310 from lioncash/dsptable
DSPRegisterView: Minor changes
This commit is contained in:
@ -13,7 +13,7 @@
|
||||
|
||||
wxString CDSPRegTable::GetValue(int row, int col)
|
||||
{
|
||||
if (row < 32) // 32 "normal" regs
|
||||
if (row < GetNumberRows())
|
||||
{
|
||||
switch (col)
|
||||
{
|
||||
@ -41,10 +41,12 @@ void CDSPRegTable::UpdateCachedRegs()
|
||||
|
||||
m_CachedCounter = g_dsp.step_counter;
|
||||
|
||||
for (int i = 0; i < 32; ++i)
|
||||
for (size_t i = 0; i < m_CachedRegs.size(); ++i)
|
||||
{
|
||||
m_CachedRegHasChanged[i] = (m_CachedRegs[i] != DSPCore_ReadRegister(i));
|
||||
m_CachedRegs[i] = DSPCore_ReadRegister(i);
|
||||
const u16 value = DSPCore_ReadRegister(i);
|
||||
|
||||
m_CachedRegHasChanged[i] = m_CachedRegs[i] != value;
|
||||
m_CachedRegs[i] = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -4,26 +4,15 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstring>
|
||||
#include <array>
|
||||
#include <wx/grid.h>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
class CDSPRegTable : public wxGridTableBase
|
||||
class CDSPRegTable final : public wxGridTableBase
|
||||
{
|
||||
private:
|
||||
u64 m_CachedCounter;
|
||||
u16 m_CachedRegs[32];
|
||||
bool m_CachedRegHasChanged[32];
|
||||
|
||||
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
||||
|
||||
public:
|
||||
CDSPRegTable()
|
||||
{
|
||||
memset(m_CachedRegs, 0, sizeof(m_CachedRegs));
|
||||
memset(m_CachedRegHasChanged, 0, sizeof(m_CachedRegHasChanged));
|
||||
}
|
||||
CDSPRegTable() = default;
|
||||
|
||||
int GetNumberCols() override { return 2; }
|
||||
int GetNumberRows() override { return 32; }
|
||||
@ -32,12 +21,19 @@ public:
|
||||
void SetValue(int row, int col, const wxString&) override;
|
||||
wxGridCellAttr* GetAttr(int, int, wxGridCellAttr::wxAttrKind) override;
|
||||
void UpdateCachedRegs();
|
||||
|
||||
private:
|
||||
u64 m_CachedCounter = 0;
|
||||
std::array<u16, 32> m_CachedRegs{};
|
||||
std::array<bool, 32> m_CachedRegHasChanged{};
|
||||
|
||||
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
||||
};
|
||||
|
||||
class DSPRegisterView : public wxGrid
|
||||
class DSPRegisterView final : public wxGrid
|
||||
{
|
||||
public:
|
||||
DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
||||
explicit DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
||||
void Repopulate();
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user