Timer.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package me.hammerle.snuviengine.api;
  2. import java.nio.FloatBuffer;
  3. import org.lwjgl.BufferUtils;
  4. import static org.lwjgl.opengl.GL11.*;
  5. import static org.lwjgl.opengl.GL15.*;
  6. import static org.lwjgl.opengl.GL20.*;
  7. import static org.lwjgl.opengl.GL30.*;
  8. public class Timer
  9. {
  10. private static final int SIZE = 128;
  11. private int index = -1;
  12. private final long[] times = new long[SIZE];
  13. private long sum = 0;
  14. private double callsPerSecond = 0;
  15. private long lastTime = System.nanoTime();
  16. private final int vao;
  17. private final int vbo;
  18. private final FloatBuffer buffer = BufferUtils.createFloatBuffer(18);
  19. private boolean active = false;
  20. private float expectedValue;
  21. protected Timer(float expectedValue)
  22. {
  23. this.expectedValue = expectedValue;
  24. vao = glGenVertexArrays();
  25. vbo = glGenBuffers();
  26. GLHelper.glBindVertexArray(vao);
  27. GLHelper.glBindBuffer(vbo);
  28. glEnableVertexAttribArray(0);
  29. glEnableVertexAttribArray(2);
  30. glVertexAttribPointer(0, 2, GL_FLOAT, false, 12, 0);
  31. glVertexAttribPointer(2, 4, GL_UNSIGNED_BYTE, true, 12, 8);
  32. glBufferData(GL_ARRAY_BUFFER, SIZE * buffer.limit() * 4, GL_STATIC_DRAW);
  33. }
  34. protected void setActive(boolean active)
  35. {
  36. this.active = active;
  37. }
  38. protected void update()
  39. {
  40. index = (index + 1) & (SIZE - 1);
  41. long time = System.nanoTime();
  42. sum -= times[index];
  43. times[index] = time - lastTime;
  44. sum += times[index];
  45. lastTime = time;
  46. callsPerSecond = (1_000_000_000.0 * SIZE) / sum;
  47. if(active)
  48. {
  49. float minX = index * 3;
  50. float minY = 0.0f;
  51. float maxX = minX + 2;
  52. float maxY = 1_000_000_000.0f / times[index];
  53. float diff = (maxY - expectedValue) / expectedValue;
  54. int r = Math.min((int) (128 * (1 - Math.min(diff, 0.0f) * 16)), 255);
  55. int g = Math.min((int) (128 * (1 + Math.max(diff, 0.0f) * 16)), 255);
  56. int b = (int) (128 * (1 - Math.abs(diff)));
  57. float color = Float.intBitsToFloat(r | (g << 8) | (b << 16) | 0xFF000000);
  58. buffer.put(minX);
  59. buffer.put(maxY);
  60. buffer.put(color);
  61. buffer.put(minX);
  62. buffer.put(minY);
  63. buffer.put(color);
  64. buffer.put(maxX);
  65. buffer.put(maxY);
  66. buffer.put(color);
  67. buffer.put(minX);
  68. buffer.put(minY);
  69. buffer.put(color);
  70. buffer.put(maxX);
  71. buffer.put(maxY);
  72. buffer.put(color);
  73. buffer.put(maxX);
  74. buffer.put(minY);
  75. buffer.put(color);
  76. buffer.flip();
  77. GLHelper.glBindBuffer(vbo);
  78. glBufferSubData(GL_ARRAY_BUFFER, index * buffer.limit() * 4, buffer);
  79. }
  80. }
  81. protected void setExpectedValue(float value)
  82. {
  83. expectedValue = value;
  84. }
  85. protected long getAverageTime()
  86. {
  87. return sum / SIZE;
  88. }
  89. protected long getCurrentTime()
  90. {
  91. return System.nanoTime() - lastTime;
  92. }
  93. protected long getTime()
  94. {
  95. return times[index];
  96. }
  97. protected double getCallsPerSecond()
  98. {
  99. return callsPerSecond;
  100. }
  101. protected void draw(Renderer r)
  102. {
  103. if(active)
  104. {
  105. r.setTextureEnabled(false);
  106. r.setColorEnabled(true);
  107. GLHelper.glBindBuffer(vbo);
  108. GLHelper.glBindVertexArray(vao);
  109. glDrawArrays(GL_TRIANGLES, 0, SIZE * 6);
  110. }
  111. }
  112. }