Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Reviewing documentation fo Questsystem, moving documentation fully into doxygen.
Added some files to modules they belong to.

  • 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 "notifications/NotificationDispatcher.h"
41#include <string>
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            /**
89            @brief Set the command, whose key is displayed.
90            @param command The name of the command.
91            */
92            void setCommand(const std::string& command)
93                { this->command_ = command; }
94            /**
95            @brief Set the preMessage, the first part of the displayed message.
96            @param message The preMessage.
97            */
98            void setPreMessage(const std::string& message)
99                { this->preMessage_ = message; }
100            /**
101            @brief Set the postMessage, the last part of the displayed message.
102            @param message The postMessage.
103            */
104            void setPostMessage(const std::string& message)
105                 { this->postMessage_ = message; }
106
107            const std::string& bindingNiceifyer(const std::string& binding);
108
109    };
110
111}
112
113#endif // _CommandNotification_H__
Note: See TracBrowser for help on using the repository browser.