-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcGame.h
105 lines (86 loc) · 2.22 KB
/
cGame.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
// Copyright 2015 Kelvin Chandra, Software Laboratory Center, Binus University. All Rights Reserved.
#pragma once
#include "cSound.h"
#include "cAssetManager.h"
#include "cRect.h"
#include "cScene.h"
#define GAME_WIDTH 400
#define GAME_HEIGHT 480
class cGame
{
public:
~cGame(void);
cGame(void);
static cGame& getInstance()
{
static cGame instance;
return instance;
}
/**
Main loop to be called from GLUTMain, and use to call init update render method
*/
bool Loop();
/**
Read normal keyboard input such as [a...z]
*/
void ReadKeyboard(unsigned char key, int x, int y, bool press);
/**
Read special keyboard input such as ctrl
*/
void ReadSpecialKeyboard(unsigned char key, int x, int y, bool press);
/**
Read mouse input
*/
void ReadMouse(int button, int state, int x, int y);
/**
called once each new scene applied
*/
bool Init();
/**
Game main loop, in this engine the default frame rate is 30 fps
so we really need to modifiy the time per frame(tpf)
*/
bool Update(float tpf=0.0333);
/**
Reshape use to justify the viewport width and height to match the frame width height
so we can scretch the game view
*/
void Reshape(int w, int h);
/**
Game render output, use to render any sprite or text to screen
*/
void Render();
/*
render background BGID is the id of the loaded image
*/
void renderBackgroud(int BGID);
bool loadTexture(char * filepath, int identifier);
void loadImage(char * filepath, int BGID);
/**
Plan to change to the new scene after end of current update
At the end of the scene, RealUpdateScene function will be called to change active_scene to next_scene
*/
void UpdateScene(cScene *scene);
private:
cGame(cGame const&) = delete;
void operator=(cGame const&) = delete;
unsigned char keys[256];
bool bSceneValid = true;
bool bIsFirst = true;
/**
Current active scene that being use
*/
cScene *active_scene;
/**
Next scene that will be active after end of current Update
*/
cScene *next_scene;
/**
Default camera viewport to use on the ortographic camera
*/
cRect visible_area;
/**
Apply next scene to be the active scene
*/
void RealUpdateScene();
};