ZeroZero Game Engine
v0.0
A 3D game engine using Vulkan & Jolt
|
Global application.
Automatically instantiated by the Z0_APP(CONFIG, ROOTNODE)
macro.
Public Member Functions | |
void | remove (const shared_ptr< ui::Window > &window) const |
void | quit () const |
const ApplicationConfig & | getConfig () const |
const Window & | getWindow () const |
uint32_t | getFPS () const |
bool | isPaused () const |
void | setPaused (bool pause) |
void | setRootNode (const shared_ptr< Node > &node) |
void | activateCamera (const shared_ptr< Camera > &camera) |
vec3 | getGravity () const |
virtual uint64_t | getDedicatedVideoMemory () const = 0 |
virtual const string & | getAdapterDescription () const = 0 |
virtual uint64_t | getVideoMemoryUsage () const = 0 |
virtual void | setShadowCasting (bool) const = 0 |
ui::Manager & | getWindowManager () const |
float | getVectorRatio () const |
virtual float | getAspectRatio () const = 0 |
virtual vec2 | getExtent () const = 0 |
template<typename Lambda > | |
auto | callDeferred (Lambda lambda) |
template<typename Lambda > | |
auto | callAsync (Lambda lambda) |
OutlineMaterials & | getOutlineMaterials () const |
void | setDisplayDebug (bool display) |
auto | getDisplayDebug () const |
Static Public Member Functions | |
static Application & | get () |
static shared_ptr< ui::Window > | add (const shared_ptr< ui::Window > &window) |
void activateCamera | ( | const shared_ptr< Camera > & | camera | ) |
Changes the current camera
camera | the camera to activate, must be in a scene |
|
static |
|
inline |
Starts a new thread that can access the GPU/VRAM.
Use this instead of starting a thread manually because the rendering system needs to wait for all the threads completion before releasing resources.
|
inline |
Add a lambda expression in the deferred calls queue.
They will be called before the next frame, after the scene pre-drawing updates where nodes are added/removed from the drawing lists (for all the frames in flight).
|
inlinestatic |
Returns the application singleton
|
nodiscardpure virtual |
Returns the video adapter description
|
nodiscardpure virtual |
Returns the rendering window aspect ratio
|
nodiscardinline |
Returns the startup configuration
|
nodiscardpure virtual |
Returns the number of bytes of dedicated video memory that are not shared with the CPU.
|
inline |
Return true
if the debug renderer display anything.
|
nodiscardpure virtual |
Returns the rendering window extent
|
nodiscardinline |
Returns the frames per seconds
|
nodiscard |
Returns the physics system gravity
|
inline |
Returns the meshes outlining materials
|
inline |
Return the vector renderer size ratio
|
nodiscardpure virtual |
Returns the application’s current video memory usage, in bytes.
|
nodiscardinline |
Returns the current display Window
|
inline |
Returns the global Window manager
|
nodiscardinline |
Checks if the scene is paused, in respect for z0::ProcessMode
void quit | ( | ) | const |
Exits the application by closing the Window (will wait for the current frame to be terminated)
void remove | ( | const shared_ptr< ui::Window > & | window | ) | const |
void setDisplayDebug | ( | bool | display | ) |
If the debug renderer is enabled is the application configuration, show or hide the debug.
void setPaused | ( | bool | pause | ) |
Pause or resume the current scene
pause | the new state
|
void setRootNode | ( | const shared_ptr< Node > & | node | ) |
Changes the current scene
node | The new scene, must not have a parent |
|
pure virtual |
Enable or disable shadow casting for the entire scene, applied when adding nodes