Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/objects/quest/QuestDescription.h @ 3013

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

Some Quest stuff, and the rest for the GUIOverlay I failed to commit before.

File size: 5.7 KB
RevLine 
[1996]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
[2261]29/**
[2911]30    @file QuestDescription.h
[2662]31    @brief Definition of the QuestDescription class.
[2261]32*/
33
[1996]34#ifndef _QuestDescription_H__
35#define _QuestDescription_H__
36
[2095]37#include "OrxonoxPrereqs.h"
38
[1996]39#include <string>
40
41#include "core/BaseObject.h"
[2068]42#include "core/XMLPort.h"
[1996]43
[2963]44// tolua_begin
[2662]45namespace orxonox
46{
[1996]47    /**
48    @brief
49        This class is a description of a QuestItem.
50        It holds a title and a description.
[2261]51       
52        Creating a QuestDescription through XML goes as follows:
53       
[2662]54        <QuestDescription title="Title" description="Description Text" failMessage="You fail." completeMessage="You win!" />
[1996]55    @author
56        Damian 'Mozork' Frick
57    */
[2963]58    class _OrxonoxExport QuestDescription
59// tolua_end
60        : public BaseObject
61    { // tolua_export
[2093]62        public:
[2092]63            QuestDescription(BaseObject* creator);
[2093]64            virtual ~QuestDescription();
[2092]65
[2261]66            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a QuestDescription object through XML.
[2092]67
[2963]68// tolua_begin
[2662]69            /**
70            @brief Returns the title.
71            @return Returns a string containing the title of the QuestDescription.
72            */
[2261]73            inline const std::string & getTitle(void) const
[1996]74                { return this->title_; }
[2261]75       
[2662]76            /**
77            @brief Returns the description text.
78            @return Returns a string containing the description text of the QuestDescription.
79            */
[2261]80            inline const std::string & getDescription(void) const
[1996]81                { return this->description_; }
[2963]82// tolua_end
[2662]83       
84            /**
85            @brief Returns the fail message.
86            @return Returns a string containing the fail message of the QuestDescription.
87            */
88            inline const std::string & getFailMessage(void) const
89                { return this->failMessage_; }
90       
91            /**
92            @brief Returns the complete message.
93            @return Returns a string containing the complete message of the QuestDescription.
94            */
95            inline const std::string & getCompleteMessage(void) const
96                { return this->completeMessage_; }
97       
98            /**
99            @brief Sends a Notification displaying that a QuestHint was added.
100            @return Returns true if successful.
101            */
102            inline bool sendAddHintNotification(void) const
103                { return notificationHelper("hint", ""); }
104       
105            /**
106            @brief Sends a Notification displaying that a Quest was added.
107            @return Returns true if successful.
108            */
109            inline bool sendAddQuestNotification(void) const
110                { return notificationHelper("quest", "start"); }
111       
112            /**
113            @brief Sends a Notification displaying that a Quest was failed.
114            @return Returns true if successful.
115            */
116            inline bool sendFailQuestNotification(void) const
117                { return notificationHelper("quest", "fail"); }
118       
119            /**
120            @brief Sends a Notification displaying that a Quest was completed.
121            @return Returns true if successful.
122            */
123            inline bool sendCompleteQuestNotification(void) const
124                { return notificationHelper("quest", "complete"); }
[2092]125
[2093]126        private:
[2261]127            std::string title_; //!< The title.
128            std::string description_; //!< The description.
[2662]129            std::string failMessage_; //!< The message displayed when the Quest is failed.
130            std::string completeMessage_; //!< The message displayed when the Quest is completed.
[2092]131
[2662]132            bool notificationHelper(const std::string & item, const std::string & status) const; //!< Helper for sending QuestDescriptions as Notifications.
133
[2261]134            /**
135            @brief Sets the title.
136            @param title The title to be set.
137            */
138            inline void setTitle(const std::string & title)
[2068]139                { this->title_ = title; }
[2261]140               
[2662]141            /**
[2261]142            @brief Sets the description text.
143            @param description The description text to be set.
144            */
145            inline void setDescription(const std::string & description)
[2068]146                { this->description_ = description; }
[2092]147
[2662]148            /**
149            @brief Sets the fail message.
150            @param message The fail message to be set.
151            */
152            inline void setFailMessage(const std::string & message)
153                { this->failMessage_ = message; }
154               
155            /**
156            @brief Sets the complete message.
157            @param message The complete message to be set.
158            */
159            inline void setCompleteMessage(const std::string & message)
160                { this->completeMessage_ = message; }
161
[2963]162    }; // tolua_export
[1996]163
[2963]164} // tolua_export
[1996]165
166#endif /* _QuestDescription_H__ */
Note: See TracBrowser for help on using the repository browser.