-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbattle_sequence.cpp
executable file
·365 lines (306 loc) · 12.1 KB
/
battle_sequence.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
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
#include <string.h>
#include <stdio.h>
#include "battle_sequence.h"
#include "platform_data.h"
//------------------//
// VARIABLES //
//------------------//
struct platform_data level1[] =
{ { 504, 568, 985 }, { 464, 513, 333 }, { 428, 497, 531 }, { 178, 241, 875 },
{ 8, 37, 187 },
{ 302, 351, 271 },
{ 434, 521, 835 },
{ 60, 127, 1045 },
{ 499, 586, 1165 } };
struct platform_data level2[] =
{
{ 552, 615, 513 },
{ 201, 259, 175 },
{ 546, 599, 327 },
{ 660, 697, 447 },
{ 350, 435, 621 },
{ 468, 525, 915 },
{ 596, 697, 1141 },
{ 21, 92, 1087 } };
struct platform_data level3[] =
{ { 565, 616, 459 },
{ 14, 65, 111 },
{ 343, 398, 207 },
{ 713, 760, 231 },
{ 473, 540, 617 },
{ 316, 385, 805 },
{ 492, 548, 987 },
{ 66, 145, 1180 },
{ 38, 93, 1121 } };
// init currentlevel with level
BattleSequence::BattleSequence(GameSequence *previous,int nbviews, int nbplayers, int level, int s_width, int s_height)
: GameSequence(previous),moon_physics(0.07,0.984,0.99,0.6,0.6,0.6,0.6,0.2)
#ifdef __NET_SUPPORT__
, gameclient(3000,"localhost"), gameserver(3000)
#endif
{
screen_width = s_width;
screen_height = s_height;
nb_views = nbviews;
nb_players = nbplayers;
currentlevel=&levels[level];
//
InitLevelData();
InitMappingAndControls();
InitAllSpriteGfx();
InitSoundFx();
InitPlayerInfo();
InitPlayerViews();
// TODO ASSERT?
load_level(currentlevel, screen_width, screen_height);
}
BattleSequence::~BattleSequence()
{
clean_sprite_buffer_screen();
// stop sound
cleanup_soundfx(&sounds[0]);
cleanup_soundfx(&sounds[1]);
if(nb_views>=3)
cleanup_soundfx(&sounds[2]);
if(nb_views>=4)
cleanup_soundfx(&sounds[3]);
int i;
for(i=0;i<nb_views;i++) // cleanup buffers for each player ship
clean_player_view(&views[i]);
for(i=0;i<nb_players;i++) // cleanup buffers for each player ship
clean_vaisseau_data(&vaisseaux[i]);
for(i=0;i<NB_MAX_TYPE_VAISSEAU;i++) // cleanup the buffers for each ship type
cleanup_vaisseau_gfx(&gfx_vaisseaux[i]);
cleanup_sprite_explosion();
unload_option(opt);
unload_level(currentlevel);
}
void BattleSequence::InitLevelData()
{
init_level_data(&levels[0],"Mayhem_Level1_Map_256c.bmp", "Mini_map1.bmp", level1,10);
// x y area delay
init_level_dca(&(&levels[0])->alldca[0], 766, 85, 150, 25);
init_level_dca(&(&levels[0])->alldca[1], 170, 481, 90, 25);
init_level_data(&levels[1],"Mayhem_Level2_Map_256c.bmp", "Mini_map2.bmp", level2,8);
init_level_dca(&(&levels[1])->alldca[0], 647, 273, 150, 25);
init_level_dca(&(&levels[1])->alldca[1], 267, 947, 90, 25);
init_level_data(&levels[2],"Mayhem_Level3_Map_256c.bmp", "Mini_map3.bmp", level3,9);
init_level_dca(&(&levels[2])->alldca[0], 180, 555, 90, 25);
init_level_dca(&(&levels[2])->alldca[1], 152, 1012, 90, 25);
}
void BattleSequence::InitMappingAndControls()
{
// init command
// Here we have to pad the right keys
init_mapping_key(&keyvaisseau[1],&commands[1],KEY_LEFT,KEY_RIGHT,KEY_DEL_PAD,KEY_0_PAD,KEY_ENTER_PAD);
init_mapping_key(&keyvaisseau[0],&commands[0],KEY_Z,KEY_X,KEY_V,KEY_C,KEY_G);
if(nb_views>=3)
init_mapping_key(&keyvaisseau[2],&commands[2],KEY_B,KEY_N,KEY_COMMA,KEY_M,KEY_L);
if(nb_views>=4)
init_mapping_key(&keyvaisseau[3],&commands[3],KEY_Y,KEY_U,KEY_O,KEY_I,KEY_0);
commands[0].controlled_ship=&vaisseaux[0];
commands[1].controlled_ship=&vaisseaux[1];
if(nb_views>=3)
commands[2].controlled_ship=&vaisseaux[2];
if(nb_views>=4)
commands[3].controlled_ship=&vaisseaux[3];
}
void BattleSequence::InitAllSpriteGfx()
{
// init the gfx for the first vaisseau type
init_vaisseau_gfx_from_file(&gfx_vaisseaux[0],"ship1_256c.bmp",
"ship1_thrust_256c.bmp",
"ship1_shield_256c.bmp");
init_vaisseau_gfx_from_file(&gfx_vaisseaux[1],"ship2_256c.bmp",
"ship2_thrust_256c.bmp",
"ship2_shield_256c.bmp");
init_vaisseau_gfx_from_file(&gfx_vaisseaux[2],"ship3_256c.bmp",
"ship3_thrust_256c.bmp",
"ship3_shield_256c.bmp");
init_vaisseau_gfx_from_file(&gfx_vaisseaux[3],"ship4_256c.bmp",
"ship4_thrust_256c.bmp",
"ship4_shield_256c.bmp");
init_sprite_explosion("sprite_explosion.bmp");
for(int i=0;i<nb_players;i++)
init_vaisseau_data(&vaisseaux[i],&gfx_vaisseaux[i],0.9,0.32,5,1284,1,8,214,2,2);
// time active, inactive
init_option_data(opt, "Option.bmp", 500, 50);
}
void BattleSequence::InitPlayerInfo()
{
// init player info
char *defplayername[] = { "Player 1" , "Player 2" , "Player 3" , "Player 4" };
for(int i=0;i<nb_players;i++)
{
init_player_info(&players[i],defplayername[i],20,&vaisseaux[i]);
init_ship_pos_from_platforms(&vaisseaux[i],&(currentlevel->platformdata[i]));
}
}
void BattleSequence::InitPlayerViews()
{
if (nb_views == 1)
{
init_player_view(&views[0],90,100,300,260,&players[0]);
}
else if (nb_views == 2)
{
init_player_view(&views[0], screen_width*(90.0/800.0) , screen_height*(100.0/600.0), screen_width*(300.0/800.0), screen_height*(260.0/600.0),&players[0]);
init_player_view(&views[1], screen_width*(410.0/800.0) , screen_height*(100.0/600.0) ,screen_width*(300.0/800.0), screen_height*(260.0/600.0),&players[1]);
}
else if (nb_views == 3)
{
init_player_view(&views[0], screen_width*(90/800.0), screen_height*(40/600.0),screen_width*(300.0/800.0),screen_height*(260.0/600.0),&players[0]);
init_player_view(&views[1], screen_width*(410/800.0) ,screen_height*(40/600.0),screen_width*(300.0/800.0),screen_height*(260.0/600.0),&players[1]);
init_player_view(&views[2], screen_width*(40/800.0) , screen_height*(310/600.0),screen_width*(300.0/800.0),screen_height*(260.0/600.0),&players[2]);
}
else if (nb_views == 4)
{
init_player_view(&views[0], screen_width*(90/800.0), screen_height*(40/600.0),screen_width*(300.0/800.0),screen_height*(260.0/600.0),&players[0]);
init_player_view(&views[1], screen_width*(410/800.0) ,screen_height*(40/600.0),screen_width*(300.0/800.0),screen_height*(260.0/600.0),&players[1]);
init_player_view(&views[2], screen_width*(40/800.0), screen_height*(310/600.0),screen_width*(300.0/800.0),screen_height*(260.0/600.0),&players[2]);
init_player_view(&views[3], screen_width*(460/800.0), screen_height*(310/600.0),screen_width*(300.0/800.0),screen_height*(260.0/600.0),&players[3]);
}
}
void BattleSequence::InitSoundFx()
{
init_soundfx_from_wavfile(&sounds[0],"sfx_loop_thrust.WAV","sfx_loop_shield.WAV","sfx_loop_refuel.WAV","sfx_shoot.WAV","sfx_boom.WAV","sfx_rebound.WAV");
init_soundfx_from_wavfile(&sounds[1],"sfx_loop_thrust.WAV","sfx_loop_shield.WAV","sfx_loop_refuel.WAV","sfx_shoot.WAV","sfx_boom.WAV","sfx_rebound.WAV");
if (nb_views >= 3)
init_soundfx_from_wavfile(&sounds[2],"sfx_loop_thrust.WAV","sfx_loop_shield.WAV","sfx_loop_refuel.WAV","sfx_shoot.WAV","sfx_boom.WAV","sfx_rebound.WAV");
if (nb_views >= 4)
init_soundfx_from_wavfile(&sounds[3],"sfx_loop_thrust.WAV","sfx_loop_shield.WAV","sfx_loop_refuel.WAV","sfx_shoot.WAV","sfx_boom.WAV","sfx_rebound.WAV");
create_sprite_buffer_screen();
}
GameSequence* BattleSequence::doRun()
{
int i; // for everythign counter
#ifdef CHECKFPS
int check_fps=0;
int retrace_count_init=retrace_count;
#endif
bool isRunning=true;
InterruptTimer::start();
while(isRunning)
{
while(InterruptTimer::wasTriggered()) {
// quick hack for level change
if (key[KEY_1])
{
unload_level(currentlevel);
currentlevel=&levels[0];
load_level(currentlevel, screen_width, screen_height);
for(i=0;i<nb_players;i++)
init_ship_pos_from_platforms(&vaisseaux[i],&(currentlevel->platformdata[i]));
}
else if (key[KEY_2])
{
unload_level(currentlevel);
currentlevel=&levels[1];
load_level(currentlevel, screen_width, screen_height);
for(i=0;i<nb_players;i++)
init_ship_pos_from_platforms(&vaisseaux[i],&(currentlevel->platformdata[i]));
}
else if (key[KEY_3])
{
unload_level(currentlevel);
currentlevel=&levels[2];
load_level(currentlevel, screen_width, screen_height);
for(i=0;i<nb_players;i++)
init_ship_pos_from_platforms(&vaisseaux[i],&(currentlevel->platformdata[i]));
}
else if(key[KEY_ESC])
{
isRunning=false;
break;
}
get_input_clavier(nb_views,keyvaisseau); // Clavier (only one... the other comes from .net)
#ifdef __NETSUPPORT__
struct command *cmdptr=keyvaisseau[0].cmd;
if (memcmp(&netpadcmd,cmdptr,sizeof(struct command)))
{
static int count=0;
static int miss=0;
char bf[20];
sprintf(bf,"net send:%d",count++);
textout(screen,font,bf,700,50,makecol(255,255,255));
if (!gameclient.send(keyvaisseau[0].cmd))
{
sprintf(bf,"send miss:%d",miss++);
textout(screen,font,bf,700,60,makecol(255,255,255));
}
}
if (gameserver.recv(netpadcmd))
{
static int count=0;
char bf[20];
sprintf(bf,"net recv:%d",count++);
textout(screen,font,bf,700,80,makecol(255,255,255));
netpadcmd.controlled_ship=&vaisseaux[0];
}
handle_command(&netpadcmd);
#else
if(!vaisseaux[0].explode)
handle_command(keyvaisseau[0].cmd);
#endif
if(!vaisseaux[1].explode)
handle_command(keyvaisseau[1].cmd);
if(nb_views>=3)
if(!vaisseaux[2].explode)
handle_command(keyvaisseau[2].cmd);
if(nb_views>=4)
if(!vaisseaux[3].explode)
handle_command(keyvaisseau[3].cmd);
calcul_pos(moon_physics,nb_players,vaisseaux,currentlevel->platformdata,currentlevel->nbplatforms); // Position
fuel_shield_calcul(nb_players,vaisseaux);
// sound both player
play_soundfx_from_shipdata(&sounds[0],&vaisseaux[0]);
play_soundfx_from_shipdata(&sounds[1],&vaisseaux[1]);
if(nb_views>=3)
play_soundfx_from_shipdata(&sounds[2],&vaisseaux[2]);
if(nb_views>=4)
play_soundfx_from_shipdata(&sounds[3],&vaisseaux[3]);
draw_basic_player_view(views, nb_views, currentlevel->bitmap, currentlevel->colormap);
// first we rotate the sprite then display the shooting
for(i=0;i<nb_players;i++)
rotate_sprite(&views[i]);
mega_collision_test(players, views, vaisseaux, currentlevel, nb_views, nb_players);
gestion_option(opt, currentlevel,vaisseaux, views, nb_players,nb_views);
for(i=0;i<nb_players;i++)
gestion_tir(&vaisseaux[i], views, nb_views,currentlevel->bitmap);
if(USE_DCA!=0) {
for(i=0;i<nb_players;i++)
gestion_dca(¤tlevel->alldca[0], &vaisseaux[i], views, nb_views, currentlevel->bitmap);
}
draw_explosion(players, views, currentlevel->platformdata, nb_players, nb_views);
draw_debris(players, views, moon_physics, nb_players, nb_views, currentlevel->bitmap);
gestion_minimap(vaisseaux, currentlevel, nb_players, screen_width, screen_height);
if(currentlevel==&levels[0])
warp_zone(vaisseaux, nb_players);
for(i=0;i<nb_players;i++)
display_rotate_sprite_in_all_view(&views[i],views,nb_views);
// back_map_buffer dans screen
for(i=0;i<nb_views;i++)
{
struct player_view* v = &views[i];
blit(v->back_map_buffer, screen, 0, 0, v->x, v->y, v->w+2*v->bordersize, v->h+2*v->bordersize);
}
#ifdef CHECKFPS
check_fps++;
if (check_fps == 100)
{
char fps[10];
sprintf(fps,"fps=%.1f",check_fps*70.0/(retrace_count-retrace_count_init));
textout(screen,font,fps,5,5,makecol(200,200,200));
char reso[10];
sprintf(reso, "%ix%i", screen_width, screen_height);
textout(screen,font, reso ,5,17,makecol(200,200,200));
check_fps=0;
retrace_count_init=retrace_count;
}
#endif
vsync(); // wait the raster
} // eof while(InterruptTimer())
} // eof while (isRunning)
InterruptTimer::reset();
return ReturnScreen();
}