|
|
|
/*
|
|
|
|
* Copyright (c) 2009-2012 jMonkeyEngine
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.jme3.system.lwjgl;
|
|
|
|
|
|
|
|
import com.jme3.input.lwjgl.GlfwJoystickInput;
|
|
|
|
import com.jme3.input.lwjgl.GlfwKeyInput;
|
|
|
|
import com.jme3.input.lwjgl.GlfwMouseInput;
|
|
|
|
import com.jme3.renderer.Renderer;
|
|
|
|
import com.jme3.renderer.RendererException;
|
|
|
|
import com.jme3.renderer.lwjgl.LwjglGL;
|
|
|
|
import com.jme3.renderer.lwjgl.LwjglGLExt;
|
|
|
|
import com.jme3.renderer.lwjgl.LwjglGLFboEXT;
|
|
|
|
import com.jme3.renderer.lwjgl.LwjglGLFboGL3;
|
|
|
|
import com.jme3.renderer.opengl.*;
|
|
|
|
import com.jme3.renderer.opengl.GL;
|
|
|
|
import com.jme3.system.*;
|
|
|
|
import org.lwjgl.Sys;
|
|
|
|
import org.lwjgl.glfw.GLFW;
|
|
|
|
import org.lwjgl.opengl.*;
|
|
|
|
|
|
|
|
import java.util.concurrent.atomic.AtomicBoolean;
|
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
|
|
|
|
import static org.lwjgl.opengl.GL.createCapabilities;
|
|
|
|
import static org.lwjgl.opengl.GL11.GL_TRUE;
|
|
|
|
import static org.lwjgl.opengl.GL11.glGetInteger;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A LWJGL implementation of a graphics context.
|
|
|
|
*/
|
|
|
|
public abstract class LwjglContext implements JmeContext {
|
|
|
|
|
|
|
|
private static final Logger logger = Logger.getLogger(LwjglContext.class.getName());
|
|
|
|
|
|
|
|
protected static final String THREAD_NAME = "jME3 Main";
|
|
|
|
|
|
|
|
protected AtomicBoolean created = new AtomicBoolean(false);
|
|
|
|
protected AtomicBoolean renderable = new AtomicBoolean(false);
|
|
|
|
protected final Object createdLock = new Object();
|
|
|
|
|
|
|
|
protected AppSettings settings = new AppSettings(true);
|
|
|
|
protected Renderer renderer;
|
|
|
|
protected GlfwKeyInput keyInput;
|
|
|
|
protected GlfwMouseInput mouseInput;
|
|
|
|
protected GlfwJoystickInput joyInput;
|
|
|
|
protected Timer timer;
|
|
|
|
protected SystemListener listener;
|
|
|
|
|
|
|
|
public void setSystemListener(SystemListener listener) {
|
|
|
|
this.listener = listener;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void printContextInitInfo() {
|
|
|
|
logger.log(Level.INFO, "LWJGL {0} context running on thread {1}\n" +
|
|
|
|
" * Graphics Adapter: GLFW {2}",
|
|
|
|
new Object[]{Sys.getVersion(), Thread.currentThread().getName(), GLFW.glfwGetVersionString()});
|
|
|
|
}
|
|
|
|
|
|
|
|
protected int determineMaxSamples() {
|
|
|
|
// If we already have a valid context, determine samples using current context.
|
|
|
|
if (GLFW.glfwExtensionSupported("GL_ARB_framebuffer_object") == GL_TRUE) {
|
|
|
|
return glGetInteger(ARBFramebufferObject.GL_MAX_SAMPLES);
|
|
|
|
} else if (GLFW.glfwExtensionSupported("GL_EXT_framebuffer_multisample") == GL_TRUE) {
|
|
|
|
return glGetInteger(EXTFramebufferMultisample.GL_MAX_SAMPLES_EXT);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void registerNatives() {
|
|
|
|
// LWJGL
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("lwjgl", Platform.Windows32, "native/windows/lwjgl32.dll");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("lwjgl", Platform.Windows64, "native/windows/lwjgl.dll");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("lwjgl", Platform.Linux32, "native/linux/liblwjgl32.so");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("lwjgl", Platform.Linux64, "native/linux/liblwjgl.so");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("lwjgl", Platform.MacOSX32, "native/macosx/liblwjgl.dylib");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("lwjgl", Platform.MacOSX64, "native/macosx/liblwjgl.dylib");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("lwjgl", Platform.Windows32, "native/windows/jemalloc32.dll");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("lwjgl", Platform.Windows64, "native/windows/jemalloc.dll");
|
|
|
|
|
|
|
|
// OpenAL
|
|
|
|
// For OSX: Need to add lib prefix when extracting
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("openal", Platform.Windows32, "native/windows/OpenAL32.dll");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("openal", Platform.Windows64, "native/windows/OpenAL.dll");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("openal", Platform.Linux32, "native/linux/libopenal32.so");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("openal", Platform.Linux64, "native/linux/libopenal.so");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("openal", Platform.MacOSX32, "native/macosx/openal.dylib", "libopenal.dylib");
|
|
|
|
NativeLibraryLoader.registerNativeLibrary("openal", Platform.MacOSX64, "native/macosx/openal.dylib", "libopenal.dylib");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void loadNatives() {
|
|
|
|
if (JmeSystem.isLowPermissions()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ("LWJGL".equals(settings.getAudioRenderer())) {
|
|
|
|
NativeLibraryLoader.loadNativeLibrary("openal", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NativeLibraryLoader.isUsingNativeBullet()) {
|
|
|
|
NativeLibraryLoader.loadNativeLibrary("bulletjme", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
NativeLibraryLoader.loadNativeLibrary("lwjgl", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected int getNumSamplesToUse() {
|
|
|
|
int samples = 0;
|
|
|
|
if (settings.getSamples() > 1) {
|
|
|
|
samples = settings.getSamples();
|
|
|
|
final int supportedSamples = determineMaxSamples();
|
|
|
|
if (supportedSamples < samples) {
|
|
|
|
logger.log(Level.WARNING,
|
|
|
|
"Couldn't satisfy antialiasing samples requirement: x{0}. "
|
|
|
|
+ "Video hardware only supports: x{1}",
|
|
|
|
new Object[]{samples, supportedSamples});
|
|
|
|
|
|
|
|
samples = supportedSamples;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return samples;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void initContextFirstTime() {
|
|
|
|
final GLCapabilities capabilities = createCapabilities(settings.getRenderer().equals(AppSettings.LWJGL_OPENGL3));
|
|
|
|
|
|
|
|
if (!capabilities.OpenGL20) {
|
|
|
|
throw new RendererException("OpenGL 2.0 or higher is required for jMonkeyEngine");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings.getRenderer().equals(AppSettings.LWJGL_OPENGL2)
|
|
|
|
|| settings.getRenderer().equals(AppSettings.LWJGL_OPENGL3)) {
|
|
|
|
GL gl = new LwjglGL();
|
|
|
|
GLExt glext = new LwjglGLExt();
|
|
|
|
GLFbo glfbo;
|
|
|
|
|
|
|
|
if (capabilities.OpenGL30) {
|
|
|
|
glfbo = new LwjglGLFboGL3();
|
|
|
|
} else {
|
|
|
|
glfbo = new LwjglGLFboEXT();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings.getBoolean("GraphicsDebug")) {
|
|
|
|
gl = new GLDebugDesktop(gl, glext, glfbo);
|
|
|
|
glext = (GLExt) gl;
|
|
|
|
glfbo = (GLFbo) gl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings.getBoolean("GraphicsTiming")) {
|
|
|
|
GLTimingState timingState = new GLTimingState();
|
|
|
|
gl = (GL) GLTiming.createGLTiming(gl, timingState, GL.class, GL2.class, GL3.class, GL4.class);
|
|
|
|
glext = (GLExt) GLTiming.createGLTiming(glext, timingState, GLExt.class);
|
|
|
|
glfbo = (GLFbo) GLTiming.createGLTiming(glfbo, timingState, GLFbo.class);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings.getBoolean("GraphicsTrace")) {
|
|
|
|
gl = (GL) GLTracer.createDesktopGlTracer(gl, GL.class, GL2.class, GL3.class, GL4.class);
|
|
|
|
glext = (GLExt) GLTracer.createDesktopGlTracer(glext, GLExt.class);
|
|
|
|
glfbo = (GLFbo) GLTracer.createDesktopGlTracer(glfbo, GLFbo.class);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderer = new GLRenderer(gl, glext, glfbo);
|
|
|
|
renderer.initialize();
|
|
|
|
} else {
|
|
|
|
throw new UnsupportedOperationException("Unsupported renderer: " + settings.getRenderer());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (capabilities.GL_ARB_debug_output && settings.getBoolean("GraphicsDebug")) {
|
|
|
|
ARBDebugOutput.glDebugMessageCallbackARB(new LwjglGLDebugOutputHandler(), 0); // User param is zero. Not sure what we could use that for.
|
|
|
|
}
|
|
|
|
|
|
|
|
renderer.setMainFrameBufferSrgb(settings.getGammaCorrection());
|
|
|
|
renderer.setLinearizeSrgbImages(settings.getGammaCorrection());
|
|
|
|
|
|
|
|
// Init input
|
|
|
|
if (keyInput != null) {
|
|
|
|
keyInput.initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mouseInput != null) {
|
|
|
|
mouseInput.initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (joyInput != null) {
|
|
|
|
joyInput.initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
renderable.set(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void internalDestroy() {
|
|
|
|
renderer = null;
|
|
|
|
timer = null;
|
|
|
|
renderable.set(false);
|
|
|
|
synchronized (createdLock) {
|
|
|
|
created.set(false);
|
|
|
|
createdLock.notifyAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void internalCreate() {
|
|
|
|
synchronized (createdLock) {
|
|
|
|
created.set(true);
|
|
|
|
createdLock.notifyAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
initContextFirstTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void create() {
|
|
|
|
create(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
destroy(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void waitFor(boolean createdVal) {
|
|
|
|
synchronized (createdLock) {
|
|
|
|
while (created.get() != createdVal) {
|
|
|
|
try {
|
|
|
|
createdLock.wait();
|
|
|
|
} catch (InterruptedException ex) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isCreated() {
|
|
|
|
return created.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isRenderable() {
|
|
|
|
return renderable.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSettings(AppSettings settings) {
|
|
|
|
this.settings.copyFrom(settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
public AppSettings getSettings() {
|
|
|
|
return settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Renderer getRenderer() {
|
|
|
|
return renderer;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Timer getTimer() {
|
|
|
|
return timer;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|