forked from lfeng1420/BrickGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetupScene.h
126 lines (97 loc) · 2.38 KB
/
SetupScene.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
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
#pragma once
class CSetupScene : public Layer
{
public:
virtual ~CSetupScene();
// Create scene
static Scene* CreateScene(const TGameSceneContext* pContext = nullptr);
// create
static Layer* create(const TGameSceneContext* pContext = nullptr);
// Init
virtual bool init();
// Init ui
virtual void InitMainUI();
// On orientation change
virtual void OnOrientationChange();
// Show volume layer
virtual void ShowVolumeLayer();
// Add menu item
virtual void AddMenuItem(int nStrID, int nStatusStrID = STRID_MAX, const char* szStr = nullptr);
public:
// Import game scene context
void ImportGameSceneContext(const TGameSceneContext* pContext = nullptr);
// Scorll view callback
void ListViewCallback(Ref* pNode, ui::ListView::EventType enEventType);
protected:
// Get menu item state
bool __GetItemState(int nMenuID);
// Get menu item state
int __GetItemStateStrID(int nMenuID);
// Get menu item value
void __GetItemStateStr(int nMenuID, string& strText);
// Update item state
void __UpdateItemState(int nMenuID);
// Update one menu item
void __UpdateOneMenuItem(int nMenuIdx, const char* szText, bool bUpdateColorFlag = false);
// Show tips
void __ShowTips(int nStrID);
// Create key event listener
void __CreateKeyListener();
// On night mode change
void __OnNightModeChange();
// On click back menu
void __OnClickBackMenu();
// On click save menu
void __OnClickSaveMenu();
// StrID to MenuID
int __StrID2MenuID(int nStrID);
protected:
enum
{
TITLE_FONT = 40,
NORMAL_FONT = 30,
MENU_SPR_HEIGHT = 55,
MENU_ITEM_MARGIN = 10,
MENU_LABEL_PADDING = 20,
MENU_STATUS_TAG = 1000,
MENU_LABEL_TAG = 1001,
TIPS_LABEL_SIZE = 36,
BRICKS_OFFSET_MAX = 40,
DIRBTN_SCALE_MIN = 80,
};
enum _EnMenu
{
enMenu_Min,
enMenu_GlobalSetting = enMenu_Min,
enMenu_Vibration,
enMenu_Sound,
enMenu_Orientation,
enMenu_NightMode,
enMenu_RHMode,
enMenu_BricksOffset,
enMenu_DirBtnScale,
enMenu_TetrisSetting,
enMenu_AutoRecover,
enMenu_SaveNow,
enMenu_UpBtn,
enMenu_OtherSetting,
enMenu_Author,
enMenu_Rate,
enMenu_More,
enMenu_Back,
enMenu_Line,
enMenu_Max,
};
typedef vector<int> TVec_Menu;
protected:
// Game scene context
TGameSceneContext m_stGameSceneContext;
// ListView
ListView* m_pListView;
// White layer
LayerColor* m_pLayer;
// Tips label
Label* m_pTipsLabel;
// Menu
TVec_Menu m_vecMenu;
};