[2280] | 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 | |
---|
[2911] | 29 | /** |
---|
[7403] | 30 | @file NotificationQueue.h |
---|
[2911] | 31 | @brief Definition of the NotificationQueue class. |
---|
[7456] | 32 | @ingroup Notifications |
---|
[2911] | 33 | */ |
---|
| 34 | |
---|
[2280] | 35 | #ifndef _NotificationOueue_H__ |
---|
| 36 | #define _NotificationOueue_H__ |
---|
| 37 | |
---|
[7164] | 38 | #include "notifications/NotificationsPrereqs.h" |
---|
[2911] | 39 | |
---|
[3196] | 40 | #include <ctime> |
---|
| 41 | #include <set> |
---|
[2911] | 42 | #include <string> |
---|
[7403] | 43 | #include <vector> |
---|
[2280] | 44 | |
---|
[5633] | 45 | #include "tools/interfaces/Tickable.h" |
---|
[7403] | 46 | |
---|
[5619] | 47 | #include "interfaces/NotificationListener.h" |
---|
[7403] | 48 | #include "NotificationManager.h" |
---|
[2280] | 49 | |
---|
[7403] | 50 | namespace orxonox // tolua_export |
---|
| 51 | { // tolua_export |
---|
[2911] | 52 | |
---|
| 53 | //! Container to allow easy handling. |
---|
[7403] | 54 | struct NotificationContainer |
---|
[2911] | 55 | { |
---|
[7484] | 56 | Notification* notification; // The Notification displayed. |
---|
| 57 | time_t time; // The time the Notification was sent and thus first displayed. |
---|
[2911] | 58 | }; |
---|
[5619] | 59 | |
---|
[7403] | 60 | //! Struct to allow ordering of NotificationContainers. |
---|
| 61 | struct NotificationContainerCompare { |
---|
| 62 | bool operator() (const NotificationContainer* const & a, const NotificationContainer* const & b) const |
---|
[7484] | 63 | { return a->time < b->time; } // Ordered by time. |
---|
[2911] | 64 | }; |
---|
| 65 | |
---|
[2280] | 66 | /** |
---|
| 67 | @brief |
---|
[7484] | 68 | Displays @ref orxonox::Notification "Notifications" from specific senders. |
---|
| 69 | |
---|
| 70 | There are quite some parameters that influence the behaviour of the NotificationQueue: |
---|
| 71 | - 'name': The name of the NotificationQueue. It needs to be unique. |
---|
| 72 | - 'senders': The senders that are targets of this NotificationQueue, i.e. the names of senders whose Notifications this NotificationQueue displays. |
---|
| 73 | - 'size': The size of the NotificationQueue, it specifies how many @ref orxonox::Notification "Notifications" are displayed at once at the most. |
---|
| 74 | - 'displayTime': The time a @ref orxonox::Notification "Notification" is displayed with this NotificationQueue. |
---|
[2280] | 75 | @author |
---|
| 76 | Damian 'Mozork' Frick |
---|
| 77 | */ |
---|
[7403] | 78 | class _NotificationsExport NotificationQueue // tolua_export |
---|
| 79 | : public Tickable, public NotificationListener |
---|
| 80 | { // tolua_export |
---|
[2911] | 81 | |
---|
| 82 | public: |
---|
[7403] | 83 | NotificationQueue(const std::string& name, const std::string& senders = NotificationManager::ALL, unsigned int size = NotificationQueue::DEFAULT_SIZE, unsigned int displayTime = NotificationQueue::DEFAULT_DISPLAY_TIME); |
---|
[2911] | 84 | virtual ~NotificationQueue(); |
---|
[5619] | 85 | |
---|
[7403] | 86 | /** |
---|
| 87 | @brief Destroys the NotificationQueue. |
---|
| 88 | Used in lua. |
---|
| 89 | */ |
---|
| 90 | void destroy(void) { this->OrxonoxClass::destroy(); } // tolua_export |
---|
[5619] | 91 | |
---|
[2911] | 92 | virtual void tick(float dt); //!< To update from time to time. |
---|
[5619] | 93 | |
---|
[7403] | 94 | void update(void); //!< Updates the NotificationQueue. |
---|
| 95 | void update(Notification* notification, const std::time_t & time); //!< Updates the NotificationQueue by adding an new Notification. |
---|
[5619] | 96 | |
---|
[7403] | 97 | // tolua_begin |
---|
[2911] | 98 | /** |
---|
[7403] | 99 | @brief Get the name of the NotificationQueue. |
---|
| 100 | @return Returns the name. |
---|
| 101 | */ |
---|
| 102 | inline const std::string& getName() const |
---|
| 103 | { return this->name_; } |
---|
| 104 | |
---|
| 105 | void setMaxSize(unsigned int size); //!< Sets the maximum number of displayed Notifications. |
---|
| 106 | /** |
---|
[2911] | 107 | @brief Returns the maximum number of Notifications displayed. |
---|
| 108 | @return Returns maximum size. |
---|
| 109 | */ |
---|
[7403] | 110 | inline unsigned int getMaxSize() const |
---|
[2911] | 111 | { return this->maxSize_; } |
---|
[7403] | 112 | |
---|
| 113 | void setDisplayTime(unsigned int time); //!< Sets the maximum number of seconds a Notification is displayed. |
---|
[2911] | 114 | /** |
---|
| 115 | @brief Returns the time interval the Notification is displayed. |
---|
| 116 | @return Returns the display time. |
---|
| 117 | */ |
---|
[7410] | 118 | inline unsigned int getDisplayTime() const |
---|
[2911] | 119 | { return this->displayTime_; } |
---|
[7403] | 120 | // tolua_end |
---|
| 121 | |
---|
[2911] | 122 | /** |
---|
[7403] | 123 | @brief Returns the current number of Notifications displayed. |
---|
| 124 | @return Returns the size of the NotificationQueue. |
---|
[2911] | 125 | */ |
---|
[7403] | 126 | inline unsigned int getSize() const |
---|
| 127 | { return this->size_; } |
---|
[5619] | 128 | |
---|
[2911] | 129 | /** |
---|
[7403] | 130 | @brief Returns the targets of this NotificationQueue, reps. the senders which Notifications are displayed in this NotificationQueue. |
---|
| 131 | @return Returns a set of strings holding the different targets. |
---|
[2911] | 132 | */ |
---|
[7417] | 133 | inline const std::set<std::string> & getTargetsSet() |
---|
[2911] | 134 | { return this->targets_; } |
---|
[5619] | 135 | |
---|
[7403] | 136 | // tolua_begin |
---|
| 137 | void setTargets(const std::string & targets); //!< Set the targets of this NotificationQueue. |
---|
| 138 | const std::string& getTargets(void) const; //!< Returns a string consisting of the concatination of the targets. |
---|
| 139 | // tolua_end |
---|
[2501] | 140 | |
---|
[2911] | 141 | private: |
---|
[7403] | 142 | static const unsigned int DEFAULT_SIZE = 5; //!< The default maximum number of Notifications displayed. |
---|
| 143 | static const unsigned int DEFAULT_DISPLAY_TIME = 30; //!< The default display time. |
---|
[2501] | 144 | |
---|
[7403] | 145 | std::string name_; //!< The name of the NotificationQueue. |
---|
[5619] | 146 | |
---|
[7403] | 147 | unsigned int maxSize_; //!< The maximal number of Notifications displayed. |
---|
| 148 | unsigned int size_; //!< The number of Notifications displayed. |
---|
| 149 | unsigned int displayTime_; //!< The time a Notification is displayed. |
---|
[5619] | 150 | |
---|
[7163] | 151 | bool registered_; //!< Helper variable to remember whether the NotificationQueue is registered already. |
---|
| 152 | |
---|
[7417] | 153 | std::set<std::string> targets_; //!< The targets the NotificationQueue displays Notifications of. |
---|
[5619] | 154 | |
---|
[7403] | 155 | std::multiset<NotificationContainer*, NotificationContainerCompare> ordering_; //!< The NotificationContainers ordered by the time they were registered. |
---|
| 156 | std::vector<NotificationContainer*> notifications_; //!< The NotificationContainers in the order they were added to the NotificationQueue. |
---|
[5619] | 157 | |
---|
[7403] | 158 | float tickTime_; //!< Helper variable, to not have to check for Notifications that have been displayed too long, every tick. |
---|
| 159 | NotificationContainer timeLimit_; //!< Helper object to check against to determine whether Notifications have expired. |
---|
[5619] | 160 | |
---|
[7403] | 161 | void create(void); //!< Creates the NotificationQueue in lua. |
---|
[2501] | 162 | |
---|
[7403] | 163 | void setName(const std::string& name); //!< Sets the name of the NotificationQueue. |
---|
[5619] | 164 | |
---|
[7403] | 165 | void push(Notification* notification, const std::time_t & time); //!< Adds (pushes) a Notification to the NotificationQueue. |
---|
| 166 | void pop(void); //!< Removes (pops) the least recently added Notification form the NotificationQueue. |
---|
[7412] | 167 | void remove(const std::multiset<NotificationContainer*, NotificationContainerCompare>::iterator& containerIterator); //!< Removes the Notification that is stored in the input NotificationContainer. |
---|
[5619] | 168 | |
---|
[7403] | 169 | void clear(void); //!< Clears the NotificationQueue by removing all NotificationContainers. |
---|
[5619] | 170 | |
---|
[7403] | 171 | }; // tolua_export |
---|
[2280] | 172 | |
---|
[7403] | 173 | } // tolua_export |
---|
[2280] | 174 | |
---|
| 175 | #endif /* _NotificationOverlay_H__ */ |
---|