TDME2 1.9.121
|
#include <tdme/tools/installer/Installer.h>
Public Member Functions | |
Installer () | |
Public constructor. More... | |
void | initialize () override |
Init. More... | |
void | dispose () override |
Disposes. More... | |
void | reshape (int width, int height) override |
Resize. More... | |
void | display () override |
Display. More... | |
void | onClose () override |
On close. More... | |
void | onActionPerformed (GUIActionListenerType type, GUIElementNode *node) override |
void | onValueChanged (GUIElementNode *node) override |
On value changed. More... | |
![]() | |
Application () | |
Public constructor. More... | |
virtual | ~Application () |
Destructor. More... | |
const string & | getTitle () |
const string & | getExecutableFileName () |
bool | isDebuggingEnabled () |
void | setInputEventHandler (InputEventHandler *inputEventHandler) |
Set input event handler. More... | |
int | getWindowXPosition () const |
void | setWindowXPosition (int windowXPosition) |
Set window X position when initializing. More... | |
int | getWindowYPosition () const |
void | setWindowYPosition (int windowYPosition) |
Set window Y position when initializing. More... | |
int | getWindowWidth () const |
void | setWindowWidth (int windowWidth) |
Set window width. More... | |
int | getWindowHeight () const |
void | setWindowHeight (int windowHeight) |
Set window height. More... | |
bool | isFullScreen () const |
void | setFullScreen (bool fullScreen) |
Set full screen mode. More... | |
string | getClipboardContent () |
void | setClipboardContent (const string &content) |
Set clipboard content. More... | |
void | run (int argc, char **argv, const string &title, InputEventHandler *inputEventHandler=nullptr, int windowHints=WINDOW_HINT_NONE) |
Run this application. More... | |
virtual void | initialize ()=0 |
Init. More... | |
virtual void | reshape (int width, int height)=0 |
Resize. More... | |
virtual void | display ()=0 |
Display. More... | |
virtual void | dispose ()=0 |
Disposes. More... | |
virtual void | onClose () |
On close. More... | |
![]() | |
virtual | ~GUIActionListener () |
Destructor. More... | |
virtual void | onActionPerformed (GUIActionListenerType type, GUIElementNode *node)=0 |
On action performed. More... | |
![]() | |
virtual | ~GUIChangeListener () |
Destructor. More... | |
virtual void | onValueChanged (GUIElementNode *node)=0 |
On value changed. More... | |
Static Public Member Functions | |
static void | main (int argc, char **argv) |
Main. More... | |
![]() | |
static Renderer * | getRenderer () |
static bool | hasApplication () |
static Application * | getApplication () |
static bool | isLimitFPS () |
static void | setLimitFPS (bool limitFPS) |
Set frames per seconds limit. More... | |
static void | setVSyncEnabled (bool vSync) |
Set vsync enabled. More... | |
static string | getOSName () |
static string | getCPUName () |
static string | execute (const string &command) |
Execute a command and wait until it finished running. More... | |
static void | executeBackground (const string &command) |
Execute a command in background. More... | |
static void | openBrowser (const string &url) |
Open browser with given url. More... | |
static void | cancelExit () |
Cancels a users requested exit (ALT-F4 or X button) More... | |
static void | exit (int exitCode) |
Exits this application with given exit code. More... | |
static bool | isActive () |
static void | installExceptionHandler () |
Windows only: Install exception handler that will print a stack trace if crashing. More... | |
static void | setMouseCursor (int mouseCursor) |
Set mouse cursor. More... | |
static int | getMousePositionX () |
static int | getMousePositionY () |
static void | setMousePosition (int x, int y) |
Set mouse position. More... | |
static void | swapBuffers () |
Swap rendering buffers. More... | |
Private Types | |
enum | Screen { SCREEN_WELCOME , SCREEN_LICENSE , SCREEN_CHECKFORUPDATE , SCREEN_COMPONENTS , SCREEN_PATH , SCREEN_INSTALLING , SCREEN_FINISHED , SCREEN_MAX , SCREEN_WELCOME2 , SCREEN_UNINSTALLING } |
enum | InstallerMode { INSTALLERMODE_NONE , INSTALLERMODE_INSTALL , INSTALLERMODE_UNINSTALL , INSTALLERMODE_UPDATE , INSTALLERMODE_REPAIR } |
Private Member Functions | |
void | initializeScreens () |
Initialize screens. More... | |
void | performScreenAction () |
Perform screen action. More... | |
Static Private Member Functions | |
static void | mountInstallerFileSystem (const string ×tamp=string(), bool remountInstallerArchive=false) |
Mount installer file system. More... | |
static void | scanArchive (ArchiveFileSystem *archiveFileSystem, vector< string > &totalFiles, const string &pathName=string()) |
Scan archive file system @oaram archive archive file system. More... | |
static void | createPathRecursively (const string &pathName) |
Create a path recursively. More... | |
Private Attributes | |
Engine * | engine { nullptr } |
PopUps * | popUps { nullptr } |
InstallerMode | installerMode |
volatile Screen | screen |
Properties | installerProperties |
string | homeFolder |
Mutex | installThreadMutex |
bool | installed |
string | timestamp |
bool | remountInstallerArchive |
vector< string > | downloadedFiles |
Additional Inherited Members | |
![]() | |
static constexpr int | WINDOW_HINT_NONE { 0 } |
static constexpr int | WINDOW_HINT_NOTRESIZEABLE { 1 } |
static constexpr int | WINDOW_HINT_NOTDECORATED { 2 } |
static constexpr int | WINDOW_HINT_INVISIBLE { 4 } |
static constexpr int | WINDOW_HINT_MAXIMIZED { 8 } |
static constexpr int | FPS { 60 } |
|
private |
Enumerator | |
---|---|
INSTALLERMODE_NONE | |
INSTALLERMODE_INSTALL | |
INSTALLERMODE_UNINSTALL | |
INSTALLERMODE_UPDATE | |
INSTALLERMODE_REPAIR |
Definition at line 42 of file Installer.h.
|
private |
Enumerator | |
---|---|
SCREEN_WELCOME | |
SCREEN_LICENSE | |
SCREEN_CHECKFORUPDATE | |
SCREEN_COMPONENTS | |
SCREEN_PATH | |
SCREEN_INSTALLING | |
SCREEN_FINISHED | |
SCREEN_MAX | |
SCREEN_WELCOME2 | |
SCREEN_UNINSTALLING |
Definition at line 41 of file Installer.h.
Installer | ( | ) |
Public constructor.
Definition at line 102 of file Installer.cpp.
|
staticprivate |
Create a path recursively.
pathName | path name |
Definition at line 1406 of file Installer.cpp.
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
|
private |
Initialize screens.
Definition at line 114 of file Installer.cpp.
|
static |
Main.
argc | argument count |
argv | argument values |
Definition at line 1369 of file Installer.cpp.
|
staticprivate |
Mount installer file system.
Definition at line 1315 of file Installer.cpp.
|
override |
|
overridevirtual |
|
overridevirtual |
On value changed.
node | node |
Implements GUIChangeListener.
Definition at line 1296 of file Installer.cpp.
|
private |
Perform screen action.
Definition at line 267 of file Installer.cpp.
|
overridevirtual |
Resize.
width | width |
height | height |
Implements Application.
Definition at line 1128 of file Installer.cpp.
|
staticprivate |
Scan archive file system @oaram archive archive file system.
totalFiles | total files |
pathName | path name |
Definition at line 1393 of file Installer.cpp.
|
private |
Definition at line 51 of file Installer.h.
|
private |
Definition at line 39 of file Installer.h.
|
private |
Definition at line 46 of file Installer.h.
|
private |
Definition at line 48 of file Installer.h.
|
private |
Definition at line 43 of file Installer.h.
|
private |
Definition at line 45 of file Installer.h.
|
private |
Definition at line 47 of file Installer.h.
|
private |
Definition at line 40 of file Installer.h.
|
private |
Definition at line 50 of file Installer.h.
|
private |
Definition at line 44 of file Installer.h.
|
private |
Definition at line 49 of file Installer.h.