forked from lfeng1420/BrickGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameBase.h
129 lines (90 loc) · 2.68 KB
/
GameBase.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
127
128
129
#pragma once
#include "GameLogic.h"
class CGameBase
{
public:
CGameBase();
virtual ~CGameBase();
// Start
virtual void Start();
// End
virtual void End();
// Update
// param: dt, millisecond
virtual void Update(float dt);
// Get game id
virtual EnGameID GetGameID();
// Button event
virtual void OnButtonEvent(const SEventContextButton* pButtonEvent);
// Save data
virtual bool SaveData(bool bForceFlag);
public:
// Import context
void ImportContext(const SEventContextGameStart* pGameStart);
// Get brick state
bool GetBrickState(int nBrickID);
// Get small brick state
bool GetSmallBrickState(int nBrickID);
// Update brick state
// bUpdateFlag: if true, update immediately
void UpdateBrickState(int nBrickID, bool bState, bool bUpdateFlag = false);
// Update small brick state
// bUpdateFlag: if true, update immediately
void UpdateSmallBrickState(int nBrickID, bool bState, bool bUpdateFlag = false);
// Update all brick state
void UpdateAllBrickState();
// Update all small brick state
void UpdateAllSmallBrickState();
// Random: [nLow, nHigh)
int Random(int nLow, int nHigh);
// Update game data
void UpdateGameData(int nGameID = GAMEID_MAX);
// Update current score and max score
void AddScore(int nAddScore);
// Update speed (and level)
void UpdateSpeed(bool bUpdateFlag);
// Update small bricks with life
void InitSmallBricks();
// Add score in pass stage
void AddScoreInPassStage(float dt, int nAddScore);
// Update boom state
void UpdateBoomAnim(float dt, bool& bUpdateFlag);
// Init boom anim
void GameOverWithBoomAnim(const POSITION& stPos);
// Draw boom
bool DrawBoom();
// Get next position
// If the next pos is invalid, return false
bool GetNextPos(POSITION& stPos, int nDir);
// Play sound
void PlayEffect(const char* szSound);
// Play BGM
void PlayBGM(bool bPlayFlag = true, bool bLoopFlag = true);
// Vibrate
void Vibrate(bool bShortFlag = false);
// Switch to the over game
void SwitchToOverGame();
protected:
// Brick state
bool m_arrBrickState[ROW_COUNT * COLUMN_COUNT];
// Small brick state
bool m_arrSmallBrickState[SMALL_BRICK_COUNT];
// Waiting for updated bricks
TMap_BrickState m_mapUpdateBricks;
// Waiting for updated small bricks
TMap_BrickState m_mapUpdateSmallBricks;
// Current game stage
EnGameStage m_enGameStage;
// Boom anim data
TBoomAnimData m_stBoomAnimData;
// Add score data
TPassAddScoreData m_stAddScoreData;
// Current level
int m_nLevel;
// Current speed
int m_nSpeed;
// Current score
int m_nCurScore;
// Life
int m_nLife;
};