-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate_menu_test.cpp
106 lines (92 loc) · 2.35 KB
/
state_menu_test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
* state_menu_test.cpp
*
* Created on: Apr 28, 2018
* Author: MisterCavespider
*/
#include "state_menu_test.h"
#include <sys/_stdint.h>
#include "gui.h"
#include "results.h"
#include "state_mgr.h"
#include "value_bounded.h"
#include "value_enum.h"
#include "value_value.h"
static const char *a0[] =
{
"CHEBY8", "CHEBY16", "CHEBY32", "CHEBY64"
};
static const char *a1[] =
{
"NULL"
};
static BoundedValue bv_THIS = BoundedValue(0, -1, 0, 1);
static EnumValue ev_Enum_Value = EnumValue(4, 1, a0);
static BoundedValue bv_resonance = BoundedValue(4.30, 0, 0.1, 5);
static BoundedValue bv_frequency = BoundedValue(110.0, 20, 10, 2000);
static BoundedValue bv_something_else = BoundedValue(5, 0, 1, 10);
static BoundedValue bv_delay = BoundedValue(0, 0.1, 10);
static EnumValue ev_nothing = EnumValue(1,0,a1);
TestMenuState::TestMenuState(StateManager *mgr) : MenuState(mgr, "Test GUI") {
}
//result_t TestMenuState::onScrollPri(uint8_t flag, int16_t v)
//{
// if(v == 0) return EVENT_IGNORED;
// if(v > 0)
// {
// menu->setFocus(menu->getFocus() + 1);
// }
// else if(menu->getFocus() > 0) // && v < 0
// {
// menu->setFocus(menu->getFocus() - 1);
// }
// return EVENT_CONSUMED;
//}
//
//result_t TestMenuState::onScrollSec(uint8_t flag, int16_t v)
//{
// if(v==0) return EVENT_IGNORED;
//
// ItemType type = menu->getItemType(menu->getFocus());
// if(type == VALUE_BOUNDED)
// {
// BoundedValue *bval = (BoundedValue *)menu->getValue(menu->getFocus());
// *(bval) += (v<0)?-1:1;
// }
// else if(type == VALUE_ENUM)
// {
// EnumValue *eval = (EnumValue *)menu->getValue(menu->getFocus());
// *(eval) += (v<0)?-1:1;
// }
// else
// {
// return EVENT_IGNORED;
// }
//
// menu->updateItem(menu->getFocus());
//
// return EVENT_CONSUMED;
//}
result_t TestMenuState::onReturn(uint8_t flag)
{
mgr->setCurrentState(0); // Main menu
return EVENT_CONSUMED;
}
void TestMenuState::isetup()
{
menu->pushBoundedValue("THIS", &bv_THIS);
menu->push("More Text");
menu->pushEnumValue("Enum Value", &ev_Enum_Value);
menu->push("");
menu->pushBoundedValue("resonance", &bv_resonance);
menu->pushBoundedValue("frequency", &bv_frequency);
menu->pushBoundedValue("something else", &bv_something_else);
menu->pushBoundedValue("delay", &bv_delay);
menu->pushEnumValue("nothing", &ev_nothing);
menu->push("(hidden)");
}
void TestMenuState::iloop()
{
}
TestMenuState::~TestMenuState() {
}