Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7354 was 7354, checked in by dafrick, 14 years ago

Started work on edit mode. ConsoleCommand is not yet working.
Some additional cleanup. All the NotificationQueues generated by the NotificationManager now are destroyed upon destruction of the NotificationManager.
Removed NotificationQueue from level files.

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