forked from lfeng1420/BrickGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTetrisGameEx.h
67 lines (50 loc) · 1.24 KB
/
TetrisGameEx.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
#pragma once
#include "TetrisGame.h"
class CTetrisGameEx : public CTetrisGame
{
public:
// Start
void Start();
// Get shape count
int GetShapeCount();
// On tetris move finish
void OnTetrisMoveFinish();
// Get shape brick state
bool GetShapeBrickState(int nShapeID, int nRowIdx, int nColIdx);
// Check shape pos
bool CheckShapePos(const POSITION& stNextPos, int nShapeID);
// Button event
void OnButtonEvent(const SEventContextButton* pButtonEvent);
// Update other
void UpdateOther(float dt, bool& bUpdateFlag);
// Update valid brick state
void UpdateValidBricksState();
// Get game id
EnGameID GetGameID();
// Load tetris record
bool LoadTetrisData();
// Save tetris record
bool SaveTetrisData(bool bForceFlag = false);
private:
enum
{
SHAPE_FLASH_INTERVAL = 90,
SHAPEID_ADD_BRICK = 19,
SHAPEID_REMOVE_BRICK = 20,
SHAPEID_BOOM = 21,
SHAPEID_DOT = 22,
BOOM_REMOVE_ROW_COUNT = 2,
};
private:
// Get not full row index
int __GetCurFillBrickRowIdx();
// Get operate row index ( for add/remove shape)
int __GetOperateRowIdx();
// On boom shape move finish
void __OnBoomShapeMoveFinish(bool bClearBricksFlag = true);
private:
// Shape visible flag
bool m_bVisibleFlag;
// Interval
int m_nFlashInterval;
};