forked from lfeng1420/BrickGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameLogic.cpp
59 lines (45 loc) · 822 Bytes
/
GameLogic.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
#include "stdafx.h"
#include "GameLogic.h"
CGameLogic* CGameLogic::GetInstance()
{
// Singleton
static CGameLogic* s_pInstance = nullptr;
if (s_pInstance == nullptr)
{
s_pInstance = new CGameLogic();
if (!s_pInstance->Create())
{
delete s_pInstance;
s_pInstance = nullptr;
}
}
return s_pInstance;
}
bool CGameLogic::Create()
{
if (!m_oGameManager.Create())
{
return false;
}
if (!m_oDataManager.Create())
{
return false;
}
if (!m_oTimerManager.Create())
{
return false;
}
return true;
}
CGameManager* CGameLogic::GetGameManager()
{
return &m_oGameManager;
}
CDataManager* CGameLogic::GetDataManager()
{
return &m_oDataManager;
}
CTimerManager* CGameLogic::GetTimerManager()
{
return &m_oTimerManager;
}