[5838] | 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: |
---|
[5841] | 12 | main-programmer: Silvan Nellen |
---|
| 13 | co-programmer: Benjamin Knecht |
---|
[5838] | 14 | */ |
---|
| 15 | |
---|
[5881] | 16 | |
---|
[5838] | 17 | #include "playable.h" |
---|
[5895] | 18 | |
---|
[7868] | 19 | #include "key_mapper.h" |
---|
| 20 | |
---|
[5875] | 21 | #include "player.h" |
---|
[6241] | 22 | #include "state.h" |
---|
[7347] | 23 | #include "camera.h" |
---|
| 24 | |
---|
[7193] | 25 | #include "util/loading/load_param.h" |
---|
[5838] | 26 | |
---|
[6547] | 27 | #include "power_ups/weapon_power_up.h" |
---|
| 28 | #include "power_ups/param_power_up.h" |
---|
[5872] | 29 | |
---|
[7044] | 30 | #include "game_rules.h" |
---|
[6547] | 31 | |
---|
[6959] | 32 | #include "dot_emitter.h" |
---|
| 33 | #include "sprite_particles.h" |
---|
| 34 | |
---|
[7121] | 35 | #include "shared_network_data.h" |
---|
| 36 | |
---|
[7118] | 37 | #include "effects/explosion.h" |
---|
[7482] | 38 | #include "kill.cc" |
---|
[6959] | 39 | |
---|
[7350] | 40 | #include "shell_command.h" |
---|
[7356] | 41 | SHELL_COMMAND_STATIC(orxoWeapon, Playable, Playable::addSomeWeapons_CHEAT) |
---|
| 42 | ->setAlias("orxoWeapon"); |
---|
[7118] | 43 | |
---|
[7350] | 44 | |
---|
[5838] | 45 | Playable::Playable() |
---|
[7338] | 46 | : weaponMan(this), |
---|
| 47 | supportedPlaymodes(Playable::Full3D), |
---|
| 48 | playmode(Playable::Full3D) |
---|
[5838] | 49 | { |
---|
[6442] | 50 | this->setClassID(CL_PLAYABLE, "Playable"); |
---|
| 51 | PRINTF(4)("PLAYABLE INIT\n"); |
---|
| 52 | |
---|
| 53 | this->toList(OM_GROUP_01); |
---|
| 54 | |
---|
| 55 | // the reference to the Current Player is NULL, because we dont have one at the beginning. |
---|
| 56 | this->currentPlayer = NULL; |
---|
[6695] | 57 | |
---|
[6804] | 58 | this->bFire = false; |
---|
[6868] | 59 | this->oldFlags = 0; |
---|
[6804] | 60 | |
---|
[6695] | 61 | this->setSynchronized(true); |
---|
[6959] | 62 | |
---|
| 63 | this->score = 0; |
---|
[7713] | 64 | this->collider = NULL; |
---|
[6959] | 65 | |
---|
[7118] | 66 | this->bDead = false; |
---|
[8724] | 67 | |
---|
[8490] | 68 | this->subscribeReaction(CREngine::CR_PHYSICS_GROUND_WALK, CL_BSP_ENTITY); |
---|
| 69 | |
---|
[7954] | 70 | registerVar( new SynchronizeableInt( &score, &score, "score" ) ); |
---|
| 71 | registerVar( new SynchronizeableBool( &bFire, &bFire, "bFire", PERMISSION_OWNER)); |
---|
[5838] | 72 | } |
---|
| 73 | |
---|
[6695] | 74 | |
---|
[7346] | 75 | /** |
---|
| 76 | * @brief destroys the Playable |
---|
| 77 | */ |
---|
[5875] | 78 | Playable::~Playable() |
---|
[5838] | 79 | { |
---|
[6986] | 80 | // THE DERIVED CLASS MUST UNSUBSCRIBE THE PLAYER THROUGH |
---|
| 81 | // this->setPlayer(NULL); |
---|
| 82 | // IN ITS DESTRUCTOR. |
---|
[8316] | 83 | |
---|
[6986] | 84 | assert(this->currentPlayer == NULL); |
---|
[5875] | 85 | } |
---|
| 86 | |
---|
[7346] | 87 | /** |
---|
| 88 | * @brief loads Playable parameters onto the Playable |
---|
| 89 | * @param root the XML-root to load from |
---|
| 90 | */ |
---|
[7092] | 91 | void Playable::loadParams(const TiXmlElement* root) |
---|
| 92 | { |
---|
| 93 | WorldEntity::loadParams(root); |
---|
| 94 | |
---|
[7346] | 95 | LoadParam(root, "abs-dir", this, Playable, setPlayDirection); |
---|
[7092] | 96 | } |
---|
| 97 | |
---|
[7346] | 98 | /** |
---|
| 99 | * @brief picks up a powerup |
---|
| 100 | * @param powerUp the PowerUp that should be picked. |
---|
| 101 | * @returns true on success (pickup was picked, false otherwise) |
---|
| 102 | * |
---|
| 103 | * This function also checks if the Pickup can be picked up by this Playable |
---|
| 104 | */ |
---|
| 105 | bool Playable::pickup(PowerUp* powerUp) |
---|
| 106 | { |
---|
| 107 | if(powerUp->isA(CL_WEAPON_POWER_UP)) |
---|
| 108 | { |
---|
| 109 | return dynamic_cast<WeaponPowerUp*>(powerUp)->process(&this->getWeaponManager()); |
---|
| 110 | } |
---|
| 111 | else if(powerUp->isA(CL_PARAM_POWER_UP)) |
---|
| 112 | { |
---|
| 113 | ParamPowerUp* ppu = dynamic_cast<ParamPowerUp*>(powerUp); |
---|
| 114 | switch(ppu->getType()) |
---|
| 115 | { |
---|
| 116 | case POWERUP_PARAM_HEALTH: |
---|
| 117 | this->increaseHealth(ppu->getValue()); |
---|
| 118 | return true; |
---|
| 119 | case POWERUP_PARAM_MAX_HEALTH: |
---|
| 120 | this->increaseHealthMax(ppu->getValue()); |
---|
| 121 | return true; |
---|
[8316] | 122 | default: |
---|
| 123 | /// EVERYTHING THAT IS NOT HANDLED |
---|
| 124 | /// FIXME |
---|
| 125 | return false; |
---|
[7346] | 126 | } |
---|
| 127 | } |
---|
| 128 | return false; |
---|
| 129 | } |
---|
| 130 | |
---|
| 131 | /** |
---|
| 132 | * @brief adds a Weapon to the Playable. |
---|
| 133 | * @param weapon the Weapon to add. |
---|
| 134 | * @param configID the Configuration ID to add this weapon to. |
---|
| 135 | * @param slotID the slotID to add the Weapon to. |
---|
| 136 | */ |
---|
[7350] | 137 | bool Playable::addWeapon(Weapon* weapon, int configID, int slotID) |
---|
[6443] | 138 | { |
---|
[7350] | 139 | if(this->weaponMan.addWeapon(weapon, configID, slotID)) |
---|
| 140 | { |
---|
| 141 | this->weaponConfigChanged(); |
---|
| 142 | return true; |
---|
| 143 | } |
---|
| 144 | else |
---|
| 145 | { |
---|
| 146 | if (weapon != NULL) |
---|
| 147 | PRINTF(2)("Unable to add Weapon (%s::%s) to %s::%s\n", |
---|
[7351] | 148 | weapon->getClassName(), weapon->getName(), this->getClassName(), this->getName()); |
---|
[7350] | 149 | else |
---|
| 150 | PRINTF(2)("No weapon defined\n"); |
---|
| 151 | return false; |
---|
[6443] | 152 | |
---|
[7350] | 153 | } |
---|
[6443] | 154 | } |
---|
| 155 | |
---|
[7346] | 156 | /** |
---|
| 157 | * @brief removes a Weapon. |
---|
| 158 | * @param weapon the Weapon to remove. |
---|
| 159 | */ |
---|
[6443] | 160 | void Playable::removeWeapon(Weapon* weapon) |
---|
| 161 | { |
---|
[7337] | 162 | this->weaponMan.removeWeapon(weapon); |
---|
[6443] | 163 | |
---|
[7338] | 164 | this->weaponConfigChanged(); |
---|
[6443] | 165 | } |
---|
| 166 | |
---|
[7346] | 167 | /** |
---|
| 168 | * @brief jumps to the next WeaponConfiguration |
---|
| 169 | */ |
---|
[6444] | 170 | void Playable::nextWeaponConfig() |
---|
| 171 | { |
---|
[7337] | 172 | this->weaponMan.nextWeaponConfig(); |
---|
[7338] | 173 | this->weaponConfigChanged(); |
---|
[6444] | 174 | } |
---|
[6443] | 175 | |
---|
[7346] | 176 | /** |
---|
| 177 | * @brief moves to the last WeaponConfiguration |
---|
| 178 | */ |
---|
[6444] | 179 | void Playable::previousWeaponConfig() |
---|
| 180 | { |
---|
[7337] | 181 | this->weaponMan.previousWeaponConfig(); |
---|
[7338] | 182 | this->weaponConfigChanged(); |
---|
[6444] | 183 | } |
---|
| 184 | |
---|
[7346] | 185 | /** |
---|
| 186 | * @brief tells the Player, that the Weapon-Configuration has changed. |
---|
| 187 | * |
---|
| 188 | * TODO remove this |
---|
| 189 | * This function is needed, so that the WeponManager of this Playable can easily update the HUD |
---|
| 190 | */ |
---|
[6568] | 191 | void Playable::weaponConfigChanged() |
---|
| 192 | { |
---|
[6578] | 193 | if (this->currentPlayer != NULL) |
---|
| 194 | this->currentPlayer->weaponConfigChanged(); |
---|
[6568] | 195 | } |
---|
[6444] | 196 | |
---|
[7350] | 197 | /** |
---|
| 198 | * @brief a Cheat that gives us some Weapons |
---|
| 199 | */ |
---|
| 200 | void Playable::addSomeWeapons_CHEAT() |
---|
| 201 | { |
---|
[7351] | 202 | if (State::getPlayer() != NULL) |
---|
| 203 | { |
---|
| 204 | Playable* playable = State::getPlayer()->getPlayable(); |
---|
| 205 | if (playable != NULL) |
---|
| 206 | { |
---|
| 207 | PRINTF(2)("ADDING WEAPONS - you cheater\n"); |
---|
| 208 | playable->addWeapon(Weapon::createWeapon(CL_HYPERBLASTER)); |
---|
| 209 | playable->addWeapon(Weapon::createWeapon(CL_TURRET)); |
---|
| 210 | playable->addWeapon(Weapon::createWeapon(CL_AIMING_TURRET)); |
---|
| 211 | playable->addWeapon(Weapon::createWeapon(CL_CANNON)); |
---|
| 212 | playable->addWeapon(Weapon::createWeapon(CL_TARGETING_TURRET)); |
---|
| 213 | PRINTF(2)("ADDING WEAPONS FINISHED\n"); |
---|
| 214 | } |
---|
| 215 | } |
---|
[7350] | 216 | } |
---|
[7346] | 217 | |
---|
[7173] | 218 | /** |
---|
[7346] | 219 | * @brief subscribe to all events the controllable needs |
---|
| 220 | * @param player the player that shall controll this Playable |
---|
| 221 | * @returns false on error true otherwise. |
---|
| 222 | */ |
---|
| 223 | bool Playable::setPlayer(Player* player) |
---|
| 224 | { |
---|
| 225 | // if we already have a Player inside do nothing |
---|
| 226 | if (this->currentPlayer != NULL && player != NULL) |
---|
| 227 | { |
---|
| 228 | return false; |
---|
| 229 | } |
---|
| 230 | |
---|
| 231 | // eject the Player if player == NULL |
---|
| 232 | if (this->currentPlayer != NULL && player == NULL) |
---|
| 233 | { |
---|
| 234 | PRINTF(4)("Player gets ejected\n"); |
---|
| 235 | |
---|
| 236 | // unsubscibe all events. |
---|
| 237 | std::vector<int>::iterator ev; |
---|
| 238 | for (ev = this->events.begin(); ev != events.end(); ev++) |
---|
[7868] | 239 | player->unsubscribeEvent(ES_GAME, (*ev)); |
---|
[7346] | 240 | |
---|
| 241 | // leave the entity |
---|
| 242 | this->leave(); |
---|
| 243 | |
---|
| 244 | // eject the current Player. |
---|
| 245 | Player* ejectPlayer = this->currentPlayer; |
---|
| 246 | this->currentPlayer = NULL; |
---|
| 247 | // eject the Player. |
---|
| 248 | ejectPlayer->setPlayable(NULL); |
---|
| 249 | |
---|
| 250 | return true; |
---|
| 251 | } |
---|
| 252 | |
---|
| 253 | // get the new Player inside |
---|
| 254 | if (this->currentPlayer == NULL && player != NULL) |
---|
| 255 | { |
---|
| 256 | PRINTF(4)("New Player gets inside\n"); |
---|
| 257 | this->currentPlayer = player; |
---|
| 258 | if (this->currentPlayer->getPlayable() != this) |
---|
| 259 | this->currentPlayer->setPlayable(this); |
---|
| 260 | |
---|
| 261 | /*EventHandler*/ |
---|
| 262 | std::vector<int>::iterator ev; |
---|
| 263 | for (ev = this->events.begin(); ev != events.end(); ev++) |
---|
[7868] | 264 | player->subscribeEvent(ES_GAME, (*ev)); |
---|
[7346] | 265 | |
---|
| 266 | this->enter(); |
---|
| 267 | return true; |
---|
| 268 | } |
---|
| 269 | |
---|
| 270 | return false; |
---|
| 271 | } |
---|
| 272 | |
---|
| 273 | /** |
---|
| 274 | * @brief attaches the current Camera to this Playable |
---|
| 275 | * |
---|
| 276 | * this function can be derived, so that any Playable can make the attachment differently. |
---|
| 277 | */ |
---|
| 278 | void Playable::attachCamera() |
---|
| 279 | { |
---|
| 280 | State::getCameraNode()->setParentSoft(this); |
---|
| 281 | State::getCameraTargetNode()->setParentSoft(this); |
---|
| 282 | |
---|
| 283 | } |
---|
| 284 | |
---|
| 285 | /** |
---|
| 286 | * @brief detaches the Camera |
---|
| 287 | * @see void Playable::attachCamera() |
---|
| 288 | */ |
---|
| 289 | void Playable::detachCamera() |
---|
[8147] | 290 | { |
---|
| 291 | } |
---|
[7346] | 292 | |
---|
| 293 | |
---|
| 294 | /** |
---|
[7173] | 295 | * @brief sets the CameraMode. |
---|
| 296 | * @param cameraMode: the Mode to switch to. |
---|
| 297 | */ |
---|
| 298 | void Playable::setCameraMode(unsigned int cameraMode) |
---|
[7347] | 299 | { |
---|
| 300 | State::getCamera()->setViewMode((Camera::ViewMode)cameraMode); |
---|
| 301 | } |
---|
[7338] | 302 | |
---|
[7346] | 303 | |
---|
[7338] | 304 | /** |
---|
| 305 | * @brief sets the Playmode |
---|
| 306 | * @param playmode the Playmode |
---|
| 307 | * @returns true on success, false otherwise |
---|
| 308 | */ |
---|
[7339] | 309 | bool Playable::setPlaymode(Playable::Playmode playmode) |
---|
[7173] | 310 | { |
---|
[7338] | 311 | if (!this->playmodeSupported(playmode)) |
---|
| 312 | return false; |
---|
| 313 | else |
---|
[7345] | 314 | { |
---|
[7347] | 315 | this->enterPlaymode(playmode); |
---|
[7338] | 316 | this->playmode = playmode; |
---|
[7345] | 317 | return true; |
---|
| 318 | } |
---|
[7173] | 319 | } |
---|
| 320 | |
---|
[7346] | 321 | /** |
---|
| 322 | * @brief This function look, that the Playable rotates to the given rotation. |
---|
| 323 | * @param angle the Angle around |
---|
| 324 | * @param dirX directionX |
---|
| 325 | * @param dirY directionY |
---|
| 326 | * @param dirZ directionZ |
---|
| 327 | * @param speed how fast to turn there. |
---|
| 328 | */ |
---|
| 329 | void Playable::setPlayDirection(float angle, float dirX, float dirY, float dirZ, float speed) |
---|
| 330 | { |
---|
| 331 | this->setPlayDirection(Quaternion(angle, Vector(dirX, dirY, dirZ)), speed); |
---|
| 332 | } |
---|
[7173] | 333 | |
---|
[5872] | 334 | /** |
---|
[7346] | 335 | * @brief all Playable will enter the Playmode Differently, say here how to do it. |
---|
| 336 | * @param playmode the Playmode to enter. |
---|
| 337 | * |
---|
| 338 | * In this function all the actions that are required to enter the Playmode are described. |
---|
| 339 | * e.g: camera, rotation, wait cycle and so on... |
---|
[7347] | 340 | * |
---|
| 341 | * on enter of this function the playmode is still the old playmode. |
---|
[7346] | 342 | */ |
---|
| 343 | void Playable::enterPlaymode(Playable::Playmode playmode) |
---|
| 344 | { |
---|
[7347] | 345 | switch(playmode) |
---|
| 346 | { |
---|
| 347 | default: |
---|
| 348 | this->attachCamera(); |
---|
| 349 | break; |
---|
| 350 | case Playable::Horizontal: |
---|
| 351 | this->setCameraMode(Camera::ViewTop); |
---|
| 352 | break; |
---|
| 353 | case Playable::Vertical: |
---|
| 354 | this->setCameraMode(Camera::ViewLeft); |
---|
| 355 | break; |
---|
| 356 | case Playable::FromBehind: |
---|
| 357 | this->setCameraMode(Camera::ViewBehind); |
---|
| 358 | break; |
---|
| 359 | } |
---|
[7346] | 360 | } |
---|
| 361 | /** |
---|
[6436] | 362 | * @brief helps us colliding Playables |
---|
[7346] | 363 | * @param entity the Entity to collide |
---|
| 364 | * @param location where the collision occured. |
---|
[6436] | 365 | */ |
---|
| 366 | void Playable::collidesWith(WorldEntity* entity, const Vector& location) |
---|
| 367 | { |
---|
[7072] | 368 | if (entity == collider) |
---|
| 369 | return; |
---|
| 370 | collider = entity; |
---|
| 371 | |
---|
[7121] | 372 | if ( entity->isA(CL_PROJECTILE) && ( !State::isOnline() || SharedNetworkData::getInstance()->isGameServer() ) ) |
---|
[6966] | 373 | { |
---|
[7072] | 374 | this->decreaseHealth(entity->getHealth() *(float)rand()/(float)RAND_MAX); |
---|
[6966] | 375 | // EXTREME HACK |
---|
[7072] | 376 | if (this->getHealth() <= 0.0f) |
---|
[6966] | 377 | { |
---|
[8724] | 378 | // this->destory(); |
---|
[7482] | 379 | |
---|
| 380 | if( State::getGameRules() != NULL) |
---|
| 381 | State::getGameRules()->registerKill(Kill(entity, this)); |
---|
[6966] | 382 | } |
---|
| 383 | } |
---|
| 384 | } |
---|
[6436] | 385 | |
---|
[6966] | 386 | |
---|
[7044] | 387 | void Playable::respawn() |
---|
[6966] | 388 | { |
---|
[7044] | 389 | PRINTF(0)("Playable respawn\n"); |
---|
| 390 | // only if this is the spaceship of the player |
---|
| 391 | if( this == State::getPlayer()->getPlayable()) |
---|
| 392 | State::getGameRules()->onPlayerSpawn(); |
---|
[6966] | 393 | |
---|
[7085] | 394 | |
---|
[7082] | 395 | if( this->getOwner() % 2 == 0) |
---|
| 396 | { |
---|
[7338] | 397 | // this->toList(OM_GROUP_00); |
---|
[7082] | 398 | this->setAbsCoor(213.37, 57.71, -47.98); |
---|
[7100] | 399 | this->setAbsDir(0, 0, 1, 0); |
---|
[7082] | 400 | } |
---|
[6966] | 401 | else |
---|
[7099] | 402 | { // red team |
---|
[7338] | 403 | // this->toList(OM_GROUP_01); |
---|
[7082] | 404 | this->setAbsCoor(-314.450, 40.701, 83.554); |
---|
[7100] | 405 | this->setAbsDir(1.0, -0.015, -0.012, 0.011); |
---|
[7082] | 406 | } |
---|
[7118] | 407 | this->reset(); |
---|
| 408 | this->bDead = false; |
---|
[6436] | 409 | } |
---|
| 410 | |
---|
[6966] | 411 | |
---|
[7088] | 412 | |
---|
[8724] | 413 | |
---|
| 414 | void Playable::destroy() |
---|
[7044] | 415 | { |
---|
[7119] | 416 | Explosion::explode(dynamic_cast<PNode*>(this), Vector(1.0f, 1.0f, 1.0f)); |
---|
| 417 | |
---|
| 418 | |
---|
[7118] | 419 | if( !this->bDead) |
---|
| 420 | { |
---|
| 421 | PRINTF(0)("Playable dies\n"); |
---|
[7338] | 422 | // only if this is the spaceship of the player |
---|
[7118] | 423 | if (State::isOnline()) |
---|
| 424 | { |
---|
| 425 | if( this == State::getPlayer()->getPlayable()) |
---|
| 426 | State::getGameRules()->onPlayerDeath(); |
---|
[7044] | 427 | |
---|
[7338] | 428 | // this->toList(OM_GROUP_05); |
---|
| 429 | //HACK: moves the entity to an unknown place far far away: in the future, GameRules will look for that |
---|
[7118] | 430 | this->setAbsCoor(-2000.0, -2000.0, -2000.0); |
---|
[7078] | 431 | |
---|
[7338] | 432 | //explosion hack |
---|
[7118] | 433 | |
---|
| 434 | } |
---|
| 435 | this->bDead = true; |
---|
[7072] | 436 | } |
---|
[7044] | 437 | } |
---|
| 438 | |
---|
| 439 | |
---|
[6986] | 440 | |
---|
| 441 | |
---|
| 442 | |
---|
[5896] | 443 | /** |
---|
[7346] | 444 | * @brief add an event to the event list of events this Playable can capture |
---|
[5898] | 445 | * @param eventType the Type of event to add |
---|
[5889] | 446 | */ |
---|
[5896] | 447 | void Playable::registerEvent(int eventType) |
---|
[5889] | 448 | { |
---|
| 449 | this->events.push_back(eventType); |
---|
| 450 | |
---|
[5896] | 451 | if (this->currentPlayer != NULL) |
---|
[7868] | 452 | this->currentPlayer->subscribeEvent(ES_GAME, eventType); |
---|
[5889] | 453 | } |
---|
| 454 | |
---|
[5896] | 455 | /** |
---|
[7339] | 456 | * @brief remove an event to the event list this Playable can capture. |
---|
[5898] | 457 | * @param event the event to unregister. |
---|
[5896] | 458 | */ |
---|
| 459 | void Playable::unregisterEvent(int eventType) |
---|
| 460 | { |
---|
[7338] | 461 | std::vector<int>::iterator rmEvent = std::find(this->events.begin(), this->events.end(), eventType); |
---|
| 462 | this->events.erase(rmEvent); |
---|
[5889] | 463 | |
---|
[5896] | 464 | if (this->currentPlayer != NULL) |
---|
[7868] | 465 | this->currentPlayer->unsubscribeEvent(ES_GAME, eventType); |
---|
[5896] | 466 | } |
---|
[5889] | 467 | |
---|
[6804] | 468 | /** |
---|
| 469 | * @brief ticks a Playable |
---|
| 470 | * @param dt: the passed time since the last Tick |
---|
| 471 | */ |
---|
| 472 | void Playable::tick(float dt) |
---|
| 473 | { |
---|
[7337] | 474 | this->weaponMan.tick(dt); |
---|
[6804] | 475 | if (this->bFire) |
---|
[7337] | 476 | weaponMan.fire(); |
---|
[6804] | 477 | } |
---|
[5896] | 478 | |
---|
[6804] | 479 | |
---|
| 480 | /** |
---|
| 481 | * @brief processes Playable events. |
---|
| 482 | * @param event the Captured Event. |
---|
| 483 | */ |
---|
| 484 | void Playable::process(const Event &event) |
---|
| 485 | { |
---|
| 486 | if( event.type == KeyMapper::PEV_FIRE1) |
---|
| 487 | this->bFire = event.bPressed; |
---|
| 488 | else if( event.type == KeyMapper::PEV_NEXT_WEAPON && event.bPressed) |
---|
| 489 | { |
---|
| 490 | this->nextWeaponConfig(); |
---|
| 491 | } |
---|
| 492 | else if ( event.type == KeyMapper::PEV_PREVIOUS_WEAPON && event.bPressed) |
---|
| 493 | this->previousWeaponConfig(); |
---|
| 494 | } |
---|
| 495 | |
---|
| 496 | |
---|
[6959] | 497 | |
---|
[7346] | 498 | /** |
---|
| 499 | * @brief converts a string into a Playable::Playmode. |
---|
| 500 | * @param playmode the string naming the Playable::Playmode to convert. |
---|
| 501 | * @returns the Playable::Playmode converted from playmode. |
---|
| 502 | */ |
---|
[7339] | 503 | Playable::Playmode Playable::stringToPlaymode(const std::string& playmode) |
---|
| 504 | { |
---|
[7412] | 505 | if (playmode == Playable::playmodeNames[0]) |
---|
[7339] | 506 | return Playable::Vertical; |
---|
[7412] | 507 | if (playmode == Playable::playmodeNames[1]) |
---|
[7339] | 508 | return Playable::Horizontal; |
---|
[7412] | 509 | if (playmode == Playable::playmodeNames[2]) |
---|
[7339] | 510 | return Playable::FromBehind; |
---|
[7412] | 511 | if (playmode == Playable::playmodeNames[3]) |
---|
[7339] | 512 | return Playable::Full3D; |
---|
[8055] | 513 | if (playmode == Playable::playmodeNames[4]) |
---|
| 514 | return Playable::FirstPerson; |
---|
[7339] | 515 | |
---|
| 516 | return Playable::Full3D; |
---|
| 517 | } |
---|
| 518 | |
---|
[7346] | 519 | |
---|
| 520 | /** |
---|
| 521 | * @brief converts a playmode into a string. |
---|
| 522 | * @param playmode the Playable::Playmode to convert. |
---|
| 523 | * @returns the String. |
---|
| 524 | */ |
---|
[7412] | 525 | const std::string& Playable::playmodeToString(Playable::Playmode playmode) |
---|
[7339] | 526 | { |
---|
| 527 | switch(playmode) |
---|
| 528 | { |
---|
| 529 | case Playable::Vertical: |
---|
[7412] | 530 | return Playable::playmodeNames[0]; |
---|
[7339] | 531 | case Playable::Horizontal: |
---|
[7412] | 532 | return Playable::playmodeNames[1]; |
---|
[7339] | 533 | case Playable::FromBehind: |
---|
[7412] | 534 | return Playable::playmodeNames[2]; |
---|
[7339] | 535 | case Playable::Full3D: |
---|
[7412] | 536 | return Playable::playmodeNames[3]; |
---|
[8055] | 537 | case Playable::FirstPerson: |
---|
| 538 | return Playable::playmodeNames[4]; |
---|
[7339] | 539 | |
---|
| 540 | default: |
---|
[7412] | 541 | return Playable::playmodeNames[3]; |
---|
[7339] | 542 | } |
---|
[7412] | 543 | } |
---|
[7339] | 544 | |
---|
[7412] | 545 | /** |
---|
| 546 | * @brief PlaymodeNames |
---|
| 547 | */ |
---|
| 548 | const std::string Playable::playmodeNames[] = |
---|
| 549 | { |
---|
| 550 | "Vertical", |
---|
| 551 | "Horizontal", |
---|
| 552 | "FromBehind", |
---|
[8055] | 553 | "Full3D", |
---|
| 554 | "FirstPerson" |
---|
[7412] | 555 | }; |
---|