-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate_mgr.cpp
73 lines (61 loc) · 1.7 KB
/
state_mgr.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
/*
* state_mgr.cpp
*
* Created on: Mar 31, 2018
* Author: MisterCavespider
*/
#include "state_mgr.h"
StateManager::StateManager(uint8_t size,
EncoderCapsule *encc1, EncoderCapsule *encc2,
EncoderCapsule *encc3, EncoderCapsule *encc4,
GDISPLAY *disp)
{
states = new ProgramState*[size];
currI = 0; // Per default starts at 0
uptime = 0;
this->size = size;
this->encc1 = encc1;
this->encc2 = encc2;
this->encc3 = encc3;
this->encc4 = encc4;
this->disp = disp;
// Nullify states to break
for(int i = 0; i < size; i++)
{
states[i] = NULL;
}
}
elapsedMillis StateManager::getUptime()
{
return uptime;
}
void StateManager::resetUptime()
{
uptime = 0;
}
result_t StateManager::setState(uint8_t i, ProgramState *state)
{
if(i >= size) return OUT_OF_BOUNDS;
if(states[currI] != NULL && i == currI) return STATE_MGR_ACTIVE;
states[i] = state;
uptime = 0;
return SUCCESS;
}
void StateManager::setCurrentState(uint8_t state)
{
if(state >= size) return;
this->currI = state;
resetUptime();
disp->clearBuffer();
states[currI]->setup();
}
void StateManager::setup() {states[currI]->setup();}
void StateManager::loop() {states[currI]->loop();}
result_t StateManager::onAnything() {return states[currI]->onAnything();}
result_t StateManager::onScrollPri(uint8_t f, int16_t v) {return states[currI]->onScrollPri(f,v);}
result_t StateManager::onScrollSec(uint8_t f, int16_t v) {return states[currI]->onScrollSec(f,v);}
result_t StateManager::onConfirm(uint8_t f) {return states[currI]->onConfirm(f);}
result_t StateManager::onReturn(uint8_t f) {return states[currI]->onReturn(f);}
StateManager::~StateManager() {
delete[] states; // Delete the ProgramState*s
}