abstract class WatchRenderer : Renderer
Author
Ian Thomas (toxicbakery@gmail.com)
Author
Jared Woolston (jwoolston@tenkiv.com)
WatchRenderer(context: Context!) |
static val AVAILABLE_CORES: Int |
|
var mContext: Context! |
|
var mCurrentViewportHeight: Int |
|
var mCurrentViewportWidth: Int |
|
var mDefaultViewportHeight: Int |
|
var mDefaultViewportWidth: Int |
|
var mEnableDepthBuffer: Boolean |
|
static var mFogEnabled: Boolean |
|
var mFPSUpdateListener: OnFPSUpdateListener! |
|
var mFrameCount: Int |
|
var mFrameRate: Double |
|
var mGLES_Major_Version: Int |
|
var mGLES_Minor_Version: Int |
|
var mLastMeasuredFPS: Double |
|
val mLoaderExecutor: Executor! |
|
var mMaterialManager: MaterialManager! |
|
var mOverrideViewportHeight: Int |
|
var mOverrideViewportWidth: Int |
|
val mRenderTargets: MutableList<RenderTarget!>! |
|
var mSceneInitialized: Boolean |
|
val mScenes: MutableList<Scene!>! |
|
var mSurface: ISurface! |
|
var mTextureManager: TextureManager! |
|
var mTimer: ScheduledExecutorService! |
|
static var sMaxLights: Int |
open fun onOffsetsChanged(xOffset: Float, yOffset: Float, xOffsetStep: Float, yOffsetStep: Float, xPixelOffset: Int, yPixelOffset: Int): Unit |
|
open fun onTouchEvent(event: MotionEvent!): Unit |
open fun addAndSwitchScene(scene: Scene!): Boolean
Adds a |
|
open fun addMaterial(material: Material!): Boolean |
|
open fun addRenderTarget(renderTarget: RenderTarget!): Boolean
Add a render target in a thread safe manner. |
|
open fun addScene(scene: Scene!): Boolean
Adds a |
|
open fun addScenes(scenes: MutableCollection<Scene!>!): Boolean
Adds a |
|
open fun addTexture(texture: ATexture!): Boolean |
|
open fun clearOverrideViewportDimensions(): Unit |
|
open fun clearScenes(): Unit
Clears all scenes from the renderer. This should be used with extreme care as it will also clear the current scene. If this is done while still rendering, bad things will happen. |
|
open fun getContext(): Context! |
|
open fun getCurrentCamera(): Camera!
Retrieve the current |
|
open fun getCurrentScene(): Scene!
Fetches the |
|
open fun getDefaultViewportHeight(): Int |
|
open fun getDefaultViewportWidth(): Int |
|
open fun getFrameRate(): Double |
|
open fun getGLMajorVersion(): Int
Fetches the Open GL ES major version of the EGL surface. |
|
open fun getGLMinorVersion(): Int
Fetches the Open GL ES minor version of the EGL surface. |
|
open static fun getMaxLights(): Int |
|
open fun getNewDefaultScene(): Scene!
Return a new instance of the default initial scene for the |
|
open fun getNumScenes(): Int
Retrieve the number of |
|
open fun getOverrideViewportHeight(): Int |
|
open fun getOverrideViewportWidth(): Int |
|
open fun getRefreshRate(): Double |
|
open fun getRenderTarget(): RenderTarget! |
|
open fun getScene(scene: Int): Scene!
Fetches the specified scene. |
|
open fun getSceneCachingEnabled(): Boolean |
|
open fun getSceneInitialized(): Boolean |
|
open fun getTextureManager(): TextureManager! |
|
open fun getViewportHeight(): Int |
|
open fun getViewportWidth(): Int |
|
open static fun hasGLContext(): Boolean
Indicates whether the OpenGL context is still alive or not. |
|
open fun initializeColorPicker(picker: ObjectColorPicker!): Boolean |
|
abstract fun initScene(): Unit
Scene construction should happen here, not in onSurfaceCreated() |
|
open fun internalOfferTask(task: AFrameTask!): Boolean |
|
open fun loadModel(loader: ALoader!, callback: IAsyncLoaderCallback!, tag: Int): ALoader!
Add an open fun loadModel(loaderClass: Class<out ALoader!>!, callback: IAsyncLoaderCallback!, resID: Int): ALoader!
Create and add an open fun loadModel(loaderClass: Class<out ALoader!>!, callback: IAsyncLoaderCallback!, resID: Int, tag: Int): ALoader!
Create and add an |
|
open fun onPause(): Unit |
|
open fun onRender(elapsedRealtime: Long, deltaTime: Double): Unit
Called by |
|
open fun onRenderFrame(gl: GL10!): Unit |
|
open fun onRenderSurfaceCreated(config: EGLConfig!, gl: GL10!, width: Int, height: Int): Unit |
|
open fun onRenderSurfaceDestroyed(surface: SurfaceTexture!): Unit |
|
open fun onRenderSurfaceSizeChanged(gl: GL10!, width: Int, height: Int): Unit |
|
open fun onResume(): Unit |
|
open fun performFrameTasks(): Unit |
|
open fun reloadMaterials(): Boolean |
|
open fun reloadRenderTargets(): Unit |
|
open fun reloadScenes(): Unit
Called to reload the scenes. |
|
open fun reloadTextures(): Boolean |
|
open fun removeMaterial(material: Material!): Boolean |
|
open fun removeRenderTarget(renderTarget: RenderTarget!): Boolean
Remove a render target in a thread safe manner. |
|
open fun removeScene(scene: Scene!): Boolean
Removes a |
|
open fun removeTexture(texture: ATexture!): Boolean |
|
open fun render(elapsedRealtime: Long, deltaTime: Double): Unit
Called by |
|
open fun replaceAndSwitchScene(scene: Scene!, location: Int): Boolean
Replaces a open fun replaceAndSwitchScene(oldScene: Scene!, newScene: Scene!): Boolean
Replaces the specified |
|
open fun replaceScene(scene: Scene!, location: Int): Boolean
Replaces a open fun replaceScene(oldScene: Scene!, newScene: Scene!): Boolean
Replaces the specified |
|
open fun replaceTexture(texture: ATexture!): Boolean |
|
open fun resetMaterials(): Boolean |
|
open fun resetTextures(): Boolean |
|
open fun resizeRenderTarget(renderTargetTexture: RenderTargetTexture): Boolean |
|
open fun screenToCartesian(screenX: Float, screenY: Float): PointF!
converts screen coordinates (y increases downwards) to cartesian (y increases upwards) coordinates |
|
open fun setAntiAliasingMode(config: ISurface.ANTI_ALIASING_CONFIG!): Unit |
|
open fun setFPSUpdateListener(listener: OnFPSUpdateListener!): Unit |
|
open fun setFrameRate(frameRate: Int): Unit open fun setFrameRate(frameRate: Double): Unit |
|
open static fun setMaxLights(maxLights: Int): Unit |
|
open fun setOverrideViewportDimensions(width: Int, height: Int): Unit |
|
open fun setRenderSurface(surface: ISurface!): Unit |
|
open fun setRenderTarget(renderTarget: RenderTarget!): Unit
Sets the current render target. Please mind that this CAN ONLY BE called on the main OpenGL render thread. A subsequent call to |
|
open fun setSceneCachingEnabled(enabled: Boolean): Unit |
|
open fun setViewPort(width: Int, height: Int): Unit
Sets the GL Viewport used. User code is free to override this method, so long as the viewport is set somewhere (and the projection matrix updated). |
|
open fun startRendering(): Unit |
|
open fun stopRendering(): Boolean
Stop rendering the scene. |
|
open fun switchScene(scene: Scene!): Unit open fun switchScene(scene: Int): Unit
Switches the |
|
open fun switchSceneDirect(nextScene: Scene!): Unit
Switches the |
|
open fun unProject(p: PointF!, distance: Float): Vector3! open fun unProject(x: Double, y: Double, z: Double): Vector3!
Unprojects screen position into world space; 0,0,0 is center of screen |