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