-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathgame.h
98 lines (86 loc) · 2.06 KB
/
game.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
#ifndef GISH_GAME_GAME_H
#define GISH_GAME_GAME_H
/*
Copyright (C) 2005, 2010 - Cryptic Sea
This file is part of Gish.
Gish is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
void gameloop(void);
void renderlevel(void);
void simulation(void);
void getinputs(void);
/* Key button alias.
* Used to pass button to object (objfunc.c).
* TODO: Finish replacing all magic numbers.
*/
typedef enum {
KEYALIAS_BUTTON_NONE = 0,
KEYALIAS_BUTTON_STICK = 1,
KEYALIAS_BUTTON_JUMP = 2,
KEYALIAS_BUTTON_SLIDE = 4,
KEYALIAS_BUTTON_HEAVY = 8
} keyalias_button;
typedef enum {
GAMEEXIT_NONE = 0,
GAMEEXIT_INGAMEMENU = 1,
GAMEEXIT_EXITGAME = 2,
GAMEEXIT_DIED = 3,
GAMEEXIT_WON = 4,
GAMEXIT_WARPZONE = 5
} gameexit;
typedef struct
{
float position[3];
float orientation[3][3];
float zoom;
int zoomx;
int zoomy;
} _view;
typedef struct
{
int pause;
int framenum;
int levelnum;
int bosslevel;
int dialog;
int dialogdelay;
int songnum;
int currentsongnum;
int time;
int score[4];
int combo;
int combodelay;
int totalscore;
int difficulty;
int bonus[16];
int numofbonus[16];
int scoredelay;
int startdelay;
int exitdelay;
int over;
int numoflives;
char text[256];
gameexit exit;
int oldschool;
int oldschoolsound;
int turbomode;
int supersize;
unsigned int simspeed;
int playreplay;
int editing;
int godmode;
int godparticle;
} _game;
extern _view view;
extern _game game;
#endif /* GISH_GAME_GAME_H */