[6474] | 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 | * Damian 'Mozork' Frick |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
[6540] | 29 | /** |
---|
| 30 | @file HealthPickup.cc |
---|
| 31 | @brief Implementation of the HealthPickup class. |
---|
| 32 | */ |
---|
| 33 | |
---|
[6474] | 34 | #include "HealthPickup.h" |
---|
| 35 | |
---|
[7547] | 36 | #include <sstream> |
---|
[6474] | 37 | #include "core/CoreIncludes.h" |
---|
| 38 | #include "core/XMLPort.h" |
---|
| 39 | |
---|
[7547] | 40 | #include "pickup/PickupIdentifier.h" |
---|
[6474] | 41 | #include "worldentities/pawns/Pawn.h" |
---|
| 42 | |
---|
| 43 | namespace orxonox |
---|
| 44 | { |
---|
[7163] | 45 | |
---|
[6474] | 46 | /*static*/ const std::string HealthPickup::healthTypeLimited_s = "limited"; |
---|
| 47 | /*static*/ const std::string HealthPickup::healthTypeTemporary_s = "temporary"; |
---|
| 48 | /*static*/ const std::string HealthPickup::healthTypePermanent_s = "permanent"; |
---|
[7163] | 49 | |
---|
[6474] | 50 | CreateFactory(HealthPickup); |
---|
[7163] | 51 | |
---|
[6477] | 52 | /** |
---|
| 53 | @brief |
---|
| 54 | Constructor. Registers the object and initializes the member variables. |
---|
| 55 | */ |
---|
[6474] | 56 | HealthPickup::HealthPickup(BaseObject* creator) : Pickup(creator) |
---|
| 57 | { |
---|
| 58 | RegisterObject(HealthPickup); |
---|
[7163] | 59 | |
---|
[6474] | 60 | this->initialize(); |
---|
| 61 | } |
---|
[7163] | 62 | |
---|
[6477] | 63 | /** |
---|
| 64 | @brief |
---|
| 65 | Destructor. |
---|
| 66 | */ |
---|
[6474] | 67 | HealthPickup::~HealthPickup() |
---|
| 68 | { |
---|
[7163] | 69 | |
---|
[6474] | 70 | } |
---|
[7163] | 71 | |
---|
[6477] | 72 | /** |
---|
[7163] | 73 | @brief |
---|
[6477] | 74 | Initializes the member variables. |
---|
| 75 | */ |
---|
[6474] | 76 | void HealthPickup::initialize(void) |
---|
[7163] | 77 | { |
---|
[6474] | 78 | this->health_ = 0; |
---|
[6477] | 79 | this->healthRate_ = 0; |
---|
[6474] | 80 | this->healthType_ = pickupHealthType::limited; |
---|
[6477] | 81 | this->maxHealthSave_ = 0; |
---|
| 82 | this->maxHealthOverwrite_ = 0; |
---|
[7163] | 83 | |
---|
[6490] | 84 | this->addTarget(ClassIdentifier<Pawn>::getIdentifier()); |
---|
[6474] | 85 | } |
---|
[7163] | 86 | |
---|
[6477] | 87 | /** |
---|
| 88 | @brief |
---|
| 89 | Initializes the PickupIdentifier of this pickup. |
---|
| 90 | */ |
---|
[6474] | 91 | void HealthPickup::initializeIdentifier(void) |
---|
| 92 | { |
---|
| 93 | std::stringstream stream; |
---|
| 94 | stream << this->getHealth(); |
---|
| 95 | std::string type1 = "health"; |
---|
| 96 | std::string val1 = stream.str(); |
---|
[6475] | 97 | this->pickupIdentifier_->addParameter(type1, val1); |
---|
[7163] | 98 | |
---|
[6474] | 99 | std::string val2 = this->getHealthType(); |
---|
| 100 | std::string type2 = "healthType"; |
---|
[6475] | 101 | this->pickupIdentifier_->addParameter(type2, val2); |
---|
[7163] | 102 | |
---|
[6477] | 103 | stream.clear(); |
---|
| 104 | stream << this->getHealthRate(); |
---|
| 105 | std::string val3 = stream.str(); |
---|
| 106 | std::string type3 = "healthRate"; |
---|
| 107 | this->pickupIdentifier_->addParameter(type3, val3); |
---|
[6474] | 108 | } |
---|
[7163] | 109 | |
---|
[6477] | 110 | /** |
---|
| 111 | @brief |
---|
| 112 | Method for creating a HealthPickup object through XML. |
---|
| 113 | */ |
---|
[6496] | 114 | void HealthPickup::XMLPort(Element& xmlelement, orxonox::XMLPort::Mode mode) |
---|
[6474] | 115 | { |
---|
| 116 | SUPER(HealthPickup, XMLPort, xmlelement, mode); |
---|
[7163] | 117 | |
---|
[6474] | 118 | XMLPortParam(HealthPickup, "health", setHealth, getHealth, xmlelement, mode); |
---|
[6477] | 119 | XMLPortParam(HealthPickup, "healthRate", setHealthRate, getHealthRate, xmlelement, mode); |
---|
[6474] | 120 | XMLPortParam(HealthPickup, "healthType", setHealthType, getHealthType, xmlelement, mode); |
---|
[7163] | 121 | |
---|
[6474] | 122 | if(!this->isContinuous()) |
---|
[6477] | 123 | this->healthRate_ = 0.0; |
---|
[7163] | 124 | |
---|
[6474] | 125 | this->initializeIdentifier(); |
---|
| 126 | } |
---|
[7163] | 127 | |
---|
[6477] | 128 | /** |
---|
| 129 | @brief |
---|
| 130 | Is called every tick. |
---|
| 131 | Does all the continuous stuff of this HealthPickup. |
---|
| 132 | @param dt |
---|
| 133 | The duration of the last tick. |
---|
| 134 | */ |
---|
[6474] | 135 | void HealthPickup::tick(float dt) |
---|
| 136 | { |
---|
[6540] | 137 | SUPER(HealthPickup, tick, dt); |
---|
[7163] | 138 | |
---|
[6474] | 139 | if(this->isContinuous() && this->isUsed()) |
---|
| 140 | { |
---|
[6477] | 141 | Pawn* pawn = this->carrierToPawnHelper(); |
---|
[7541] | 142 | if(pawn == NULL) // If the PickupCarrier is no Pawn, then this pickup is useless and therefore is destroyed. |
---|
[7163] | 143 | this->Pickupable::destroy(); |
---|
| 144 | |
---|
[7541] | 145 | // Calculate the health that is added this tick. |
---|
[6477] | 146 | float health = dt*this->getHealthRate(); |
---|
[6474] | 147 | if(health > this->getHealth()) |
---|
| 148 | health = this->getHealth(); |
---|
[7541] | 149 | // Calculate the health the Pawn will have once the health is added. |
---|
[6474] | 150 | float fullHealth = pawn->getHealth() + health; |
---|
| 151 | this->setHealth(this->getHealth()-health); |
---|
[7163] | 152 | |
---|
[6474] | 153 | switch(this->getHealthTypeDirect()) |
---|
| 154 | { |
---|
| 155 | case pickupHealthType::permanent: |
---|
[6520] | 156 | if(pawn->getMaxHealth() < fullHealth) |
---|
[6474] | 157 | pawn->setMaxHealth(fullHealth); |
---|
| 158 | case pickupHealthType::limited: |
---|
| 159 | pawn->addHealth(health); |
---|
| 160 | break; |
---|
| 161 | case pickupHealthType::temporary: |
---|
[6477] | 162 | if(pawn->getMaxHealth() > fullHealth) |
---|
| 163 | { |
---|
| 164 | this->maxHealthSave_ = pawn->getMaxHealth(); |
---|
| 165 | this->maxHealthOverwrite_ = fullHealth; |
---|
| 166 | pawn->setMaxHealth(fullHealth); |
---|
| 167 | } |
---|
| 168 | pawn->addHealth(health); |
---|
[6474] | 169 | break; |
---|
| 170 | default: |
---|
| 171 | COUT(1) << "Invalid healthType in HealthPickup." << std::endl; |
---|
| 172 | } |
---|
[7163] | 173 | |
---|
[7541] | 174 | // If all health has been transferred. |
---|
[6474] | 175 | if(this->getHealth() == 0) |
---|
| 176 | { |
---|
[6477] | 177 | this->setUsed(false); |
---|
[6474] | 178 | } |
---|
| 179 | } |
---|
| 180 | } |
---|
[7163] | 181 | |
---|
[6477] | 182 | /** |
---|
| 183 | @brief |
---|
| 184 | Is called when the pickup has transited from used to unused or the other way around. |
---|
| 185 | */ |
---|
[6474] | 186 | void HealthPickup::changedUsed(void) |
---|
| 187 | { |
---|
| 188 | SUPER(HealthPickup, changedUsed); |
---|
[7163] | 189 | |
---|
[7541] | 190 | // If the pickup has transited to used. |
---|
[6474] | 191 | if(this->isUsed()) |
---|
| 192 | { |
---|
| 193 | if(this->isOnce()) |
---|
| 194 | { |
---|
[6477] | 195 | Pawn* pawn = this->carrierToPawnHelper(); |
---|
[7541] | 196 | if(pawn == NULL) // If the PickupCarrier is no Pawn, then this pickup is useless and therefore is destroyed. |
---|
[7163] | 197 | this->Pickupable::destroy(); |
---|
| 198 | |
---|
[6474] | 199 | float health = 0; |
---|
| 200 | switch(this->getHealthTypeDirect()) |
---|
| 201 | { |
---|
| 202 | case pickupHealthType::permanent: |
---|
| 203 | health = pawn->getHealth()+this->getHealth(); |
---|
| 204 | if(pawn->getMaxHealth() < health) |
---|
| 205 | pawn->setMaxHealth(health); |
---|
| 206 | case pickupHealthType::limited: |
---|
| 207 | pawn->addHealth(this->getHealth()); |
---|
| 208 | break; |
---|
| 209 | case pickupHealthType::temporary: |
---|
[6477] | 210 | health = pawn->getHealth()+this->getHealth(); |
---|
| 211 | if(pawn->getMaxHealth() < health) |
---|
| 212 | { |
---|
| 213 | this->maxHealthSave_ = pawn->getMaxHealth(); |
---|
| 214 | this->maxHealthOverwrite_ = health; |
---|
| 215 | pawn->setMaxHealth(health); |
---|
| 216 | } |
---|
| 217 | pawn->addHealth(this->getHealth()); |
---|
[6474] | 218 | break; |
---|
| 219 | default: |
---|
| 220 | COUT(1) << "Invalid healthType in HealthPickup." << std::endl; |
---|
| 221 | } |
---|
[7163] | 222 | |
---|
[7541] | 223 | // The pickup has been used up. |
---|
[6477] | 224 | this->setUsed(false); |
---|
[6474] | 225 | } |
---|
| 226 | } |
---|
| 227 | else |
---|
| 228 | { |
---|
[6477] | 229 | if(this->getHealthTypeDirect() == pickupHealthType::temporary) |
---|
| 230 | { |
---|
| 231 | PickupCarrier* carrier = this->getCarrier(); |
---|
| 232 | Pawn* pawn = dynamic_cast<Pawn*>(carrier); |
---|
[7163] | 233 | |
---|
[6477] | 234 | if(pawn == NULL) |
---|
| 235 | { |
---|
| 236 | COUT(1) << "Something went horribly wrong in Health Pickup. PickupCarrier is no Pawn." << std::endl; |
---|
[7163] | 237 | this->Pickupable::destroy(); |
---|
[6477] | 238 | return; |
---|
| 239 | } |
---|
[7163] | 240 | |
---|
[6477] | 241 | if(pawn->getMaxHealth() == this->maxHealthOverwrite_) |
---|
| 242 | { |
---|
| 243 | pawn->setMaxHealth(this->maxHealthSave_); |
---|
| 244 | this->maxHealthOverwrite_ = 0; |
---|
| 245 | this->maxHealthSave_ = 0; |
---|
| 246 | } |
---|
| 247 | } |
---|
[7163] | 248 | |
---|
[7541] | 249 | // If either the pickup can only be used once or it is continuous and used up, it is destroyed upon setting it to unused. |
---|
[6477] | 250 | if(this->isOnce() || (this->isContinuous() && this->getHealth() == 0)) |
---|
| 251 | { |
---|
[7163] | 252 | this->Pickupable::destroy(); |
---|
[6477] | 253 | } |
---|
[6474] | 254 | } |
---|
| 255 | } |
---|
[7163] | 256 | |
---|
[6477] | 257 | /** |
---|
| 258 | @brief |
---|
| 259 | Helper to transform the PickupCarrier to a Pawn, and throw an error message if the conversion fails. |
---|
| 260 | @return |
---|
| 261 | A pointer to the Pawn, or NULL if the conversion failed. |
---|
| 262 | */ |
---|
| 263 | Pawn* HealthPickup::carrierToPawnHelper(void) |
---|
| 264 | { |
---|
| 265 | PickupCarrier* carrier = this->getCarrier(); |
---|
| 266 | Pawn* pawn = dynamic_cast<Pawn*>(carrier); |
---|
[7163] | 267 | |
---|
[6477] | 268 | if(pawn == NULL) |
---|
| 269 | { |
---|
| 270 | COUT(1) << "Invalid PickupCarrier in HealthPickup." << std::endl; |
---|
| 271 | } |
---|
[7163] | 272 | |
---|
[6477] | 273 | return pawn; |
---|
| 274 | } |
---|
[7163] | 275 | |
---|
[6477] | 276 | /** |
---|
| 277 | @brief |
---|
| 278 | Creates a duplicate of the input OrxonoxClass. |
---|
| 279 | @param item |
---|
| 280 | A pointer to the Orxonox class. |
---|
| 281 | */ |
---|
[6497] | 282 | void HealthPickup::clone(OrxonoxClass*& item) |
---|
[6477] | 283 | { |
---|
| 284 | if(item == NULL) |
---|
| 285 | item = new HealthPickup(this); |
---|
[7163] | 286 | |
---|
[6477] | 287 | SUPER(HealthPickup, clone, item); |
---|
[7163] | 288 | |
---|
[6477] | 289 | HealthPickup* pickup = dynamic_cast<HealthPickup*>(item); |
---|
| 290 | pickup->setHealth(this->getHealth()); |
---|
| 291 | pickup->setHealthRate(this->getHealthRate()); |
---|
| 292 | pickup->setHealthTypeDirect(this->getHealthTypeDirect()); |
---|
[7163] | 293 | |
---|
[6477] | 294 | pickup->initializeIdentifier(); |
---|
| 295 | } |
---|
[7163] | 296 | |
---|
[6477] | 297 | /** |
---|
| 298 | @brief |
---|
| 299 | Get the health type of this pickup. |
---|
| 300 | @return |
---|
| 301 | Returns the health type as a string. |
---|
| 302 | */ |
---|
[7547] | 303 | const std::string& HealthPickup::getHealthType(void) const |
---|
[6477] | 304 | { |
---|
| 305 | switch(this->getHealthTypeDirect()) |
---|
| 306 | { |
---|
| 307 | case pickupHealthType::limited: |
---|
| 308 | return HealthPickup::healthTypeLimited_s; |
---|
| 309 | case pickupHealthType::temporary: |
---|
| 310 | return HealthPickup::healthTypeTemporary_s; |
---|
| 311 | case pickupHealthType::permanent: |
---|
| 312 | return HealthPickup::healthTypePermanent_s; |
---|
| 313 | default: |
---|
| 314 | COUT(1) << "Invalid healthType in HealthPickup." << std::endl; |
---|
| 315 | return BLANKSTRING; |
---|
| 316 | } |
---|
| 317 | } |
---|
[7163] | 318 | |
---|
[6477] | 319 | /** |
---|
| 320 | @brief |
---|
| 321 | Sets the health. |
---|
| 322 | @param health |
---|
| 323 | The health. |
---|
| 324 | */ |
---|
| 325 | void HealthPickup::setHealth(float health) |
---|
| 326 | { |
---|
[6499] | 327 | if(health >= 0.0f) |
---|
[6477] | 328 | { |
---|
| 329 | this->health_ = health; |
---|
| 330 | } |
---|
| 331 | else |
---|
| 332 | { |
---|
| 333 | COUT(1) << "Invalid health in HealthPickup." << std::endl; |
---|
| 334 | this->health_ = 0.0; |
---|
| 335 | } |
---|
| 336 | } |
---|
[7163] | 337 | |
---|
[6477] | 338 | /** |
---|
| 339 | @brief |
---|
| 340 | Set the rate at which health is transferred if the pickup is continuous. |
---|
| 341 | @param rate |
---|
| 342 | The rate. |
---|
| 343 | */ |
---|
| 344 | void HealthPickup::setHealthRate(float rate) |
---|
| 345 | { |
---|
| 346 | if(rate >= 0) |
---|
| 347 | { |
---|
| 348 | this->healthRate_ = rate; |
---|
| 349 | } |
---|
| 350 | else |
---|
| 351 | { |
---|
[7163] | 352 | COUT(1) << "Invalid healthSpeed in HealthPickup." << std::endl; |
---|
[6477] | 353 | } |
---|
| 354 | } |
---|
[7163] | 355 | |
---|
[6477] | 356 | /** |
---|
| 357 | @brief |
---|
| 358 | Set the type of the HealthPickup. |
---|
| 359 | @param type |
---|
| 360 | The type as a string. |
---|
| 361 | */ |
---|
| 362 | void HealthPickup::setHealthType(std::string type) |
---|
| 363 | { |
---|
| 364 | if(type == HealthPickup::healthTypeLimited_s) |
---|
| 365 | { |
---|
| 366 | this->setHealthTypeDirect(pickupHealthType::limited); |
---|
| 367 | } |
---|
| 368 | else if(type == HealthPickup::healthTypeTemporary_s) |
---|
| 369 | { |
---|
| 370 | this->setHealthTypeDirect(pickupHealthType::temporary); |
---|
| 371 | } |
---|
| 372 | else if(type == HealthPickup::healthTypePermanent_s) |
---|
| 373 | { |
---|
| 374 | this->setHealthTypeDirect(pickupHealthType::permanent); |
---|
| 375 | } |
---|
| 376 | else |
---|
| 377 | { |
---|
| 378 | COUT(1) << "Invalid healthType in HealthPickup." << std::endl; |
---|
| 379 | } |
---|
| 380 | } |
---|
[6474] | 381 | |
---|
| 382 | } |
---|