Orxonox  0.0.5 Codename: Arcturus
Answer.h
Go to the documentation of this file.
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  * ...
24  * Co-authors:
25  * ...
26  *
27  */
28 
29 #ifndef _Answer_H__
30 #define _Answer_H__
31 
32 #include "core/BaseObject.h"
33 #include "DialogPrereqs.h"
34 #include "core/XMLPort.h"
35 #include "core/CoreIncludes.h"
36 #include <string>
37 
38 namespace orxonox
39 {
48  {
49  public:
50  Answer(Context* context);
51 
52  virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
53 
54  void setAnswerId(const std::string& answerId); //xmlPort-Funktion, setzt AntwortId
55  const std::string& getAnswerId() const; //xmlPort-Funktion, gibt AntwortId
56 
57  void setNextQuestion(const std::string& nextId); //xmlPort-Funktion, um Dialog zu beenden tag benutzen der von keiner Frage benutzt wird
58  const std::string& getNextQuestion() const; //xmlPort-Funktion, gibt Id der Folgefrage
59 
60  void setAnswer(const std::string& awns); //xmlPort-Funktion, setzt Antworttext
61  const std::string& getAnswer() const; //xmlPort-Funktion, gibt Antworttext
62 
63  private:
67  };
68 }
69 
70 #endif
The BaseObject is the parent of all classes representing an instance in the game. ...
Definition: BaseObject.h:63
#define _DialogExport
Definition: DialogPrereqs.h:60
std::string answerId_
id of the pc textoption
Definition: Answer.h:64
class containing the pc side of the Dialog
Definition: Answer.h:47
::std::string string
Definition: gtest-port.h:756
Declaration of the XMLPort helper classes and macros.
xmlelement
Definition: Super.h:519
Shared library macros, enums, constants and forward declarations for the questsystem module ...
Die Wagnis Klasse hat die folgenden Aufgaben:
Definition: ApplicationPaths.cc:66
Mode
Definition: CorePrereqs.h:102
Declaration of BaseObject, the base class of all objects in Orxonox.
Definition: Context.h:45
Defines several very important macros used to register objects, register classes, and to work with id...
std::string nextQuestionId_
id of the npc reaction to pc answer
Definition: Answer.h:66
std::string answer_
string with the pc text
Definition: Answer.h:65