[2917] | 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 | * Daniel 'Huty' Haggenmueller |
---|
| 24 | * Co-authors: |
---|
[6405] | 25 | * Damian 'Mozork' Frick |
---|
[2917] | 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
[6540] | 30 | @file PickupSpawner.cc |
---|
| 31 | @brief Implementation of the PickupSpawner class. |
---|
[2917] | 32 | */ |
---|
| 33 | |
---|
| 34 | #include "PickupSpawner.h" |
---|
[3196] | 35 | |
---|
[2917] | 36 | #include "core/CoreIncludes.h" |
---|
[7493] | 37 | #include "core/GameMode.h" |
---|
[3196] | 38 | #include "core/Template.h" |
---|
[2917] | 39 | #include "core/XMLPort.h" |
---|
[7547] | 40 | |
---|
[5735] | 41 | #include "worldentities/pawns/Pawn.h" |
---|
[7547] | 42 | |
---|
[6466] | 43 | #include "PickupManager.h" |
---|
| 44 | #include "PickupRepresentation.h" |
---|
[2917] | 45 | |
---|
| 46 | namespace orxonox |
---|
| 47 | { |
---|
[5953] | 48 | |
---|
[9667] | 49 | RegisterClass(PickupSpawner); |
---|
[2917] | 50 | |
---|
| 51 | /** |
---|
[5947] | 52 | @brief |
---|
[6421] | 53 | Constructor. Creates a blank PickupSpawner. |
---|
[5947] | 54 | @param creator |
---|
| 55 | Pointer to the object which created this item. |
---|
[2917] | 56 | */ |
---|
[9667] | 57 | PickupSpawner::PickupSpawner(Context* context) : StaticEntity(context), pickup_(NULL), representation_(NULL), pickupTemplate_(NULL) |
---|
[2917] | 58 | { |
---|
[6540] | 59 | RegisterObject(PickupSpawner); |
---|
[7163] | 60 | |
---|
[6514] | 61 | this->initialize(); |
---|
[5953] | 62 | } |
---|
| 63 | |
---|
[6421] | 64 | /** |
---|
| 65 | @brief |
---|
| 66 | Registers the object and sets some default values. |
---|
| 67 | */ |
---|
[5953] | 68 | void PickupSpawner::initialize(void) |
---|
| 69 | { |
---|
[6563] | 70 | this->triggerDistance_ = 10; |
---|
[7549] | 71 | this->respawnTime_ = 5.0f; |
---|
[5953] | 72 | this->maxSpawnedItems_ = INF; |
---|
| 73 | this->spawnsRemaining_ = INF; |
---|
[7163] | 74 | this->selfDestruct_ = false; |
---|
[9348] | 75 | |
---|
| 76 | this->setPickupable(NULL); |
---|
[2917] | 77 | } |
---|
[5947] | 78 | |
---|
| 79 | /** |
---|
| 80 | @brief |
---|
| 81 | Destructor. |
---|
| 82 | */ |
---|
[2917] | 83 | PickupSpawner::~PickupSpawner() |
---|
| 84 | { |
---|
[7801] | 85 | if(this->isInitialized() && this->selfDestruct_ && this->pickup_ != NULL) |
---|
[6478] | 86 | this->pickup_->destroy(); |
---|
[2917] | 87 | } |
---|
[5947] | 88 | |
---|
[2917] | 89 | /** |
---|
[5947] | 90 | @brief |
---|
[9348] | 91 | Factory method, Creates a fully functional PickupSpawner. |
---|
| 92 | @param creator |
---|
| 93 | The creator of this PickupSpawner. |
---|
| 94 | @param pickup |
---|
| 95 | The Pickupable to be spawned by this PickupSpawner. |
---|
| 96 | @param carrier |
---|
| 97 | The PickupCarrier that carried the input pickup before it was dropped. |
---|
| 98 | @param triggerDistance |
---|
| 99 | The distance at which the PickupSpawner will trigger. |
---|
| 100 | */ |
---|
[9667] | 101 | /*static*/ PickupSpawner* PickupSpawner::createDroppedPickup(Context* context, Pickupable* pickup, PickupCarrier* carrier, float triggerDistance) |
---|
[9348] | 102 | { |
---|
[9667] | 103 | PickupSpawner* spawner = new PickupSpawner(context); |
---|
[9348] | 104 | |
---|
| 105 | spawner->setPickupable(pickup); |
---|
| 106 | spawner->setTriggerDistance(triggerDistance); |
---|
| 107 | spawner->setMaxSpawnedItems(1); |
---|
| 108 | |
---|
| 109 | spawner->setPosition(carrier->getCarrierPosition()); |
---|
| 110 | spawner->block(carrier); |
---|
| 111 | |
---|
| 112 | return spawner; |
---|
| 113 | } |
---|
| 114 | |
---|
| 115 | /** |
---|
| 116 | @brief |
---|
[5947] | 117 | Method for creating a PickupSpawner through XML. |
---|
| 118 | @param xmlelement |
---|
| 119 | XML element which contains the PickupSpawner. |
---|
| 120 | @param mode |
---|
| 121 | XMLPort mode. |
---|
[2917] | 122 | */ |
---|
| 123 | void PickupSpawner::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
| 124 | { |
---|
| 125 | SUPER(PickupSpawner, XMLPort, xmlelement, mode); |
---|
| 126 | |
---|
[9348] | 127 | XMLPortParam(PickupSpawner, "pickup", setPickupTemplateName, getPickupTemplateName, xmlelement, mode); |
---|
[2917] | 128 | XMLPortParam(PickupSpawner, "triggerDistance", setTriggerDistance, getTriggerDistance, xmlelement, mode); |
---|
| 129 | XMLPortParam(PickupSpawner, "respawnTime", setRespawnTime, getRespawnTime, xmlelement, mode); |
---|
[5953] | 130 | XMLPortParam(PickupSpawner, "maxSpawnedItems", setMaxSpawnedItems, getMaxSpawnedItems, xmlelement, mode); |
---|
[2917] | 131 | } |
---|
[7163] | 132 | |
---|
[6421] | 133 | /** |
---|
| 134 | @brief |
---|
[5947] | 135 | Tick, checks if any Pawn is close enough to trigger. |
---|
| 136 | @param dt |
---|
| 137 | Time since last tick. |
---|
[2917] | 138 | */ |
---|
[7493] | 139 | //TODO: Replace with collisions? |
---|
[2917] | 140 | void PickupSpawner::tick(float dt) |
---|
| 141 | { |
---|
[6540] | 142 | SUPER(PickupSpawner, tick, dt); |
---|
[7163] | 143 | |
---|
[7493] | 144 | // If the PickupSpawner is active. |
---|
| 145 | if(GameMode::isMaster() && this->isActive()) |
---|
[2917] | 146 | { |
---|
[8891] | 147 | WeakPtr<PickupSpawner> spawner = this; // Create a smart pointer to keep the PickupSpawner alive until we iterated through all Pawns (in case a Pawn takes the last pickup) |
---|
[7163] | 148 | |
---|
[7549] | 149 | // Remove PickupCarriers from the blocked list if they have exceeded their time. |
---|
| 150 | for(std::map<PickupCarrier*, std::time_t>::iterator it = this->blocked_.begin(); it != this->blocked_.end(); ) |
---|
| 151 | { |
---|
| 152 | std::map<PickupCarrier*, std::time_t>::iterator temp = it; |
---|
| 153 | it++; |
---|
| 154 | if(temp->second < std::time(0)) |
---|
| 155 | this->blocked_.erase(temp); |
---|
| 156 | } |
---|
| 157 | |
---|
[7493] | 158 | // Iterate trough all Pawns. |
---|
[7549] | 159 | for(ObjectList<Pawn>::iterator it = ObjectList<Pawn>::begin(); it != ObjectList<Pawn>::end(); ++it) |
---|
[2917] | 160 | { |
---|
[8891] | 161 | if(spawner == NULL) // Stop if the PickupSpawner has been deleted (e.g. because it has run out of pickups to distribute). |
---|
| 162 | break; |
---|
| 163 | |
---|
[2917] | 164 | Vector3 distance = it->getWorldPosition() - this->getWorldPosition(); |
---|
[9348] | 165 | PickupCarrier* carrier = static_cast<PickupCarrier*>(*it); |
---|
[8891] | 166 | // If a PickupCarrier, that fits the target-range of the Pickupable spawned by this PickupSpawner, is in trigger-distance and the carrier is not blocked. |
---|
[7549] | 167 | if(distance.length() < this->triggerDistance_ && carrier != NULL && this->blocked_.find(carrier) == this->blocked_.end()) |
---|
[6405] | 168 | { |
---|
[7547] | 169 | if(carrier->isTarget(this->pickup_)) |
---|
| 170 | this->trigger(*it); |
---|
[6405] | 171 | } |
---|
[2917] | 172 | } |
---|
| 173 | } |
---|
| 174 | } |
---|
[7163] | 175 | |
---|
[2917] | 176 | /** |
---|
[5947] | 177 | @brief |
---|
[9348] | 178 | Trigger the PickupSpawner. |
---|
| 179 | Adds the pickup to the Pawn that triggered, sets the timer to re-activate and deactives the PickupSpawner. |
---|
| 180 | @param carrier |
---|
| 181 | Carrier which triggered the PickupSpawner. |
---|
| 182 | */ |
---|
| 183 | void PickupSpawner::trigger(PickupCarrier* carrier) |
---|
| 184 | { |
---|
| 185 | orxout(verbose, context::pickups) << "PickupSpawner (&" << this << ") triggered and active." << endl; |
---|
| 186 | |
---|
| 187 | PickupCarrier* target = carrier->getTarget(this->pickup_); |
---|
| 188 | |
---|
| 189 | this->block(carrier); |
---|
| 190 | |
---|
| 191 | assert(target); |
---|
| 192 | bool pickedUp = this->pickup_->pickup(target); |
---|
| 193 | assert(pickedUp); |
---|
| 194 | pickedUp = false; // To avoid compiler warning. |
---|
| 195 | |
---|
| 196 | this->setPickupable(NULL); |
---|
| 197 | this->decrementSpawnsRemaining(); |
---|
| 198 | } |
---|
| 199 | |
---|
| 200 | void PickupSpawner::setPickupTemplateName(const std::string& name) |
---|
| 201 | { |
---|
| 202 | Template* temp = Template::getTemplate(name); |
---|
| 203 | if (temp) |
---|
| 204 | this->setPickupTemplate(temp); |
---|
| 205 | } |
---|
| 206 | |
---|
| 207 | void PickupSpawner::setPickupTemplate(Template* temp) |
---|
| 208 | { |
---|
| 209 | this->pickupTemplate_ = temp; |
---|
| 210 | this->pickupTemplateName_ = temp->getName(); |
---|
| 211 | |
---|
| 212 | this->setPickupable(this->createPickup()); |
---|
| 213 | } |
---|
| 214 | |
---|
| 215 | /** |
---|
| 216 | @brief |
---|
[6475] | 217 | Sets the maximum number of spawned items. |
---|
| 218 | @param items |
---|
| 219 | The maximum number of spawned items to be set. |
---|
[2917] | 220 | */ |
---|
[6475] | 221 | void PickupSpawner::setMaxSpawnedItems(int items) |
---|
[2917] | 222 | { |
---|
[6475] | 223 | this->maxSpawnedItems_ = items; |
---|
| 224 | this->spawnsRemaining_ = items; |
---|
[6405] | 225 | } |
---|
[7163] | 226 | |
---|
[6421] | 227 | /** |
---|
| 228 | @brief |
---|
| 229 | Decrements the number of remaining spawns. |
---|
| 230 | Sets the PickupSpawner to inactive for the duration of the respawnTime. |
---|
| 231 | Destroys the PickupSpawner if the number of remaining spawns has reached zero. |
---|
| 232 | */ |
---|
[6405] | 233 | void PickupSpawner::decrementSpawnsRemaining(void) |
---|
| 234 | { |
---|
| 235 | if(this->spawnsRemaining_ != INF) |
---|
| 236 | this->spawnsRemaining_--; |
---|
[7493] | 237 | |
---|
[9348] | 238 | this->setActive(false); |
---|
| 239 | |
---|
[6405] | 240 | if(this->spawnsRemaining_ != 0 && this->respawnTime_ > 0) |
---|
| 241 | { |
---|
[6512] | 242 | this->startRespawnTimer(); |
---|
[6405] | 243 | this->fireEvent(); |
---|
| 244 | } |
---|
| 245 | else |
---|
[5953] | 246 | { |
---|
[8858] | 247 | orxout(verbose, context::pickups) << "PickupSpawner (&" << this << ") empty, selfdestruct initialized." << endl; |
---|
[6475] | 248 | this->destroy(); |
---|
[5953] | 249 | } |
---|
[2917] | 250 | } |
---|
[7163] | 251 | |
---|
[6475] | 252 | /** |
---|
| 253 | @brief |
---|
[6512] | 254 | Starts the respawn timer. |
---|
| 255 | */ |
---|
| 256 | void PickupSpawner::startRespawnTimer(void) |
---|
| 257 | { |
---|
| 258 | this->respawnTimer_.setTimer(this->respawnTime_, false, createExecutor(createFunctor(&PickupSpawner::respawnTimerCallback, this))); |
---|
| 259 | } |
---|
[7163] | 260 | |
---|
[6512] | 261 | /** |
---|
| 262 | @brief |
---|
[9348] | 263 | Invoked by the timer, re-activates the PickupSpawner. |
---|
[6475] | 264 | */ |
---|
[9348] | 265 | void PickupSpawner::respawnTimerCallback() |
---|
[6475] | 266 | { |
---|
[9348] | 267 | orxout(verbose, context::pickups) << "PickupSpawner (&" << this << ") reactivated." << endl; |
---|
[7163] | 268 | |
---|
[9348] | 269 | this->setPickupable(this->createPickup()); |
---|
[6475] | 270 | } |
---|
[7163] | 271 | |
---|
[6475] | 272 | /** |
---|
| 273 | @brief |
---|
[9348] | 274 | Creates a new Pickupable. |
---|
[6475] | 275 | @return |
---|
[9348] | 276 | The Pickupable created. |
---|
[6475] | 277 | */ |
---|
[9348] | 278 | Pickupable* PickupSpawner::createPickup(void) |
---|
[6475] | 279 | { |
---|
[9348] | 280 | if(this->spawnsRemaining_ == 0) |
---|
| 281 | { |
---|
| 282 | orxout(internal_error, context::pickups) << "Massive Error: PickupSpawner still alive until having spawned last item." << endl; |
---|
| 283 | return NULL; |
---|
| 284 | } |
---|
[5947] | 285 | |
---|
[9348] | 286 | if (this->pickupTemplate_ != NULL) |
---|
[6475] | 287 | { |
---|
[9348] | 288 | Identifier* identifier = this->pickupTemplate_->getBaseclassIdentifier(); |
---|
| 289 | if (identifier != NULL) |
---|
[6475] | 290 | { |
---|
[9667] | 291 | Pickupable* pickup = orxonox_cast<Pickupable*>(identifier->fabricate(this->getContext())); |
---|
[9348] | 292 | orxonox_cast<BaseObject*>(pickup)->addTemplate(this->pickupTemplate_); |
---|
| 293 | return pickup; |
---|
[6475] | 294 | } |
---|
[9348] | 295 | else |
---|
| 296 | orxout(internal_error, context::pickups) << "No base class defined in pickup-template " << this->pickupTemplateName_ << endl; |
---|
| 297 | } |
---|
[7163] | 298 | |
---|
[9348] | 299 | return NULL; |
---|
[6475] | 300 | } |
---|
| 301 | |
---|
| 302 | /** |
---|
| 303 | @brief |
---|
[9348] | 304 | Sets a Pickupable for the PickupSpawner to spawn. |
---|
| 305 | @param pickup |
---|
| 306 | The Pickupable to be set. |
---|
[7163] | 307 | */ |
---|
[9348] | 308 | void PickupSpawner::setPickupable(Pickupable* pickup) |
---|
[5953] | 309 | { |
---|
[9348] | 310 | if (this->representation_ != NULL) |
---|
[6405] | 311 | { |
---|
[9348] | 312 | this->representation_->destroy(); |
---|
| 313 | this->representation_ = NULL; |
---|
[6405] | 314 | } |
---|
[7163] | 315 | |
---|
[9348] | 316 | if (pickup != NULL) |
---|
| 317 | { |
---|
| 318 | if (this->pickup_ != NULL) |
---|
| 319 | this->pickup_->destroy(); |
---|
[5953] | 320 | |
---|
[9348] | 321 | PickupRepresentation* representation = PickupManager::getInstance().getRepresentation(pickup->getRepresentationName()); |
---|
| 322 | this->representation_ = representation->createSpawnerRepresentation(this); |
---|
| 323 | this->attach(this->representation_); |
---|
| 324 | this->setActive(true); |
---|
| 325 | } |
---|
| 326 | else |
---|
| 327 | { |
---|
| 328 | this->setActive(false); |
---|
| 329 | } |
---|
[2917] | 330 | |
---|
[9348] | 331 | this->pickup_ = pickup; |
---|
[2917] | 332 | } |
---|
| 333 | } |
---|