[2072] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Fabian 'x3n' Landau |
---|
| 24 | * Co-authors: |
---|
[8706] | 25 | * Simon Miescher |
---|
[2072] | 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | #include "Pawn.h" |
---|
| 30 | |
---|
[3280] | 31 | #include <algorithm> |
---|
| 32 | |
---|
[3196] | 33 | #include "core/CoreIncludes.h" |
---|
[2896] | 34 | #include "core/GameMode.h" |
---|
[2072] | 35 | #include "core/XMLPort.h" |
---|
[3196] | 36 | #include "network/NetworkFunction.h" |
---|
| 37 | |
---|
[5735] | 38 | #include "infos/PlayerInfo.h" |
---|
[6417] | 39 | #include "controllers/Controller.h" |
---|
[5735] | 40 | #include "gametypes/Gametype.h" |
---|
[5737] | 41 | #include "graphics/ParticleSpawner.h" |
---|
[5735] | 42 | #include "worldentities/ExplosionChunk.h" |
---|
| 43 | #include "worldentities/BigExplosion.h" |
---|
| 44 | #include "weaponsystem/WeaponSystem.h" |
---|
| 45 | #include "weaponsystem/WeaponSlot.h" |
---|
| 46 | #include "weaponsystem/WeaponPack.h" |
---|
| 47 | #include "weaponsystem/WeaponSet.h" |
---|
[2072] | 48 | |
---|
| 49 | namespace orxonox |
---|
| 50 | { |
---|
| 51 | CreateFactory(Pawn); |
---|
| 52 | |
---|
[7163] | 53 | Pawn::Pawn(BaseObject* creator) |
---|
| 54 | : ControllableEntity(creator) |
---|
| 55 | , RadarViewable(creator, static_cast<WorldEntity*>(this)) |
---|
[2072] | 56 | { |
---|
| 57 | RegisterObject(Pawn); |
---|
| 58 | |
---|
[2662] | 59 | this->bAlive_ = true; |
---|
[3053] | 60 | this->bReload_ = false; |
---|
[2072] | 61 | |
---|
| 62 | this->health_ = 0; |
---|
| 63 | this->maxHealth_ = 0; |
---|
| 64 | this->initialHealth_ = 0; |
---|
[8706] | 65 | |
---|
[7163] | 66 | this->shieldHealth_ = 0; |
---|
[8706] | 67 | this->initialShieldHealth_ = 0; |
---|
| 68 | this->maxShieldHealth_ = 100; //otherwise shield might increase to float_max |
---|
[7163] | 69 | this->shieldAbsorption_ = 0.5; |
---|
[2072] | 70 | |
---|
[8706] | 71 | this->reloadRate_ = 0; |
---|
| 72 | this->reloadWaitTime_ = 1.0f; |
---|
| 73 | this->reloadWaitCountdown_ = 0; |
---|
| 74 | |
---|
[2072] | 75 | this->lastHitOriginator_ = 0; |
---|
| 76 | |
---|
[9348] | 77 | // set damage multiplier to default value 1, meaning nominal damage |
---|
| 78 | this->damageMultiplier_ = 1; |
---|
| 79 | |
---|
[2662] | 80 | this->spawnparticleduration_ = 3.0f; |
---|
[2098] | 81 | |
---|
[6417] | 82 | this->aimPosition_ = Vector3::ZERO; |
---|
| 83 | |
---|
[2896] | 84 | if (GameMode::isMaster()) |
---|
[2662] | 85 | { |
---|
| 86 | this->weaponSystem_ = new WeaponSystem(this); |
---|
[3053] | 87 | this->weaponSystem_->setPawn(this); |
---|
[2662] | 88 | } |
---|
| 89 | else |
---|
| 90 | this->weaponSystem_ = 0; |
---|
| 91 | |
---|
| 92 | this->setRadarObjectColour(ColourValue::Red); |
---|
| 93 | this->setRadarObjectShape(RadarViewable::Dot); |
---|
| 94 | |
---|
[2072] | 95 | this->registerVariables(); |
---|
[3089] | 96 | |
---|
| 97 | this->isHumanShip_ = this->hasLocalController(); |
---|
[8891] | 98 | |
---|
[8329] | 99 | this->setSyncMode(ObjectDirection::Bidirectional); // needed to synchronise e.g. aimposition |
---|
[2072] | 100 | } |
---|
| 101 | |
---|
| 102 | Pawn::~Pawn() |
---|
| 103 | { |
---|
[2662] | 104 | if (this->isInitialized()) |
---|
| 105 | { |
---|
| 106 | if (this->weaponSystem_) |
---|
[5929] | 107 | this->weaponSystem_->destroy(); |
---|
[2662] | 108 | } |
---|
[2072] | 109 | } |
---|
| 110 | |
---|
| 111 | void Pawn::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
| 112 | { |
---|
| 113 | SUPER(Pawn, XMLPort, xmlelement, mode); |
---|
| 114 | |
---|
[2662] | 115 | XMLPortParam(Pawn, "health", setHealth, getHealth, xmlelement, mode).defaultValues(100); |
---|
[2072] | 116 | XMLPortParam(Pawn, "maxhealth", setMaxHealth, getMaxHealth, xmlelement, mode).defaultValues(200); |
---|
| 117 | XMLPortParam(Pawn, "initialhealth", setInitialHealth, getInitialHealth, xmlelement, mode).defaultValues(100); |
---|
[7163] | 118 | |
---|
| 119 | XMLPortParam(Pawn, "shieldhealth", setShieldHealth, getShieldHealth, xmlelement, mode).defaultValues(0); |
---|
[8706] | 120 | XMLPortParam(Pawn, "initialshieldhealth", setInitialShieldHealth, getInitialShieldHealth, xmlelement, mode).defaultValues(0); |
---|
| 121 | XMLPortParam(Pawn, "maxshieldhealth", setMaxShieldHealth, getMaxShieldHealth, xmlelement, mode).defaultValues(100); |
---|
[7163] | 122 | XMLPortParam(Pawn, "shieldabsorption", setShieldAbsorption, getShieldAbsorption, xmlelement, mode).defaultValues(0); |
---|
| 123 | |
---|
[2662] | 124 | XMLPortParam(Pawn, "spawnparticlesource", setSpawnParticleSource, getSpawnParticleSource, xmlelement, mode); |
---|
| 125 | XMLPortParam(Pawn, "spawnparticleduration", setSpawnParticleDuration, getSpawnParticleDuration, xmlelement, mode).defaultValues(3.0f); |
---|
| 126 | XMLPortParam(Pawn, "explosionchunks", setExplosionChunks, getExplosionChunks, xmlelement, mode).defaultValues(7); |
---|
| 127 | |
---|
[3053] | 128 | XMLPortObject(Pawn, WeaponSlot, "weaponslots", addWeaponSlot, getWeaponSlot, xmlelement, mode); |
---|
| 129 | XMLPortObject(Pawn, WeaponSet, "weaponsets", addWeaponSet, getWeaponSet, xmlelement, mode); |
---|
[6417] | 130 | XMLPortObject(Pawn, WeaponPack, "weapons", addWeaponPackXML, getWeaponPack, xmlelement, mode); |
---|
[8706] | 131 | |
---|
| 132 | XMLPortParam(Pawn, "reloadrate", setReloadRate, getReloadRate, xmlelement, mode).defaultValues(0); |
---|
| 133 | XMLPortParam(Pawn, "reloadwaittime", setReloadWaitTime, getReloadWaitTime, xmlelement, mode).defaultValues(1.0f); |
---|
[9254] | 134 | |
---|
[9257] | 135 | XMLPortParam ( RadarViewable, "radarname", setRadarName, getRadarName, xmlelement, mode ); |
---|
[2072] | 136 | } |
---|
| 137 | |
---|
| 138 | void Pawn::registerVariables() |
---|
| 139 | { |
---|
[7163] | 140 | registerVariable(this->bAlive_, VariableDirection::ToClient); |
---|
| 141 | registerVariable(this->health_, VariableDirection::ToClient); |
---|
[8706] | 142 | registerVariable(this->maxHealth_, VariableDirection::ToClient); |
---|
[7163] | 143 | registerVariable(this->shieldHealth_, VariableDirection::ToClient); |
---|
[8706] | 144 | registerVariable(this->maxShieldHealth_, VariableDirection::ToClient); |
---|
[7163] | 145 | registerVariable(this->shieldAbsorption_, VariableDirection::ToClient); |
---|
| 146 | registerVariable(this->bReload_, VariableDirection::ToServer); |
---|
| 147 | registerVariable(this->aimPosition_, VariableDirection::ToServer); // For the moment this variable gets only transfered to the server |
---|
[2072] | 148 | } |
---|
| 149 | |
---|
| 150 | void Pawn::tick(float dt) |
---|
| 151 | { |
---|
[2809] | 152 | SUPER(Pawn, tick, dt); |
---|
[2072] | 153 | |
---|
[3053] | 154 | this->bReload_ = false; |
---|
[2662] | 155 | |
---|
[8706] | 156 | // TODO: use the existing timer functions instead |
---|
| 157 | if(this->reloadWaitCountdown_ > 0) |
---|
| 158 | { |
---|
| 159 | this->decreaseReloadCountdownTime(dt); |
---|
| 160 | } |
---|
| 161 | else |
---|
| 162 | { |
---|
| 163 | this->addShieldHealth(this->getReloadRate() * dt); |
---|
| 164 | this->resetReloadCountdown(); |
---|
| 165 | } |
---|
| 166 | |
---|
[3084] | 167 | if (GameMode::isMaster()) |
---|
[8706] | 168 | { |
---|
[3087] | 169 | if (this->health_ <= 0 && bAlive_) |
---|
[6864] | 170 | { |
---|
[8706] | 171 | this->fireEvent(); // Event to notify anyone who wants to know about the death. |
---|
[3087] | 172 | this->death(); |
---|
[6864] | 173 | } |
---|
[8706] | 174 | } |
---|
[2072] | 175 | } |
---|
| 176 | |
---|
[7889] | 177 | void Pawn::preDestroy() |
---|
| 178 | { |
---|
| 179 | // yay, multiple inheritance! |
---|
| 180 | this->ControllableEntity::preDestroy(); |
---|
| 181 | this->PickupCarrier::preDestroy(); |
---|
| 182 | } |
---|
| 183 | |
---|
[2826] | 184 | void Pawn::setPlayer(PlayerInfo* player) |
---|
| 185 | { |
---|
| 186 | ControllableEntity::setPlayer(player); |
---|
| 187 | |
---|
| 188 | if (this->getGametype()) |
---|
| 189 | this->getGametype()->playerStartsControllingPawn(player, this); |
---|
| 190 | } |
---|
| 191 | |
---|
| 192 | void Pawn::removePlayer() |
---|
| 193 | { |
---|
| 194 | if (this->getGametype()) |
---|
| 195 | this->getGametype()->playerStopsControllingPawn(this->getPlayer(), this); |
---|
| 196 | |
---|
| 197 | ControllableEntity::removePlayer(); |
---|
| 198 | } |
---|
| 199 | |
---|
[8706] | 200 | |
---|
[2072] | 201 | void Pawn::setHealth(float health) |
---|
| 202 | { |
---|
[8706] | 203 | this->health_ = std::min(health, this->maxHealth_); //Health can't be set to a value bigger than maxHealth, otherwise it will be reduced at first hit |
---|
[2072] | 204 | } |
---|
| 205 | |
---|
[8706] | 206 | void Pawn::setShieldHealth(float shieldHealth) |
---|
[2072] | 207 | { |
---|
[8706] | 208 | this->shieldHealth_ = std::min(shieldHealth, this->maxShieldHealth_); |
---|
| 209 | } |
---|
| 210 | |
---|
| 211 | void Pawn::setMaxShieldHealth(float maxshieldhealth) |
---|
| 212 | { |
---|
| 213 | this->maxShieldHealth_ = maxshieldhealth; |
---|
| 214 | } |
---|
| 215 | |
---|
| 216 | void Pawn::setReloadRate(float reloadrate) |
---|
| 217 | { |
---|
| 218 | this->reloadRate_ = reloadrate; |
---|
| 219 | } |
---|
| 220 | |
---|
| 221 | void Pawn::setReloadWaitTime(float reloadwaittime) |
---|
| 222 | { |
---|
| 223 | this->reloadWaitTime_ = reloadwaittime; |
---|
| 224 | } |
---|
| 225 | |
---|
| 226 | void Pawn::decreaseReloadCountdownTime(float dt) |
---|
| 227 | { |
---|
| 228 | this->reloadWaitCountdown_ -= dt; |
---|
| 229 | } |
---|
| 230 | |
---|
| 231 | void Pawn::damage(float damage, float healthdamage, float shielddamage, Pawn* originator) |
---|
| 232 | { |
---|
[9348] | 233 | // Applies multiplier given by the DamageBoost Pickup. |
---|
| 234 | if (originator) |
---|
| 235 | damage *= originator->getDamageMultiplier(); |
---|
| 236 | |
---|
[2826] | 237 | if (this->getGametype() && this->getGametype()->allowPawnDamage(this, originator)) |
---|
| 238 | { |
---|
[8706] | 239 | if (shielddamage >= this->getShieldHealth()) |
---|
[7163] | 240 | { |
---|
| 241 | this->setShieldHealth(0); |
---|
[8706] | 242 | this->setHealth(this->health_ - (healthdamage + damage)); |
---|
[7163] | 243 | } |
---|
[8706] | 244 | else |
---|
| 245 | { |
---|
| 246 | this->setShieldHealth(this->shieldHealth_ - shielddamage); |
---|
[7163] | 247 | |
---|
[8706] | 248 | // remove remaining shieldAbsorpton-Part of damage from shield |
---|
| 249 | shielddamage = damage * this->shieldAbsorption_; |
---|
| 250 | shielddamage = std::min(this->getShieldHealth(),shielddamage); |
---|
| 251 | this->setShieldHealth(this->shieldHealth_ - shielddamage); |
---|
[7163] | 252 | |
---|
[8706] | 253 | // set remaining damage to health |
---|
| 254 | this->setHealth(this->health_ - (damage - shielddamage) - healthdamage); |
---|
[7163] | 255 | } |
---|
| 256 | |
---|
[2826] | 257 | this->lastHitOriginator_ = originator; |
---|
| 258 | } |
---|
[2072] | 259 | } |
---|
| 260 | |
---|
[8706] | 261 | // TODO: Still valid? |
---|
| 262 | /* HIT-Funktionen |
---|
| 263 | Die hit-Funktionen muessen auch in src/orxonox/controllers/Controller.h angepasst werden! (Visuelle Effekte) |
---|
| 264 | |
---|
| 265 | */ |
---|
| 266 | void Pawn::hit(Pawn* originator, const Vector3& force, float damage, float healthdamage, float shielddamage) |
---|
[2072] | 267 | { |
---|
[6417] | 268 | if (this->getGametype() && this->getGametype()->allowPawnHit(this, originator) && (!this->getController() || !this->getController()->getGodMode()) ) |
---|
[2826] | 269 | { |
---|
[8706] | 270 | this->damage(damage, healthdamage, shielddamage, originator); |
---|
[2826] | 271 | this->setVelocity(this->getVelocity() + force); |
---|
| 272 | } |
---|
[2072] | 273 | } |
---|
| 274 | |
---|
[8706] | 275 | |
---|
| 276 | void Pawn::hit(Pawn* originator, btManifoldPoint& contactpoint, float damage, float healthdamage, float shielddamage) |
---|
[6417] | 277 | { |
---|
| 278 | if (this->getGametype() && this->getGametype()->allowPawnHit(this, originator) && (!this->getController() || !this->getController()->getGodMode()) ) |
---|
| 279 | { |
---|
[8706] | 280 | this->damage(damage, healthdamage, shielddamage, originator); |
---|
[6417] | 281 | |
---|
| 282 | if ( this->getController() ) |
---|
[8706] | 283 | this->getController()->hit(originator, contactpoint, damage); // changed to damage, why shielddamage? |
---|
[6417] | 284 | } |
---|
| 285 | } |
---|
| 286 | |
---|
[8706] | 287 | |
---|
[2072] | 288 | void Pawn::kill() |
---|
| 289 | { |
---|
| 290 | this->damage(this->health_); |
---|
| 291 | this->death(); |
---|
| 292 | } |
---|
| 293 | |
---|
[2662] | 294 | void Pawn::spawneffect() |
---|
[2072] | 295 | { |
---|
| 296 | // play spawn effect |
---|
[6417] | 297 | if (!this->spawnparticlesource_.empty()) |
---|
[2662] | 298 | { |
---|
| 299 | ParticleSpawner* effect = new ParticleSpawner(this->getCreator()); |
---|
| 300 | effect->setPosition(this->getPosition()); |
---|
| 301 | effect->setOrientation(this->getOrientation()); |
---|
| 302 | effect->setDestroyAfterLife(true); |
---|
| 303 | effect->setSource(this->spawnparticlesource_); |
---|
| 304 | effect->setLifetime(this->spawnparticleduration_); |
---|
| 305 | } |
---|
[2072] | 306 | } |
---|
| 307 | |
---|
| 308 | void Pawn::death() |
---|
| 309 | { |
---|
[3033] | 310 | this->setHealth(1); |
---|
[2826] | 311 | if (this->getGametype() && this->getGametype()->allowPawnDeath(this, this->lastHitOriginator_)) |
---|
| 312 | { |
---|
| 313 | // Set bAlive_ to false and wait for PawnManager to do the destruction |
---|
| 314 | this->bAlive_ = false; |
---|
[2662] | 315 | |
---|
[2826] | 316 | this->setDestroyWhenPlayerLeft(false); |
---|
[2662] | 317 | |
---|
[2826] | 318 | if (this->getGametype()) |
---|
| 319 | this->getGametype()->pawnKilled(this, this->lastHitOriginator_); |
---|
[2662] | 320 | |
---|
[3038] | 321 | if (this->getPlayer() && this->getPlayer()->getControllableEntity() == this) |
---|
| 322 | this->getPlayer()->stopControl(); |
---|
[2072] | 323 | |
---|
[2896] | 324 | if (GameMode::isMaster()) |
---|
[3087] | 325 | { |
---|
| 326 | // this->deathEffect(); |
---|
| 327 | this->goWithStyle(); |
---|
| 328 | } |
---|
[2826] | 329 | } |
---|
[2662] | 330 | } |
---|
[3087] | 331 | void Pawn::goWithStyle() |
---|
| 332 | { |
---|
| 333 | this->bAlive_ = false; |
---|
| 334 | this->setDestroyWhenPlayerLeft(false); |
---|
[2072] | 335 | |
---|
[3087] | 336 | BigExplosion* chunk = new BigExplosion(this->getCreator()); |
---|
| 337 | chunk->setPosition(this->getPosition()); |
---|
| 338 | |
---|
| 339 | } |
---|
[2662] | 340 | void Pawn::deatheffect() |
---|
| 341 | { |
---|
[2072] | 342 | // play death effect |
---|
[2662] | 343 | { |
---|
| 344 | ParticleSpawner* effect = new ParticleSpawner(this->getCreator()); |
---|
| 345 | effect->setPosition(this->getPosition()); |
---|
| 346 | effect->setOrientation(this->getOrientation()); |
---|
| 347 | effect->setDestroyAfterLife(true); |
---|
| 348 | effect->setSource("Orxonox/explosion2b"); |
---|
| 349 | effect->setLifetime(4.0f); |
---|
| 350 | } |
---|
| 351 | { |
---|
| 352 | ParticleSpawner* effect = new ParticleSpawner(this->getCreator()); |
---|
| 353 | effect->setPosition(this->getPosition()); |
---|
| 354 | effect->setOrientation(this->getOrientation()); |
---|
| 355 | effect->setDestroyAfterLife(true); |
---|
| 356 | effect->setSource("Orxonox/smoke6"); |
---|
| 357 | effect->setLifetime(4.0f); |
---|
| 358 | } |
---|
| 359 | { |
---|
| 360 | ParticleSpawner* effect = new ParticleSpawner(this->getCreator()); |
---|
| 361 | effect->setPosition(this->getPosition()); |
---|
| 362 | effect->setOrientation(this->getOrientation()); |
---|
| 363 | effect->setDestroyAfterLife(true); |
---|
| 364 | effect->setSource("Orxonox/sparks"); |
---|
| 365 | effect->setLifetime(4.0f); |
---|
| 366 | } |
---|
| 367 | for (unsigned int i = 0; i < this->numexplosionchunks_; ++i) |
---|
| 368 | { |
---|
| 369 | ExplosionChunk* chunk = new ExplosionChunk(this->getCreator()); |
---|
| 370 | chunk->setPosition(this->getPosition()); |
---|
| 371 | } |
---|
[2072] | 372 | } |
---|
| 373 | |
---|
[6417] | 374 | void Pawn::fired(unsigned int firemode) |
---|
[2098] | 375 | { |
---|
[6417] | 376 | if (this->weaponSystem_) |
---|
| 377 | this->weaponSystem_->fire(firemode); |
---|
[2098] | 378 | } |
---|
| 379 | |
---|
[3053] | 380 | void Pawn::reload() |
---|
| 381 | { |
---|
| 382 | this->bReload_ = true; |
---|
| 383 | } |
---|
| 384 | |
---|
[2072] | 385 | void Pawn::postSpawn() |
---|
| 386 | { |
---|
| 387 | this->setHealth(this->initialHealth_); |
---|
[2896] | 388 | if (GameMode::isMaster()) |
---|
[2662] | 389 | this->spawneffect(); |
---|
[2072] | 390 | } |
---|
[2662] | 391 | |
---|
[2893] | 392 | /* WeaponSystem: |
---|
| 393 | * functions load Slot, Set, Pack from XML and make sure all parent-pointers are set. |
---|
| 394 | * with setWeaponPack you can not just load a Pack from XML but if a Pack already exists anywhere, you can attach it. |
---|
| 395 | * --> e.g. Pickup-Items |
---|
| 396 | */ |
---|
[3053] | 397 | void Pawn::addWeaponSlot(WeaponSlot * wSlot) |
---|
[2662] | 398 | { |
---|
| 399 | this->attach(wSlot); |
---|
| 400 | if (this->weaponSystem_) |
---|
[3053] | 401 | this->weaponSystem_->addWeaponSlot(wSlot); |
---|
[2662] | 402 | } |
---|
| 403 | |
---|
| 404 | WeaponSlot * Pawn::getWeaponSlot(unsigned int index) const |
---|
| 405 | { |
---|
| 406 | if (this->weaponSystem_) |
---|
[3053] | 407 | return this->weaponSystem_->getWeaponSlot(index); |
---|
[2662] | 408 | else |
---|
| 409 | return 0; |
---|
| 410 | } |
---|
| 411 | |
---|
[3053] | 412 | void Pawn::addWeaponSet(WeaponSet * wSet) |
---|
[2662] | 413 | { |
---|
| 414 | if (this->weaponSystem_) |
---|
[3053] | 415 | this->weaponSystem_->addWeaponSet(wSet); |
---|
[2662] | 416 | } |
---|
| 417 | |
---|
[3053] | 418 | WeaponSet * Pawn::getWeaponSet(unsigned int index) const |
---|
[2662] | 419 | { |
---|
| 420 | if (this->weaponSystem_) |
---|
[3053] | 421 | return this->weaponSystem_->getWeaponSet(index); |
---|
[2662] | 422 | else |
---|
| 423 | return 0; |
---|
| 424 | } |
---|
| 425 | |
---|
[3053] | 426 | void Pawn::addWeaponPack(WeaponPack * wPack) |
---|
[2662] | 427 | { |
---|
| 428 | if (this->weaponSystem_) |
---|
[7163] | 429 | { |
---|
[3053] | 430 | this->weaponSystem_->addWeaponPack(wPack); |
---|
[7163] | 431 | this->addedWeaponPack(wPack); |
---|
| 432 | } |
---|
[2662] | 433 | } |
---|
| 434 | |
---|
[6417] | 435 | void Pawn::addWeaponPackXML(WeaponPack * wPack) |
---|
| 436 | { |
---|
| 437 | if (this->weaponSystem_) |
---|
[7163] | 438 | { |
---|
[6417] | 439 | if (!this->weaponSystem_->addWeaponPack(wPack)) |
---|
| 440 | wPack->destroy(); |
---|
[7163] | 441 | else |
---|
| 442 | this->addedWeaponPack(wPack); |
---|
| 443 | } |
---|
[6417] | 444 | } |
---|
| 445 | |
---|
[3053] | 446 | WeaponPack * Pawn::getWeaponPack(unsigned int index) const |
---|
[2662] | 447 | { |
---|
| 448 | if (this->weaponSystem_) |
---|
[3053] | 449 | return this->weaponSystem_->getWeaponPack(index); |
---|
[2662] | 450 | else |
---|
| 451 | return 0; |
---|
| 452 | } |
---|
| 453 | |
---|
[3089] | 454 | //Tell the Map (RadarViewable), if this is a playership |
---|
| 455 | void Pawn::startLocalHumanControl() |
---|
| 456 | { |
---|
| 457 | // SUPER(ControllableEntity, changedPlayer()); |
---|
| 458 | ControllableEntity::startLocalHumanControl(); |
---|
| 459 | this->isHumanShip_ = true; |
---|
| 460 | } |
---|
[8891] | 461 | |
---|
| 462 | void Pawn::changedVisibility(void) |
---|
| 463 | { |
---|
| 464 | SUPER(Pawn, changedVisibility); |
---|
[9254] | 465 | |
---|
| 466 | // enable proper radarviewability when the visibility is changed |
---|
| 467 | this->RadarViewable::settingsChanged(); |
---|
[8891] | 468 | } |
---|
| 469 | |
---|
[2072] | 470 | } |
---|