[3573] | 1 | |
---|
[4597] | 2 | /* |
---|
[3573] | 3 | orxonox - the future of 3D-vertical-scrollers |
---|
| 4 | |
---|
| 5 | Copyright (C) 2004 orx |
---|
| 6 | |
---|
| 7 | This program is free software; you can redistribute it and/or modify |
---|
| 8 | it under the terms of the GNU General Public License as published by |
---|
| 9 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 10 | any later version. |
---|
| 11 | |
---|
[4826] | 12 | ### File Specific |
---|
[3573] | 13 | main-programmer: Patrick Boenzli |
---|
[4832] | 14 | co-programmer: Benjamin Grauer |
---|
[4885] | 15 | |
---|
| 16 | 2005-07-15: Benjamin Grauer: restructurating the entire Class |
---|
[3573] | 17 | */ |
---|
| 18 | |
---|
[4885] | 19 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WEAPON |
---|
| 20 | |
---|
[4828] | 21 | #include "weapon.h" |
---|
| 22 | |
---|
[5355] | 23 | #include "fast_factory.h" |
---|
[4834] | 24 | #include "projectile.h" |
---|
| 25 | |
---|
[5143] | 26 | #include "resource_manager.h" |
---|
[4894] | 27 | #include "class_list.h" |
---|
[4834] | 28 | #include "load_param.h" |
---|
[4828] | 29 | #include "state.h" |
---|
[4885] | 30 | #include "animation3d.h" |
---|
[4948] | 31 | #include "vector.h" |
---|
[3573] | 32 | |
---|
[5930] | 33 | #include "sound_source.h" |
---|
| 34 | #include "sound_buffer.h" |
---|
| 35 | |
---|
[4892] | 36 | //////////////////// |
---|
| 37 | // INITAILISATION // |
---|
| 38 | // SETTING VALUES // |
---|
| 39 | //////////////////// |
---|
[3870] | 40 | /** |
---|
[4885] | 41 | * standard constructor |
---|
| 42 | * |
---|
| 43 | * creates a new weapon |
---|
[3575] | 44 | */ |
---|
[5750] | 45 | Weapon::Weapon () |
---|
[3620] | 46 | { |
---|
[4885] | 47 | this->init(); |
---|
[3620] | 48 | } |
---|
[3573] | 49 | |
---|
[3575] | 50 | /** |
---|
[4885] | 51 | * standard deconstructor |
---|
[3575] | 52 | */ |
---|
[4597] | 53 | Weapon::~Weapon () |
---|
[3573] | 54 | { |
---|
[4885] | 55 | for (int i = 0; i < WS_STATE_COUNT; i++) |
---|
[4894] | 56 | if (this->animation[i] && ClassList::exists(animation[i], CL_ANIMATION)) //!< @todo this should check animation3D |
---|
[4885] | 57 | delete this->animation[i]; |
---|
| 58 | for (int i = 0; i < WA_ACTION_COUNT; i++) |
---|
[5302] | 59 | if (this->soundBuffers[i] != NULL && ClassList::exists(this->soundBuffers[i], CL_SOUND_BUFFER)) |
---|
[4885] | 60 | ResourceManager::getInstance()->unload(this->soundBuffers[i]); |
---|
[4959] | 61 | |
---|
| 62 | if (ClassList::exists(this->soundSource, CL_SOUND_SOURCE)) |
---|
| 63 | delete this->soundSource; |
---|
[4885] | 64 | } |
---|
[4597] | 65 | |
---|
[4885] | 66 | /** |
---|
| 67 | * initializes the Weapon with ALL default values |
---|
[5498] | 68 | * |
---|
| 69 | * This Sets the default values of the Weapon |
---|
[4885] | 70 | */ |
---|
| 71 | void Weapon::init() |
---|
| 72 | { |
---|
[5498] | 73 | this->currentState = WS_INACTIVE; //< Normaly the Weapon is Inactive |
---|
| 74 | this->requestedAction = WA_NONE; //< No action is requested by default |
---|
| 75 | this->stateDuration = 0.0; //< All the States have zero duration |
---|
| 76 | for (int i = 0; i < WS_STATE_COUNT; i++) //< Every State has: |
---|
[4885] | 77 | { |
---|
[5498] | 78 | this->times[i] = 0.0; //< An infinitesimal duration |
---|
| 79 | this->animation[i] = NULL; //< No animation |
---|
[4885] | 80 | } |
---|
| 81 | for (int i = 0; i < WA_ACTION_COUNT; i++) |
---|
[5498] | 82 | this->soundBuffers[i] = NULL; //< No Sounds |
---|
[3888] | 83 | |
---|
[5498] | 84 | this->soundSource = new SoundSource(this); //< Every Weapon has exacty one SoundSource. |
---|
| 85 | this->emissionPoint.setParent(this); //< One EmissionPoint, that is a PNode connected to the weapon. You can set this to the exitting point of the Projectiles |
---|
[4885] | 86 | |
---|
[5498] | 87 | this->projectile = CL_NULL; //< No Projectile Class is Connected to this weapon |
---|
| 88 | this->projectileFactory = NULL; //< No Factory generating Projectiles is selected. |
---|
[4885] | 89 | |
---|
[5498] | 90 | this->hideInactive = true; //< The Weapon will be hidden if it is inactive (by default) |
---|
[4906] | 91 | |
---|
[5498] | 92 | this->minCharge = 1.0; //< The minimum charge the Weapon can hold is 1 unit. |
---|
| 93 | this->maxCharge = 1.0; //< The maximum charge is also one unit. |
---|
[4927] | 94 | |
---|
[5498] | 95 | this->energyLoaded = .0; //< How much energy is loaded in the Gun. (Weapons must be charged befor usage) |
---|
| 96 | this->energyLoadedMax = 5.0; //< Each Weapon has a Maximum energy that can be charged onto it |
---|
| 97 | this->energy = .0; //< The secondary Buffer (before we have to reload) |
---|
| 98 | this->energyMax = 10.0; //< How much energy can be carried |
---|
| 99 | this->capability = WTYPE_ALL; //< The Weapon has all capabilities @see W_Capability. |
---|
[3573] | 100 | } |
---|
| 101 | |
---|
[5498] | 102 | /** |
---|
| 103 | * loads the Parameters of a Weapon |
---|
| 104 | * @param root the XML-Element to load the Weapons settings from |
---|
| 105 | */ |
---|
[4972] | 106 | void Weapon::loadParams(const TiXmlElement* root) |
---|
| 107 | { |
---|
| 108 | static_cast<WorldEntity*>(this)->loadParams(root); |
---|
| 109 | |
---|
[5671] | 110 | LoadParam(root, "projectile", this, Weapon, setProjectileType) |
---|
[4972] | 111 | .describe("Sets the name of the Projectile to load onto the Entity"); |
---|
| 112 | |
---|
[5671] | 113 | LoadParam(root, "emission-point", this, Weapon, setEmissionPoint) |
---|
[4972] | 114 | .describe("Sets the Point of emission of this weapon"); |
---|
| 115 | |
---|
[5671] | 116 | LoadParam(root, "state-duration", this, Weapon, setStateDuration) |
---|
[4972] | 117 | .describe("Sets the duration of a given state (1: state-Name; 2: duration in seconds)"); |
---|
| 118 | |
---|
[5671] | 119 | LoadParam(root, "action-sound", this, Weapon, setActionSound) |
---|
[4972] | 120 | .describe("Sets a given sound to an action (1: action-Name; 2: name of the sound (relative to the Data-Path))"); |
---|
| 121 | } |
---|
| 122 | |
---|
[4947] | 123 | /** |
---|
| 124 | * sets the Projectile to use for this weapon. |
---|
| 125 | * @param projectile The ID of the Projectile to use |
---|
[4950] | 126 | * @returns true, if it was sucessfull, false on error |
---|
[4947] | 127 | * |
---|
[5498] | 128 | * be aware, that this function does not create Factories, as this is job of Projecitle/Bullet-classes. |
---|
| 129 | * What it does, is telling the Weapon what Projectiles it can Emit. |
---|
[4947] | 130 | */ |
---|
[5356] | 131 | void Weapon::setProjectileType(ClassID projectile) |
---|
[4947] | 132 | { |
---|
| 133 | if (projectile == CL_NULL) |
---|
[4972] | 134 | return; |
---|
[4947] | 135 | this->projectile = projectile; |
---|
| 136 | this->projectileFactory = FastFactory::searchFastFactory(projectile); |
---|
| 137 | if (this->projectileFactory == NULL) |
---|
[4979] | 138 | { |
---|
| 139 | PRINTF(1)("unable to find FastFactory for the Projectile.\n"); |
---|
[4972] | 140 | return; |
---|
[4979] | 141 | } |
---|
[4948] | 142 | else |
---|
| 143 | { |
---|
| 144 | // grabbing Parameters from the Projectile to have them at hand here. |
---|
| 145 | Projectile* pj = dynamic_cast<Projectile*>(this->projectileFactory->resurrect()); |
---|
| 146 | this->minCharge = pj->getEnergyMin(); |
---|
| 147 | this->maxCharge = pj->getEnergyMax(); |
---|
| 148 | this->chargeable = pj->isChageable(); |
---|
[4979] | 149 | this->projectileFactory->kill(pj); |
---|
[4948] | 150 | } |
---|
[4979] | 151 | } |
---|
[3573] | 152 | |
---|
[4891] | 153 | /** |
---|
[4950] | 154 | * @see bool Weapon::setProjectile(ClassID projectile) |
---|
| 155 | * @param projectile the Name of the Projectile. |
---|
| 156 | */ |
---|
[5356] | 157 | void Weapon::setProjectileType(const char* projectile) |
---|
[4950] | 158 | { |
---|
| 159 | if (projectile == NULL) |
---|
[4972] | 160 | return; |
---|
[4950] | 161 | FastFactory* tmpFac = FastFactory::searchFastFactory(projectile); |
---|
| 162 | if (tmpFac != NULL) |
---|
| 163 | { |
---|
[5356] | 164 | this->setProjectileType(tmpFac->getStoredID()); |
---|
[4950] | 165 | } |
---|
[4972] | 166 | else |
---|
| 167 | { |
---|
[5356] | 168 | PRINTF(1)("Projectile %s does not exist for weapon %s\n", projectile, this->getName()); |
---|
[4972] | 169 | } |
---|
[4950] | 170 | } |
---|
| 171 | |
---|
| 172 | /** |
---|
[5356] | 173 | * prepares Projectiles of the Weapon |
---|
[5498] | 174 | * @param count how many Projectiles to create (they will be stored in the ProjectileFactory) |
---|
[5356] | 175 | */ |
---|
| 176 | void Weapon::prepareProjectiles(unsigned int count) |
---|
| 177 | { |
---|
[5357] | 178 | if (likely(this->projectileFactory != NULL)) |
---|
[5356] | 179 | projectileFactory->prepare(count); |
---|
| 180 | else |
---|
[5357] | 181 | PRINTF(2)("unable to create %d projectile for Weapon %s (%s)\n", count, this->getName(), this->getClassName()); |
---|
[5356] | 182 | } |
---|
| 183 | |
---|
| 184 | /** |
---|
| 185 | * resurects and returns a Projectile |
---|
[5498] | 186 | * @returns a Projectile on success, NULL on error |
---|
| 187 | * |
---|
| 188 | * errors: 1. (ProjectileFastFactory not Found) |
---|
| 189 | * 2. No more Projectiles availiable. |
---|
[5356] | 190 | */ |
---|
| 191 | Projectile* Weapon::getProjectile() |
---|
| 192 | { |
---|
[5357] | 193 | if (likely (this->projectileFactory != NULL)) |
---|
[5356] | 194 | return dynamic_cast<Projectile*>(this->projectileFactory->resurrect()); |
---|
| 195 | else |
---|
| 196 | { |
---|
[5498] | 197 | PRINTF(2)("No projectile defined for Weapon %s(%s) can't return any\n", this->getName(), this->getClassName()); |
---|
[5356] | 198 | return NULL; |
---|
| 199 | } |
---|
| 200 | } |
---|
| 201 | |
---|
| 202 | |
---|
| 203 | /** |
---|
[4892] | 204 | * sets the emissionPoint's relative position from the Weapon |
---|
| 205 | * @param point the Point relative to the mass-point of the Weapon |
---|
| 206 | */ |
---|
| 207 | void Weapon::setEmissionPoint(const Vector& point) |
---|
| 208 | { |
---|
| 209 | this->emissionPoint.setRelCoor(point); |
---|
| 210 | } |
---|
| 211 | |
---|
| 212 | /** |
---|
[4891] | 213 | * assigns a Sound-file to an action |
---|
| 214 | * @param action the action the sound should be assigned too |
---|
| 215 | * @param soundFile the soundFile's relative position to the data-directory (will be looked for by the ResourceManager) |
---|
| 216 | */ |
---|
[4885] | 217 | void Weapon::setActionSound(WeaponAction action, const char* soundFile) |
---|
| 218 | { |
---|
| 219 | if (action >= WA_ACTION_COUNT) |
---|
| 220 | return; |
---|
[4930] | 221 | if (this->soundBuffers[action] != NULL) |
---|
| 222 | ResourceManager::getInstance()->unload(this->soundBuffers[action]); |
---|
| 223 | |
---|
[4885] | 224 | else if (soundFile != NULL) |
---|
| 225 | { |
---|
| 226 | this->soundBuffers[action] = (SoundBuffer*)ResourceManager::getInstance()->load(soundFile, WAV); |
---|
| 227 | if (this->soundBuffers[action] != NULL) |
---|
| 228 | { |
---|
[4967] | 229 | PRINTF(4)("Loaded sound %s to action %s.\n", soundFile, actionToChar(action)); |
---|
[4885] | 230 | } |
---|
| 231 | else |
---|
| 232 | { |
---|
[5041] | 233 | PRINTF(2)("Failed to load sound %s to %s.\n.", soundFile, actionToChar(action)); |
---|
[4885] | 234 | } |
---|
| 235 | } |
---|
| 236 | else |
---|
| 237 | this->soundBuffers[action] = NULL; |
---|
| 238 | } |
---|
| 239 | |
---|
[4893] | 240 | /** |
---|
[4895] | 241 | * creates/returns an Animation3D for a certain State. |
---|
| 242 | * @param state what State should the Animation be created/returned for |
---|
| 243 | * @param node the node this Animation should apply to. (NULL is fine if the animation was already created) |
---|
| 244 | * @returns The created animation.Animation(), NULL on error (or if the animation does not yet exist). |
---|
[4893] | 245 | * |
---|
| 246 | * This function does only generate the Animation Object, and if set it will |
---|
| 247 | * automatically be executed, when a certain State is reached. |
---|
| 248 | * What this does not do, is set keyframes, you have to operate on the returned animation. |
---|
| 249 | */ |
---|
[4895] | 250 | Animation3D* Weapon::getAnimation(WeaponState state, PNode* node) |
---|
[4893] | 251 | { |
---|
[4895] | 252 | if (state >= WS_STATE_COUNT) // if the state is not known |
---|
[4893] | 253 | return NULL; |
---|
| 254 | |
---|
[4895] | 255 | if (unlikely(this->animation[state] == NULL)) // if the animation does not exist yet create it. |
---|
[4893] | 256 | { |
---|
[4895] | 257 | if (likely(node != NULL)) |
---|
| 258 | return this->animation[state] = new Animation3D(node); |
---|
| 259 | else |
---|
| 260 | { |
---|
| 261 | PRINTF(2)("Node not defined for the Creation of the 3D-animation of state %s\n", stateToChar(state)); |
---|
| 262 | return NULL; |
---|
| 263 | } |
---|
[4893] | 264 | } |
---|
[4895] | 265 | else |
---|
| 266 | return this->animation[state]; |
---|
[4893] | 267 | } |
---|
| 268 | |
---|
[4892] | 269 | ///////////////// |
---|
| 270 | // EXECUTION // |
---|
| 271 | // GAME ACTION // |
---|
| 272 | ///////////////// |
---|
[4597] | 273 | /** |
---|
[4885] | 274 | * request an action that should be executed, |
---|
| 275 | * @param action the next action to take |
---|
| 276 | * |
---|
| 277 | * This function must be called instead of the actions (like fire/reload...) |
---|
| 278 | * to make all the checks needed to have a usefull WeaponSystem. |
---|
| 279 | */ |
---|
| 280 | void Weapon::requestAction(WeaponAction action) |
---|
| 281 | { |
---|
[4906] | 282 | if (likely(this->isActive())) |
---|
[4885] | 283 | { |
---|
[4906] | 284 | if (this->requestedAction != WA_NONE) |
---|
| 285 | return; |
---|
[5041] | 286 | PRINTF(5)("next action will be %s in %f seconds\n", actionToChar(action), this->stateDuration); |
---|
[4885] | 287 | this->requestedAction = action; |
---|
| 288 | } |
---|
[4906] | 289 | //else |
---|
| 290 | else if (unlikely(action == WA_ACTIVATE)) |
---|
| 291 | { |
---|
| 292 | this->currentState = WS_ACTIVATING; |
---|
[4926] | 293 | this->requestedAction = WA_ACTIVATE; |
---|
[4906] | 294 | } |
---|
[4885] | 295 | } |
---|
[3577] | 296 | |
---|
[4890] | 297 | /** |
---|
| 298 | * adds energy to the Weapon |
---|
| 299 | * @param energyToAdd The amount of energy |
---|
| 300 | * @returns the amount of energy we did not pick up, because the weapon is already full |
---|
| 301 | */ |
---|
| 302 | float Weapon::increaseEnergy(float energyToAdd) |
---|
| 303 | { |
---|
| 304 | float maxAddEnergy = this->energyMax - this->energy; |
---|
| 305 | |
---|
| 306 | if (maxAddEnergy >= energyToAdd) |
---|
| 307 | { |
---|
| 308 | this->energy += energyToAdd; |
---|
| 309 | return 0.0; |
---|
| 310 | } |
---|
| 311 | else |
---|
| 312 | { |
---|
| 313 | this->energy += maxAddEnergy; |
---|
| 314 | return energyToAdd - maxAddEnergy; |
---|
| 315 | } |
---|
| 316 | } |
---|
| 317 | |
---|
[5498] | 318 | //////////////////////////////////////////////////////////// |
---|
| 319 | // WEAPON INTERNALS // |
---|
| 320 | // These are functions, that no other Weapon should over- // |
---|
| 321 | // write. No class has direct Access to them, as it is // |
---|
| 322 | // quite a complicated process, handling a Weapon from // |
---|
| 323 | // the outside // |
---|
| 324 | //////////////////////////////////////////////////////////// |
---|
[4891] | 325 | /** |
---|
| 326 | * executes an action, and with it starts a new State. |
---|
| 327 | * @return true, if it worked, false otherwise |
---|
| 328 | * |
---|
| 329 | * This function checks, wheter the possibility of executing an action is valid, |
---|
| 330 | * and does all the necessary stuff, to execute them. If an action does not succeed, |
---|
| 331 | * it tries to go around it. (ex. shoot->noAmo->reload()->wait until shoot comes again) |
---|
| 332 | */ |
---|
[4885] | 333 | bool Weapon::execute() |
---|
[3583] | 334 | { |
---|
[4906] | 335 | #if DEBUG > 4 |
---|
[4885] | 336 | PRINTF(4)("trying to execute action %s\n", actionToChar(this->requestedAction)); |
---|
| 337 | this->debug(); |
---|
[4906] | 338 | #endif |
---|
[4885] | 339 | |
---|
[4926] | 340 | WeaponAction action = this->requestedAction; |
---|
| 341 | this->requestedAction = WA_NONE; |
---|
| 342 | |
---|
| 343 | switch (action) |
---|
[4885] | 344 | { |
---|
| 345 | case WA_SHOOT: |
---|
[4894] | 346 | return this->fireW(); |
---|
[4885] | 347 | break; |
---|
| 348 | case WA_CHARGE: |
---|
[4894] | 349 | return this->chargeW(); |
---|
[4885] | 350 | break; |
---|
| 351 | case WA_RELOAD: |
---|
[4894] | 352 | return this->reloadW(); |
---|
[4885] | 353 | break; |
---|
| 354 | case WA_DEACTIVATE: |
---|
[4894] | 355 | return this->deactivateW(); |
---|
[4885] | 356 | break; |
---|
| 357 | case WA_ACTIVATE: |
---|
[4894] | 358 | return this->activateW(); |
---|
[4885] | 359 | break; |
---|
| 360 | } |
---|
[3583] | 361 | } |
---|
[3577] | 362 | |
---|
[4597] | 363 | /** |
---|
[4894] | 364 | * checks and activates the Weapon. |
---|
| 365 | * @return true on success. |
---|
[4892] | 366 | */ |
---|
| 367 | bool Weapon::activateW() |
---|
[3583] | 368 | { |
---|
[4926] | 369 | // if (this->currentState == WS_INACTIVE) |
---|
[4892] | 370 | { |
---|
| 371 | // play Sound |
---|
[4893] | 372 | if (likely(this->soundBuffers[WA_ACTIVATE] != NULL)) |
---|
[4892] | 373 | this->soundSource->play(this->soundBuffers[WA_ACTIVATE]); |
---|
| 374 | // activate |
---|
[4895] | 375 | PRINTF(4)("Activating the Weapon %s\n", this->getName()); |
---|
[4892] | 376 | this->activate(); |
---|
[4895] | 377 | // setting up for next action |
---|
[4926] | 378 | this->enterState(WS_ACTIVATING); |
---|
[4892] | 379 | } |
---|
[3583] | 380 | } |
---|
[3577] | 381 | |
---|
[4597] | 382 | /** |
---|
[4894] | 383 | * checks and deactivates the Weapon |
---|
| 384 | * @return true on success. |
---|
[4892] | 385 | */ |
---|
| 386 | bool Weapon::deactivateW() |
---|
[3583] | 387 | { |
---|
[4949] | 388 | // if (this->currentState != WS_INACTIVE) |
---|
[4892] | 389 | { |
---|
| 390 | PRINTF(4)("Deactivating the Weapon %s\n", this->getName()); |
---|
| 391 | // play Sound |
---|
| 392 | if (this->soundBuffers[WA_DEACTIVATE] != NULL) |
---|
| 393 | this->soundSource->play(this->soundBuffers[WA_DEACTIVATE]); |
---|
[4926] | 394 | // deactivate |
---|
[4892] | 395 | this->deactivate(); |
---|
[4926] | 396 | this->enterState(WS_DEACTIVATING); |
---|
[4892] | 397 | } |
---|
[3583] | 398 | } |
---|
[3577] | 399 | |
---|
[4892] | 400 | /** |
---|
[4894] | 401 | * checks and charges the Weapon |
---|
| 402 | * @return true on success. |
---|
[4892] | 403 | */ |
---|
| 404 | bool Weapon::chargeW() |
---|
[4885] | 405 | { |
---|
[4892] | 406 | if ( this->currentState != WS_INACTIVE && this->energyLoaded >= this->minCharge) |
---|
| 407 | { |
---|
| 408 | // playing Sound |
---|
| 409 | if (this->soundBuffers[WA_CHARGE] != NULL) |
---|
| 410 | this->soundSource->play(this->soundBuffers[WA_CHARGE]); |
---|
[4893] | 411 | |
---|
[4892] | 412 | // charge |
---|
| 413 | this->charge(); |
---|
| 414 | // setting up for the next state |
---|
[4926] | 415 | this->enterState(WS_CHARGING); |
---|
[4892] | 416 | } |
---|
| 417 | else // deactivate the Weapon if we do not have enough energy |
---|
| 418 | { |
---|
| 419 | this->requestAction(WA_RELOAD); |
---|
| 420 | } |
---|
[4885] | 421 | } |
---|
[3573] | 422 | |
---|
[4892] | 423 | /** |
---|
[4894] | 424 | * checks and fires the Weapon |
---|
| 425 | * @return true on success. |
---|
[4892] | 426 | */ |
---|
| 427 | bool Weapon::fireW() |
---|
[3575] | 428 | { |
---|
[4892] | 429 | //if (likely(this->currentState != WS_INACTIVE)) |
---|
| 430 | if (this->minCharge <= this->energyLoaded) |
---|
| 431 | { |
---|
| 432 | // playing Sound |
---|
| 433 | if (this->soundBuffers[WA_SHOOT] != NULL) |
---|
| 434 | this->soundSource->play(this->soundBuffers[WA_SHOOT]); |
---|
| 435 | // fire |
---|
| 436 | this->fire(); |
---|
| 437 | this->energyLoaded -= this->minCharge; |
---|
| 438 | // setting up for the next state |
---|
[4926] | 439 | this->enterState(WS_SHOOTING); |
---|
[4892] | 440 | } |
---|
| 441 | else // reload if we still have the charge |
---|
| 442 | { |
---|
| 443 | this->requestAction(WA_RELOAD); |
---|
[4930] | 444 | this->execute(); |
---|
[4892] | 445 | } |
---|
| 446 | } |
---|
| 447 | |
---|
| 448 | /** |
---|
[4894] | 449 | * checks and Reloads the Weapon |
---|
| 450 | * @return true on success. |
---|
[4892] | 451 | */ |
---|
| 452 | bool Weapon::reloadW() |
---|
| 453 | { |
---|
[4885] | 454 | PRINTF(4)("Reloading Weapon %s\n", this->getName()); |
---|
[4892] | 455 | if (unlikely(this->energy + this->energyLoaded < this->minCharge)) |
---|
[4885] | 456 | { |
---|
| 457 | this->requestAction(WA_DEACTIVATE); |
---|
[4930] | 458 | this->execute(); |
---|
[4892] | 459 | return false; |
---|
[4885] | 460 | } |
---|
[3573] | 461 | |
---|
[4885] | 462 | float chargeSize = this->energyLoadedMax - this->energyLoaded; //!< The energy to be charged |
---|
[3573] | 463 | |
---|
[4892] | 464 | if (this->soundBuffers[WA_RELOAD] != NULL) |
---|
| 465 | this->soundSource->play(this->soundBuffers[WA_RELOAD]); |
---|
| 466 | |
---|
[4885] | 467 | if (chargeSize > this->energy) |
---|
| 468 | { |
---|
| 469 | this->energyLoaded += this->energy; |
---|
| 470 | this->energy = 0.0; |
---|
[5041] | 471 | PRINT(5)("Energy depleted\n"); |
---|
[4885] | 472 | } |
---|
| 473 | else |
---|
| 474 | { |
---|
[5041] | 475 | PRINTF(5)("Loaded %f energy into the Guns Buffer\n", chargeSize); |
---|
[4885] | 476 | this->energyLoaded += chargeSize; |
---|
| 477 | this->energy -= chargeSize; |
---|
| 478 | } |
---|
[4892] | 479 | this->reload(); |
---|
[4926] | 480 | this->enterState(WS_RELOADING); |
---|
| 481 | } |
---|
[3575] | 482 | |
---|
[4926] | 483 | /** |
---|
| 484 | * enters the requested State, plays back animations updates the timing. |
---|
| 485 | * @param state the state to enter. |
---|
| 486 | */ |
---|
| 487 | inline void Weapon::enterState(WeaponState state) |
---|
| 488 | { |
---|
[5041] | 489 | PRINTF(4)("ENTERING STATE %s\n", stateToChar(state)); |
---|
[4926] | 490 | // playing animation if availiable |
---|
| 491 | if (likely(this->animation[state] != NULL)) |
---|
| 492 | this->animation[state]->replay(); |
---|
| 493 | |
---|
| 494 | this->stateDuration = this->times[state] + this->stateDuration; |
---|
| 495 | this->currentState = state; |
---|
[3575] | 496 | } |
---|
| 497 | |
---|
[4927] | 498 | /////////////////// |
---|
| 499 | // WORLD-ENTITY // |
---|
| 500 | // FUNCTIONALITY // |
---|
| 501 | /////////////////// |
---|
[3575] | 502 | /** |
---|
[4885] | 503 | * tick signal for time dependent/driven stuff |
---|
[3575] | 504 | */ |
---|
[4906] | 505 | void Weapon::tickW(float dt) |
---|
[4885] | 506 | { |
---|
[4934] | 507 | //printf("%s ", stateToChar(this->currentState)); |
---|
[4910] | 508 | |
---|
[4885] | 509 | // setting up the timing properties |
---|
| 510 | this->stateDuration -= dt; |
---|
[3575] | 511 | |
---|
[4949] | 512 | if (this->stateDuration <= 0.0) |
---|
[4885] | 513 | { |
---|
[4949] | 514 | if (unlikely (this->currentState == WS_DEACTIVATING)) |
---|
[4885] | 515 | { |
---|
[4949] | 516 | this->currentState = WS_INACTIVE; |
---|
| 517 | return; |
---|
| 518 | } |
---|
| 519 | else |
---|
| 520 | this->currentState = WS_IDLE; |
---|
[4906] | 521 | |
---|
[4949] | 522 | if (this->requestedAction != WA_NONE) |
---|
| 523 | { |
---|
| 524 | this->stateDuration = -dt; |
---|
| 525 | this->execute(); |
---|
[4885] | 526 | } |
---|
| 527 | } |
---|
[4906] | 528 | tick(dt); |
---|
[4885] | 529 | } |
---|
| 530 | |
---|
[3575] | 531 | /** |
---|
[4885] | 532 | * this will draw the weapon |
---|
[3575] | 533 | */ |
---|
[5500] | 534 | void Weapon::draw () const |
---|
[3575] | 535 | {} |
---|
| 536 | |
---|
| 537 | |
---|
| 538 | |
---|
| 539 | |
---|
[3576] | 540 | |
---|
[4885] | 541 | ////////////////////// |
---|
| 542 | // HELPER FUNCTIONS // |
---|
| 543 | ////////////////////// |
---|
[3576] | 544 | /** |
---|
[4891] | 545 | * checks wether all the Weapons functions are valid, and if it is possible to go to action with it. |
---|
[5498] | 546 | * @todo IMPLEMENT the Weapons Check |
---|
[4891] | 547 | */ |
---|
| 548 | bool Weapon::check() const |
---|
| 549 | { |
---|
| 550 | bool retVal = true; |
---|
| 551 | |
---|
[4947] | 552 | // if (this->projectile == NULL) |
---|
[4891] | 553 | { |
---|
[5041] | 554 | PRINTF(1)("There was no projectile assigned to the Weapon.\n"); |
---|
[4891] | 555 | retVal = false; |
---|
| 556 | } |
---|
| 557 | |
---|
| 558 | |
---|
| 559 | |
---|
| 560 | |
---|
| 561 | return retVal; |
---|
| 562 | } |
---|
| 563 | |
---|
| 564 | /** |
---|
[4885] | 565 | * some nice debugging information about this Weapon |
---|
| 566 | */ |
---|
| 567 | void Weapon::debug() const |
---|
| 568 | { |
---|
[5041] | 569 | PRINT(3)("Weapon-Debug %s, state: %s, nextAction: %s\n", this->getName(), Weapon::stateToChar(this->currentState), Weapon::actionToChar(requestedAction)); |
---|
[4885] | 570 | PRINT(3)("Energy: max: %f; current: %f; loadedMax: %f; loadedCurrent: %f; chargeMin: %f, chargeMax %f\n", |
---|
| 571 | this->energyMax, this->energy, this->energyLoadedMax, this->energyLoaded, this->minCharge, this->maxCharge); |
---|
[4967] | 572 | |
---|
| 573 | |
---|
[4885] | 574 | } |
---|
[3575] | 575 | |
---|
[5498] | 576 | //////////////////////////////////////////////////////// |
---|
| 577 | // static Definitions (transormators for readability) // |
---|
| 578 | //////////////////////////////////////////////////////// |
---|
[4885] | 579 | /** |
---|
| 580 | * Converts a String into an Action. |
---|
| 581 | * @param action the String input holding the Action. |
---|
| 582 | * @return The Action if known, WA_NONE otherwise. |
---|
| 583 | */ |
---|
| 584 | WeaponAction Weapon::charToAction(const char* action) |
---|
| 585 | { |
---|
| 586 | if (!strcmp(action, "none")) |
---|
| 587 | return WA_NONE; |
---|
| 588 | else if (!strcmp(action, "shoot")) |
---|
| 589 | return WA_SHOOT; |
---|
| 590 | else if (!strcmp(action, "charge")) |
---|
| 591 | return WA_CHARGE; |
---|
| 592 | else if (!strcmp(action, "reload")) |
---|
| 593 | return WA_RELOAD; |
---|
| 594 | else if (!strcmp(action, "acitvate")) |
---|
| 595 | return WA_ACTIVATE; |
---|
| 596 | else if (!strcmp(action, "deactivate")) |
---|
| 597 | return WA_DEACTIVATE; |
---|
| 598 | else if (!strcmp(action, "special1")) |
---|
| 599 | return WA_SPECIAL1; |
---|
| 600 | else |
---|
| 601 | { |
---|
| 602 | PRINTF(2)("action %s could not be identified.\n", action); |
---|
| 603 | return WA_NONE; |
---|
| 604 | } |
---|
| 605 | } |
---|
[3575] | 606 | |
---|
| 607 | /** |
---|
[4885] | 608 | * converts an action into a String |
---|
| 609 | * @param action the action to convert |
---|
| 610 | * @return a String matching the name of the action |
---|
| 611 | */ |
---|
| 612 | const char* Weapon::actionToChar(WeaponAction action) |
---|
| 613 | { |
---|
| 614 | switch (action) |
---|
| 615 | { |
---|
| 616 | case WA_SHOOT: |
---|
| 617 | return "shoot"; |
---|
| 618 | break; |
---|
| 619 | case WA_CHARGE: |
---|
| 620 | return "charge"; |
---|
| 621 | break; |
---|
| 622 | case WA_RELOAD: |
---|
| 623 | return "reload"; |
---|
| 624 | break; |
---|
| 625 | case WA_ACTIVATE: |
---|
| 626 | return "activate"; |
---|
| 627 | break; |
---|
| 628 | case WA_DEACTIVATE: |
---|
| 629 | return "deactivate"; |
---|
| 630 | break; |
---|
| 631 | case WA_SPECIAL1: |
---|
| 632 | return "special1"; |
---|
| 633 | break; |
---|
| 634 | default: |
---|
| 635 | return "none"; |
---|
| 636 | break; |
---|
| 637 | } |
---|
| 638 | } |
---|
[3577] | 639 | |
---|
| 640 | /** |
---|
[4885] | 641 | * Converts a String into a State. |
---|
| 642 | * @param state the String input holding the State. |
---|
| 643 | * @return The State if known, WS_NONE otherwise. |
---|
| 644 | */ |
---|
| 645 | WeaponState Weapon::charToState(const char* state) |
---|
| 646 | { |
---|
| 647 | if (!strcmp(state, "none")) |
---|
| 648 | return WS_NONE; |
---|
| 649 | else if (!strcmp(state, "shooting")) |
---|
| 650 | return WS_SHOOTING; |
---|
| 651 | else if (!strcmp(state, "charging")) |
---|
| 652 | return WS_CHARGING; |
---|
| 653 | else if (!strcmp(state, "reloading")) |
---|
| 654 | return WS_RELOADING; |
---|
| 655 | else if (!strcmp(state, "activating")) |
---|
| 656 | return WS_ACTIVATING; |
---|
| 657 | else if (!strcmp(state, "deactivating")) |
---|
| 658 | return WS_DEACTIVATING; |
---|
| 659 | else if (!strcmp(state, "inactive")) |
---|
| 660 | return WS_INACTIVE; |
---|
| 661 | else if (!strcmp(state, "idle")) |
---|
| 662 | return WS_IDLE; |
---|
| 663 | else |
---|
| 664 | { |
---|
| 665 | PRINTF(2)("state %s could not be identified.\n", state); |
---|
| 666 | return WS_NONE; |
---|
| 667 | } |
---|
| 668 | } |
---|
[3583] | 669 | |
---|
| 670 | /** |
---|
[4885] | 671 | * converts a State into a String |
---|
| 672 | * @param state the state to convert |
---|
| 673 | * @return a String matching the name of the state |
---|
| 674 | */ |
---|
| 675 | const char* Weapon::stateToChar(WeaponState state) |
---|
| 676 | { |
---|
| 677 | switch (state) |
---|
| 678 | { |
---|
| 679 | case WS_SHOOTING: |
---|
| 680 | return "shooting"; |
---|
| 681 | break; |
---|
| 682 | case WS_CHARGING: |
---|
| 683 | return "charging"; |
---|
| 684 | break; |
---|
| 685 | case WS_RELOADING: |
---|
| 686 | return "reloading"; |
---|
| 687 | break; |
---|
| 688 | case WS_ACTIVATING: |
---|
| 689 | return "activating"; |
---|
| 690 | break; |
---|
| 691 | case WS_DEACTIVATING: |
---|
| 692 | return "deactivating"; |
---|
| 693 | break; |
---|
| 694 | case WS_IDLE: |
---|
| 695 | return "idle"; |
---|
| 696 | break; |
---|
[4906] | 697 | case WS_INACTIVE: |
---|
| 698 | return "inactive"; |
---|
| 699 | break; |
---|
[4885] | 700 | default: |
---|
| 701 | return "none"; |
---|
| 702 | break; |
---|
| 703 | } |
---|
| 704 | } |
---|