| 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 |  | 
|---|
| 43 | namespace 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 of the concatenation of the preMessage, the key the specified command is mapped to and the postMessage. | 
|---|
| 49 |  | 
|---|
| 50 |         In use it would like this: | 
|---|
| 51 |         @code | 
|---|
| 52 |         <CommandNotification preMessage="Please press " command="someCommand" postMessage=" to do something." sender="me"> | 
|---|
| 53 |             <events> | 
|---|
| 54 |                 <trigger> | 
|---|
| 55 |                     <PlayerTrigger /> | 
|---|
| 56 |                 </trigger> | 
|---|
| 57 |             </events> | 
|---|
| 58 |         </CommandNotification> | 
|---|
| 59 |         @endcode | 
|---|
| 60 |         Upon being triggered this would display the @ref orxonox::Notification "Notification" "Please press {the binding of the specified command} to do something". | 
|---|
| 61 |         For more information on what can be used for @code <PlayerTrigger /> @endcode see the @ref orxonox::NotificationDispatcher "NotificationDispatcher" documentation. | 
|---|
| 62 |     @author | 
|---|
| 63 |         Damian 'Mozork' Frick | 
|---|
| 64 |     */ | 
|---|
| 65 |     class _NotificationsExport CommandNotification : public NotificationDispatcher | 
|---|
| 66 |     { | 
|---|
| 67 |  | 
|---|
| 68 |         public: | 
|---|
| 69 |             CommandNotification(BaseObject* creator); //!< Default Constructor. | 
|---|
| 70 |             virtual ~CommandNotification(); //!< Destructor. | 
|---|
| 71 |  | 
|---|
| 72 |             virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a CommandNotification object through XML. | 
|---|
| 73 |  | 
|---|
| 74 |             /** | 
|---|
| 75 |             @brief Get the command, whose key is displayed. | 
|---|
| 76 |             @return Returns the name of the command. | 
|---|
| 77 |             */ | 
|---|
| 78 |             const std::string& getCommand(void) | 
|---|
| 79 |                 { return this->command_; } | 
|---|
| 80 |             /** | 
|---|
| 81 |             @brief Get the preMessage, the first part of the displayed message. | 
|---|
| 82 |             @return Returns the preMessage. | 
|---|
| 83 |             */ | 
|---|
| 84 |             const std::string& getPreMessage(void) | 
|---|
| 85 |                 { return this->preMessage_; } | 
|---|
| 86 |             /** | 
|---|
| 87 |             @brief Get the postMessage, the last part of the displayed message. | 
|---|
| 88 |             @return Returns the postMessage. | 
|---|
| 89 |             */ | 
|---|
| 90 |             const std::string& getPostMessage(void) | 
|---|
| 91 |                 { return this->postMessage_; } | 
|---|
| 92 |  | 
|---|
| 93 |         protected: | 
|---|
| 94 |             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. | 
|---|
| 95 |  | 
|---|
| 96 |         private: | 
|---|
| 97 |             std::string command_; //!< The name of the command. | 
|---|
| 98 |             std::string preMessage_; //!< The first part of the displayed message. | 
|---|
| 99 |             std::string postMessage_; //!< The last part of the displayed message. | 
|---|
| 100 |  | 
|---|
| 101 |             void registerVariables(void); //!< Register some variables for synchronisation. | 
|---|
| 102 |  | 
|---|
| 103 |             /** | 
|---|
| 104 |             @brief Set the command, whose key is displayed. | 
|---|
| 105 |             @param command The name of the command. | 
|---|
| 106 |             */ | 
|---|
| 107 |             void setCommand(const std::string& command) | 
|---|
| 108 |                 { this->command_ = command; } | 
|---|
| 109 |             /** | 
|---|
| 110 |             @brief Set the preMessage, the first part of the displayed message. | 
|---|
| 111 |             @param message The preMessage. | 
|---|
| 112 |             */ | 
|---|
| 113 |             void setPreMessage(const std::string& message) | 
|---|
| 114 |                 { this->preMessage_ = message; } | 
|---|
| 115 |             /** | 
|---|
| 116 |             @brief Set the postMessage, the last part of the displayed message. | 
|---|
| 117 |             @param message The postMessage. | 
|---|
| 118 |             */ | 
|---|
| 119 |             void setPostMessage(const std::string& message) | 
|---|
| 120 |                  { this->postMessage_ = message; } | 
|---|
| 121 |  | 
|---|
| 122 |             const std::string& bindingNiceifyer(const std::string& binding); //!< Transforms the input binding into a human readable form. | 
|---|
| 123 |  | 
|---|
| 124 |     }; | 
|---|
| 125 |  | 
|---|
| 126 | } | 
|---|
| 127 |  | 
|---|
| 128 | #endif // _CommandNotification_H__ | 
|---|