[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: |
---|
[6475] | 25 | * Damian 'Mozork' Frick |
---|
[2917] | 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
[6540] | 30 | @file PickupSpawner.h |
---|
| 31 | @brief Definition of the PickupSpawner class. |
---|
[7456] | 32 | @ingroup Pickup |
---|
[2917] | 33 | */ |
---|
| 34 | |
---|
| 35 | #ifndef _PickupSpawner_H__ |
---|
| 36 | #define _PickupSpawner_H__ |
---|
| 37 | |
---|
[6466] | 38 | #include "PickupPrereqs.h" |
---|
[2917] | 39 | |
---|
[3196] | 40 | #include <string> |
---|
[6475] | 41 | #include "interfaces/Pickupable.h" |
---|
[3196] | 42 | #include "tools/Timer.h" |
---|
[6475] | 43 | |
---|
[5693] | 44 | #include "tools/interfaces/Tickable.h" |
---|
[5735] | 45 | #include "worldentities/StaticEntity.h" |
---|
[2917] | 46 | |
---|
| 47 | namespace orxonox |
---|
| 48 | { |
---|
| 49 | /** |
---|
[6475] | 50 | @brief |
---|
| 51 | The PickupSpawner class is responsible for spawning pickups of a specific type. |
---|
| 52 | Forthermore it can be specified how long the time interval between spawning two items is and how many pickups are spawned at maximum, amongst other things. |
---|
[7494] | 53 | |
---|
[6475] | 54 | @author |
---|
| 55 | Daniel 'Huty' Haggenmueller |
---|
[7494] | 56 | @author |
---|
[6475] | 57 | Damian 'Mozork' Frick |
---|
[2917] | 58 | */ |
---|
[6496] | 59 | class _PickupExport PickupSpawner : public StaticEntity, public Tickable |
---|
[2917] | 60 | { |
---|
[5947] | 61 | public: |
---|
[6475] | 62 | PickupSpawner(BaseObject* creator); //!< Default Constructor. |
---|
| 63 | PickupSpawner(BaseObject* creator, Pickupable* pickup, float triggerDistance, float respawnTime, int maxSpawnedItems); //!< Constructor. |
---|
| 64 | virtual ~PickupSpawner(); //!< Destructor. |
---|
[2917] | 65 | |
---|
[5947] | 66 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a PickupSpawner through XML. |
---|
[6475] | 67 | virtual void changedActivity(); //!< Invoked when activity has changed (set visibilty). |
---|
[5947] | 68 | virtual void tick(float dt); |
---|
[2917] | 69 | |
---|
[5947] | 70 | /** |
---|
[6475] | 71 | @brief Get the distance in which to trigger. |
---|
| 72 | @return Returns the distance in which this gets triggered. |
---|
[5947] | 73 | */ |
---|
| 74 | inline float getTriggerDistance() const |
---|
| 75 | { return this->triggerDistance_; } |
---|
| 76 | /** |
---|
[6475] | 77 | @brief Set the distance in which to trigger. |
---|
| 78 | @param value The new distance in which to trigger. |
---|
[5947] | 79 | */ |
---|
| 80 | inline void setTriggerDistance(float value) |
---|
| 81 | { this->triggerDistance_ = value; } |
---|
[2917] | 82 | |
---|
[5947] | 83 | /** |
---|
[6475] | 84 | @brief Get the time to respawn. |
---|
| 85 | @returns Returns the time after which this gets re-actived. |
---|
[5947] | 86 | */ |
---|
| 87 | inline float getRespawnTime() const |
---|
| 88 | { return this->respawnTime_; } |
---|
| 89 | /** |
---|
[6475] | 90 | @brief Set the time to respawn. |
---|
| 91 | @param time New time after which this gets re-actived. |
---|
[5947] | 92 | */ |
---|
| 93 | inline void setRespawnTime(float time) |
---|
| 94 | { this->respawnTime_ = time; } |
---|
[5953] | 95 | |
---|
[6421] | 96 | /** |
---|
[6475] | 97 | @brief Get the maximum number of items that will be spawned by this PickupSpawner. |
---|
| 98 | @return Returns the maximum number of items spawned by this PickupSpawner. |
---|
[6421] | 99 | */ |
---|
[5953] | 100 | inline int getMaxSpawnedItems(void) |
---|
| 101 | { return this->maxSpawnedItems_; } |
---|
[6475] | 102 | void setMaxSpawnedItems(int items); //!< Sets the maximum number of spawned items. |
---|
[5953] | 103 | |
---|
| 104 | protected: |
---|
[6475] | 105 | void decrementSpawnsRemaining(void); //!< Decrements the number of remaining spawns. |
---|
[7163] | 106 | |
---|
[6512] | 107 | void startRespawnTimer(void); |
---|
[7163] | 108 | |
---|
[6475] | 109 | virtual Pickupable* getPickup(void); //!< Creates a new Pickupable. |
---|
[7163] | 110 | |
---|
[6475] | 111 | void setPickupable(Pickupable* pickup); //!< Sets a Pickupable for the PickupSpawner to spawn. |
---|
| 112 | const Pickupable* getPickupable(void); //!< Get the Pickupable that is spawned by this PickupSpawner. |
---|
[7163] | 113 | |
---|
[6421] | 114 | Pickupable* pickup_; //!< The pickup to be spawned. |
---|
[5953] | 115 | |
---|
[5947] | 116 | private: |
---|
[5953] | 117 | void initialize(void); |
---|
[7163] | 118 | |
---|
[6475] | 119 | void trigger(Pawn* pawn); //!< Method called when a Pawn is close enough. |
---|
| 120 | void respawnTimerCallback(); //!< Method called when the timer runs out. |
---|
[5953] | 121 | |
---|
[6475] | 122 | int maxSpawnedItems_; //!< Maximum number of items spawned by this PickupSpawner. |
---|
| 123 | int spawnsRemaining_; //!< Number of items that can be spawned by this PickupSpawner until it selfdestructs. |
---|
[5953] | 124 | |
---|
[6475] | 125 | float triggerDistance_; //!< Distance in which this gets triggered. |
---|
[2917] | 126 | |
---|
[6475] | 127 | float respawnTime_; //!< Time after which this gets re-actived. |
---|
| 128 | Timer respawnTimer_; //!< Timer used for re-activating. |
---|
[3046] | 129 | |
---|
[7163] | 130 | bool selfDestruct_; //!< True if the PickupSpawner is selfdestructing. |
---|
| 131 | |
---|
[6475] | 132 | static const int INF = -1; //!< Constant for infinity. |
---|
[2917] | 133 | }; |
---|
| 134 | } |
---|
| 135 | |
---|
| 136 | #endif /* _PickupSpawner_H__ */ |
---|