-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
91 lines (78 loc) · 1.7 KB
/
main.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
#include "main.h"
Player player;
Player* playerPointer = &player;
Map stages(0) ;
map<int, Bubble> bubbles;
vector<Monster> monsters;
vector<Explosion> explosions;
vector<Item> items;
Scoreboard board;
Input input;
int bubble_total_num=0;
int level;
bool clear;
bool gameover = false;
bool gamestart = false;
bool restarted = false;
bool win = false;
bool displayHelp = false;
bool displayLeaderboard = false;
bool dataClearedForMoving = false;
bool keystates[6];
vector<Audio> audio;
Idle idleFunc;
Display displayFunc;
clock_t startTime = clock();
clock_t lastBubbleCreationTime = clock();
clock_t lastItemCreationTime = clock();
clock_t lastClearTime = clock();
Texture gmover(_MAP, _GAMEOVER);
Texture title(_MAP, _TITLE);
Texture gmwin(_MAP, _GAMEWIN);
void initialize(bool restarted)
{
level = 0;
player = Player(5);
clear = false;
win = false;
gamestart = false;
if (!restarted) {
gmover.initTexture();
title.initTexture();
gmwin.initTexture();
for (int i = 0; i < 8; i++) {
audio.push_back(Audio(i));
}
audio[3].PlayBGM1();
}
stages = Map(level);
board = Scoreboard();
audio[3].setCounter();
audio[4].setCounter();
}
void idle()
{
idleFunc.operate();
}
void display()
{
displayFunc.operate();
}
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA | GLUT_DEPTH);
glutInitWindowPosition(WINDOW_X, WINDOW_Y);
glutInitWindowSize(WINDOW_WIDTH, WINDOW_HEIGHT);
glutCreateWindow("Bubble Bobble");
initialize(false);
glutDisplayFunc(display);
glutKeyboardFunc(keyDown);
glutKeyboardUpFunc(keyUp);
glutIgnoreKeyRepeat(1);
glutSpecialFunc(specialKeyDown);
glutSpecialUpFunc(specialKeyUp);
glutIdleFunc(idle);
glutMainLoop();
return 0;
}