forked from lfeng1420/BrickGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetupScene.cpp
632 lines (512 loc) · 14.1 KB
/
SetupScene.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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
#include "stdafx.h"
#include "SetupScene.h"
#include "GameLogic.h"
#include "VolumeLayer.h"
#include "SetupSceneEx.h"
#include "GameScene.h"
#include "GameSceneEx.h"
CSetupScene::~CSetupScene()
{
}
cocos2d::Scene* CSetupScene::CreateScene(const TGameSceneContext* pContext /*= nullptr*/)
{
auto scene = Scene::create();
auto layer = CSetupScene::create(pContext);
scene->addChild(layer);
return scene;
}
cocos2d::Layer* CSetupScene::create(const TGameSceneContext* pContext /*= nullptr*/)
{
CSetupScene* pLayer = new CSetupScene();
if (pLayer == nullptr)
{
return nullptr;
}
// import context
pLayer->ImportGameSceneContext(pContext);
// init
if (!pLayer->init())
{
delete pLayer;
return nullptr;
}
pLayer->autorelease();
return pLayer;
}
bool CSetupScene::init()
{
if (!Layer::init())
{
return false;
}
InitMainUI();
__CreateKeyListener();
return true;
}
void CSetupScene::ImportGameSceneContext(const TGameSceneContext* pContext /*= nullptr*/)
{
if (pContext != nullptr)
{
m_stGameSceneContext = *pContext;
return;
}
INIT_BOOL_ARRAY(m_stGameSceneContext.arrBrickState);
INIT_BOOL_ARRAY(m_stGameSceneContext.arrSmallBrickState);
m_stGameSceneContext.stGameData.nCurScore = 0;
m_stGameSceneContext.stGameData.nLevel = 0;
m_stGameSceneContext.stGameData.nMaxScore = 0;
m_stGameSceneContext.stGameData.nSpeed = 0;
}
void CSetupScene::InitMainUI()
{
Size visibleSize = GET_VISIBLESIZE();
// Layer
m_pLayer = LayerColor::create(Color4B::WHITE);
m_pLayer->setPosition(Vec2::ZERO);
m_pLayer->setContentSize(visibleSize);
m_pLayer->setVisible(!__GetItemState(enMenu_NightMode));
this->addChild(m_pLayer);
// ListView
m_pListView = ListView::create();
m_pListView->setContentSize(visibleSize);
m_pListView->setBounceEnabled(false);
m_pListView->setGravity(ListView::Gravity::TOP);
m_pListView->setPosition(Vec2(0, -MENU_ITEM_MARGIN));
m_pListView->setItemsMargin(MENU_ITEM_MARGIN);
m_pListView->addEventListener((const ListView::ccListViewCallback&)CC_CALLBACK_2(CSetupScene::ListViewCallback, this));
this->addChild(m_pListView);
// Global settings title
AddMenuItem(STRID_GLOBALSETTING);
// Vibration
AddMenuItem(STRID_VIBRATION, __GetItemStateStrID(enMenu_Vibration));
// Sound
AddMenuItem(STRID_SOUND, STRID_RIGHTARROW);
// Orientation
AddMenuItem(STRID_ORIENTATION, __GetItemStateStrID(enMenu_Orientation));
// Night mode
AddMenuItem(STRID_NIGHTMODE, __GetItemStateStrID(enMenu_NightMode));
// Right hand mode
AddMenuItem(STRID_RHMODE, __GetItemStateStrID(enMenu_RHMode));
// Bricks offset
string strText;
__GetItemStateStr(enMenu_BricksOffset, strText);
AddMenuItem(STRID_BRICKSOFFSET, STRID_MAX, strText.c_str());
// Direction button scale
__GetItemStateStr(enMenu_DirBtnScale, strText);
AddMenuItem(STRID_DIRBTNSCALE, STRID_MAX, strText.c_str());
// Tetris settings
AddMenuItem(STRID_TETRISSETTING);
// Auto recover
AddMenuItem(STRID_AUTORECOVER, __GetItemStateStrID(enMenu_AutoRecover));
// Save now
AddMenuItem(STRID_SAVENOW, STRID_RIGHTARROW);
// Up button function
AddMenuItem(STRID_UPBTN, __GetItemStateStrID(enMenu_UpBtn));
// Other settings
AddMenuItem(STRID_OTHER);
// Author
AddMenuItem(STRID_AUTHOR, STRID_LFENG);
// Rate
AddMenuItem(STRID_RATE, STRID_RIGHTARROW);
// More
AddMenuItem(STRID_MORE, STRID_RIGHTARROW);
// Back
AddMenuItem(STRID_BACK, STRID_RIGHTARROW);
// Unavailable
AddMenuItem(STRID_LINE, STRID_LINE);
// Tips
m_pTipsLabel = Label::createWithSystemFont("123", FONT_NAME, TIPS_LABEL_SIZE);
m_pTipsLabel->setPosition(visibleSize.width * 0.5f, visibleSize.height * 0.5f);
m_pTipsLabel->setOpacity(0);
this->addChild(m_pTipsLabel);
}
void CSetupScene::OnOrientationChange()
{
Scene* pScene = CSetupSceneEx::CreateScene(&m_stGameSceneContext);
if (pScene != nullptr)
{
REPLACE_SCENE(pScene);
}
}
void CSetupScene::ShowVolumeLayer()
{
CVolumeLayer* pLayer = CVolumeLayer::create();
pLayer->setPosition(Vec2::ZERO);
this->addChild(pLayer);
}
void CSetupScene::AddMenuItem(int nStrID, int nStatusStrID /*= STRID_MAX*/, const char* szStr /*= nullptr*/)
{
// Add menu id
int nMenuID = __StrID2MenuID(nStrID);
if (nMenuID == enMenu_Max)
{
return;
}
m_vecMenu.push_back(nMenuID);
Size visibleSize = GET_VISIBLESIZE();
float fMenuPosX = MENU_LABEL_PADDING;
float fStatusPosX = visibleSize.width - MENU_LABEL_PADDING;
bool bNightMode = GET_BOOLVALUE("NIGHTMODE", false);
if (nStatusStrID == STRID_MAX && szStr == nullptr)
{
Text* pTitleText = Text::create(CGlobalFunc::GetString(nStrID), FONT_NAME, TITLE_FONT);
pTitleText->setColor(bNightMode ? Color3B::WHITE : Color3B::BLACK);
m_pListView->pushBackCustomItem(pTitleText);
return;
}
Button* pButton = Button::create(BTN_SPR, BTN_CLICK_SPR, "", Widget::TextureResType::PLIST);
pButton->setScale9Enabled(true);
pButton->setContentSize(Size(visibleSize.width, MENU_SPR_HEIGHT));
Text* pLabel = Text::create(CGlobalFunc::GetString(nStrID), FONT_NAME, NORMAL_FONT);
Size contentSize = GET_CONTENTSIZE(pLabel);
pLabel->setPosition(Vec2(fMenuPosX + contentSize.width * 0.5f, MENU_SPR_HEIGHT * 0.5f));
pLabel->setColor(bNightMode ? Color3B::WHITE : Color3B::BLACK);
pButton->addChild(pLabel);
pLabel->setTag(MENU_LABEL_TAG);
Text* pStatus = Text::create(((szStr == nullptr) ? CGlobalFunc::GetString(nStatusStrID) : szStr), FONT_NAME, NORMAL_FONT);
contentSize = GET_CONTENTSIZE(pStatus);
pStatus->setPosition(Vec2(fStatusPosX - contentSize.width * 0.5f, MENU_SPR_HEIGHT * 0.5f));
pStatus->setColor(bNightMode ? Color3B::WHITE : Color3B::BLACK);
pButton->addChild(pStatus);
pStatus->setTag(MENU_STATUS_TAG);
m_pListView->pushBackCustomItem(pButton);
}
void CSetupScene::ListViewCallback(Ref* pNode, ui::ListView::EventType enEventType)
{
if (enEventType != ListView::EventType::ON_SELECTED_ITEM_END)
{
return;
}
unsigned int uiMenuIdx = m_pListView->getCurSelectedIndex();
if (uiMenuIdx >= m_vecMenu.size())
{
return;
}
int nMenuID = m_vecMenu[uiMenuIdx];
__UpdateItemState(nMenuID);
switch (nMenuID)
{
case enMenu_NightMode:
__OnNightModeChange();
return;
case enMenu_Sound:
ShowVolumeLayer();
return;
case enMenu_Orientation:
OnOrientationChange();
return;
case enMenu_Back:
__OnClickBackMenu();
return;
case enMenu_SaveNow:
__OnClickSaveMenu();
return;
case enMenu_Rate:
CGlobalFunc::RateApp();
return;
case enMenu_More:
CGlobalFunc::ShowMyApps();
return;
case enMenu_Line:
__OnClickBackMenu();
return;
case enMenu_Author:
CGlobalFunc::OpenURL("https://lfeng1420.github.io");
return;
default:
break;
}
// Update single item
string strText;
__GetItemStateStr(nMenuID, strText);
__UpdateOneMenuItem(uiMenuIdx, strText.c_str());
}
bool CSetupScene::__GetItemState(int nMenuID)
{
switch (nMenuID)
{
case enMenu_Vibration:
return GET_BOOLVALUE("VIBRATION", false);
break;
case enMenu_Sound:
return GET_BOOLVALUE("SOUND", true);
break;
case enMenu_Orientation:
return GET_BOOLVALUE("PORTRAIT", true);
break;
case enMenu_NightMode:
return GET_BOOLVALUE("NIGHTMODE", false);
break;
case enMenu_RHMode:
return GET_BOOLVALUE("RHMODE", false);
break;
case enMenu_AutoRecover:
return GET_BOOLVALUE("TETRIS_RECORD_VALID", false);
break;
case enMenu_UpBtn:
return GET_BOOLVALUE("UPBUTTON", false);
break;
case enMenu_SaveNow:
case enMenu_Author:
case enMenu_Rate:
case enMenu_More:
case enMenu_Back:
default:
return false;
break;
}
}
int CSetupScene::__GetItemStateStrID(int nMenuID)
{
switch (nMenuID)
{
case enMenu_Vibration:
return GET_BOOLVALUE("VIBRATION", false) ? STRID_ON : STRID_OFF;
break;
case enMenu_Orientation:
return GET_BOOLVALUE("PORTRAIT", true) ? STRID_PORTRAIT : STRID_LANDSCAPE;
break;
case enMenu_NightMode:
return GET_BOOLVALUE("NIGHTMODE", false) ? STRID_ON : STRID_OFF;
break;
case enMenu_RHMode:
return GET_BOOLVALUE("RHMODE", false) ? STRID_ON : STRID_OFF;
break;
case enMenu_AutoRecover:
return GET_BOOLVALUE("TETRIS_RECORD_VALID", false) ? STRID_ON : STRID_OFF;
break;
case enMenu_UpBtn:
return GET_BOOLVALUE("UPBUTTON", false) ? STRID_QUICKLAND : STRID_ROTATE;
break;
case enMenu_Author:
return STRID_LFENG;
break;
case enMenu_Line:
return STRID_LINE;
break;
case enMenu_Sound:
case enMenu_SaveNow:
case enMenu_Rate:
case enMenu_More:
case enMenu_Back:
return STRID_RIGHTARROW;
break;
default:
return STRID_MAX;
break;
}
}
void CSetupScene::__GetItemStateStr(int nMenuID, string& strText)
{
if (nMenuID == enMenu_BricksOffset)
{
char szText[10] = { 0 };
sprintf(szText, "%d", GET_INTVALUE("BRICKS_OFFSET", 0));
strText = szText;
return;
}
else if (nMenuID == enMenu_DirBtnScale)
{
char szText[10] = { 0 };
sprintf(szText, "%d", GET_INTVALUE("DIRBTN_SCALE", DIRBTN_DEFAULT_SCALE));
strText = szText;
return;
}
int nStrID = __GetItemStateStrID(nMenuID);
strText = CGlobalFunc::GetString(__GetItemStateStrID(nMenuID));
}
void CSetupScene::__UpdateItemState(int nMenuID)
{
bool bNowState = __GetItemState(nMenuID);
switch (nMenuID)
{
case enMenu_Vibration:
SET_BOOLVALUE("VIBRATION", !bNowState);
break;
case enMenu_NightMode:
SET_BOOLVALUE("NIGHTMODE", !bNowState);
break;
case enMenu_Orientation:
SET_BOOLVALUE("PORTRAIT", !bNowState);
break;
case enMenu_RHMode:
SET_BOOLVALUE("RHMODE", !bNowState);
break;
case enMenu_AutoRecover:
SET_BOOLVALUE("TETRIS_RECORD_VALID", !bNowState);
break;
case enMenu_UpBtn:
SET_BOOLVALUE("UPBUTTON", !bNowState);
break;
case enMenu_BricksOffset:
{
int nOffset = GET_INTVALUE("BRICKS_OFFSET", 0) + 1;
if (nOffset > BRICKS_OFFSET_MAX)
{
nOffset = 0;
}
SET_INTVALUE("BRICKS_OFFSET", nOffset);
}
break;
case enMenu_DirBtnScale:
{
int nScale = GET_INTVALUE("DIRBTN_SCALE", DIRBTN_DEFAULT_SCALE) - 1;
if (nScale < DIRBTN_SCALE_MIN)
{
nScale = DIRBTN_DEFAULT_SCALE;
}
SET_INTVALUE("DIRBTN_SCALE", nScale);
}
default:
break;
}
}
void CSetupScene::__UpdateOneMenuItem(int nMenuIdx, const char* szText, bool bUpdateColorFlag /*= false*/)
{
Widget* pWidget = m_pListView->getItem(nMenuIdx);
if (pWidget == nullptr)
{
return;
}
Node* pChild = pWidget->getChildByTag(MENU_STATUS_TAG);
if (pChild == nullptr)
{
return;
}
// Update content
Text* pText = (Text*)pChild;
Size oldSize = GET_CONTENTSIZE(pText);
pText->setString(szText);
Size newSize = GET_CONTENTSIZE(pText);
pText->setPositionX(pText->getPositionX() - (newSize.width * 0.5f - oldSize.width * 0.5f));
// Update color
if (bUpdateColorFlag)
{
Color3B color = GET_BOOLVALUE("NIGHTMODE", false) ? Color3B::WHITE : Color3B::BLACK;
pText->setColor(color);
pChild = pWidget->getChildByTag(MENU_LABEL_TAG);
if (pChild != nullptr)
{
pChild->setColor(color);
}
}
}
void CSetupScene::__ShowTips(int nStrID)
{
m_pTipsLabel->setString(CGlobalFunc::GetString(nStrID));
m_pTipsLabel->setColor(__GetItemState(enMenu_NightMode) ? Color3B::WHITE : Color3B::BLACK);
m_pTipsLabel->runAction(Sequence::create(FadeIn::create(0.5f), DelayTime::create(1.0f), FadeOut::create(0.5f), nullptr));
}
void CSetupScene::__CreateKeyListener()
{
EventListenerKeyboard* keyListener = EventListenerKeyboard::create();
keyListener->onKeyPressed = [&](EventKeyboard::KeyCode keyCode, Event* event)
{
};
keyListener->onKeyReleased = [&](EventKeyboard::KeyCode keyCode, Event* event)
{
if (EventKeyboard::KeyCode::KEY_RETURN == keyCode ||
EventKeyboard::KeyCode::KEY_ESCAPE == keyCode ||
EventKeyboard::KeyCode::KEY_BACKSPACE == keyCode)
{
__OnClickBackMenu();
return;
}
};
_eventDispatcher->addEventListenerWithSceneGraphPriority(keyListener, this);
}
void CSetupScene::__OnNightModeChange()
{
// Update layer visiblity
m_pLayer->setVisible(!__GetItemState(enMenu_NightMode));
// Update labels
Color3B color = __GetItemState(enMenu_NightMode) ? Color3B::WHITE : Color3B::BLACK;
for (unsigned int uiMenuIdx = 0; uiMenuIdx < m_vecMenu.size(); ++uiMenuIdx)
{
int nMenuID = m_vecMenu[uiMenuIdx];
if (nMenuID == enMenu_GlobalSetting
|| nMenuID == enMenu_OtherSetting
|| nMenuID == enMenu_TetrisSetting)
{
Widget* pWidget = m_pListView->getItem(uiMenuIdx);
if (pWidget != nullptr)
{
pWidget->setColor(color);
continue;
}
}
__UpdateOneMenuItem(uiMenuIdx, CGlobalFunc::GetString(__GetItemStateStrID(nMenuID)), true);
}
}
void CSetupScene::__OnClickBackMenu()
{
bool bPortraitFlag = GET_BOOLVALUE("PORTRAIT", true);
REPLACE_SCENE(bPortraitFlag ? CGameScene::CreateScene(&m_stGameSceneContext) : CGameSceneEx::CreateScene(&m_stGameSceneContext));
}
void CSetupScene::__OnClickSaveMenu()
{
// Save now
SEventContextSaveData stContext = { true };
bool bSaveOKFlag = g_oEventEngine.FireVote(EVENT_SAVE_DATA, (char*)&stContext, sizeof(stContext));
int nStrID = (bSaveOKFlag ? STRID_SAVEOK : STRID_SAVEFAIL);
__ShowTips(nStrID);
if (bSaveOKFlag && !GET_BOOLVALUE("TETRIS_RECORD_VALID", false))
{
// Open auto recover
SET_BOOLVALUE("TETRIS_RECORD_VALID", true);
// Update auto recover menu
for (unsigned int uiMenuIdx = 0; uiMenuIdx < m_vecMenu.size(); ++uiMenuIdx)
{
if (m_vecMenu[uiMenuIdx] == enMenu_AutoRecover)
{
__UpdateOneMenuItem(uiMenuIdx, CGlobalFunc::GetString(__GetItemStateStrID(enMenu_AutoRecover)));
break;
}
}
}
}
int CSetupScene::__StrID2MenuID(int nStrID)
{
switch (nStrID)
{
case STRID_GLOBALSETTING:
return enMenu_GlobalSetting;
case STRID_VIBRATION:
return enMenu_Vibration;
case STRID_SOUND:
return enMenu_Sound;
case STRID_ORIENTATION:
return enMenu_Orientation;
case STRID_NIGHTMODE:
return enMenu_NightMode;
case STRID_RHMODE:
return enMenu_RHMode;
case STRID_BRICKSOFFSET:
return enMenu_BricksOffset;
case STRID_TETRISSETTING:
return enMenu_TetrisSetting;
case STRID_AUTORECOVER:
return enMenu_AutoRecover;
case STRID_SAVENOW:
return enMenu_SaveNow;
case STRID_UPBTN:
return enMenu_UpBtn;
case STRID_OTHER:
return enMenu_OtherSetting;
case STRID_AUTHOR:
return enMenu_Author;
case STRID_RATE:
return enMenu_Rate;
case STRID_MORE:
return enMenu_More;
case STRID_BACK:
return enMenu_Back;
case STRID_LINE:
return enMenu_Line;
case STRID_DIRBTNSCALE:
return enMenu_DirBtnScale;
default:
return enMenu_Max;
break;
}
}