Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/modules/notifications/dispatchers/CommandNotification.h @ 7474

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

Synchronizing Notifications.
In the course of that, notifications are not longer sent by creating a Notification and the calling notification.send() bur by letting the NotificationManager handle all this: NotificationManager::getInstance().sendNotification(message)
This made QuestNotification obsolete, thus it was removde.

Also did some work on synchronizing the Script class. It should work properly most of the time, but the current solution is unreliable and unsatisfactory. So this will change as soon as I know how.

  • Property svn:eol-style set to native
File size: 4.1 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 CommandNotification.h
31    @brief Definition of the CommandNotification class.
32    @ingroup NotificationDispatchers
33*/
34
35#ifndef _CommandNotification_H__
36#define _CommandNotification_H__
37
38#include "notifications/NotificationsPrereqs.h"
39
40#include <string>
41#include "notifications/NotificationDispatcher.h"
42
43namespace orxonox {
44
45    /**
46    @brief
47        This class implements a method of displaying a Notification with information to an input command and the key the command is mapped to.
48        The message that is displayed is a string made out uf the concatenation of the preMessage, the key the specified command is mapped to and the postMessage.
49    @author
50        Damian 'Mozork' Frick
51    */
52    class _NotificationsExport CommandNotification : public NotificationDispatcher
53    {
54
55        public:
56            CommandNotification(BaseObject* creator); //!< Default Constructor.
57            virtual ~CommandNotification(); //!< Destructor.
58
59            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a CommandNotification object through XML.
60
61            /**
62            @brief Get the command, whose key is displayed.
63            @return Returns the name of the command.
64            */
65            const std::string& getCommand(void)
66                { return this->command_; }
67            /**
68            @brief Get the preMessage, the first part of the displayed message.
69            @return Returns the preMessage.
70            */
71            const std::string& getPreMessage(void)
72                { return this->preMessage_; }
73            /**
74            @brief Get the postMessage, the last part of the displayed message.
75            @return Returns the postMessage.
76            */
77            const std::string& getPostMessage(void)
78                { return this->postMessage_; }
79
80        protected:
81            virtual const std::string& createNotificationMessage(void); //!< Composes the Notification of the preMessage the name of the key the command is mapped to and the postMessage.
82
83        private:
84            std::string command_; //!< The name of the command.
85            std::string preMessage_; //!< The first part of the displayed message.
86            std::string postMessage_; //!< The last part of the displayed message.
87
88            void registerVariables(void);
89
90            /**
91            @brief Set the command, whose key is displayed.
92            @param command The name of the command.
93            */
94            void setCommand(const std::string& command)
95                { this->command_ = command; }
96            /**
97            @brief Set the preMessage, the first part of the displayed message.
98            @param message The preMessage.
99            */
100            void setPreMessage(const std::string& message)
101                { this->preMessage_ = message; }
102            /**
103            @brief Set the postMessage, the last part of the displayed message.
104            @param message The postMessage.
105            */
106            void setPostMessage(const std::string& message)
107                 { this->postMessage_ = message; }
108
109            const std::string& bindingNiceifyer(const std::string& binding);
110
111    };
112
113}
114
115#endif // _CommandNotification_H__
Note: See TracBrowser for help on using the repository browser.