hadean/src/main/java/xyz/valnet/engine/App.java

204 lines
6.3 KiB
Java
Raw Normal View History

2022-05-18 07:46:03 -04:00
package xyz.valnet.engine;
import static org.lwjgl.glfw.Callbacks.*;
import static org.lwjgl.glfw.GLFW.*;
2023-01-20 06:47:44 -05:00
import static org.lwjgl.openal.ALC10.*;
2022-05-18 07:46:03 -04:00
import static org.lwjgl.opengl.GL11.*;
import static org.lwjgl.system.MemoryStack.*;
import static org.lwjgl.system.MemoryUtil.*;
2023-01-20 06:47:44 -05:00
import java.nio.IntBuffer;
import org.lwjgl.glfw.GLFWCursorPosCallback;
import org.lwjgl.glfw.GLFWErrorCallback;
import org.lwjgl.glfw.GLFWMouseButtonCallback;
import org.lwjgl.glfw.GLFWVidMode;
import org.lwjgl.openal.AL;
import org.lwjgl.openal.ALC;
import org.lwjgl.openal.ALCCapabilities;
import org.lwjgl.openal.ALCapabilities;
import org.lwjgl.opengl.GL;
import org.lwjgl.system.MemoryStack;
import xyz.valnet.engine.math.Matrix4f;
import xyz.valnet.hadean.gameobjects.ui.tabs.DebugTab;
2023-01-11 02:54:14 -05:00
2022-05-18 07:46:03 -04:00
public class App {
// The window handle
private long window;
2022-05-20 00:02:00 -04:00
private int width = 1024, height = 576;
2022-05-20 04:26:12 -04:00
private Matrix4f matrix = Matrix4f.orthographic(0, width, height, 0, 0, 100);
2022-05-18 07:46:03 -04:00
public static int mouseX, mouseY;
2023-01-11 02:54:14 -05:00
public static long audioContext;
public static long audioDevice;
@Deprecated
2022-05-18 07:46:03 -04:00
public static boolean mouseLeft, mouseMiddle, mouseRight;
private Game game;
public void run() {
init();
loop();
// Free the window callbacks and destroy the window
glfwFreeCallbacks(window);
glfwDestroyWindow(window);
2023-01-11 02:54:14 -05:00
alcDestroyContext(audioContext);
alcCloseDevice(audioDevice);
2022-05-18 07:46:03 -04:00
// Terminate GLFW and free the error callback
glfwTerminate();
glfwSetErrorCallback(null).free();
}
private void init() {
// Setup an error callback. The default implementation
// will print the error message in System.err.
GLFWErrorCallback.createPrint(System.err).set();
// Initialize GLFW. Most GLFW functions will not work before doing this.
if ( !glfwInit() )
throw new IllegalStateException("Unable to initialize GLFW");
// Configure GLFW
glfwDefaultWindowHints(); // optional, the current window hints are already the default
glfwWindowHint(GLFW_VISIBLE, GLFW_FALSE); // the window will stay hidden after creation
2022-12-26 14:39:29 -05:00
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE); // the window will be resizable
2022-05-18 07:46:03 -04:00
// Create the window
window = glfwCreateWindow(width, height, "Hello World!", NULL, NULL);
if ( window == NULL )
throw new RuntimeException("Failed to create the GLFW window");
// Setup a key callback. It will be called every time a key is pressed, repeated or released.
glfwSetKeyCallback(window, (window, key, scancode, action, mods) -> {
2023-01-20 06:47:44 -05:00
if(action == GLFW_RELEASE) {
game.keyRelease(key);
} else if(action == GLFW_PRESS) {
game.keyPress(key);
} else {
game.keyRepeat(key);
}
2022-05-18 07:46:03 -04:00
});
2023-01-09 03:42:01 -05:00
2023-01-21 17:09:55 -05:00
glfwSetCursorPosCallback(window, (long window, double xpos, double ypos) -> {
mouseX = (int) xpos;
mouseY = (int) ypos;
});
glfwSetScrollCallback(window, (long window, double xOffset, double yOffset) -> {
DebugTab.log("Scroll " + yOffset);
2023-01-21 17:09:55 -05:00
if(yOffset > 0)
game.scrollUp();
else if(yOffset < 0)
game.scrollDown();
// if(yOffset > 0)
// game.scrollLeft();
// else if(yOffset < 0)
// game.scrollRight();
2022-05-18 07:46:03 -04:00
});
2023-01-21 17:09:55 -05:00
glfwSetMouseButtonCallback(window, (long window, int button, int action, int mods) -> {
if(action == 1) {
game.mouseDown(button);
} else if(action == 0) {
game.mouseUp(button);
}
2022-05-18 07:46:03 -04:00
if(button == GLFW_MOUSE_BUTTON_LEFT) { mouseLeft = action == 1; return; }
if(button == GLFW_MOUSE_BUTTON_RIGHT) { mouseRight = action == 1; return; }
if(button == GLFW_MOUSE_BUTTON_MIDDLE) { mouseMiddle = action == 1; return ; }
2023-01-21 17:09:55 -05:00
System.out.println("Mouse: action " + action + " : button " + button);
2022-05-18 07:46:03 -04:00
});
// Get the thread stack and push a new frame
try ( MemoryStack stack = stackPush() ) {
IntBuffer pWidth = stack.mallocInt(1); // int*
IntBuffer pHeight = stack.mallocInt(1); // int*
// Get the window size passed to glfwCreateWindow
glfwGetWindowSize(window, pWidth, pHeight);
// Get the resolution of the primary monitor
2022-12-31 16:26:46 -05:00
long primaryMonitor = glfwGetPrimaryMonitor();
GLFWVidMode vidmode = glfwGetVideoMode(primaryMonitor);
IntBuffer monitorX = stack.mallocInt(1); // int*
IntBuffer monitorY = stack.mallocInt(1); // int*
glfwGetMonitorPos(primaryMonitor, monitorX, monitorY);
2022-05-18 07:46:03 -04:00
// Center the window
glfwSetWindowPos(
window,
2022-12-31 16:26:46 -05:00
monitorX.get(0) + (vidmode.width() - pWidth.get(0)) / 2,
monitorY.get(0) + (vidmode.height() - pHeight.get(0)) / 2
2022-05-18 07:46:03 -04:00
);
} // the stack frame is popped automatically
2023-01-09 03:42:01 -05:00
2022-05-18 07:46:03 -04:00
// Make the OpenGL context current
glfwMakeContextCurrent(window);
// Enable v-sync
glfwSwapInterval(1);
2023-01-11 02:54:14 -05:00
// Audio device
String defaultDeviceName = alcGetString(0, ALC_DEFAULT_DEVICE_SPECIFIER);
audioDevice = alcOpenDevice(defaultDeviceName);
int[] attributes = {0};
audioContext = alcCreateContext(audioDevice, attributes);
alcMakeContextCurrent(audioContext);
ALCCapabilities alcCapabilities = ALC.createCapabilities(audioDevice);
ALCapabilities alCapabilities = AL.createCapabilities(alcCapabilities);
if(!alCapabilities.OpenAL10) {
System.err.println("Audio not supported?!");
}
2022-05-18 07:46:03 -04:00
// Make the window visible
glfwShowWindow(window);
// This line is critical for LWJGL's interoperation with GLFW's
// OpenGL context, or any context that is managed externally.
// LWJGL detects the context that is current in the current thread,
// creates the GLCapabilities instance and makes the OpenGL
// bindings available for use.
GL.createCapabilities();
2023-01-09 03:42:01 -05:00
2022-05-18 07:46:03 -04:00
2022-12-31 16:26:46 -05:00
float clearBrightness = 0.09f;
glClearColor(clearBrightness, clearBrightness, clearBrightness, 1.0f);
2022-05-18 07:46:03 -04:00
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
2022-05-20 04:26:12 -04:00
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);
glDepthMask(true);
glfwSwapInterval(1);
2022-05-18 07:46:03 -04:00
2023-01-09 03:42:01 -05:00
2022-05-18 07:46:03 -04:00
game.start();
}
private void loop() {
while (!glfwWindowShouldClose(window)) {
game.updateViewMatrix(matrix);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // clear the framebuffer
game.render();
game.update();
glfwSwapBuffers(window);
glfwPollEvents();
}
}
public App(Game game) {
this.game = game;
}
}