mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 20:31:51 +09:00
Former-commit-id: 1647fa32ef6894bd7db44f741f07c2f4dcdf9054 Former-commit-id: 0e5810dcfbe1fd59b13e7cabe9f1e93c5542da2d
77 lines
2.0 KiB
Java
77 lines
2.0 KiB
Java
package org.newdawn.slick;
|
|
|
|
import org.newdawn.slick.opengl.SlickCallable;
|
|
import org.newdawn.slick.opengl.renderer.Renderer;
|
|
import org.newdawn.slick.opengl.renderer.SGL;
|
|
|
|
/**
|
|
* A set of rendering that is cached onto the graphics card and hopefully
|
|
* is quicker to render. Note that there are some things that can't be done
|
|
* in lists and that all dependent operations must be container. For instance,
|
|
* any colour configuration can not be assumed from outside the cache.
|
|
*
|
|
* Note: The destroy method needs to be used to tidy up. This is pretty important
|
|
* in this case since there are limited number of underlying resources.
|
|
*
|
|
* @author kevin
|
|
*/
|
|
public class CachedRender {
|
|
/** The renderer to use for all GL operations */
|
|
protected static SGL GL = Renderer.get();
|
|
|
|
/** The operations to cache */
|
|
private Runnable runnable;
|
|
/** The display list cached to */
|
|
private int list = -1;
|
|
|
|
/**
|
|
* Create a new cached render that will build the specified
|
|
* operations on to a video card resource
|
|
*
|
|
* @param runnable The operations to cache
|
|
*/
|
|
public CachedRender(Runnable runnable) {
|
|
this.runnable = runnable;
|
|
build();
|
|
}
|
|
|
|
/**
|
|
* Build the display list
|
|
*/
|
|
private void build() {
|
|
if (list == -1) {
|
|
list = GL.glGenLists(1);
|
|
|
|
SlickCallable.enterSafeBlock();
|
|
GL.glNewList(list, SGL.GL_COMPILE);
|
|
runnable.run();
|
|
GL.glEndList();
|
|
SlickCallable.leaveSafeBlock();
|
|
} else {
|
|
throw new RuntimeException("Attempt to build the display list more than once in CachedRender");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Render the cached operations. Note that this doesn't call the operations, but
|
|
* rather calls the cached version
|
|
*/
|
|
public void render() {
|
|
if (list == -1) {
|
|
throw new RuntimeException("Attempt to render cached operations that have been destroyed");
|
|
}
|
|
|
|
SlickCallable.enterSafeBlock();
|
|
GL.glCallList(list);
|
|
SlickCallable.leaveSafeBlock();
|
|
}
|
|
|
|
/**
|
|
* Destroy this cached render
|
|
*/
|
|
public void destroy() {
|
|
GL.glDeleteLists(list,1);
|
|
list = -1;
|
|
}
|
|
}
|