Engine.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package me.hammerle.snuviengine.api;
  2. import org.lwjgl.glfw.*;
  3. import org.lwjgl.opengl.*;
  4. import static org.lwjgl.glfw.Callbacks.*;
  5. import static org.lwjgl.glfw.GLFW.*;
  6. import static org.lwjgl.opengl.GL11.*;
  7. import static org.lwjgl.system.MemoryUtil.*;
  8. public abstract class Engine
  9. {
  10. private static final String VERSION = "0.0.1";
  11. public static final int WIDTH = 1024;
  12. public static final int HEIGHT = 576;
  13. public static final int TILE_SIZE = 16;
  14. public static final float SCALE = 2.0f;
  15. private long window;
  16. private int fpsIndex = 0;
  17. private final long[] fps = new long[100];
  18. private long fpsSum = 0;
  19. private double currentFps = 0;
  20. private int tpsIndex = 0;
  21. private final long[] tps = new long[100];
  22. private long tpsSum = 0;
  23. private double currentTps = 0;
  24. private long nanosPerTick = 10_000_000;
  25. public Engine()
  26. {
  27. }
  28. public final void run()
  29. {
  30. initGLFW();
  31. loop();
  32. glfwFreeCallbacks(window);
  33. glfwDestroyWindow(window);
  34. glfwTerminate();
  35. GLFWErrorCallback error = glfwSetErrorCallback(null);
  36. if(error != null)
  37. {
  38. error.free();
  39. }
  40. }
  41. private void initGLFW()
  42. {
  43. GLFWErrorCallback.createPrint(System.err).set();
  44. if(!glfwInit())
  45. {
  46. throw new IllegalStateException("Unable to initialize GLFW");
  47. }
  48. glfwDefaultWindowHints();
  49. glfwWindowHint(GLFW_VISIBLE, GLFW_FALSE);
  50. glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE);
  51. window = glfwCreateWindow(WIDTH, HEIGHT, "SnuviEngine " + VERSION, NULL, NULL);
  52. if(window == NULL)
  53. {
  54. throw new RuntimeException("Failed to create the GLFW window");
  55. }
  56. glfwSetKeyCallback(window, (w, key, scancode, action, mods) ->
  57. {
  58. if(action == GLFW_RELEASE)
  59. {
  60. KeyHandler.onKeyUpEvent(key);
  61. if(key == GLFW_KEY_ESCAPE)
  62. {
  63. glfwSetWindowShouldClose(window, true);
  64. }
  65. }
  66. else if(action == GLFW_PRESS)
  67. {
  68. KeyHandler.onKeyDownEvent(key);
  69. }
  70. });
  71. glfwSetFramebufferSizeCallback(window, (w, fwidth, fheight) ->
  72. {
  73. glViewport(0, 0, fwidth, fheight);
  74. });
  75. glfwSetWindowAspectRatio(window, 16, 9);
  76. glfwMakeContextCurrent(window);
  77. glfwSwapInterval(1);
  78. glfwShowWindow(window);
  79. }
  80. private void loop()
  81. {
  82. GL.createCapabilities();
  83. long lastFrame = System.nanoTime();
  84. long lastTick = System.nanoTime();
  85. long time;
  86. long lag = 0;
  87. Shader.init();
  88. init();
  89. while(!glfwWindowShouldClose(window))
  90. {
  91. glfwSwapBuffers(window);
  92. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  93. time = System.nanoTime();
  94. fpsSum -= fps[fpsIndex];
  95. fps[fpsIndex] = time - lastFrame;
  96. fpsSum += fps[fpsIndex];
  97. fpsIndex = (fpsIndex + 1) % fps.length;
  98. lag += fps[fpsIndex];
  99. lastFrame = time;
  100. currentFps = (1_000_000_000.0 * fps.length) / fpsSum;
  101. while(lag >= nanosPerTick)
  102. {
  103. lag -= nanosPerTick;
  104. time = System.nanoTime();
  105. tpsSum -= tps[tpsIndex];
  106. tps[tpsIndex] = time - lastTick;
  107. tpsSum += tps[tpsIndex];
  108. tpsIndex = (tpsIndex + 1) % tps.length;
  109. lastTick = time;
  110. currentTps = (1_000_000_000.0 * tps.length) / tpsSum;
  111. KeyHandler.tick();
  112. tick();
  113. }
  114. Shader.doTasks();
  115. renderTick();
  116. glfwPollEvents();
  117. }
  118. }
  119. public final void setNanosPerTick(long nanos)
  120. {
  121. nanosPerTick = nanos;
  122. }
  123. public abstract void init();
  124. public abstract void tick();
  125. public abstract void renderTick();
  126. }