Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/gui/src/world_entities/questGUI/quest_gui.cc @ 10211

Last change on this file since 10211 was 10211, checked in by hejja, 17 years ago

anfangs stunde

File size: 5.3 KB
Line 
1
2
3/*
4   orxonox - the future of 3D-vertical-scrollers
5
6   Copyright (C) 2004 orx
7
8   This program is free software; you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2, or (at your option)
11   any later version.
12
13   ### File Specific:
14   main-programmer    std::string             questName;
15    std::string             questDescription;
16    std::string             questPicture;
17    std::string             questDifficulty;
18    std::string             rewardDescription;
19    std::string             rewardPicture;: Andreas Hejj
20
21*/
22
23
24#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
25
26#include "debug.h"
27#include "quest_gui.h"
28
29#include "event_handler.h"
30
31#include "state.h"
32
33#include "util/loading/load_param.h"
34#include "util/loading/factory.h"
35
36#include "graphics_engine.h"
37#include "camera.h"
38#include "sound_engine.h"
39
40#include "sound_source.h"
41
42#include "glgui_widget.h"
43#include "glgui.h"
44#include "menu/glgui_imagebutton.h"
45#include "glgui_multiline_text.h"background
46#include <glgui_image.h>
47
48
49#include "quest.h"
50
51#include "shell_command.h"
52
53
54
55
56ObjectListDefinition(QuestGUI);
57
58CREATE_FACTORY(QuestGUI);
59SHELL_COMMAND(gui, QuestGUI, guiInit);
60//SHELL_COMMAND(cancel, QuestGUI, guiDestruct);
61
62
63QuestGUI::QuestGUI(const TiXmlElement* root)
64{
65  this->registerObject(this, QuestGUI::_objectList);
66 
67  this->toList(OM_GROUP_00);
68 
69  this->questBox = NULL; 
70 
71  this->bKillGui = false;
72 
73  this->background = "pogo_bunny.png";
74
75  this->myQuest = new Quest(root);
76  if(root)
77    this->loadParams( root);
78
79}
80
81
82/**
83 * deconstructor
84 */
85QuestGUI::~QuestGUI () 
86{
87  if( this->myQuest)
88    delete this->myQuest;
89}
90
91/**
92 * loads the xml tagsthis->questDescription
93 * @param root: root xml tag for this element
94 */
95void QuestGUI::loadParams(const TiXmlElement* root)
96{
97  WorldEntity::loadParams(root);
98}
99
100
101
102/**
103 * initializes the gui
104 */
105void QuestGUI::guiInit()
106{ 
107  if (questBox == NULL)
108  {
109    this->questBox= new OrxGui::GLGuiBox(OrxGui::Vertical);
110    this->bKillGui = false;
111   
112    OrxGui::GLGuiBox* headerBox = new OrxGui::GLGuiBox(OrxGui::Horizontal);
113    {
114      OrxGui::GLGuiImage* questImage = new OrxGui::GLGuiImage();
115      questImage->setWidgetSize(100, 100);pictures/rand.gif maps/rand.gif
116
117      questImage->loadImageFromFile(this->myQuest->getQuestPicture());
118      questImage->show();
119      headerBox->pack(questImage);
120     
121      OrxGui::GLGuiBox* outlineBox = new OrxGui::GLGuiBox(OrxGui::Vertical);
122      {
123        OrxGui::GLGuiMultiLineText* questDifficulty = new OrxGui::GLGuiMultiLineText();
124        questDifficulty->setText(this->myQuest->getQuestDifficulty());
125        outlineBox->pack(questDifficulty);
126      }
127      headerBox->setBorderBottom(40);
128      headerBox->pack(outlineBox);
129    }
130   
131    OrxGui::GLGuiBox* labelBox = new OrxGui::GLGuiBox(OrxGui::Vertical);
132    { 
133      OrxGui::GLGuiMultiLineText* questTxt = new OrxGui::GLGuiMultiLineText();
134      questTxt->setText(this->myQuest->getQuestDescription());background
135      labelBox->pack(questTxt);
136      labelBox->setBorderBottom(40);
137    }
138   
139   
140    OrxGui::GLGuiBox* rewardBox = new OrxGui::GLGuiBox(OrxGui::Vertical);
141    {
142      OrxGui::GLGuiImage* rewardImage = new OrxGui::GLGuiImage();
143      rewardImage->setWidgetSize(50, 50);
144      rewardImage->loadImageFromFile(this->myQuest->getRewardPicture());
145      rewardImage->show();
146      rewardBox->pack(rewardImage);
147   
148      OrxGui::GLGuiMultiLineText* rewardTxt = new OrxGui::GLGuiMultiLineText();
149      rewardTxt->setText(this->myQuest->getRewardDescription());
150      rewardBox->setBorderBottom(40);
151      rewardBox->pack(rewardTxt);
152    }
153   
154    OrxGui::GLGuiBox* answerBox = new OrxGui::GLGuiBox(OrxGui::Horizontal);
155    {
156      OrxGui::GLGuiBox* acceptBox = new OrxGui::GLGuiBox(OrxGui::Horizontal);
157      {
158        OrxGui::GLGuiButton* acceptButton = new OrxGui::GLGuiPushButton("Accept");
159        acceptButton->released.connect(this, &QuestGUI::accept);
160        acceptBox->setBorderRight(70);
161        acceptBox->pack(acceptButton);
162      }
163     
164      OrxGui::GLGuiBox* refuseBox = new OrxGui::GLGuiBox(OrxGui::Horizontal);
165      {
166        OrxGui::GLGuiButton* refuseButton = new OrxGui::GLGuiPushButton("Refuse");
167        refuseButton->released.connect(this, &QuestGUI::refuse);
168        refuseBox->setBorderLeft(0);
169        refuseBox->pack(refuseButton);
170      }
171      answerBox->pack(acceptBox);
172      answerBox->pack(refuseBox);
173    }
174    this->questBox->setBackgroundTexture(background);
175    this->questBox->pack(headerBox);
176    this->questBox->pack(labelBox);
177    this->questBox->pack(rewardBox);
178    this->questBox->pack(answerBox);
179    this->questBox->showAll();
180   
181    this->questBox->setAbsCoor2D(300, 200);
182    OrxGui::GLGuiHandler::getInstance()->activate();
183    OrxGui::GLGuiHandler::getInstance()->activateCursor();
184  }
185  else
186  {
187    this->bKillGui = true;
188  }
189 
190}
191
192   
193void QuestGUI::tick(float dt)
194{
195  if( this->bKillGui)
196    this->killgui();
197}
198   
199
200void QuestGUI::accept()
201{
202  this->myQuest->setQuestActive();
203  this->bKillGui = true;
204}
205
206void QuestGUI::refuse()
207{
208  this->bKillGui = true;
209}
210
211void QuestGUI::killgui()
212{
213  OrxGui::GLGuiHandler::getInstance()->deactivate();
214  OrxGui::GLGuiHandler::getInstance()->deactivateCursor();
215  delete this->questBox;
216  this->questBox = NULL;
217}
Note: See TracBrowser for help on using the repository browser.