Package gaiasky
Class GaiaSky
java.lang.Object
gaiasky.GaiaSky
- All Implemented Interfaces:
com.badlogic.gdx.ApplicationListener,IObserver
Gaia Sky application code. Manages the application lifecycle, including initialization, main loop, and disposal.
-
Field Summary
FieldsModifier and TypeFieldDescriptioncom.badlogic.gdx.assets.AssetManagerThe asset manager.The main camera manager.The user interfaces.The user interfaces.booleanExternal view with final rendered scene and no UI.final ObjectUsed to wait for new frames.longHolds the number of frames produced in this session.External UI window.The user interfaces.com.badlogic.gdx.GraphicsGraphics.com.badlogic.gdx.InputMultiplexerstatic GaiaSkySingleton instance..The user interfaces.The user interfaces.The user interfaces.booleanSave state on exit.The user interfaces.The user interfaces.Time frame provider.The user interfaces.com.badlogic.gdx.backends.lwjgl3.Lwjgl3WindowWindow.booleanFlag indicating whether the window has been successfully created.The OpenXR driver set up increateVR(), may be null if we are not in VR mode or an OpenXR runtime is not detected. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfloatalpha(ComponentTypes cts) voidcreate()voiddispose()com.badlogic.gdx.graphics.glutils.FrameBuffergetCatalogInfoFromEntity(com.badlogic.ashley.core.Entity entity) Returns the main executor service, used to run asynchronous tasks in different threads.doublegetT()booleanbooleanbooleanisOn(int ordinal) booleanisOn(ComponentTypes cts) booleanvoidEvent notification call.voidparkCameraRunnable(String key, Runnable runnable) Parks a camera runnable that runs after the update-camera stage, and before the update-scene stage, until it is removed.voidparkRunnable(String key, Runnable runnable, Map<String, Runnable> map, com.badlogic.gdx.utils.Array<Runnable> runnables) Parks a runnable to the given map and list.voidparkUpdateRunnable(String key, Runnable runnable) Parks an update runnable that runs after the update-scene stage until it is removed.voidpause()static voidPosts a runnable that will run once after the current frame.voidRe-initialises all the GUI (step 1).voidSecond step in GUI initialisation.voidremoveRunnable(String key) Removes a previously parked update runnable.voidrender()voidvoidresize(int width, int height) voidresizeImmediate(int width, int height, boolean resizePostProcessors, boolean resizeRenderSys, boolean resizeGuis, boolean resizeScreenConf) voidresume()Gets the main scripting interface object.voidsetCrashed(boolean crashed) voidForces a global scene update.voidupdate(double dt) Update method.
-
Field Details
-
instance
Singleton instance.. -
frameMonitor
Used to wait for new frames. -
window
public com.badlogic.gdx.backends.lwjgl3.Lwjgl3Window windowWindow. -
graphics
public com.badlogic.gdx.Graphics graphicsGraphics. -
xrDriver
The OpenXR driver set up increateVR(), may be null if we are not in VR mode or an OpenXR runtime is not detected. -
assetManager
public com.badlogic.gdx.assets.AssetManager assetManagerThe asset manager. -
cameraManager
The main camera manager. -
scene
-
sceneRenderer
-
frames
public long framesHolds the number of frames produced in this session. -
inputMultiplexer
public com.badlogic.gdx.InputMultiplexer inputMultiplexer -
welcomeGui
The user interfaces. -
loadingGui
The user interfaces. -
mainGui
The user interfaces. -
spacecraftGui
The user interfaces. -
stereoGui
The user interfaces. -
debugGui
The user interfaces. -
crashGui
The user interfaces. -
gamepadGui
The user interfaces. -
mainVRGui
The user interfaces. -
welcomeGuiVR
-
loadingGuiVR
-
time
Time frame provider. -
windowCreated
public boolean windowCreatedFlag indicating whether the window has been successfully created. -
saveState
public boolean saveStateSave state on exit. -
externalView
public boolean externalViewExternal view with final rendered scene and no UI. -
gaiaSkyView
External UI window.
-
-
Constructor Details
-
GaiaSky
public GaiaSky()Creates an instance of Gaia Sky. -
GaiaSky
public GaiaSky(boolean skipWelcome, boolean vr, boolean externalView, boolean headless, boolean noScriptingServer, boolean debugMode) Creates an instance of Gaia Sky.- Parameters:
skipWelcome- Skips welcome screen if possible.vr- Launch in VR mode.externalView- Open a new window with a view of the rendered scene.headless- Launch in headless mode, without window.debugMode- Output debug information.
-
-
Method Details
-
postRunnable
Posts a runnable that will run once after the current frame.- Parameters:
r- The runnable to post.
-
create
public void create()- Specified by:
createin interfacecom.badlogic.gdx.ApplicationListener
-
touchSceneGraph
public void touchSceneGraph()Forces a global scene update. Updates the scene with a very small dt to force the re-computation of all entities. -
reinitialiseGUI1
public void reinitialiseGUI1()Re-initialises all the GUI (step 1). -
reinitialiseGUI2
public void reinitialiseGUI2()Second step in GUI initialisation. -
pause
public void pause()- Specified by:
pausein interfacecom.badlogic.gdx.ApplicationListener
-
resume
public void resume()- Specified by:
resumein interfacecom.badlogic.gdx.ApplicationListener
-
dispose
public void dispose()- Specified by:
disposein interfacecom.badlogic.gdx.ApplicationListener
-
resetDynamicResolution
public void resetDynamicResolution() -
getBackRenderBuffer
public com.badlogic.gdx.graphics.glutils.FrameBuffer getBackRenderBuffer() -
setCrashed
public void setCrashed(boolean crashed) -
render
public void render()- Specified by:
renderin interfacecom.badlogic.gdx.ApplicationListener
-
update
public void update(double dt) Update method.- Parameters:
dt- Delta time in seconds.
-
resize
public void resize(int width, int height) - Specified by:
resizein interfacecom.badlogic.gdx.ApplicationListener
-
resizeImmediate
public void resizeImmediate(int width, int height, boolean resizePostProcessors, boolean resizeRenderSys, boolean resizeGuis, boolean resizeScreenConf) -
scripting
Gets the main scripting interface object.- Returns:
- The main scripting interface object of Gaia Sky.
-
getExecutorService
Returns the main executor service, used to run asynchronous tasks in different threads.- Returns:
- The main executor service of Gaia Sky.
-
getGuiRegistry
-
getBookmarksManager
-
getICamera
-
getT
public double getT() -
getCameraManager
-
getPostProcessor
-
isOn
public boolean isOn(int ordinal) -
isOn
-
isOn
-
alpha
-
getCatalogInfoFromEntity
-
notify
Description copied from interface:IObserverEvent notification call. -
isInitialised
public boolean isInitialised() -
isHeadless
public boolean isHeadless() -
getGlobalResources
-
getCatalogManager
-
parkUpdateRunnable
Parks an update runnable that runs after the update-scene stage until it is removed.- Parameters:
key- The key to identify the runnable.runnable- The runnable to park.
-
parkCameraRunnable
Parks a camera runnable that runs after the update-camera stage, and before the update-scene stage, until it is removed.- Parameters:
key- The key to identify the runnable.runnable- The runnable to park.
-
parkRunnable
public void parkRunnable(String key, Runnable runnable, Map<String, Runnable> map, com.badlogic.gdx.utils.Array<Runnable> runnables) Parks a runnable to the given map and list.- Parameters:
key- The key to identify the runnable.runnable- The runnable to park.map- The map to use.runnables- The runnables list.
-
removeRunnable
Removes a previously parked update runnable.- Parameters:
key- The key of the runnable to remove.
-