2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:43:35 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-04-02 06:50:47 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-04-02 06:50:47 -06:00
|
|
|
|
2016-10-06 10:25:28 -06:00
|
|
|
#include <array>
|
2009-04-02 06:50:47 -06:00
|
|
|
#include <wx/grid.h>
|
|
|
|
|
2014-02-22 15:36:30 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2016-10-06 10:35:29 -06:00
|
|
|
class CDSPRegTable final : public wxGridTableBase
|
2009-04-02 06:50:47 -06:00
|
|
|
{
|
|
|
|
public:
|
2016-10-06 10:25:28 -06:00
|
|
|
CDSPRegTable() = default;
|
2016-06-24 02:43:46 -06:00
|
|
|
|
|
|
|
int GetNumberCols() override { return 2; }
|
|
|
|
int GetNumberRows() override { return 32; }
|
|
|
|
bool IsEmptyCell(int row, int col) override { return false; }
|
|
|
|
wxString GetValue(int row, int col) override;
|
|
|
|
void SetValue(int row, int col, const wxString&) override;
|
|
|
|
wxGridCellAttr* GetAttr(int, int, wxGridCellAttr::wxAttrKind) override;
|
|
|
|
void UpdateCachedRegs();
|
2016-10-06 10:26:53 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
u64 m_CachedCounter = 0;
|
|
|
|
std::array<u16, 32> m_CachedRegs{};
|
|
|
|
std::array<bool, 32> m_CachedRegHasChanged{};
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
2009-04-02 06:50:47 -06:00
|
|
|
};
|
|
|
|
|
2016-10-06 10:35:29 -06:00
|
|
|
class DSPRegisterView final : public wxGrid
|
2009-04-02 06:50:47 -06:00
|
|
|
{
|
|
|
|
public:
|
2016-10-06 10:36:32 -06:00
|
|
|
explicit DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
2016-10-03 01:29:50 -06:00
|
|
|
void Repopulate();
|
2015-03-24 07:37:20 -06:00
|
|
|
|
|
|
|
private:
|
2016-06-24 02:43:46 -06:00
|
|
|
// Owned by wx. Deleted implicitly upon destruction.
|
|
|
|
CDSPRegTable* m_register_table;
|
2009-04-02 06:50:47 -06:00
|
|
|
};
|