[7034] | 1 | |
---|
| 2 | /*! |
---|
[7035] | 3 | * @file multiplayer_team_deathmatch.h |
---|
[7037] | 4 | * Defines game rules for team deathmatch games |
---|
| 5 | * |
---|
| 6 | * currently there are only two teams supported |
---|
[7034] | 7 | */ |
---|
| 8 | |
---|
| 9 | #ifndef _MULTIPLAYER_TEAM_DEATHMATCH_H |
---|
| 10 | #define _MULTIPLAYER_TEAM_DEATHMATCH_H |
---|
| 11 | |
---|
[8068] | 12 | #include "network_game_rules.h" |
---|
[7034] | 13 | |
---|
[8623] | 14 | #include "glgui.h" |
---|
[8708] | 15 | #include "specials/glgui_notifier.h" |
---|
[7034] | 16 | |
---|
| 17 | class TiXmlElement; |
---|
| 18 | class ObjectManager; |
---|
| 19 | class Player; |
---|
[7810] | 20 | class ImagePlane; |
---|
[7034] | 21 | |
---|
[8068] | 22 | enum |
---|
| 23 | { |
---|
| 24 | GAMESTATE_PRE_GAME = 0, |
---|
| 25 | GAMESTATE_GAME, |
---|
| 26 | GAMESTATE_POST_GAME |
---|
| 27 | }; |
---|
[7034] | 28 | |
---|
[8068] | 29 | |
---|
[8623] | 30 | class MultiplayerTeamDeathmatch : public NetworkGameRules, public EventListener |
---|
[7034] | 31 | { |
---|
| 32 | |
---|
| 33 | public: |
---|
[7035] | 34 | MultiplayerTeamDeathmatch(const TiXmlElement* root = NULL); |
---|
[7034] | 35 | virtual ~MultiplayerTeamDeathmatch(); |
---|
| 36 | |
---|
| 37 | virtual void loadParams(const TiXmlElement* root); |
---|
| 38 | |
---|
[8068] | 39 | virtual int getTeamForNewUser(); |
---|
[8147] | 40 | virtual ClassID getPlayableClassId( int userId, int team ); |
---|
| 41 | virtual std::string getPlayableModelFileName( int userId, int team, ClassID classId ); |
---|
[7034] | 42 | |
---|
[7044] | 43 | virtual void onPlayerSpawn(); |
---|
| 44 | virtual void onPlayerDeath(); |
---|
[7034] | 45 | |
---|
| 46 | |
---|
| 47 | virtual void tick(float dt); |
---|
| 48 | void draw(); |
---|
| 49 | |
---|
[7037] | 50 | inline void setDeathPenaltyTimeout(float time) { this->deathTimeout = time; } |
---|
| 51 | inline void setMaxKills(int kills) { this->maxKills = kills; } |
---|
[7221] | 52 | void setDeathScreen(const std::string& imageName); |
---|
[8068] | 53 | |
---|
| 54 | inline void setNumTeams( int numTeams ){ this->numTeams = numTeams; } |
---|
| 55 | inline int getNumTeams(){ return this->numTeams; } |
---|
| 56 | |
---|
| 57 | int getRandomTeam(); |
---|
[8623] | 58 | |
---|
| 59 | virtual void process(const Event &event); |
---|
| 60 | |
---|
| 61 | virtual void handleChatMessage( int userId, const std::string & message, int messageType ); |
---|
[7034] | 62 | |
---|
| 63 | protected: |
---|
[7035] | 64 | virtual void checkGameRules(); |
---|
[7037] | 65 | |
---|
| 66 | private: |
---|
| 67 | bool bLocalPlayerDead; //!< true if the local player is dead |
---|
| 68 | float deathTimeout; //!< timeout a player cannot play if he/she dies |
---|
[7039] | 69 | float timeout; //!< time counted if player dead |
---|
[7037] | 70 | int maxKills; //!< max kills for winning condition |
---|
| 71 | |
---|
[8068] | 72 | int numTeams; //!< number of teams |
---|
[7039] | 73 | |
---|
[8068] | 74 | std::map<int,int> teamScore; //!< team score |
---|
| 75 | |
---|
| 76 | ImagePlane* deathScreen; //!< the death screen |
---|
| 77 | |
---|
| 78 | int currentGameState; //!< game state |
---|
| 79 | float gameStateTimer; //!< if less than 0 -> change game state |
---|
| 80 | |
---|
[8623] | 81 | bool bShowTeamChange; //!< if true -> show team change dialog |
---|
| 82 | |
---|
[8147] | 83 | OrxGui::GLGuiBox* box; |
---|
[8623] | 84 | |
---|
[8708] | 85 | OrxGui::GLGuiNotifier* notifier; |
---|
| 86 | OrxGui::GLGuiInputLine* input; |
---|
| 87 | |
---|
[8068] | 88 | void calculateTeamScore(); |
---|
| 89 | void nextGameState(); |
---|
| 90 | void handleTeamChanges(); |
---|
| 91 | void teamChange( int userId ); |
---|
[8147] | 92 | void assignPlayable(); |
---|
| 93 | |
---|
| 94 | void onButtonSpectator(); |
---|
| 95 | void onButtonRandom(); |
---|
| 96 | void onButtonTeam0(); |
---|
| 97 | void onButtonTeam1(); |
---|
[8623] | 98 | void onButtonCancel(); |
---|
[8147] | 99 | void onButtonExit(); |
---|
[8708] | 100 | |
---|
| 101 | void onInputEnter( const std::string & text ); |
---|
[7034] | 102 | }; |
---|
| 103 | |
---|
| 104 | |
---|
| 105 | #endif /* _MULTIPLAYER_TEAM_DEATHMATCH_H */ |
---|