TDME2 1.9.121
ProgressBarScreenController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
13#include <tdme/gui/GUI.h>
14#include <tdme/gui/GUIParser.h>
18
19using std::string;
20
29using tdme::gui::GUI;
35
36ProgressBarScreenController::ProgressBarScreenController()
37{
38}
39
41}
42
44{
45 return screenNode;
46}
47
49{
50 try {
51 screenNode = GUIParser::parse("resources/engine/gui", "popup_progressbar.xml");
52 screenNode->setVisible(false);
53 progressBarNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById("progressbar"));
54 progressBarParent = dynamic_cast<GUIElementNode*>(screenNode->getNodeById("progressbar_parent"));
55 progressMessageNode = dynamic_cast<GUITextNode*>(screenNode->getNodeById("progress_message"));
56 } catch (Exception& exception) {
57 Console::print(string("ProgressBarScreenController::initialize(): An error occurred: "));
58 Console::println(string(exception.what()));
59 }
60}
61
63{
64 screenNode = nullptr;
65}
66
67void ProgressBarScreenController::show(const string& message, bool showProgressBar)
68{
70 if (showProgressBar == true) {
71 progressBarParent->getActiveConditions().add("show-progressbar");
72 } else {
73 progressBarParent->getActiveConditions().remove("show-progressbar");
74 }
76 progress2(0.0f);
77}
78
81 Engine::getInstance()->display();
82 Engine::getInstance()->getGUI()->render();
83 Engine::getInstance()->getGUI()->handleEvents();
84 Application::swapBuffers();
85}
86
89}
90
92{
93 screenNode->setVisible(false);
94}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Engine main class.
Definition: Engine.h:122
GUI parser.
Definition: GUIParser.h:39
GUI module class.
Definition: GUI.h:66
GUINodeConditions & getActiveConditions()
bool add(const string &condition)
Add a condition.
bool remove(const string &condition)
Remove a condition.
GUI node controller base class.
virtual void setValue(const MutableString &value)=0
Set value.
GUI node base class.
Definition: GUINode.h:63
GUINodeController * getController()
Definition: GUINode.h:586
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void setVisible(bool visible)
Set visible.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void setText(const MutableString &text)
Set text.
Definition: GUITextNode.cpp:81
void show(const string &message, bool showProgressBar=true)
Shows the pop up.
Console class.
Definition: Console.h:26
Mutable string class.
Definition: MutableString.h:16
std::exception Exception
Exception base class.
Definition: Exception.h:19