forked from DCC-EX/CommandStation-EX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenuShuttleSample.cpp
286 lines (241 loc) · 6.47 KB
/
menuShuttleSample.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*
* LaBox Project
* menuTrainCvRead Classes
*
* @Author : Thierry Paris
* @Organization : Locoduino.org
*/
#include "defines.h"
#include "DCC.h"
#include "TrackManager.h"
#include "EXRAIL2.h"
#ifdef USE_HMI
#include "menuobject.h"
#include "menuShuttleSample.h"
#include "hmi.h"
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
bool displayShuttleToDo;
int locoAddress;
char messageShuttle[21];
RMFT2 *shuttleRoute;
extern hmi boxHMI; // from .ino !
enum StateShuttleSample
{
// Select Up Down
Ready, // Ready to escape from the dialog. Back to menu -- --
FixingAddress, // Select loco Address Start running +1 -1
MenuStop, // Option stop selected Stop shuttle -- Select quit
MenuQuit // Option Quit selected Quit Select stop --
};
StateShuttleSample shuttleSampleState;
#define DIAGSHUTTLE(FCT) //DIAG(F("%s : %s CV:%d Val:%d"), FCT, readState==Ready?"Ready":readState == FixingAddress?"Fixing":"Reading", CVAddress, CVValue);
void menuShuttleSample::start()
{
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::start.. Begin");
if (shuttleRoute == NULL)
{
if (locoAddress > 0)
shuttleSampleState = FixingAddress;
else
shuttleSampleState = Ready;
}
else
{
shuttleSampleState = MenuStop;
}
displayShuttleToDo = true;
DIAG("shuttle start");
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::start.. End");
}
/*!
@brief menuShuttleSample Constructor
@param Screen, an Adafruit_SSD1306 object to permit to display our menu
@param p, a parent object. All menu are chained between parent and sons
@param title, a menu has a title, a char[HMI_MenueMessageSize].
@param val, a integer which define the king of menu or the returned value after selection
@return None (void).
@note
*/
menuShuttleSample::menuShuttleSample(Adafruit_SSD1306* screen, menuObject* p, const char* title, int value): menuObject(screen, p, title, value)
{
resetMenu();
}
/*!
@brief eventUp, Notification of the button up event
@param None
@return None (void).
@note
*/
void menuShuttleSample::eventUp()
{
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::eventUp.. Begin");
menuObject::eventUp();
if (shuttleSampleState == Ready || shuttleSampleState == FixingAddress)
{
shuttleSampleState = FixingAddress;
locoAddress++;
displayShuttleToDo = true;
}
if (shuttleSampleState == MenuQuit)
{
shuttleSampleState = MenuStop;
displayShuttleToDo = true;
}
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::eventUp.. End");
}
/*!
@brief eventDown, Notification of the button down event
@param None
@return None (void).
@note
*/
void menuShuttleSample::eventDown()
{
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::eventDown.. Begin");
menuObject::eventDown();
if (shuttleSampleState == Ready || shuttleSampleState == FixingAddress)
{
shuttleSampleState = FixingAddress;
if (locoAddress > 0) {
locoAddress--;
displayShuttleToDo = true;
}
if (locoAddress == 0) {
shuttleSampleState = Ready;
displayShuttleToDo = true;
}
}
if (shuttleSampleState == MenuStop)
{
shuttleSampleState = MenuQuit;
displayShuttleToDo = true;
}
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::eventDown.. End");
}
/*!
@brief eventSelect, Notification of a button event
@param None
@return None (void).
@note
*/
int menuShuttleSample::eventSelect()
{
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::eventSelect.. Begin");
switch (shuttleSampleState)
{
case FixingAddress:
// Run sample !
TrackManager::setMainPower(POWERMODE::ON);
shuttleRoute = RMFT2::createNewTask(123, locoAddress);
shuttleSampleState = MenuStop;
displayShuttleToDo = true;
_HMIDEBUG_CRITICAL_PRINTLN("menuShuttleSample::eventSelect.. End");
return 0;
break;
case MenuQuit:
displayShuttleToDo = true;
break;
case MenuStop:
// because RMFT destructor will send a loco 1 speed command, updating Hmi, calling also the eventSelect
// of this menu and doing a stack overflow...
boxHMI.stopStateMachine = true;
delete shuttleRoute;
shuttleRoute = NULL;
boxHMI.stopStateMachine = false;
shuttleSampleState = MenuQuit;
displayShuttleToDo = true;
return 0;
}
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::eventSelect.. End");
return MENUEXIT;
}
/*!
@brief Setup HMI class and start HMI
@param None
@return None (void).
@note
*/
void menuShuttleSample::begin()
{
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::begin.. Begin");
locoAddress = 0;
shuttleRoute = NULL;
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::begin.. End");
}
/*!
@brief update, call to refresh screen
@param None
@return None (void).
@note
*/
void menuShuttleSample::update()
{
_HMIDEBUG_FCT_PRINTLN(F("menuShuttleSample::update.. Begin"));
if(!displayShuttleToDo)
{
return;
}
display->clearDisplay();
displayShuttleToDo = false;
display->setTextSize(1);
display->setCursor(5, 6);
display->println(TXT_SHUTTLE_LOGO);
if (shuttleSampleState == FixingAddress || shuttleSampleState == Ready)
display->setTextSize(2);
display->setCursor(20, 26);
char add[10];
if(locoAddress > 0)
sprintf(add,"%04d",locoAddress);
else
sprintf(add,"----");
display->println(add);
if (shuttleRoute != NULL)
{
display->setTextColor(WHITE);
display->setTextSize(1);
display->setCursor(5, 35);
display->println(TXT_SHUTTLE_RUNNING);
}
display->setTextSize(1);
display->setCursor(5, 56);
switch (shuttleSampleState)
{
case Ready:
display->println(TXT_CVRW_READY);
break;
case FixingAddress:
display->println(TXT_IDENT_LOCOADDRESS);
break;
case MenuStop:
sprintf(messageShuttle,">%s<",TXT_SHUTTLE_STOP);
display->println(messageShuttle);
display->setCursor(64, 55);
sprintf(messageShuttle," %s ",TXT_MenuAddrQuit);
display->println(messageShuttle);
break;
case MenuQuit:
sprintf(messageShuttle," %s ",TXT_SHUTTLE_STOP);
display->println(messageShuttle);
display->setCursor(64, 55);
sprintf(messageShuttle,">%s<",TXT_MenuAddrQuit);
display->println(messageShuttle);
break;
}
display->display();
_HMIDEBUG_FCT_PRINTLN(F("menuShuttleSample::update.. End"));
}
/*!
@brief resetMenu,
@param None
@return None (void).
@note
*/
void menuShuttleSample::resetMenu()
{
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::resetMenu.. Begin");
menuObject::resetMenu();
displayShuttleToDo = false;
_HMIDEBUG_FCT_PRINTLN("menuShuttleSample::resetMenu.. End");
}
#endif