Rigs of Rods 2023.09
Soft-body Physics Simulation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
GUI_LoadingWindow.h
Go to the documentation of this file.
1/*
2 This source file is part of Rigs of Rods
3 Copyright 2005-2012 Pierre-Michel Ricordel
4 Copyright 2007-2012 Thomas Fischer
5
6 For more information, see http://www.rigsofrods.org/
7
8 Rigs of Rods is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License version 3, as
10 published by the Free Software Foundation.
11
12 Rigs of Rods is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Rigs of Rods. If not, see <http://www.gnu.org/licenses/>.
19*/
20
21#pragma once
22
23#include "Application.h"
24#include <OgreRoot.h>
25#include <OgreTimer.h>
26
27
28namespace RoR {
29namespace GUI {
30
32{
33public:
34 const int PERC_HIDE_PROGRESSBAR = -1;
35 const int PERC_SHOW_SPINNER = -2;
36
37 void SetProgress(int _percent, const std::string& _text = "", bool render_frame = true);
38 void SetProgressNetConnect(const std::string& net_status);
39 void Draw();
40
41 void SetVisible(bool v) { m_is_visible = v; }
42 bool IsVisible() const { return m_is_visible; }
43
44private:
46 bool m_is_visible = false;
47 std::string m_text;
49 Ogre::Timer m_timer;
50 float m_spinner_counter = 0.f;
51};
52
53} // namespace GUI
54} // namespace RoR
Central state/object manager and communications hub.
void SetProgress(int _percent, const std::string &_text="", bool render_frame=true)
void SetProgressNetConnect(const std::string &net_status)