forked from Duet3D/T113_Screen_for_RepRapFirmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
screensaver.cpp
374 lines (328 loc) · 11.3 KB
/
screensaver.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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
#include "screensaver.h"
#include "entry/EasyUIContext.h"
/*TAG:GlobalVariable全局变量*/
static ZKTextView* mScreensaverTextPtr;
static screensaver* mscreensaverPtr;
/* register sysapp */
REGISTER_SYSAPP(APP_TYPE_SYS_SCREENSAVER, screensaver);
typedef struct {
int id; // 定时器ID , 不能重复
int time; // 定时器 时间间隔 单位 毫秒
}S_ACTIVITY_TIMEER;
#include "logic/screensaver.cc"
/***********/
typedef struct {
int id;
const char *pApp;
} SAppInfo;
/**
*点击跳转window
*/
static SAppInfo sAppInfoTab[] = {
// { ID_MAIN_TEXT, "TextViewActivity" },
};
/***************/
typedef bool (*ButtonCallback)(ZKButton *pButton);
/**
* button onclick表
*/
typedef struct {
int id;
ButtonCallback callback;
}S_ButtonCallback;
/*TAG:ButtonCallbackTab按键映射表*/
static S_ButtonCallback sButtonCallbackTab[] = {
};
/***************/
typedef void (*SeekBarCallback)(ZKSeekBar *pSeekBar, int progress);
typedef struct {
int id;
SeekBarCallback callback;
}S_ZKSeekBarCallback;
/*TAG:SeekBarCallbackTab*/
static S_ZKSeekBarCallback SZKSeekBarCallbackTab[] = {
};
typedef int (*ListViewGetItemCountCallback)(const ZKListView *pListView);
typedef void (*ListViewobtainListItemDataCallback)(ZKListView *pListView,ZKListView::ZKListItem *pListItem, int index);
typedef void (*ListViewonItemClickCallback)(ZKListView *pListView, int index, int id);
typedef struct {
int id;
ListViewGetItemCountCallback getListItemCountCallback;
ListViewobtainListItemDataCallback obtainListItemDataCallback;
ListViewonItemClickCallback onItemClickCallback;
}S_ListViewFunctionsCallback;
/*TAG:ListViewFunctionsCallback*/
static S_ListViewFunctionsCallback SListViewFunctionsCallbackTab[] = {
};
typedef void (*SlideWindowItemClickCallback)(ZKSlideWindow *pSlideWindow, int index);
typedef struct {
int id;
SlideWindowItemClickCallback onSlideItemClickCallback;
}S_SlideWindowItemClickCallback;
/*TAG:SlideWindowFunctionsCallbackTab*/
static S_SlideWindowItemClickCallback SSlideWindowItemClickCallbackTab[] = {
};
typedef void (*EditTextInputCallback)(const std::string &text);
typedef struct {
int id;
EditTextInputCallback onEditTextChangedCallback;
}S_EditTextInputCallback;
/*TAG:EditTextInputCallback*/
static S_EditTextInputCallback SEditTextInputCallbackTab[] = {
};
typedef void (*VideoViewCallback)(ZKVideoView *pVideoView, int msg);
typedef struct {
int id; //VideoView ID
bool loop; // 是否是轮播类型
int defaultvolume;//轮播类型时,默认视频音量
VideoViewCallback onVideoViewCallback;
}S_VideoViewCallback;
/*TAG:VideoViewCallback*/
static S_VideoViewCallback SVideoViewCallbackTab[] = {
};
screensaver::screensaver() {
mVideoLoopIndex = -1;
mVideoLoopErrorCount = 0;
}
screensaver::~screensaver() {
// 退出应用时需要反注册
EASYUICONTEXT->unregisterGlobalTouchListener(this);
unregisterProtocolDataUpdateListener(onProtocolDataUpdate);
onUI_quit();
mscreensaverPtr = NULL;
mScreensaverTextPtr = NULL;
}
const char* screensaver::getAppName() const{
return "screensaver.ftu";
}
//TAG:onCreate
void screensaver::onCreate() {
BaseApp::onCreate();
mScreensaverTextPtr = (ZKTextView*)findControlByID(ID_SCREENSAVER_ScreensaverText);
mscreensaverPtr = this;
onUI_init();
// 注册监听全局触摸
EASYUICONTEXT->registerGlobalTouchListener(this);
registerProtocolDataUpdateListener(onProtocolDataUpdate);
rigesterActivityTimer();
startVideoLoopPlayback();
}
void screensaver::onClick(ZKBase *pBase) {
int buttonTablen = sizeof(sButtonCallbackTab) / sizeof(S_ButtonCallback);
for (int i = 0; i < buttonTablen; ++i) {
if (sButtonCallbackTab[i].id == pBase->getID()) {
if (sButtonCallbackTab[i].callback((ZKButton*)pBase)) {
return;
}
break;
}
}
int len = sizeof(sAppInfoTab) / sizeof(sAppInfoTab[0]);
for (int i = 0; i < len; ++i) {
if (sAppInfoTab[i].id == pBase->getID()) {
EASYUICONTEXT->openActivity(sAppInfoTab[i].pApp);
return;
}
}
BaseApp::onClick(pBase);
}
bool screensaver::onTimer(int id) {
return onUI_Timer(id);
}
void screensaver::onProgressChanged(ZKSeekBar *pSeekBar, int progress){
int seekBarTablen = sizeof(SZKSeekBarCallbackTab) / sizeof(S_ZKSeekBarCallback);
for (int i = 0; i < seekBarTablen; ++i) {
if (SZKSeekBarCallbackTab[i].id == pSeekBar->getID()) {
SZKSeekBarCallbackTab[i].callback(pSeekBar, progress);
break;
}
}
}
int screensaver::getListItemCount(const ZKListView *pListView) const{
int tablen = sizeof(SListViewFunctionsCallbackTab) / sizeof(S_ListViewFunctionsCallback);
for (int i = 0; i < tablen; ++i) {
if (SListViewFunctionsCallbackTab[i].id == pListView->getID()) {
return SListViewFunctionsCallbackTab[i].getListItemCountCallback(pListView);
break;
}
}
return 0;
}
void screensaver::obtainListItemData(ZKListView *pListView,ZKListView::ZKListItem *pListItem, int index){
int tablen = sizeof(SListViewFunctionsCallbackTab) / sizeof(S_ListViewFunctionsCallback);
for (int i = 0; i < tablen; ++i) {
if (SListViewFunctionsCallbackTab[i].id == pListView->getID()) {
SListViewFunctionsCallbackTab[i].obtainListItemDataCallback(pListView, pListItem, index);
break;
}
}
}
void screensaver::onItemClick(ZKListView *pListView, int index, int id){
int tablen = sizeof(SListViewFunctionsCallbackTab) / sizeof(S_ListViewFunctionsCallback);
for (int i = 0; i < tablen; ++i) {
if (SListViewFunctionsCallbackTab[i].id == pListView->getID()) {
SListViewFunctionsCallbackTab[i].onItemClickCallback(pListView, index, id);
break;
}
}
}
void screensaver::onSlideItemClick(ZKSlideWindow *pSlideWindow, int index) {
int tablen = sizeof(SSlideWindowItemClickCallbackTab) / sizeof(S_SlideWindowItemClickCallback);
for (int i = 0; i < tablen; ++i) {
if (SSlideWindowItemClickCallbackTab[i].id == pSlideWindow->getID()) {
SSlideWindowItemClickCallbackTab[i].onSlideItemClickCallback(pSlideWindow, index);
break;
}
}
}
bool screensaver::onTouchEvent(const MotionEvent &ev) {
return onscreensaverActivityTouchEvent(ev);
}
void screensaver::onTextChanged(ZKTextView *pTextView, const std::string &text) {
int tablen = sizeof(SEditTextInputCallbackTab) / sizeof(S_EditTextInputCallback);
for (int i = 0; i < tablen; ++i) {
if (SEditTextInputCallbackTab[i].id == pTextView->getID()) {
SEditTextInputCallbackTab[i].onEditTextChangedCallback(text);
break;
}
}
}
void screensaver::rigesterActivityTimer() {
int tablen = sizeof(REGISTER_ACTIVITY_TIMER_TAB) / sizeof(S_ACTIVITY_TIMEER);
for (int i = 0; i < tablen; ++i) {
S_ACTIVITY_TIMEER temp = REGISTER_ACTIVITY_TIMER_TAB[i];
registerTimer(temp.id, temp.time);
}
}
void screensaver::onVideoPlayerMessage(ZKVideoView *pVideoView, int msg) {
int tablen = sizeof(SVideoViewCallbackTab) / sizeof(S_VideoViewCallback);
for (int i = 0; i < tablen; ++i) {
if (SVideoViewCallbackTab[i].id == pVideoView->getID()) {
if (SVideoViewCallbackTab[i].loop) {
//循环播放
videoLoopPlayback(pVideoView, msg, i);
} else if (SVideoViewCallbackTab[i].onVideoViewCallback != NULL){
SVideoViewCallbackTab[i].onVideoViewCallback(pVideoView, msg);
}
break;
}
}
}
void screensaver::videoLoopPlayback(ZKVideoView *pVideoView, int msg, size_t callbackTabIndex) {
switch (msg) {
case ZKVideoView::E_MSGTYPE_VIDEO_PLAY_STARTED:
LOGD("ZKVideoView::E_MSGTYPE_VIDEO_PLAY_STARTED\n");
if (callbackTabIndex >= (sizeof(SVideoViewCallbackTab)/sizeof(S_VideoViewCallback))) {
break;
}
pVideoView->setVolume(SVideoViewCallbackTab[callbackTabIndex].defaultvolume / 10.0);
mVideoLoopErrorCount = 0;
break;
case ZKVideoView::E_MSGTYPE_VIDEO_PLAY_ERROR:
/**错误处理 */
++mVideoLoopErrorCount;
if (mVideoLoopErrorCount > 100) {
LOGD("video loop error counts > 100, quit loop playback !");
break;
} //不用break, 继续尝试播放下一个
case ZKVideoView::E_MSGTYPE_VIDEO_PLAY_COMPLETED:
LOGD("ZKVideoView::E_MSGTYPE_VIDEO_PLAY_COMPLETED\n");
std::vector<std::string> videolist;
std::string fileName(getAppName());
if (fileName.size() < 4) {
LOGD("getAppName size < 4, ignore!");
break;
}
fileName = fileName.substr(0, fileName.length() - 4) + "_video_list.txt";
fileName = "/mnt/extsd/" + fileName;
if (!parseVideoFileList(fileName.c_str(), videolist)) {
LOGD("parseVideoFileList failed !");
break;
}
if (pVideoView && !videolist.empty()) {
mVideoLoopIndex = (mVideoLoopIndex + 1) % videolist.size();
pVideoView->play(videolist[mVideoLoopIndex].c_str());
}
break;
}
}
void screensaver::startVideoLoopPlayback() {
int tablen = sizeof(SVideoViewCallbackTab) / sizeof(S_VideoViewCallback);
for (int i = 0; i < tablen; ++i) {
if (SVideoViewCallbackTab[i].loop) {
ZKVideoView* videoView = (ZKVideoView*)findControlByID(SVideoViewCallbackTab[i].id);
if (!videoView) {
return;
}
//循环播放
videoLoopPlayback(videoView, ZKVideoView::E_MSGTYPE_VIDEO_PLAY_COMPLETED, i);
return;
}
}
}
void screensaver::stopVideoLoopPlayback() {
int tablen = sizeof(SVideoViewCallbackTab) / sizeof(S_VideoViewCallback);
for (int i = 0; i < tablen; ++i) {
if (SVideoViewCallbackTab[i].loop) {
ZKVideoView* videoView = (ZKVideoView*)findControlByID(SVideoViewCallbackTab[i].id);
if (!videoView) {
return;
}
if (videoView->isPlaying()) {
videoView->stop();
}
return;
}
}
}
bool screensaver::parseVideoFileList(const char *pFileListPath, std::vector<string>& mediaFileList) {
mediaFileList.clear();
if (NULL == pFileListPath || 0 == strlen(pFileListPath)) {
LOGD("video file list is null!");
return false;
}
ifstream is(pFileListPath, ios_base::in);
if (!is.is_open()) {
LOGD("cann't open file %s \n", pFileListPath);
return false;
}
char tmp[1024] = {0};
while (is.getline(tmp, sizeof(tmp))) {
string str = tmp;
removeCharFromString(str, '\"');
removeCharFromString(str, '\r');
removeCharFromString(str, '\n');
if (str.size() > 1) {
mediaFileList.push_back(str.c_str());
}
}
LOGD("(f:%s, l:%d) parse fileList[%s], get [%d]files\n", __FUNCTION__,
__LINE__, pFileListPath, mediaFileList.size());
for (size_t i = 0; i < mediaFileList.size(); i++) {
LOGD("file[%d]:[%s]\n", i, mediaFileList[i].c_str());
}
is.close();
return true;
}
int screensaver::removeCharFromString(string& nString, char c)
{
string::size_type pos;
while(1) {
pos = nString.find(c);
if(pos != string::npos) {
nString.erase(pos, 1);
} else {
break;
}
}
return (int)nString.size();
}
void screensaver::registerUserTimer(int id, int time) {
registerTimer(id, time);
}
void screensaver::unregisterUserTimer(int id) {
unregisterTimer(id);
}
void screensaver::resetUserTimer(int id, int time) {
resetTimer(id, time);
}