Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/notifications/src/modules/notifications/NotificationQueue.h @ 7343

Last change on this file since 7343 was 7343, checked in by dafrick, 15 years ago

Some documenting and adjustment.

  • Property svn:eol-style set to native
File size: 7.5 KB
Line 
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
29/**
30    @file NotificationQueue.h
31    @brief Definition of the NotificationQueue class.
32*/
33
34#ifndef _NotificationOueue_H__
35#define _NotificationOueue_H__
36
37#include "notifications/NotificationsPrereqs.h"
38
39#include <ctime>
40#include <map>
41#include <set>
42#include <string>
43#include <vector>
44
45#include "util/Math.h"
46#include "core/OrxonoxClass.h"
47#include "tools/interfaces/Tickable.h"
48#include "interfaces/NotificationListener.h"
49#include "NotificationManager.h"
50
51namespace orxonox
52{
53
54    //! Container to allow easy handling.
55    struct NotificationContainer
56    {
57        Notification* notification; //!< The Notification displayed.
58        time_t time; //!< The time the Notification was sent and thus first displayed.
59    };
60
61    //! Struct to allow ordering of NotificationContainers.
62    struct NotificationContainerCompare {
63        bool operator() (const NotificationContainer* const & a, const NotificationContainer* const & b) const
64            { return a->time < b->time; } //!< Ordered by time.
65    };
66
67    /**
68    @brief
69        Displays Notifications from specific senders.
70    @author
71        Damian 'Mozork' Frick
72    */
73    class _NotificationsExport NotificationQueue : public Tickable, public NotificationListener
74    {
75
76        public:
77            NotificationQueue(const std::string& name, const std::string& senders = NotificationManager::ALL, unsigned int size = NotificationQueue::DEFAULT_SIZE, const Vector2& position = NotificationQueue::DEFAULT_POSITION, unsigned int displayTime = NotificationQueue::DEFAULT_DISPLAY_TIME);
78            virtual ~NotificationQueue();
79
80            virtual void tick(float dt); //!< To update from time to time.
81
82            void update(void); //!< Updates the queue.
83            void update(Notification* notification, const std::time_t & time); //!< Adds a Notification to the queue.
84
85            /**
86            @brief Get the name of the NotificationQueue.
87            @return Returns the name.
88            */
89            inline const std::string& getName() const
90                { return this->name_; }
91
92            /**
93            @brief Returns the maximum number of Notifications displayed.
94            @return Returns maximum size.
95            */
96            inline unsigned int getMaxSize() const
97                { return this->maxSize_; }
98            /**
99            @brief Returns the current number of Notifications displayed.
100            @return Returns the size of the queue.
101            */
102            inline unsigned int getSize() const
103                { return this->size_; }
104            /**
105            @brief Returns the time interval the Notification is displayed.
106            @return Returns the display time.
107            */
108            inline float getDisplayTime() const
109                { return this->displayTime_; }
110            /**
111            @brief Returns the position of the NotificationQueue.
112            @return Returns the position.
113            */
114            inline const Vector2 & getPosition() const
115                { return this->position_; }
116
117            /**
118            @brief Returns the targets of this queue, reps. the senders which Notifications are displayed in this queue.
119            @return Retuns a set of string holding the different targets.
120            */
121            inline const std::set<std::string> & getTargetsSet()
122                { return this->targets_; }
123            bool getTargets(std::string* string) const; //!< Returns a string consisting of the concatination of the targets.
124
125            /**
126            @brief Sets the position of the NotificationQueue.
127            @param pos The position.
128            */
129            inline void setPosition(Vector2 pos)
130                { this->position_ = pos; this->positionChanged(); }
131
132        private:
133            static const unsigned int DEFAULT_SIZE = 5; //!< The default maximum number of Notifications displayed.
134            static const unsigned int DEFAULT_DISPLAY_TIME = 30; //!< The default display time.
135            static const Vector2 DEFAULT_POSITION; //!< the default position.
136
137            std::string name_; //!< The name of the NotificationQueue.
138
139            unsigned int maxSize_; //!< The maximal number of Notifications displayed.
140            unsigned int size_; //!< The number of Notifications displayed.
141            unsigned int notificationLength_; //!< The maximal number of characters a Notification-message is allowed to have.
142            unsigned int displayTime_; //!< The time a Notification is displayed.
143            Vector2 position_; //!< The position of the NotificationQueue.
144
145            std::set<std::string> targets_; //!< The targets the Queue displays Notifications of.
146
147            std::multiset<NotificationContainer*, NotificationContainerCompare> ordering_; //!< The NotificationContainers ordered by the time they were registered. //TODO: Would set work as well?
148            std::vector<NotificationContainer*> notifications_; //!< The NotificationContainers in the order they were added to the NotificationQueue.
149
150            float tickTime_; //!< Helper variable, to not have to check for Notifications that have been displayed too long, every tick.
151            NotificationContainer timeLimit_; //!< Helper object to check against to determine whether Notifications have expired.
152
153            bool registered_; //!< Helper variable to remember whether the NotificationQueue is registered already.
154
155            void initialize(void); //!< Initializes the object.
156            void create(void); //!< Creates the NotificationQueue in lua.
157
158            bool setName(const std::string& name); //!< Sets the name of the NotificationQueue.
159
160            void setMaxSize(unsigned int size); //!< Sets the maximum number of displayed Notifications.
161            void setDisplayTime(unsigned int time); //!< Sets the maximum number of seconds a Notification is displayed.
162
163            bool setTargets(const std::string & targets); //!< Set the targets of this NotificationQueue.
164
165            void positionChanged(void); //!< Aligns all the Notifications to the position of the NotificationQueue.
166            void sizeChanged(void); //!< Adjusts the NotificationQueue, when the maximum size has changed.
167
168            void push(Notification* notification, const std::time_t & time); //!< Add a Notification to the NotificationQueue.
169            void pop(void); //!< Removes the least recently added Notification form the NotificationQueue.
170            void remove(NotificationContainer* container); //!< Removes the Notification that is stored in the input container.
171
172            void clear(void); //!< Clears the queue by removing all Notifications.
173
174    };
175
176}
177
178#endif /* _NotificationOverlay_H__ */
Note: See TracBrowser for help on using the repository browser.