mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
153 lines
3.1 KiB
C++
153 lines
3.1 KiB
C++
/*
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
|
*
|
|
* This file is part of PortaPack.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __UI_DEBUG_H__
|
|
#define __UI_DEBUG_H__
|
|
|
|
#include "ui.hpp"
|
|
#include "ui_widget.hpp"
|
|
#include "ui_painter.hpp"
|
|
#include "ui_menu.hpp"
|
|
#include "ui_navigation.hpp"
|
|
|
|
#include "rffc507x.hpp"
|
|
|
|
namespace ui {
|
|
|
|
class DebugMemoryView : public View {
|
|
public:
|
|
DebugMemoryView(NavigationView& nav);
|
|
|
|
void focus() override;
|
|
|
|
private:
|
|
Text text_title {
|
|
{ 96, 96, 48, 16 },
|
|
"Memory",
|
|
};
|
|
|
|
Text text_label_m0_free {
|
|
{ 0, 128, 104, 16 },
|
|
"M0 Free Bytes",
|
|
};
|
|
|
|
Text text_label_m0_free_value {
|
|
{ 200, 128, 40, 16 },
|
|
};
|
|
|
|
Text text_label_m0_heap_fragmented_free {
|
|
{ 0, 144, 184, 16 },
|
|
"M0 Heap Fragmented Free",
|
|
};
|
|
|
|
Text text_label_m0_heap_fragmented_free_value {
|
|
{ 200, 144, 40, 16 },
|
|
};
|
|
|
|
Text text_label_m0_heap_fragments {
|
|
{ 0, 160, 136, 16 },
|
|
"M0 Heap Fragments",
|
|
};
|
|
|
|
Text text_label_m0_heap_fragments_value {
|
|
{ 200, 160, 40, 16 },
|
|
};
|
|
|
|
Button button_done {
|
|
{ 72, 192, 96, 24 },
|
|
"Done"
|
|
};
|
|
};
|
|
|
|
class DebugRFFC5072RegistersWidget : public Widget {
|
|
public:
|
|
constexpr DebugRFFC5072RegistersWidget(
|
|
Rect parent_rect
|
|
) : Widget { parent_rect }
|
|
{
|
|
}
|
|
|
|
void update();
|
|
|
|
void paint(Painter& painter) override;
|
|
|
|
private:
|
|
static constexpr size_t registers_count { 31 };
|
|
|
|
static constexpr size_t legend_length { 2 };
|
|
static constexpr Dim legend_width { legend_length * 8 };
|
|
|
|
static constexpr size_t value_length { 4 };
|
|
static constexpr Dim value_width { value_length * 8 };
|
|
|
|
static constexpr size_t registers_per_row { 4 };
|
|
static constexpr size_t registers_row_length {
|
|
(registers_per_row * (value_length + 1)) - 1
|
|
};
|
|
static constexpr Dim registers_row_width {
|
|
registers_row_length * 8
|
|
};
|
|
|
|
static constexpr size_t rows {
|
|
registers_count / registers_per_row
|
|
};
|
|
static constexpr Dim row_height { 16 };
|
|
|
|
void draw_legend(Painter& painter);
|
|
void draw_values(Painter& painter, const rffc507x::RegisterMap registers);
|
|
};
|
|
|
|
class DebugRFFC5072View : public View {
|
|
public:
|
|
DebugRFFC5072View(NavigationView& nav);
|
|
|
|
void focus() override;
|
|
|
|
private:
|
|
Text text_title {
|
|
{ 88, 16, 40, 16 },
|
|
"RFFC5072",
|
|
};
|
|
|
|
DebugRFFC5072RegistersWidget widget_registers {
|
|
{ 32, 48, 176, 128 }
|
|
};
|
|
|
|
Button button_update {
|
|
{ 16, 192, 96, 24 },
|
|
"Update"
|
|
};
|
|
|
|
Button button_done {
|
|
{ 128, 192, 96, 24 },
|
|
"Done"
|
|
};
|
|
};
|
|
|
|
class DebugMenuView : public MenuView {
|
|
public:
|
|
DebugMenuView(NavigationView& nav);
|
|
};
|
|
|
|
} /* namespace ui */
|
|
|
|
#endif/*__UI_DEBUG_H__*/
|