[7034] | 1 | /* |
---|
| 2 | orxonox - the future of 3D-vertical-scrollers |
---|
| 3 | |
---|
| 4 | Copyright (C) 2004 orx |
---|
| 5 | |
---|
| 6 | This program is free software; you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 9 | any later version. |
---|
| 10 | |
---|
| 11 | ### File Specific: |
---|
| 12 | main-programmer: Patrick Boenzli |
---|
| 13 | */ |
---|
| 14 | |
---|
| 15 | #define DEBUG_MODULE_GAME_RULES |
---|
| 16 | |
---|
[8068] | 17 | #include <map> |
---|
| 18 | |
---|
[7034] | 19 | #include "multiplayer_team_deathmatch.h" |
---|
| 20 | |
---|
[7193] | 21 | #include "util/loading/load_param.h" |
---|
| 22 | #include "util/loading/factory.h" |
---|
[7034] | 23 | |
---|
[7810] | 24 | #include "render2D/image_plane.h" |
---|
[7039] | 25 | #include "state.h" |
---|
[7101] | 26 | #include "class_list.h" |
---|
[7034] | 27 | |
---|
[7044] | 28 | #include "player.h" |
---|
| 29 | #include "playable.h" |
---|
[7101] | 30 | #include "space_ships/space_ship.h" |
---|
[7039] | 31 | |
---|
[7116] | 32 | |
---|
[7101] | 33 | #include "shared_network_data.h" |
---|
[7116] | 34 | #include "terrain.h" |
---|
| 35 | #include "class_list.h" |
---|
| 36 | #include "space_ships/space_ship.h" |
---|
[7044] | 37 | |
---|
[8068] | 38 | #include "network_game_manager.h" |
---|
[7101] | 39 | |
---|
[8147] | 40 | #include "event_handler.h" |
---|
[8068] | 41 | |
---|
[8147] | 42 | #include "glgui.h" |
---|
| 43 | |
---|
| 44 | #include "story_entity.h" |
---|
| 45 | |
---|
[8708] | 46 | #include "shell_command.h" |
---|
[8147] | 47 | |
---|
[8802] | 48 | #include "spawning_point.h" |
---|
[8708] | 49 | |
---|
[8802] | 50 | |
---|
[7034] | 51 | using namespace std; |
---|
| 52 | |
---|
| 53 | |
---|
[7035] | 54 | CREATE_FACTORY(MultiplayerTeamDeathmatch, CL_MULTIPLAYER_TEAM_DEATHMATCH); |
---|
| 55 | |
---|
| 56 | |
---|
[7034] | 57 | /** |
---|
| 58 | * constructor |
---|
| 59 | */ |
---|
[7035] | 60 | MultiplayerTeamDeathmatch::MultiplayerTeamDeathmatch(const TiXmlElement* root) |
---|
[8068] | 61 | : NetworkGameRules(root) |
---|
[7035] | 62 | { |
---|
| 63 | this->setClassID(CL_MULTIPLAYER_TEAM_DEATHMATCH, "MultiplayerTeamDeathmatch"); |
---|
[7034] | 64 | |
---|
[7037] | 65 | this->bLocalPlayerDead = false; |
---|
| 66 | this->deathTimeout = 10.0f; // 5 seconds |
---|
[7082] | 67 | this->timeout = 0.0f; |
---|
[8068] | 68 | this->numTeams = 2; |
---|
| 69 | this->currentGameState = GAMESTATE_PRE_GAME; |
---|
[9008] | 70 | this->gameStateTimer = 3.0f; |
---|
[8623] | 71 | this->bShowTeamChange = false; |
---|
[8717] | 72 | |
---|
[8147] | 73 | this->box = NULL; |
---|
[8802] | 74 | this->table = NULL; |
---|
| 75 | this->statsBox = NULL; |
---|
[7040] | 76 | |
---|
[7044] | 77 | this->localPlayer = State::getPlayer(); |
---|
| 78 | |
---|
[7035] | 79 | if( root != NULL) |
---|
| 80 | this->loadParams(root); |
---|
[8717] | 81 | |
---|
[8623] | 82 | subscribeEvent( ES_GAME, SDLK_o ); |
---|
[8708] | 83 | subscribeEvent( ES_GAME, SDLK_TAB ); |
---|
[8802] | 84 | subscribeEvent( ES_GAME, SDLK_F1 ); |
---|
| 85 | subscribeEvent( ES_MENU, KeyMapper::PEV_FIRE1 ); |
---|
[9008] | 86 | |
---|
[8708] | 87 | this->input = new OrxGui::GLGuiInputLine(); |
---|
| 88 | this->input->setAbsCoor2D(180, 5); |
---|
| 89 | this->input->connect(SIGNAL(input, enterPushed), this, SLOT(MultiplayerTeamDeathmatch, onInputEnter)); |
---|
[7035] | 90 | } |
---|
| 91 | |
---|
[7034] | 92 | /** |
---|
| 93 | * decontsructor |
---|
| 94 | */ |
---|
| 95 | MultiplayerTeamDeathmatch::~MultiplayerTeamDeathmatch() |
---|
[7044] | 96 | { |
---|
[8623] | 97 | unsubscribeEvent( ES_GAME, SDLK_o ); |
---|
[8708] | 98 | unsubscribeEvent( ES_GAME, SDLK_TAB ); |
---|
[8802] | 99 | unsubscribeEvent( ES_GAME, SDLK_F1 ); |
---|
| 100 | unsubscribeEvent( ES_MENU, KeyMapper::PEV_FIRE1 ); |
---|
[9008] | 101 | |
---|
[8708] | 102 | if ( this->input ) |
---|
| 103 | { |
---|
| 104 | delete this->input; |
---|
| 105 | this->input = NULL; |
---|
| 106 | } |
---|
[7044] | 107 | } |
---|
[7034] | 108 | |
---|
| 109 | |
---|
| 110 | |
---|
| 111 | void MultiplayerTeamDeathmatch::loadParams(const TiXmlElement* root) |
---|
[7035] | 112 | { |
---|
[7040] | 113 | GameRules::loadParams(root) ; |
---|
[7037] | 114 | |
---|
| 115 | LoadParam(root, "death-penalty-timeout", this, MultiplayerTeamDeathmatch, setDeathPenaltyTimeout) |
---|
| 116 | .describe("sets the time in seconds a player has to wait for respawn"); |
---|
| 117 | |
---|
| 118 | LoadParam(root, "max-kills", this, MultiplayerTeamDeathmatch, setMaxKills) |
---|
| 119 | .describe("sets the maximal kills for winning condition"); |
---|
[7039] | 120 | |
---|
[8068] | 121 | LoadParam(root, "num-teams", this, MultiplayerTeamDeathmatch, setNumTeams) |
---|
| 122 | .describe("sets number of teams"); |
---|
[7039] | 123 | |
---|
[7035] | 124 | } |
---|
| 125 | |
---|
| 126 | |
---|
| 127 | /** |
---|
| 128 | * time tick |
---|
| 129 | * @param dt time |
---|
| 130 | */ |
---|
| 131 | void MultiplayerTeamDeathmatch::tick(float dt) |
---|
[7037] | 132 | { |
---|
[8802] | 133 | tickStatsTable(); |
---|
[8147] | 134 | //on client side hostId is -1 until hanshake finished |
---|
| 135 | if ( SharedNetworkData::getInstance()->getHostID() < 0 ) |
---|
| 136 | return; |
---|
[8717] | 137 | |
---|
[8623] | 138 | if ( currentGameState == GAMESTATE_PRE_GAME || currentGameState == GAMESTATE_GAME ) |
---|
[8147] | 139 | { |
---|
| 140 | if ( PlayerStats::getStats( SharedNetworkData::getInstance()->getHostID() ) |
---|
| 141 | && box == NULL |
---|
[8717] | 142 | && (PlayerStats::getStats( SharedNetworkData::getInstance()->getHostID() )->getPreferedTeamId() == TEAM_NOTEAM |
---|
[8623] | 143 | || bShowTeamChange ) |
---|
[8717] | 144 | |
---|
[8147] | 145 | ) |
---|
| 146 | { |
---|
| 147 | EventHandler::getInstance()->pushState( ES_MENU ); |
---|
[8717] | 148 | |
---|
[8147] | 149 | OrxGui::GLGuiHandler::getInstance()->activateCursor(); |
---|
[8717] | 150 | |
---|
[8147] | 151 | box = new OrxGui::GLGuiBox(); |
---|
| 152 | box->setAbsCoor2D( 300, 100 ); |
---|
[8717] | 153 | |
---|
[8147] | 154 | OrxGui::GLGuiPushButton * buttonSpectator = new OrxGui::GLGuiPushButton("Spectator"); |
---|
| 155 | box->pack( buttonSpectator ); |
---|
| 156 | buttonSpectator->connect(SIGNAL(buttonSpectator, released), this, SLOT(MultiplayerTeamDeathmatch, onButtonSpectator)); |
---|
[8717] | 157 | |
---|
[8147] | 158 | OrxGui::GLGuiPushButton * buttonRandom = new OrxGui::GLGuiPushButton("Random"); |
---|
| 159 | box->pack( buttonRandom ); |
---|
| 160 | buttonRandom->connect(SIGNAL(buttonRandom, released), this, SLOT(MultiplayerTeamDeathmatch, onButtonRandom)); |
---|
[8717] | 161 | |
---|
[8147] | 162 | OrxGui::GLGuiPushButton * buttonTeam0 = new OrxGui::GLGuiPushButton("Blue Team"); |
---|
| 163 | box->pack( buttonTeam0 ); |
---|
| 164 | buttonTeam0->connect(SIGNAL(buttonTeam0, released), this, SLOT(MultiplayerTeamDeathmatch, onButtonTeam0)); |
---|
[8717] | 165 | |
---|
[8147] | 166 | OrxGui::GLGuiPushButton * buttonTeam1 = new OrxGui::GLGuiPushButton("Red Team"); |
---|
| 167 | box->pack( buttonTeam1 ); |
---|
| 168 | buttonTeam1->connect(SIGNAL(buttonTeam1, released), this, SLOT(MultiplayerTeamDeathmatch, onButtonTeam1)); |
---|
[8717] | 169 | |
---|
[8623] | 170 | if ( bShowTeamChange ) |
---|
| 171 | { |
---|
| 172 | OrxGui::GLGuiPushButton * buttonCancel = new OrxGui::GLGuiPushButton("Cancel"); |
---|
| 173 | box->pack( buttonCancel ); |
---|
| 174 | buttonCancel->connect(SIGNAL(buttonCancel, released), this, SLOT(MultiplayerTeamDeathmatch, onButtonCancel)); |
---|
| 175 | } |
---|
[8717] | 176 | |
---|
[8147] | 177 | OrxGui::GLGuiPushButton * buttonExit = new OrxGui::GLGuiPushButton("Exit"); |
---|
| 178 | box->pack( buttonExit ); |
---|
| 179 | buttonExit->connect(SIGNAL(buttonExit, released), this, SLOT(MultiplayerTeamDeathmatch, onButtonExit)); |
---|
[8717] | 180 | |
---|
[8147] | 181 | box->showAll(); |
---|
| 182 | } |
---|
| 183 | } |
---|
| 184 | |
---|
| 185 | if ( box != NULL |
---|
| 186 | && PlayerStats::getStats( SharedNetworkData::getInstance()->getHostID() ) |
---|
[8717] | 187 | && PlayerStats::getStats( SharedNetworkData::getInstance()->getHostID() )->getPreferedTeamId() != TEAM_NOTEAM |
---|
[8623] | 188 | && !bShowTeamChange |
---|
[8147] | 189 | ) |
---|
| 190 | { |
---|
| 191 | delete box; |
---|
| 192 | box = NULL; |
---|
[8717] | 193 | |
---|
[8147] | 194 | OrxGui::GLGuiHandler::getInstance()->deactivateCursor( true ); |
---|
[8717] | 195 | |
---|
[8147] | 196 | EventHandler::getInstance()->popState(); |
---|
| 197 | } |
---|
[8717] | 198 | |
---|
[8147] | 199 | if ( box != NULL ) |
---|
| 200 | { |
---|
| 201 | OrxGui::GLGuiHandler::getInstance()->tick( dt ); |
---|
| 202 | } |
---|
[8717] | 203 | |
---|
[8147] | 204 | assignPlayable(); |
---|
[8717] | 205 | |
---|
[8068] | 206 | if ( !SharedNetworkData::getInstance()->isGameServer() ) |
---|
| 207 | return; |
---|
[9008] | 208 | |
---|
[8802] | 209 | //handle kills |
---|
[9008] | 210 | while ( this->killList.begin() != this->killList.end() ) |
---|
[8802] | 211 | { |
---|
[9008] | 212 | onKill( this->killList.begin()->getVictim(), this->killList.begin()->getKiller() ); |
---|
| 213 | this->killList.erase( this->killList.begin() ); |
---|
[8802] | 214 | } |
---|
| 215 | |
---|
[9008] | 216 | |
---|
| 217 | |
---|
[8068] | 218 | gameStateTimer -= dt; |
---|
[8147] | 219 | //PRINTF(0)("TICK %f\n", gameStateTimer); |
---|
[8717] | 220 | |
---|
[8068] | 221 | if ( currentGameState != GAMESTATE_GAME && gameStateTimer < 0 ) |
---|
| 222 | nextGameState(); |
---|
[8717] | 223 | |
---|
[8068] | 224 | this->currentGameState = NetworkGameManager::getInstance()->getGameState(); |
---|
[8717] | 225 | |
---|
[8068] | 226 | if ( currentGameState == GAMESTATE_GAME ) |
---|
| 227 | { |
---|
| 228 | handleTeamChanges(); |
---|
| 229 | } |
---|
[8717] | 230 | |
---|
[8068] | 231 | this->calculateTeamScore(); |
---|
[8717] | 232 | |
---|
[7039] | 233 | this->checkGameRules(); |
---|
[7035] | 234 | |
---|
[7039] | 235 | // is the local player dead and inactive |
---|
| 236 | if( unlikely(this->bLocalPlayerDead)) |
---|
| 237 | { |
---|
| 238 | this->timeout += dt; |
---|
[7088] | 239 | PRINTF(0)("TICK DEATH: %f of %f\n", this->timeout, this->deathTimeout); |
---|
[7039] | 240 | // long enough dead? |
---|
[7044] | 241 | if( this->timeout >= this->deathTimeout) |
---|
[7039] | 242 | { |
---|
| 243 | this->timeout = 0.0f; |
---|
| 244 | // respawn |
---|
[7079] | 245 | PRINTF(0)("RESPAWN\n"); |
---|
[7044] | 246 | (State::getPlayer())->getPlayable()->respawn(); |
---|
[7039] | 247 | } |
---|
| 248 | } |
---|
[7037] | 249 | } |
---|
[7035] | 250 | |
---|
[7037] | 251 | |
---|
[7035] | 252 | /** |
---|
| 253 | * draws the stuff |
---|
| 254 | */ |
---|
| 255 | void MultiplayerTeamDeathmatch::draw() |
---|
[7039] | 256 | { |
---|
| 257 | if( unlikely( this->bLocalPlayerDead)) |
---|
| 258 | { |
---|
[7035] | 259 | |
---|
[7039] | 260 | } |
---|
| 261 | } |
---|
[7035] | 262 | |
---|
[7039] | 263 | |
---|
[7035] | 264 | /** |
---|
| 265 | * check the game rules for consistency |
---|
| 266 | */ |
---|
| 267 | void MultiplayerTeamDeathmatch::checkGameRules() |
---|
[7039] | 268 | { |
---|
[8068] | 269 | if ( !SharedNetworkData::getInstance()->isGameServer() ) |
---|
| 270 | return; |
---|
[8717] | 271 | |
---|
[8068] | 272 | // check for max killing count |
---|
| 273 | for ( int i = 0; i<numTeams; i++ ) |
---|
| 274 | { |
---|
| 275 | if ( teamScore[i] >= maxKills ) |
---|
| 276 | { |
---|
[8802] | 277 | nextGameState(); |
---|
[8068] | 278 | } |
---|
| 279 | } |
---|
| 280 | } |
---|
[7101] | 281 | |
---|
[8068] | 282 | /** |
---|
| 283 | * find group for new player |
---|
| 284 | * @return group id |
---|
| 285 | */ |
---|
[8147] | 286 | int MultiplayerTeamDeathmatch::getTeamForNewUser() |
---|
[8068] | 287 | { |
---|
| 288 | return TEAM_NOTEAM; |
---|
| 289 | } |
---|
[7101] | 290 | |
---|
[8147] | 291 | ClassID MultiplayerTeamDeathmatch::getPlayableClassId( int userId, int team ) |
---|
[8068] | 292 | { |
---|
[8147] | 293 | if ( team == TEAM_NOTEAM || team == TEAM_SPECTATOR ) |
---|
| 294 | return CL_SPECTATOR; |
---|
[8717] | 295 | |
---|
[8147] | 296 | if ( team == 0 || team == 1 ) |
---|
[9059] | 297 | return CL_FPS_PLAYER; |
---|
[8717] | 298 | |
---|
[8147] | 299 | assert( false ); |
---|
[8068] | 300 | } |
---|
[7101] | 301 | |
---|
[8147] | 302 | std::string MultiplayerTeamDeathmatch::getPlayableModelFileName( int userId, int team, ClassID classId ) |
---|
[8068] | 303 | { |
---|
[8147] | 304 | if ( team == 0 ) |
---|
[9059] | 305 | return "models/creatures/doom_guy.md2"; |
---|
[8147] | 306 | else if ( team == 1 ) |
---|
[9059] | 307 | return "models/creatures/doom_guy.md2"; |
---|
[8147] | 308 | else |
---|
| 309 | return ""; |
---|
[8068] | 310 | } |
---|
| 311 | |
---|
| 312 | /** |
---|
| 313 | * calculate team score |
---|
| 314 | */ |
---|
| 315 | void MultiplayerTeamDeathmatch::calculateTeamScore( ) |
---|
| 316 | { |
---|
| 317 | teamScore.clear(); |
---|
[8717] | 318 | |
---|
[8068] | 319 | for ( int i = 0; i<numTeams; i++ ) |
---|
| 320 | teamScore[i] = 0; |
---|
[8717] | 321 | |
---|
| 322 | |
---|
[8068] | 323 | const std::list<BaseObject*> * list = ClassList::getList( CL_PLAYER_STATS ); |
---|
[8717] | 324 | |
---|
[8068] | 325 | if ( !list ) |
---|
| 326 | return; |
---|
[8717] | 327 | |
---|
[8068] | 328 | for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ ) |
---|
[7039] | 329 | { |
---|
[8068] | 330 | PlayerStats & stats = *dynamic_cast<PlayerStats*>(*it); |
---|
| 331 | |
---|
| 332 | if ( stats.getTeamId() >= 0 ) |
---|
| 333 | { |
---|
| 334 | teamScore[stats.getTeamId()] += stats.getScore(); |
---|
| 335 | } |
---|
[7039] | 336 | } |
---|
[8068] | 337 | } |
---|
| 338 | |
---|
| 339 | /** |
---|
| 340 | * get team for player who choose to join random team |
---|
| 341 | * @return smallest team |
---|
| 342 | */ |
---|
| 343 | int MultiplayerTeamDeathmatch::getRandomTeam( ) |
---|
| 344 | { |
---|
| 345 | std::map<int,int> playersInTeam; |
---|
[8717] | 346 | |
---|
[8068] | 347 | for ( int i = 0; i<numTeams; i++ ) |
---|
| 348 | playersInTeam[i] = 0; |
---|
[8717] | 349 | |
---|
[8068] | 350 | const std::list<BaseObject*> * list = ClassList::getList( CL_PLAYER_STATS ); |
---|
[8717] | 351 | |
---|
[8068] | 352 | if ( !list ) |
---|
| 353 | return 0; |
---|
[8717] | 354 | |
---|
[8068] | 355 | for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ ) |
---|
[7039] | 356 | { |
---|
[8068] | 357 | PlayerStats & stats = *dynamic_cast<PlayerStats*>(*it); |
---|
| 358 | |
---|
| 359 | if ( stats.getTeamId() >= 0 ) |
---|
| 360 | { |
---|
| 361 | playersInTeam[stats.getTeamId()]++; |
---|
| 362 | } |
---|
[7039] | 363 | } |
---|
[8717] | 364 | |
---|
| 365 | |
---|
[8068] | 366 | int minPlayers = 0xFFFF; |
---|
| 367 | int minTeam = -1; |
---|
[8717] | 368 | |
---|
[8068] | 369 | for ( int i = 0; i<numTeams; i++ ) |
---|
| 370 | { |
---|
| 371 | if ( playersInTeam[i] < minPlayers ) |
---|
| 372 | { |
---|
| 373 | minTeam = i; |
---|
| 374 | minPlayers = playersInTeam[i]; |
---|
| 375 | } |
---|
| 376 | } |
---|
[8717] | 377 | |
---|
[8068] | 378 | assert( minTeam != -1 ); |
---|
[8717] | 379 | |
---|
[8068] | 380 | return minTeam; |
---|
| 381 | } |
---|
[7101] | 382 | |
---|
[8068] | 383 | void MultiplayerTeamDeathmatch::nextGameState( ) |
---|
| 384 | { |
---|
| 385 | if ( currentGameState == GAMESTATE_PRE_GAME ) |
---|
| 386 | { |
---|
| 387 | NetworkGameManager::getInstance()->setGameState( GAMESTATE_GAME ); |
---|
[8717] | 388 | |
---|
[8068] | 389 | return; |
---|
| 390 | } |
---|
[8717] | 391 | |
---|
[8068] | 392 | if ( currentGameState == GAMESTATE_GAME ) |
---|
| 393 | { |
---|
| 394 | NetworkGameManager::getInstance()->setGameState( GAMESTATE_POST_GAME ); |
---|
[8717] | 395 | |
---|
[8068] | 396 | return; |
---|
| 397 | } |
---|
[8717] | 398 | |
---|
[8068] | 399 | if ( currentGameState == GAMESTATE_POST_GAME ) |
---|
| 400 | { |
---|
[8802] | 401 | State::getCurrentStoryEntity()->stop(); |
---|
| 402 | this->bShowTeamChange = false; |
---|
[8717] | 403 | |
---|
[8068] | 404 | return; |
---|
| 405 | } |
---|
| 406 | } |
---|
[7118] | 407 | |
---|
[8068] | 408 | void MultiplayerTeamDeathmatch::handleTeamChanges( ) |
---|
| 409 | { |
---|
| 410 | const std::list<BaseObject*> * list = ClassList::getList( CL_PLAYER_STATS ); |
---|
[8717] | 411 | |
---|
[8068] | 412 | if ( !list ) |
---|
| 413 | return; |
---|
[8717] | 414 | |
---|
[8068] | 415 | //first server players with choices |
---|
| 416 | for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ ) |
---|
[7116] | 417 | { |
---|
[8068] | 418 | PlayerStats & stats = *dynamic_cast<PlayerStats*>(*it); |
---|
[7118] | 419 | |
---|
[8068] | 420 | if ( stats.getTeamId() != stats.getPreferedTeamId() ) |
---|
[7116] | 421 | { |
---|
[8147] | 422 | if ( stats.getPreferedTeamId() == TEAM_SPECTATOR || ( stats.getPreferedTeamId() >= 0 && stats.getPreferedTeamId() < numTeams ) ) |
---|
[7116] | 423 | { |
---|
[8068] | 424 | teamChange( stats.getUserId() ); |
---|
[7116] | 425 | } |
---|
| 426 | } |
---|
| 427 | } |
---|
[8717] | 428 | |
---|
[8068] | 429 | //now serve player who want join a random team |
---|
| 430 | for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ ) |
---|
| 431 | { |
---|
| 432 | PlayerStats & stats = *dynamic_cast<PlayerStats*>(*it); |
---|
[7101] | 433 | |
---|
[8068] | 434 | if ( stats.getTeamId() != stats.getPreferedTeamId() ) |
---|
[7101] | 435 | { |
---|
[8068] | 436 | if ( stats.getPreferedTeamId() == TEAM_RANDOM ) |
---|
[7101] | 437 | { |
---|
[8147] | 438 | stats.setPreferedTeamId( getRandomTeam() ); |
---|
[8068] | 439 | teamChange( stats.getUserId() ); |
---|
[7101] | 440 | } |
---|
| 441 | } |
---|
| 442 | } |
---|
[8068] | 443 | } |
---|
[7101] | 444 | |
---|
[8068] | 445 | void MultiplayerTeamDeathmatch::teamChange( int userId ) |
---|
| 446 | { |
---|
| 447 | assert( PlayerStats::getStats( userId ) ); |
---|
| 448 | PlayerStats & stats = *(PlayerStats::getStats( userId )); |
---|
[8717] | 449 | |
---|
[8147] | 450 | stats.setTeamId( stats.getPreferedTeamId() ); |
---|
[8717] | 451 | |
---|
[8147] | 452 | Playable * oldPlayable = stats.getPlayable(); |
---|
[8717] | 453 | |
---|
| 454 | |
---|
[8147] | 455 | ClassID playableClassId = getPlayableClassId( userId, stats.getPreferedTeamId() ); |
---|
| 456 | std::string playableModel = getPlayableModelFileName( userId, stats.getPreferedTeamId(), playableClassId ); |
---|
[9110] | 457 | std::string playableTexture = getPlayableModelTextureFileName( userId, stats.getPreferedTeamId(), playableClassId ); |
---|
[8717] | 458 | |
---|
[8147] | 459 | BaseObject * bo = Factory::fabricate( playableClassId ); |
---|
[8717] | 460 | |
---|
[8147] | 461 | assert( bo != NULL ); |
---|
| 462 | assert( bo->isA( CL_PLAYABLE ) ); |
---|
[8717] | 463 | |
---|
[8147] | 464 | Playable & playable = *(dynamic_cast<Playable*>(bo)); |
---|
[8717] | 465 | |
---|
[9110] | 466 | if ( playableTexture != "" ) |
---|
| 467 | playable.loadMD2Texture( playableTexture ); |
---|
| 468 | if ( playableModel != "" ) |
---|
| 469 | playable.loadModel( playableModel ); |
---|
[8147] | 470 | playable.setOwner( userId ); |
---|
| 471 | playable.setUniqueID( SharedNetworkData::getInstance()->getNewUniqueID() ); |
---|
| 472 | playable.setSynchronized( true ); |
---|
[8717] | 473 | |
---|
[8147] | 474 | stats.setTeamId( stats.getPreferedTeamId() ); |
---|
| 475 | stats.setPlayableClassId( playableClassId ); |
---|
| 476 | stats.setPlayableUniqueId( playable.getUniqueID() ); |
---|
| 477 | stats.setModelFileName( playableModel ); |
---|
[8717] | 478 | |
---|
[9008] | 479 | this->respawnPlayable( &playable, stats.getPreferedTeamId(), 0.0f ); |
---|
| 480 | |
---|
[8147] | 481 | if ( oldPlayable ) |
---|
| 482 | { |
---|
| 483 | //if ( userId == SharedNetworkData::getInstance()->getHostID() ) |
---|
| 484 | // State::getPlayer()->setPlayable( NULL ); |
---|
| 485 | delete oldPlayable; |
---|
| 486 | } |
---|
[7039] | 487 | } |
---|
[7035] | 488 | |
---|
[8147] | 489 | void MultiplayerTeamDeathmatch::onButtonExit( ) |
---|
| 490 | { |
---|
| 491 | State::getCurrentStoryEntity()->stop(); |
---|
[8623] | 492 | this->bShowTeamChange = false; |
---|
[8147] | 493 | } |
---|
[7035] | 494 | |
---|
[8147] | 495 | void MultiplayerTeamDeathmatch::onButtonRandom( ) |
---|
| 496 | { |
---|
| 497 | NetworkGameManager::getInstance()->prefereTeam( TEAM_RANDOM ); |
---|
[8623] | 498 | this->bShowTeamChange = false; |
---|
[8147] | 499 | } |
---|
[7035] | 500 | |
---|
[8147] | 501 | void MultiplayerTeamDeathmatch::onButtonTeam0( ) |
---|
| 502 | { |
---|
| 503 | NetworkGameManager::getInstance()->prefereTeam( 0 ); |
---|
[8623] | 504 | this->bShowTeamChange = false; |
---|
[8147] | 505 | } |
---|
[7035] | 506 | |
---|
[8147] | 507 | void MultiplayerTeamDeathmatch::onButtonTeam1( ) |
---|
| 508 | { |
---|
| 509 | NetworkGameManager::getInstance()->prefereTeam( 1 ); |
---|
[8623] | 510 | this->bShowTeamChange = false; |
---|
[8147] | 511 | } |
---|
[7035] | 512 | |
---|
[8147] | 513 | void MultiplayerTeamDeathmatch::onButtonSpectator( ) |
---|
| 514 | { |
---|
| 515 | NetworkGameManager::getInstance()->prefereTeam( TEAM_SPECTATOR ); |
---|
[8623] | 516 | this->bShowTeamChange = false; |
---|
[8147] | 517 | } |
---|
[7035] | 518 | |
---|
[8147] | 519 | void MultiplayerTeamDeathmatch::assignPlayable( ) |
---|
| 520 | { |
---|
| 521 | if ( PlayerStats::getStats( SharedNetworkData::getInstance()->getHostID() ) ) |
---|
| 522 | PlayerStats::getStats( SharedNetworkData::getInstance()->getHostID() )->getPlayable(); |
---|
| 523 | } |
---|
| 524 | |
---|
[8623] | 525 | /** |
---|
| 526 | * function that processes events from the handler |
---|
| 527 | * @param event: the event |
---|
| 528 | * @todo replace SDLK_o with something from KeyMapper |
---|
| 529 | */ |
---|
| 530 | void MultiplayerTeamDeathmatch::process( const Event & event ) |
---|
| 531 | { |
---|
| 532 | if ( event.type == SDLK_o ) |
---|
| 533 | { |
---|
| 534 | if ( event.bPressed ) |
---|
| 535 | this->bShowTeamChange = true; |
---|
[8802] | 536 | } else if ( event.type == SDLK_F1 ) |
---|
| 537 | { |
---|
[9059] | 538 | if ( this->statsBox && !this->bLocalPlayerDead && event.bPressed ) |
---|
| 539 | { |
---|
| 540 | PRINTF(0)("hide stats\n"); |
---|
| 541 | this->hideStats(); |
---|
| 542 | } |
---|
[9110] | 543 | else if ( !this->statsBox && event.bPressed ) |
---|
[8802] | 544 | { |
---|
| 545 | PRINTF(0)("show stats\n"); |
---|
| 546 | this->showStats(); |
---|
| 547 | } |
---|
[8623] | 548 | } |
---|
[8708] | 549 | else if ( event.type == SDLK_TAB ) |
---|
| 550 | { |
---|
[9008] | 551 | if ( currentGameState == GAMESTATE_GAME && event.bPressed && !EventHandler::getInstance()->isPressed( SDLK_RALT ) && !EventHandler::getInstance()->isPressed( SDLK_LALT ) ) |
---|
[8708] | 552 | { |
---|
| 553 | EventHandler::getInstance()->pushState( ES_MENU ); |
---|
| 554 | OrxGui::GLGuiHandler::getInstance()->activateCursor(); |
---|
| 555 | OrxGui::GLGuiHandler::getInstance()->deactivateCursor(); |
---|
| 556 | input->show(); |
---|
[8717] | 557 | input->giveMouseFocus(); |
---|
[8708] | 558 | input->setText("say "); |
---|
| 559 | } |
---|
| 560 | } |
---|
[8802] | 561 | else if ( this->bLocalPlayerDead && statsBox && event.type == KeyMapper::PEV_FIRE1 ) |
---|
| 562 | { |
---|
| 563 | this->hideStats(); |
---|
| 564 | } |
---|
[8623] | 565 | } |
---|
[8147] | 566 | |
---|
[8623] | 567 | void MultiplayerTeamDeathmatch::onButtonCancel( ) |
---|
| 568 | { |
---|
| 569 | this->bShowTeamChange = false; |
---|
| 570 | } |
---|
[8147] | 571 | |
---|
| 572 | |
---|
| 573 | |
---|
[8623] | 574 | /** |
---|
| 575 | * this method is called by NetworkGameManger when he recieved a chat message |
---|
| 576 | * @param userId senders user id |
---|
| 577 | * @param message message string |
---|
| 578 | * @param messageType some int |
---|
| 579 | */ |
---|
| 580 | void MultiplayerTeamDeathmatch::handleChatMessage( int userId, const std::string & message, int messageType ) |
---|
| 581 | { |
---|
| 582 | std::string name = "unknown"; |
---|
[8717] | 583 | |
---|
[8623] | 584 | if ( PlayerStats::getStats( userId ) ) |
---|
| 585 | { |
---|
| 586 | name = PlayerStats::getStats( userId )->getNickName(); |
---|
| 587 | } |
---|
[8717] | 588 | |
---|
[8708] | 589 | PRINTF(0)("CHATMESSAGE %s (%d): %s\n", name.c_str(), userId, message.c_str() ); |
---|
[9059] | 590 | State::getPlayer()->hud().notifyUser(name + ": " + message); |
---|
[8623] | 591 | } |
---|
[8147] | 592 | |
---|
[8708] | 593 | void MultiplayerTeamDeathmatch::onInputEnter( const std::string & text ) |
---|
| 594 | { |
---|
| 595 | EventHandler::getInstance()->popState(); |
---|
[8717] | 596 | input->breakMouseFocus(); |
---|
[8708] | 597 | input->hide(); |
---|
| 598 | input->setText(""); |
---|
[8623] | 599 | |
---|
[8708] | 600 | std::string command = text; |
---|
[8717] | 601 | |
---|
[8708] | 602 | //HACK insert " in say commands so user doesn't have to type them |
---|
| 603 | if ( command.length() >= 4 && command[0] == 's' && command[1] == 'a' && command[2] == 'y' && command[3] == ' ' ) |
---|
| 604 | { |
---|
| 605 | command.insert( 4, "\"" ); |
---|
| 606 | command = command + "\""; |
---|
| 607 | } |
---|
[8623] | 608 | |
---|
[8708] | 609 | OrxShell::ShellCommand::execute( command ); |
---|
| 610 | } |
---|
[8623] | 611 | |
---|
[8802] | 612 | /** |
---|
| 613 | * show table with frags |
---|
| 614 | */ |
---|
| 615 | void MultiplayerTeamDeathmatch::showStats( ) |
---|
| 616 | { |
---|
| 617 | statsBox = new OrxGui::GLGuiBox(); |
---|
[9110] | 618 | statsBox->setAbsCoor2D( 100, 100 ); |
---|
[9008] | 619 | |
---|
[9110] | 620 | this->table = new OrxGui::GLGuiTable(10,5); |
---|
[8708] | 621 | |
---|
[8802] | 622 | statsBox->pack( this->table ); |
---|
[8708] | 623 | |
---|
[8802] | 624 | statsBox->showAll(); |
---|
| 625 | } |
---|
[8708] | 626 | |
---|
[8802] | 627 | /** |
---|
| 628 | * hide table with frags |
---|
| 629 | */ |
---|
| 630 | void MultiplayerTeamDeathmatch::hideStats( ) |
---|
| 631 | { |
---|
| 632 | if ( statsBox ) |
---|
| 633 | { |
---|
| 634 | delete statsBox; |
---|
| 635 | statsBox = NULL; |
---|
| 636 | } |
---|
| 637 | } |
---|
| 638 | |
---|
| 639 | /** |
---|
| 640 | * fill stats table with values |
---|
| 641 | */ |
---|
| 642 | void MultiplayerTeamDeathmatch::tickStatsTable( ) |
---|
| 643 | { |
---|
| 644 | if ( !this->statsBox ) |
---|
| 645 | return; |
---|
| 646 | |
---|
| 647 | std::vector<std::string> headers; |
---|
[9110] | 648 | headers.push_back("Blue Team"); |
---|
[8802] | 649 | headers.push_back(""); |
---|
| 650 | headers.push_back(""); |
---|
[9110] | 651 | headers.push_back("Red Team"); |
---|
[8802] | 652 | headers.push_back(""); |
---|
| 653 | this->table->setHeader(headers); |
---|
[9008] | 654 | |
---|
[9110] | 655 | ScoreList scoreList = PlayerStats::getScoreList(); |
---|
[9008] | 656 | |
---|
[8802] | 657 | char st[10]; |
---|
| 658 | int i = 0; |
---|
[9110] | 659 | |
---|
[8802] | 660 | i = 2; |
---|
[9110] | 661 | for ( TeamScoreList::const_iterator it = scoreList[0].begin(); it != scoreList[0].end(); it++ ) |
---|
[8802] | 662 | { |
---|
[9110] | 663 | this->table->setEntry( i, 0, it->name ); |
---|
| 664 | snprintf( st, 10, "%d", it->score ); |
---|
| 665 | this->table->setEntry( i, 1, st ); |
---|
| 666 | this->table->setEntry( i, 2, "" ); |
---|
[8802] | 667 | i++; |
---|
| 668 | } |
---|
[9008] | 669 | |
---|
[8802] | 670 | i = 2; |
---|
[9110] | 671 | for ( TeamScoreList::const_iterator it = scoreList[1].begin(); it != scoreList[1].end(); it++ ) |
---|
[8802] | 672 | { |
---|
[9110] | 673 | this->table->setEntry( i, 3, it->name ); |
---|
| 674 | snprintf( st, 10, "%d", it->score ); |
---|
| 675 | this->table->setEntry( i, 4, st ); |
---|
[8802] | 676 | i++; |
---|
| 677 | } |
---|
[9110] | 678 | |
---|
[8802] | 679 | } |
---|
| 680 | |
---|
| 681 | /** |
---|
| 682 | * this function is called when a player kills another one or himself |
---|
[9008] | 683 | * @param killedUserId |
---|
| 684 | * @param userId |
---|
[8802] | 685 | */ |
---|
[9008] | 686 | void MultiplayerTeamDeathmatch::onKill( WorldEntity * victim, WorldEntity * killer ) |
---|
[8802] | 687 | { |
---|
[9008] | 688 | if ( !victim ) |
---|
| 689 | return; |
---|
| 690 | if ( !killer ) |
---|
| 691 | return; |
---|
[8802] | 692 | |
---|
[9008] | 693 | int killerUserId = killer->getOwner(); |
---|
| 694 | int victimUserId = victim->getOwner(); |
---|
| 695 | |
---|
| 696 | PlayerStats & victimStats = *PlayerStats::getStats( victimUserId ); |
---|
| 697 | PlayerStats & killerStats = *PlayerStats::getStats( killerUserId ); |
---|
[8802] | 698 | |
---|
[9008] | 699 | if ( killerStats.getPlayable() != killer || victimStats.getPlayable() != victim ) |
---|
| 700 | return; |
---|
| 701 | |
---|
| 702 | //check for suicide |
---|
| 703 | if ( killerUserId != victimUserId ) |
---|
| 704 | { |
---|
| 705 | //check for teamkill |
---|
| 706 | if ( victimStats.getTeamId() != killerStats.getTeamId() ) |
---|
| 707 | { |
---|
| 708 | killerStats.setScore( killerStats.getScore() + 1 ); |
---|
| 709 | } |
---|
| 710 | else |
---|
| 711 | { |
---|
| 712 | killerStats.setScore( killerStats.getScore() - 1 ); |
---|
| 713 | } |
---|
| 714 | } |
---|
[8802] | 715 | else |
---|
[9008] | 716 | killerStats.setScore( killerStats.getScore() - 1 ); |
---|
| 717 | |
---|
| 718 | if ( victimUserId == SharedNetworkData::getInstance()->getHostID() ) |
---|
[8802] | 719 | { |
---|
| 720 | this->bLocalPlayerDead = true; |
---|
| 721 | this->showStats(); |
---|
| 722 | } |
---|
[9008] | 723 | |
---|
| 724 | this->respawnPlayable( victimStats.getPlayable(), victimStats.getTeamId(), 3.0f ); |
---|
[8802] | 725 | } |
---|
| 726 | |
---|
| 727 | /** |
---|
| 728 | * this function is called on player respawn |
---|
[9008] | 729 | * @param userId |
---|
[8802] | 730 | */ |
---|
| 731 | void MultiplayerTeamDeathmatch::onRespawn( int userId ) |
---|
| 732 | { |
---|
| 733 | if ( userId == SharedNetworkData::getInstance()->getHostID() ) |
---|
| 734 | { |
---|
| 735 | this->bLocalPlayerDead = false; |
---|
| 736 | this->hideStats(); |
---|
| 737 | } |
---|
| 738 | } |
---|
| 739 | |
---|
| 740 | /** |
---|
| 741 | * this function is called on player respawn |
---|
[9008] | 742 | * @param we |
---|
[8802] | 743 | */ |
---|
| 744 | void MultiplayerTeamDeathmatch::registerSpawn( WorldEntity * we ) |
---|
| 745 | { |
---|
| 746 | onRespawn( we->getOwner() ); |
---|
| 747 | } |
---|
| 748 | |
---|
[9008] | 749 | |
---|
| 750 | void MultiplayerTeamDeathmatch::respawnPlayable( Playable * playable, int teamId, float delay ) |
---|
| 751 | { |
---|
| 752 | const std::list<BaseObject*> * list = ClassList::getList( CL_SPAWNING_POINT ); |
---|
| 753 | |
---|
| 754 | assert( list ); |
---|
| 755 | |
---|
| 756 | std::vector<SpawningPoint*> spList; |
---|
| 757 | |
---|
| 758 | for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ ) |
---|
| 759 | { |
---|
| 760 | SpawningPoint * sp = dynamic_cast<SpawningPoint*>(*it); |
---|
| 761 | |
---|
| 762 | if ( sp->getTeamId() == teamId ) |
---|
| 763 | spList.push_back( sp ); |
---|
| 764 | } |
---|
| 765 | |
---|
| 766 | if ( spList.size() == 0 ) |
---|
| 767 | { |
---|
| 768 | for ( std::list<BaseObject*>::const_iterator it = list->begin(); it != list->end(); it++ ) |
---|
| 769 | { |
---|
| 770 | SpawningPoint * sp = dynamic_cast<SpawningPoint*>(*it); |
---|
| 771 | |
---|
| 772 | if ( sp->getTeamId() < 0 ) |
---|
| 773 | spList.push_back( sp ); |
---|
| 774 | } |
---|
| 775 | } |
---|
| 776 | |
---|
| 777 | assert( spList.size() != 0 ); |
---|
| 778 | |
---|
| 779 | int n = (int)((float)spList.size() * (float)rand()/(float)RAND_MAX); |
---|
| 780 | |
---|
| 781 | spList[n]->pushEntity( playable, delay ); |
---|
| 782 | } |
---|
| 783 | |
---|
[9110] | 784 | std::string MultiplayerTeamDeathmatch::getPlayableModelTextureFileName( int userId, int team, ClassID classId ) |
---|
| 785 | { |
---|
| 786 | if ( classId == CL_FPS_PLAYER ) |
---|
| 787 | { |
---|
| 788 | return "maps/doom_guy.png"; |
---|
| 789 | } |
---|
| 790 | |
---|
| 791 | return ""; |
---|
| 792 | } |
---|
| 793 | |
---|