-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbattle_sequence.h
executable file
·74 lines (62 loc) · 1.96 KB
/
battle_sequence.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
#include "game_mgr.h"
#include "collision.h"
#include "physics.h"
#include "platform_data.h"
#include "player_info.h"
#include "player_view.h"
#include "utils.h"
#include "vaisseau_data.h"
#include "vaisseau_gfx.h"
#include "mapping_key.h"
#include "keyboard_input.h"
#include "soundfx.h"
#include "command.h"
#include "option.h"
#ifdef __NETSUPPORT__
#define _TYPEDEFSOCKET_ 1
#define FD_SETSIZE 2
#include "netgame.h"
#endif
#define CHECKFPS 1
#define NB_MAX_VAISSEAU 4
#define NB_MAX_PLAYERS (NB_MAX_VAISSEAU)
#define NB_MAX_TYPE_VAISSEAU 4
#define NB_LEVELS 3
#define NB_OPTIONS 1
class BattleSequence : public GameSequence
{
public:
BattleSequence(GameSequence *previous,int nbviews, int nbplayers, int level, int s_width, int s_height);
~BattleSequence();
private:
void InitLevelData();
void InitMappingAndControls();
void InitAllSpriteGfx();
void InitPlayerInfo();
void InitPlayerViews();
void InitSoundFx();
private:
GameSequence* doRun();
private:
#ifdef __NET_SUPPORT__
netgameclient gameclient;
netgameserver gameserver;
#endif
int screen_width;
int screen_height;
int nb_views;
int nb_players;
struct vaisseau_data vaisseaux[NB_MAX_VAISSEAU];
struct mapping_key keyvaisseau[NB_MAX_VAISSEAU];
struct command commands[NB_MAX_VAISSEAU];
// for each player we will need one of this structure initialization is made just after
// allegro is actually started so that the bitmap can get created.
struct level_data levels[NB_LEVELS];
struct level_data * currentlevel;
struct player_info players[NB_MAX_PLAYERS];
struct player_view views[NB_MAX_PLAYERS];
struct vaisseau_gfx gfx_vaisseaux[NB_MAX_TYPE_VAISSEAU];
struct soundfx sounds[NB_MAX_PLAYERS];
struct option_data opt[NB_OPTIONS];
physics_constants moon_physics;
};