-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.c
218 lines (186 loc) · 4.69 KB
/
main.c
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// only external dependency
#include <raylib.h>
// headers
#include "src/r_types.h"
#include "src/logic.h"
// unity build
#include "src/animation.c"
#include "src/resources.c"
#include "src/stateTitle.c"
#include "src/stateOptions.c"
#include "src/stateLevel.c"
#include "src/stateCore.c"
// uncomment the below line to compile for web
//#define PLATFORM_WEB
#if defined(PLATFORM_WEB)
#include <emscripten/emscripten.h>
#endif
// --- Program entry point
int main(void)
{
// Initialization------>
const u16 screenWidth = GAME_SCREEN_WIDTH;
const u16 screenHeight = GAME_SCREEN_HEIGHT;
//removed raylib output unless there's a warning -- h/t skytrias!
SetTraceLogLevel(LOG_WARNING);
//init window - must come before texture, loading calls (OpenGL context required)
InitWindow(screenWidth, screenHeight, GAME_NAME);
//set window icon
Image icon = LoadImage("Resources/icon/windowicon.png");
SetWindowIcon(icon);
//this should only reset on new game or if called directly
modifyTile(&xAnim, 0.0f, 0.0f, 140.0f, 250.0f, 64.0f, 64.0f, 192.0f, 192.0f);
// Initialize audio device (required for sound)
InitAudioDevice();
//load resources--->
fxBullet = LoadSound(soundBullet);
fxDraw = LoadSound(soundDraw);
fxError = LoadSound(soundError);
fxInitial = LoadSound(soundInitial);
fxLose = LoadSound(soundLose);
fxLoseWdl = LoadSound(soundLoseWdl);
fxOrgan = LoadSound(soundOrgan);
fxShoot = LoadSound(soundShoot);
fxWin = LoadSound(soundWin);
fxToggle = LoadSound(soundToggle);
charTexture = LoadTexture(charTexturePath); //128/4 x 256/8
tileTexture = LoadTexture(tileTexturePath);
enemy1IdleTexture = LoadTexture(enemy1IdleTexturePath);
xAnimationTexture = LoadTexture(xAnimationTexturePath);
bulletTexture = LoadTexture(bulletTexturePath);
alagard = LoadFont(fontAlagard);
//-->end resource load
// Default difficulty is Normal unless set otherwise
ENEMY_DIFFICULTY = DIFF_NORMAL;
//set the starting state
currentState = TITLE;
//High Score
bestScore = LoadStorageValue(STORAGE_POSITION_HISCORE);
bestTime = LoadStorageValue(STORAGE_POSITION_BESTSPEED);
//Set game to run at 60 frames-per-second
SetTargetFPS(FPS);
//---> end initialization------
// Main game loop
#if defined(PLATFORM_WEB)
// Web, Obvs
emscripten_set_main_loop(UpdateDrawFrame, 0, 1);
#else
// Win/Linux/MacOS
while (!WindowShouldClose()) // Detect window close button or ESC key
{
UpdateDrawFrame();
}
#endif
// De-Initialization
// Unload Resources
UnloadImage(icon);
UnloadTexture(charTexture);
UnloadTexture(tileTexture);
UnloadTexture(enemy1IdleTexture);
UnloadTexture(xAnimationTexture);
UnloadTexture(bulletTexture);
UnloadSound(fxInitial);
UnloadSound(fxDraw);
UnloadSound(fxShoot);
UnloadSound(fxLose);
UnloadSound(fxOrgan);
UnloadSound(fxLoseWdl);
UnloadSound(fxError);
UnloadSound(fxBullet);
UnloadSound(fxWin);
UnloadFont(alagard);
// Close audio
CloseAudioDevice();
// Close window and OpenGL context
CloseWindow();
return 0;
}
void UpdateDrawFrame(void)
{
//Update---------------->
switch(currentState)
{
case TITLE:
{
updateTitleScreen();
if(titleScreenFinished() == 1) //1 = options
{
arrowPosX = 250; //set arrow to 'back' on options screen
arrowPosY = 200; // ""
currentState = OPTIONS;
}
if(titleScreenFinished() == 2) //2 = next screen
{
choice = 0; //resets titleScreenFinished()
initLevel(); //function in stateTitle.c: resets variables from logic.h
currentState = LEVEL;
}
}break;
case OPTIONS:
{
updateOptionsScreen();
if(titleScreenFinished() == 0)
{
currentState = TITLE;
}
}break;
case LEVEL:
{
if (earlystatus == warning)
{
initLevel();
earlystatus = restart;
}
if (bRestart)
{
initLevel();
bRestart = false;
}
updateLevelScreen();
if (levelScreenFinished() == 1)
{
nextScreen = 0; //resets levelScreenFinished()
initCore();
currentState = CORE;
}
}break;
case CORE:
{
updateCore();
if(finishCore() == 1)
{
finishstate = 0;
currentState = TITLE;
}
}break;
default: break;
}//switch
//------------->Update
//Draw---------->
BeginDrawing();
//required
ClearBackground(BLACK);
switch(currentState)
{
case TITLE:
{
drawTitleScreen();
}break;
case OPTIONS:
{
drawOptionsScreen();
}break;
case LEVEL:
{
drawLevelScreen();
}break;
case CORE:
{
drawCoreScreen();
}break;
default: break;
}
//EndDrawing() (Required)
EndDrawing();
//-------------->Draw
} //-->UpdateDrawFrame