-
Notifications
You must be signed in to change notification settings - Fork 1
/
HomeScreen.cpp
215 lines (190 loc) · 6.17 KB
/
HomeScreen.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
/*
* HomeScreen.cpp
*
* Created on: 24 April 2024
* Author: Andy Everitt
*/
#include "Debug.h"
#include "HomeScreen.h"
#include "ObjectModel/Heightmap.h"
#include "ObjectModel/Sensor.h"
#include "UI/Graph.h"
#include "UI/Logic/Heightmap.h"
#include "UI/Logic/PrintStatus.h"
#include "UI/Logic/Webcam.h"
#include "UI/Themes.h"
#include <entry/EasyUIContext.h>
#include <std_fixed/functional.h>
namespace UI::HomeScreen
{
static Graph s_temperatureGraph;
static ToolsList s_toolsList;
static WindowSelectItem s_windows[] = {
{"move", []() { UI::WINDOW.OpenWindow(ID_MAIN_MoveWindow); }},
{"extrude", []() { UI::WINDOW.OpenWindow(ID_MAIN_ExtrudeWindow); }},
{"status", []() { UI::PrintStatus::Open(); }},
{"heightmap", []() { UI::Heightmap::Open(); }},
{"fans", []() { UI::WINDOW.OpenWindow(ID_MAIN_FanWindow); }},
{"files",
[]()
{
OM::FileSystem::RequestFiles("0:/gcodes");
UI::WINDOW.OpenWindow(ID_MAIN_FilesWindow);
}},
{"object_cancel", []() { UI::WINDOW.OpenWindow(ID_MAIN_ObjectCancelWindow); }},
{"webcam",
[]()
{
UI::Webcam::RegisterUpdateLoop();
UI::WINDOW.OpenWindow(ID_MAIN_WebcamWindow);
}},
{"network", []() { EASYUICONTEXT->openActivity("WifiSettingActivity"); }},
{"settings", []() { UI::WINDOW.OpenWindow(ID_MAIN_SettingsWindow); }},
};
void Init()
{
info("Initialising HomeScreen UI...");
s_toolsList.Init(UI::GetUIControl<ZKListView>(ID_MAIN_ToolListView));
s_temperatureGraph.Init(UI::GetUIControl<ZKDiagram>(ID_MAIN_TempGraph),
UI::GetUIControl<ZKListView>(ID_MAIN_TempGraphXLabels),
UI::GetUIControl<ZKListView>(ID_MAIN_TempGraphYLabels),
UI::GetUIControl<ZKListView>(ID_MAIN_TemperatureGraphLegend));
}
size_t GetWindowSelectCount()
{
return ARRAY_SIZE(s_windows);
}
void SetWindowSelectListItem(ZKListView::ZKListItem* pListItem, const int index)
{
verbose("%d", index);
if (index < 0 || index >= (int)ARRAY_SIZE(s_windows))
{
warn("Invalid window index %d", index);
return;
}
pListItem->setTextTr(s_windows[index].id);
const Theme::Theme* theme = Theme::GetCurrentTheme();
if (theme == nullptr)
{
warn("Failed to get current theme, not applying icon");
return;
}
auto iconIt = theme->colors->homeScreenWindowSelect.find(s_windows[index].id);
pListItem->setButtonStatusPic(ZK_CONTROL_STATUS_NORMAL,
iconIt == theme->colors->homeScreenWindowSelect.end() ? nullptr
: iconIt->second.normal);
pListItem->setButtonStatusPic(ZK_CONTROL_STATUS_PRESSED,
iconIt == theme->colors->homeScreenWindowSelect.end() ? nullptr
: iconIt->second.pressed);
pListItem->setButtonStatusPic(ZK_CONTROL_STATUS_SELECTED,
iconIt == theme->colors->homeScreenWindowSelect.end() ? nullptr
: iconIt->second.selected);
pListItem->setButtonStatusPic(
ZK_CONTROL_STATUS_PRESSED | ZK_CONTROL_STATUS_SELECTED,
iconIt == theme->colors->homeScreenWindowSelect.end() ? nullptr : iconIt->second.pressedAndSelected);
pListItem->setButtonStatusPic(ZK_CONTROL_STATUS_INVALID,
iconIt == theme->colors->homeScreenWindowSelect.end() ? nullptr
: iconIt->second.invalid);
}
void WindowSelectListItemCallback(const int index)
{
dbg("index %d", index);
if (index < 0 || index >= (int)ARRAY_SIZE(s_windows))
{
warn("Invalid window index %d", index);
return;
}
s_windows[index].callback();
}
size_t GetToolsListCount()
{
size_t count = s_toolsList.GetTotalHeaterCount(false);
dbg("GetToolsListCount: %d", count);
return count;
}
void SetToolsListItem(ZKListView::ZKListItem* pListItem, const int index)
{
verbose("%d", index);
s_toolsList.ObtainListItemData(pListItem,
index,
ID_MAIN_ToolNameSubItem,
ID_MAIN_ToolStatusSubItem,
ID_MAIN_ToolCurrentTemperatureSubItem,
ID_MAIN_ToolActiveTemperatureSubItem,
ID_MAIN_ToolStandbyTemperatureSubItem);
}
void ToolsListItemCallback(const int index, const int id)
{
s_toolsList.OnListItemClick(index,
id,
ID_MAIN_ToolNameSubItem,
ID_MAIN_ToolStatusSubItem,
ID_MAIN_ToolActiveTemperatureSubItem,
ID_MAIN_ToolStandbyTemperatureSubItem);
}
size_t GetTemperatureGraphLegendCount()
{
return OM::GetAnalogSensorCount();
}
void SetTemperatureGraphLegendItem(ZKListView::ZKListItem* pListItem, const int index)
{
verbose("%d", index);
OM::AnalogSensor* sensor = OM::GetAnalogSensorBySlot(index);
if (sensor == nullptr)
{
pListItem->setText("");
return;
}
pListItem->setText(sensor->name.c_str());
pListItem->setSelected(!s_temperatureGraph.IsWaveVisible(index));
}
void TemperatureGraphLegendItemCallback(const int index)
{
s_temperatureGraph.SetWaveVisible(index, !s_temperatureGraph.IsWaveVisible(index));
}
void SetTemperatureGraphXLabel(ZKListView* pListView, ZKListView::ZKListItem* pListItem, const int index)
{
verbose("%d", index);
int range = s_temperatureGraph.GetTimeRange();
int time = -range + (index * range / (pListView->getCols() - 1));
pListItem->setTextf("%ds", time);
}
void SetTemperatureGraphYLabel(ZKListView* pListView, ZKListView::ZKListItem* pListItem, const int index)
{
verbose("%d", index);
float yMax = s_temperatureGraph.GetYMax();
float label = yMax - (yMax / (pListView->getRows() - 1)) * index;
pListItem->setTextf("%.1f", label);
}
void RefreshTemperatureGraph()
{
s_temperatureGraph.RefreshLegend();
}
void UpdateTemperatureGraph()
{
for (size_t i = 0; i < s_temperatureGraph.GetWaveCount(); i++)
{
OM::AnalogSensor* sensor = OM::GetAnalogSensor(i, true);
if (sensor == nullptr || sensor->name.IsEmpty())
{
verbose("Sensor incomplete or does not exist");
s_temperatureGraph.Clear(i);
continue;
}
float value = sensor->lastReading;
#if 0
long long now = TimeHelper::getCurrentTime();
if (now - sensor->lastReadingTime > 3 * Comm::DUET.GetScaledPollInterval() + PRINTER_REQUEST_TIMEOUT)
{
dbg("Sensor %d has timed out", i);
value = -273;
}
#endif
s_temperatureGraph.AddData(i, value);
}
}
void ClearTemperatureGraph()
{
s_temperatureGraph.ClearAll();
}
} // namespace UI::HomeScreen