Orxonox  0.0.5 Codename: Arcturus
Question.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 _Question_H__
30 #define _Question_H__
31 
32 #include "core/BaseObject.h"
33 #include "DialogPrereqs.h"
34 #include "AnswerId.h"
35 #include "core/XMLPort.h"
36 #include "core/CoreIncludes.h"
37 
38 
39 #include <string>
40 
41 namespace orxonox
42 {
43 
52  {
53  public:
54  Question(Context* context);
55 
56  virtual void XMLPort(Element& xmelement, XMLPort::Mode mode);
57 
58  void setQuestionId(const std::string& Id); //xmlPort-Funktion, setzt Id
59  const std::string& getQuestionId() const; //xmlPort-Funktion, gibt Id string zuruek
60 
61  void setQuestion(const std::string& question); //xmlPort-Funktion, setzt Fragen string
62  const std::string& getQuestion() const; //xmlPort-Funktion, gibt Fragen string
63 
64  void addAnswerId(AnswerId* answerId); //xmlPort-Funktion, nimmt AnswerIds von entsprechenden Objekten und fuegt sie in List ein.
65  AnswerId* getAnswerId(unsigned int index) const; //xmlPort-Funktion, gibt nichts zuruek
66 
74  const std::vector<std::string>& getAnswerIds() const; //returnt Pointer auf Vektor mit allen Ids
75 
76 
77 
78  private:
81  std::vector<std::string> answerIds_;
82  };
83 }
84 
85 #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 string
Definition: gtest-port.h:756
Declaration of the XMLPort helper classes and macros.
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
std::string question_
string with npc text
Definition: Question.h:80
container class for answerids in xml
Definition: AnswerId.h:47
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...
class containing the npc side of the Dialog
Definition: Question.h:51
std::string questionId_
id of npc textoption
Definition: Question.h:79
std::vector< std::string > answerIds_
vector with possible player reactions
Definition: Question.h:81