forked from lfeng1420/BrickGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatchGame.cpp
252 lines (205 loc) · 5.42 KB
/
MatchGame.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
#include "stdafx.h"
#include "MatchGame.h"
static const int SHAPE_ROW_COUNT = 2;
static const int SHAPE_COL_COUNT = 2;
static const bool MATCH_SHAPE[][SHAPE_ROW_COUNT * SHAPE_COL_COUNT] =
{
{ false, false, true, false, },
{ true, false, true, false, },
{ true, false, true, true, },
{ true, true, true, true, },
};
void CMatchGame::Start()
{
CGameBase::Start();
// Initialize shapes
__InitSrcDestShapes();
// Initialize match succ count
m_nMatchSuccCount = 0;
// Update now
__UpdateAllBricksState();
}
void CMatchGame::Update(float dt)
{
bool bUpdateFlag = false;
switch (m_enGameStage)
{
case STAGE_FAIL:
UpdateBoomAnim(dt, bUpdateFlag);
break;
case STAGE_PASS:
{
// loop add score util the count is arrived
AddScoreInPassStage(dt, SHAPE_MATCH_ADD_SCORE);
return;
}
break;
case STAGE_NORMAL:
{
bUpdateFlag = __UpdateShapes(dt);
}
break;
default:
return;
break;
}
if (bUpdateFlag)
{
__UpdateAllBricksState();
}
}
EnGameID CMatchGame::GetGameID()
{
return GAMEID_MATCH;
}
void CMatchGame::OnButtonEvent(const SEventContextButton* pButtonEvent)
{
if (m_enGameStage != STAGE_NORMAL
|| !pButtonEvent->bPressedFlag)
{
return;
}
if (pButtonEvent->nButtonID == BTNID_FIRE)
{
// Ready match
m_stSrcShape.nInterval = 0;
return;
}
if (pButtonEvent->nButtonID < BTNID_DIRMAX)
{
const int BTNID_2_SHAPEIDX[] = {2, SHAPE_COUNT_MAX, 0, 1};
int nShapeIdx = BTNID_2_SHAPEIDX[pButtonEvent->nButtonID];
if (nShapeIdx < 0 || nShapeIdx >= SHAPE_COUNT_MAX)
{
return;
}
int& nShapeID = m_stSrcShape.arrShapeID[nShapeIdx];
if (++nShapeID >= _countof(MATCH_SHAPE))
{
nShapeID = 0;
}
__UpdateShapes(__GetShapeMoveInterval(false) - m_stSrcShape.nInterval);
__UpdateAllBricksState();
}
}
void CMatchGame::__InitSrcDestShapes()
{
// Init dest shape data
m_stDestShape.nRowIdx = 0;
m_stDestShape.nInterval = 0;
__RandomShapes(m_stDestShape.arrShapeID);
// Init src shape data
m_stSrcShape.nRowIdx = ROW_COUNT - SHAPE_ROW_COUNT;
m_stSrcShape.nInterval = -1;
__RandomShapes(m_stSrcShape.arrShapeID);
}
void CMatchGame::__RandomShapes(int* arrShapes)
{
if (_countof(MATCH_SHAPE) < SHAPE_COUNT_MAX)
{
return;
}
vector<int> vecShapes;
for (int nIndex = 0; nIndex < _countof(MATCH_SHAPE); ++nIndex)
{
vecShapes.push_back(nIndex);
}
std::random_shuffle(vecShapes.begin(), vecShapes.end());
for (int nIndex = 0; nIndex < SHAPE_COUNT_MAX; ++nIndex)
{
arrShapes[nIndex] = vecShapes[nIndex];
}
}
void CMatchGame::__UpdateAllBricksState()
{
for (int nBrickID = 0; nBrickID < ROW_COUNT * COLUMN_COUNT; ++nBrickID)
{
UpdateBrickState(nBrickID, false);
}
// Draw shapes
int nSepBrickCount = (COLUMN_COUNT - SHAPE_COUNT_MAX * SHAPE_COL_COUNT) / (SHAPE_COUNT_MAX + 1);
for (int nIndex = 0; nIndex < SHAPE_COUNT_MAX; ++nIndex)
{
int nSrcShapeID = m_stSrcShape.arrShapeID[nIndex];
int nDestShapeID = m_stDestShape.arrShapeID[nIndex];
int nColIdx = SHAPE_COL_COUNT * nIndex + (nIndex + 1) * nSepBrickCount;
for (int nBrickID = 0; nBrickID < SHAPE_ROW_COUNT * SHAPE_COL_COUNT; ++nBrickID)
{
int nRowOffset = nBrickID / SHAPE_COL_COUNT;
int nColOffset = nBrickID % SHAPE_COL_COUNT;
UpdateBrickState(GET_BRICKID(m_stSrcShape.nRowIdx + nRowOffset, nColIdx + nColOffset), MATCH_SHAPE[nSrcShapeID][nBrickID]);
UpdateBrickState(GET_BRICKID(m_stDestShape.nRowIdx + nRowOffset, nColIdx + nColOffset), MATCH_SHAPE[nDestShapeID][nBrickID]);
}
}
// Draw boom
DrawBoom();
// Update immediately
UpdateBrickState(0, GetBrickState(0), true);
}
bool CMatchGame::__UpdateShapes(float dt, bool bSelfOnlyFlag /*= false*/)
{
bool bUpdateFlag = false;
if (m_stSrcShape.nInterval >= 0)
{
bUpdateFlag = true;
m_stSrcShape.nInterval += dt;
if (m_stSrcShape.nInterval >= __GetShapeMoveInterval(false))
{
m_stSrcShape.nInterval = 0;
if (--m_stSrcShape.nRowIdx <= m_stDestShape.nRowIdx)
{
__HandleMatchResult();
}
}
}
if (!bSelfOnlyFlag)
{
m_stDestShape.nInterval += dt;
if (m_stDestShape.nInterval >= __GetShapeMoveInterval(true))
{
bUpdateFlag = true;
m_stDestShape.nInterval = 0;
if (++m_stDestShape.nRowIdx > (ROW_COUNT - SHAPE_ROW_COUNT * 2))
{
__HandleMatchResult();
}
}
}
return bUpdateFlag;
}
int CMatchGame::__GetShapeMoveInterval(bool bDestShapeFlag)
{
return (bDestShapeFlag ? (DEST_SHAPE_MOVE_INTERVAL - 70 * m_nSpeed) : SRC_SHAPE_MOVE_INTERVAL);
}
int CMatchGame::__GetDismatchShapeIdx()
{
for (int nIndex = 0; nIndex < SHAPE_COUNT_MAX; ++nIndex)
{
if (m_stDestShape.arrShapeID[nIndex] != m_stSrcShape.arrShapeID[nIndex])
{
return nIndex;
}
}
return SHAPE_COUNT_MAX;
}
void CMatchGame::__HandleMatchResult()
{
int nDisMatchIdx = __GetDismatchShapeIdx();
if (nDisMatchIdx != SHAPE_COUNT_MAX)
{
int nSepBrickCount = (COLUMN_COUNT - SHAPE_COUNT_MAX * SHAPE_COL_COUNT) / (SHAPE_COUNT_MAX + 1);
POSITION stPos = { m_stDestShape.nRowIdx, SHAPE_COL_COUNT * nDisMatchIdx + (nDisMatchIdx + 1) * nSepBrickCount };
GameOverWithBoomAnim(stPos);
return;
}
// Add score
AddScore(SHAPE_MATCH_ADD_SCORE);
// Start next match
__InitSrcDestShapes();
// Add match succ count
if (++m_nMatchSuccCount >= REQUIRE_MATCH_SUCC_COUNT)
{
m_enGameStage = STAGE_PASS;
return;
}
}