TDME2 1.9.121
Public Member Functions | Static Public Member Functions | Private Types | Private Member Functions | Static Private Member Functions | Private Attributes | List of all members
Installer Class Referencefinal

Installer. More...

#include <tdme/tools/installer/Installer.h>

Inheritance diagram for Installer:
Inheritance graph
Collaboration diagram for Installer:
Collaboration graph

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...
 
- Public Member Functions inherited from Application
 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...
 
- Public Member Functions inherited from GUIActionListener
virtual ~GUIActionListener ()
 Destructor. More...
 
virtual void onActionPerformed (GUIActionListenerType type, GUIElementNode *node)=0
 On action performed. More...
 
- Public Member Functions inherited from GUIChangeListener
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 Public Member Functions inherited from Application
static RenderergetRenderer ()
 
static bool hasApplication ()
 
static ApplicationgetApplication ()
 
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 &timestamp=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

Engineengine { nullptr }
 
PopUpspopUps { 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 Public Attributes inherited from Application
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 }
 

Detailed Description

Installer.

Author
Andreas Drewke
Version
$Id$

Definition at line 35 of file Installer.h.

Member Enumeration Documentation

◆ InstallerMode

enum InstallerMode
private
Enumerator
INSTALLERMODE_NONE 
INSTALLERMODE_INSTALL 
INSTALLERMODE_UNINSTALL 
INSTALLERMODE_UPDATE 
INSTALLERMODE_REPAIR 

Definition at line 42 of file Installer.h.

◆ Screen

enum Screen
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.

Constructor & Destructor Documentation

◆ Installer()

Installer ( )

Public constructor.

Definition at line 102 of file Installer.cpp.

Member Function Documentation

◆ createPathRecursively()

void createPathRecursively ( const string &  pathName)
staticprivate

Create a path recursively.

Parameters
pathNamepath name

Definition at line 1406 of file Installer.cpp.

◆ display()

void display ( )
overridevirtual

Display.

Implements Application.

Definition at line 1300 of file Installer.cpp.

◆ dispose()

void dispose ( )
overridevirtual

Disposes.

Implements Application.

Definition at line 1123 of file Installer.cpp.

◆ initialize()

void initialize ( )
overridevirtual

Init.

Implements Application.

Definition at line 1097 of file Installer.cpp.

◆ initializeScreens()

void initializeScreens ( )
private

Initialize screens.

Definition at line 114 of file Installer.cpp.

◆ main()

void main ( int  argc,
char **  argv 
)
static

Main.

Parameters
argcargument count
argvargument values

Definition at line 1369 of file Installer.cpp.

◆ mountInstallerFileSystem()

void mountInstallerFileSystem ( const string &  timestamp = string(),
bool  remountInstallerArchive = false 
)
staticprivate

Mount installer file system.

Definition at line 1315 of file Installer.cpp.

◆ onActionPerformed()

void onActionPerformed ( GUIActionListenerType  type,
GUIElementNode node 
)
override

Public constructor

Parameters
installerinstaller

Definition at line 1133 of file Installer.cpp.

◆ onClose()

void onClose ( )
overridevirtual

On close.

Reimplemented from Application.

Definition at line 1424 of file Installer.cpp.

◆ onValueChanged()

void onValueChanged ( GUIElementNode node)
overridevirtual

On value changed.

Parameters
nodenode

Implements GUIChangeListener.

Definition at line 1296 of file Installer.cpp.

◆ performScreenAction()

void performScreenAction ( )
private

Perform screen action.

Definition at line 267 of file Installer.cpp.

◆ reshape()

void reshape ( int  width,
int  height 
)
overridevirtual

Resize.

Parameters
widthwidth
heightheight

Implements Application.

Definition at line 1128 of file Installer.cpp.

◆ scanArchive()

void scanArchive ( ArchiveFileSystem archiveFileSystem,
vector< string > &  totalFiles,
const string &  pathName = string() 
)
staticprivate

Scan archive file system @oaram archive archive file system.

Parameters
totalFilestotal files
pathNamepath name

Definition at line 1393 of file Installer.cpp.

Member Data Documentation

◆ downloadedFiles

vector<string> downloadedFiles
private

Definition at line 51 of file Installer.h.

◆ engine

Engine* engine { nullptr }
private

Definition at line 39 of file Installer.h.

◆ homeFolder

string homeFolder
private

Definition at line 46 of file Installer.h.

◆ installed

bool installed
private

Definition at line 48 of file Installer.h.

◆ installerMode

InstallerMode installerMode
private

Definition at line 43 of file Installer.h.

◆ installerProperties

Properties installerProperties
private

Definition at line 45 of file Installer.h.

◆ installThreadMutex

Mutex installThreadMutex
private

Definition at line 47 of file Installer.h.

◆ popUps

PopUps* popUps { nullptr }
private

Definition at line 40 of file Installer.h.

◆ remountInstallerArchive

bool remountInstallerArchive
private

Definition at line 50 of file Installer.h.

◆ screen

volatile Screen screen
private

Definition at line 44 of file Installer.h.

◆ timestamp

string timestamp
private

Definition at line 49 of file Installer.h.


The documentation for this class was generated from the following files: