Changeset 6433 in orxonox.OLD for trunk/src/world_entities/weapons
- Timestamp:
- Jan 8, 2006, 1:50:16 AM (19 years ago)
- Location:
- trunk/src/world_entities/weapons
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/weapons/guided_missile.cc
r6431 r6433 134 134 void GuidedMissile::collidesWith(WorldEntity* entity, const Vector& location) 135 135 { 136 if (this->hitEntity != entity && entity->isA(CL_NPC))136 if (this->hitEntity != entity) 137 137 this->destroy(); 138 138 this->hitEntity = entity; -
trunk/src/world_entities/weapons/rocket.cc
r6431 r6433 132 132 void Rocket::collidesWith(WorldEntity* entity, const Vector& location) 133 133 { 134 if (this->hitEntity != entity && entity->isA(CL_NPC))134 if (this->hitEntity != entity) 135 135 this->destroy(); 136 136 this->hitEntity = entity; -
trunk/src/world_entities/weapons/weapon.cc
r6431 r6433 373 373 // if (this->currentState == WS_INACTIVE) 374 374 { 375 375 // play Sound 376 376 if (likely(this->soundBuffers[WA_ACTIVATE] != NULL)) 377 377 this->soundSource->play(this->soundBuffers[WA_ACTIVATE]); … … 564 564 void Weapon::debug() const 565 565 { 566 PRINT( 3)("Weapon-Debug %s, state: %s, nextAction: %s\n", this->getName(), Weapon::stateToChar(this->currentState), Weapon::actionToChar(requestedAction));567 PRINT( 3)("Energy: max: %f; current: %f; loadedMax: %f; loadedCurrent: %f; chargeMin: %f, chargeMax %f\n",566 PRINT(0)("Weapon-Debug %s, state: %s (duration: %fs), nextAction: %s\n", this->getName(), Weapon::stateToChar(this->currentState), this->stateDuration, Weapon::actionToChar(requestedAction)); 567 PRINT(0)("Energy: max: %f; current: %f; loadedMax: %f; loadedCurrent: %f; chargeMin: %f, chargeMax %f\n", 568 568 this->energyMax, this->energy, this->energyLoadedMax, this->energyLoaded, this->minCharge, this->maxCharge); 569 569
Note: See TracChangeset
for help on using the changeset viewer.