-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDisplayableParameter.h
78 lines (74 loc) · 2.14 KB
/
DisplayableParameter.h
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
/*
* DisplayableParameter.h
*
* Created: 6/26/2014 08:08:34 AM
* Author: Ketil Wright
*
* 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 3 of the License, 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. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
class DisplayableParameter
{
int32_t m_curVal;
const int32_t m_minVal, m_maxVal;
const uint8_t m_fieldWidth;
bool m_padZero;
void clamp()
{
if(m_curVal < m_minVal) m_curVal = m_minVal;
if(m_curVal > m_maxVal) m_curVal = m_maxVal;
}
public:
DisplayableParameter(int32_t curVal, int32_t minVal, int32_t maxVal, uint8_t fieldWidth, bool padZero = true)
:
m_curVal(curVal),
m_minVal(minVal),
m_maxVal(maxVal),
m_fieldWidth(fieldWidth),
m_padZero(padZero)
{}
void changeVal(int32_t delta)
{
m_curVal += delta;
clamp();
}
void display(uint8_t col, uint8_t row) const
{
// save cursor, print in the requested location, padding with
// zeros, and restore original cursor location.
g_print->saveCursorLocation();
g_print->setCursor(col, row);
// determine number of digits required
uint8_t digits = 0;
if(m_curVal <= 0)
{
// need an extra space for -, or 0
++digits;
}
uint32_t val = abs(m_curVal);
while(val > 0)
{
val /= 10;
++digits;
}
for(uint8_t z = 0; z < m_fieldWidth - digits; z++)
{
g_print->print(m_padZero ? F("0") : F(" "));
}
g_print->print(m_curVal);
g_print->restoreCursorLocation();
}
int32_t getVal() const { return m_curVal; }
void setVal(int32_t val) { m_curVal = val; clamp(); }
};