galaxy 1.0.0
Real-Time C++23 Game Programming Framework. Built on data-driven design principles and agile software engineering.
Loading...
Searching...
No Matches
galaxy::App Class Referencefinal

Base level class for any galaxy app. More...

#include <Application.hpp>

+ Collaboration diagram for galaxy::App:

Public Member Functions

 App (const std::string &config_file="config.json")
 Default constructor.
 
 ~App ()
 Destructor.
 
void run ()
 Loads the default appdata file.
 

Private Member Functions

 App (const App &)=delete
 Copy constructor.
 
 App (App &&)=delete
 Move constructor.
 
Appoperator= (const App &)=delete
 Copy assignment operator.
 
Appoperator= (App &&)=delete
 Move assignment operator.
 
void setup_async ()
 
void setup_logging ()
 
void setup_config (std::string_view config_file)
 
void setup_platform ()
 
void setup_fs ()
 
void setup_rendering ()
 
void setup_events ()
 
void setup_input ()
 
void setup_meta ()
 
void setup_services ()
 
void setup_scripting ()
 

Private Attributes

SDL_Event m_events
 Core event data.
 

Detailed Description

Base level class for any galaxy app.

Definition at line 21 of file Application.hpp.

Constructor & Destructor Documentation

◆ App() [1/3]

galaxy::App::App ( const std::string & config_file = "config.json")
explicit

Default constructor.

Sets up the engine. You need to inherit this and call it from a subclass. Also calls std::srand(std::time(nullptr)) for you.

Parameters
config_fileFilepath of config file.

Definition at line 41 of file Application.cpp.

+ Here is the call graph for this function:

◆ ~App()

galaxy::App::~App ( )

Destructor.

Definition at line 63 of file Application.cpp.

◆ App() [2/3]

galaxy::App::App ( const App & )
privatedelete

Copy constructor.

◆ App() [3/3]

galaxy::App::App ( App && )
privatedelete

Move constructor.

Member Function Documentation

◆ run()

void galaxy::App::run ( )

Loads the default appdata file.

Main game loop.

Definition at line 85 of file Application.cpp.

+ Here is the call graph for this function:

◆ operator=() [1/2]

App & galaxy::App::operator= ( const App & )
privatedelete

Copy assignment operator.

◆ operator=() [2/2]

App & galaxy::App::operator= ( App && )
privatedelete

Move assignment operator.

◆ setup_async()

void galaxy::App::setup_async ( )
private

Definition at line 172 of file Application.cpp.

+ Here is the caller graph for this function:

◆ setup_logging()

void galaxy::App::setup_logging ( )
private

Definition at line 191 of file Application.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setup_config()

void galaxy::App::setup_config ( std::string_view config_file)
private

Definition at line 207 of file Application.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setup_platform()

void galaxy::App::setup_platform ( )
private

Definition at line 214 of file Application.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setup_fs()

void galaxy::App::setup_fs ( )
private

Definition at line 283 of file Application.cpp.

+ Here is the caller graph for this function:

◆ setup_rendering()

void galaxy::App::setup_rendering ( )
private

Definition at line 288 of file Application.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setup_events()

void galaxy::App::setup_events ( )
private

Definition at line 351 of file Application.cpp.

+ Here is the caller graph for this function:

◆ setup_input()

void galaxy::App::setup_input ( )
private

Definition at line 356 of file Application.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setup_meta()

void galaxy::App::setup_meta ( )
private

Definition at line 382 of file Application.cpp.

+ Here is the caller graph for this function:

◆ setup_services()

void galaxy::App::setup_services ( )
private

Definition at line 416 of file Application.cpp.

+ Here is the caller graph for this function:

◆ setup_scripting()

void galaxy::App::setup_scripting ( )
private

Definition at line 434 of file Application.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_events

SDL_Event galaxy::App::m_events
private

Core event data.

Definition at line 88 of file Application.hpp.


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