TDME2 1.9.121
Installer.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
16
17using std::string;
18using std::vector;
19
29
30/**
31 * Installer
32 * @author Andreas Drewke
33 * @version $Id$
34 */
36 : public virtual Application, public virtual GUIActionListener, public virtual GUIChangeListener
37{
38private:
39 Engine* engine { nullptr };
40 PopUps* popUps { nullptr };
44 volatile Screen screen;
46 string homeFolder;
49 string timestamp;
51 vector<string> downloadedFiles;
52
53 /**
54 * Mount installer file system
55 */
56 static void mountInstallerFileSystem(const string& timestamp = string(), bool remountInstallerArchive = false);
57
58 /**
59 * Initialize screens
60 */
61 void initializeScreens();
62
63 /**
64 * Perform screen action
65 */
67
68 /**
69 * Scan archive file system
70 * @oaram archive archive file system
71 * @param totalFiles total files
72 * @param pathName path name
73 */
74 static void scanArchive(ArchiveFileSystem* archiveFileSystem, vector<string>& totalFiles, const string& pathName = string());
75
76 /**
77 * Create a path recursively
78 * @param pathName path name
79 */
80 static void createPathRecursively(const string& pathName);
81public:
82 /**
83 * Public constructor
84 */
85 Installer();
86
87 // overridden methods
88 void initialize() override;
89 void dispose() override;
90 void reshape(int width, int height) override;
91 void display() override;
92 void onClose() override;
94 void onValueChanged(GUIElementNode* node) override;
95
96 /**
97 * Main
98 * @param argc argument count
99 * @param argv argument values
100 */
101 static void main(int argc, char** argv);
102
103};
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
Archive file system implementation.
Mutex implementation.
Definition: Mutex.h:27
Pop ups controller accessor class.
Definition: PopUps.h:19
void dispose() override
Disposes.
Definition: Installer.cpp:1123
vector< string > downloadedFiles
Definition: Installer.h:51
void display() override
Display.
Definition: Installer.cpp:1300
static void mountInstallerFileSystem(const string &timestamp=string(), bool remountInstallerArchive=false)
Mount installer file system.
Definition: Installer.cpp:1315
void initialize() override
Init.
Definition: Installer.cpp:1097
static void createPathRecursively(const string &pathName)
Create a path recursively.
Definition: Installer.cpp:1406
static void main(int argc, char **argv)
Main.
Definition: Installer.cpp:1369
void initializeScreens()
Initialize screens.
Definition: Installer.cpp:114
void onValueChanged(GUIElementNode *node) override
On value changed.
Definition: Installer.cpp:1296
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
Definition: Installer.cpp:1133
Installer()
Public constructor.
Definition: Installer.cpp:102
void reshape(int width, int height) override
Resize.
Definition: Installer.cpp:1128
void onClose() override
On close.
Definition: Installer.cpp:1424
static void scanArchive(ArchiveFileSystem *archiveFileSystem, vector< string > &totalFiles, const string &pathName=string())
Scan archive file system @oaram archive archive file system.
Definition: Installer.cpp:1393
void performScreenAction()
Perform screen action.
Definition: Installer.cpp:267
Properties class, which helps out with storeing or loading key value pairs from/to property files.
Definition: Properties.h:23
GUI action listener interface.
GUI change listener interface.