forked from lfeng1420/BrickGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameManager.h
56 lines (40 loc) · 1.16 KB
/
GameManager.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
#pragma once
#include "IEventHandler.h"
class CGameBase;
class CGameManager : public IEventHandler
{
public:
CGameManager();
~CGameManager();
// Create
bool Create();
// on trigger event
void OnEvent(int nEventID, const char* pContext, int nLen);
// On vote
bool OnVote(int nEventID, char* pContext, int nLen);
private:
// Start game
void __OnGameStart(const char* pContext, int nLen);
// Frame update
void __OnFrameUpdate(const char* pContext, int nLen);
// Get game object by game id
CGameBase* __GetGameObj(int nGameID);
// Relase all game objects
void __ReleaseAllGameObj();
// Button event
void __OnButtonEvent(const char* pContext, int nLen);
// Vote button event
bool __OnVoteButton(char* pContext, int nLen);
// Vote play BGM
bool __OnVotePlayBGM(char* pContext, int nLen);
// Vote save data event
bool __OnVoteSaveData(char* pContext, int nLen);
private:
typedef map<int, CGameBase*> TMap_GameObj;
typedef TMap_GameObj::iterator TMap_GameObjIter;
private:
// Game object map
TMap_GameObj m_mapGameObj;
// Current running game object
CGameBase* m_pCurGameObj;
};