Shader.java 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. package me.hammerle.snuviengine.api;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import java.nio.FloatBuffer;
  5. import java.nio.file.Files;
  6. import java.util.LinkedList;
  7. import java.util.List;
  8. import org.lwjgl.BufferUtils;
  9. import static org.lwjgl.opengl.GL11.*;
  10. import static org.lwjgl.opengl.GL20.*;
  11. public final class Shader
  12. {
  13. private static int program = -1;
  14. private static final List<Runnable> TASKS = new LinkedList<>();
  15. protected static boolean initDone = false;
  16. // uniform stuff
  17. private static int unifViewMatrix = -1;
  18. private static int unifModelMatrix = -1;
  19. private static MatrixStack modelMatrix;
  20. private static int unifDepth = -1;
  21. private static int unifAmbientLight = -1;
  22. private static int[][] unifLight;
  23. private static int unifUseTexture = -1;
  24. private static int unifUseColor = -1;
  25. private static int unifUseLight = -1;
  26. protected static void init()
  27. {
  28. program = createShaderProgram("shaders/vertex.vs", "shaders/fragment.fs");
  29. glUseProgram(program);
  30. unifViewMatrix = glGetUniformLocation(program, "viewMatrix");
  31. updateViewMatrix();
  32. unifModelMatrix = glGetUniformLocation(program, "modelMatrix");
  33. modelMatrix = new MatrixStack(20);
  34. updateMatrix();
  35. unifDepth = glGetUniformLocation(program, "depth");
  36. setDepth(0.0f);
  37. unifAmbientLight = glGetUniformLocation(program, "ambientLight");
  38. setAmbientLight(1.0f, 1.0f, 1.0f);
  39. unifLight = new int[32][3];
  40. for(int index = 0; index < unifLight.length; index++)
  41. {
  42. unifLight[index][0] = glGetUniformLocation(program, "lights[" + index + "].color");
  43. unifLight[index][1] = glGetUniformLocation(program, "lights[" + index + "].pos");
  44. unifLight[index][2] = glGetUniformLocation(program, "lights[" + index + "].strength");
  45. setLightColor(index, 0.0f, 0.0f, 0.0f);
  46. setLightLocation(index, 0.0f, 0.0f);
  47. setLightStrength(index, 0.0f);
  48. }
  49. unifUseTexture = glGetUniformLocation(program, "useTexture");
  50. setTextureUsing(false);
  51. unifUseColor = glGetUniformLocation(program, "useColor");
  52. setColorUsing(false);
  53. unifUseLight = glGetUniformLocation(program, "useLight");
  54. setLightUsing(false);
  55. initDone = true;
  56. }
  57. protected static void addTask(Runnable r)
  58. {
  59. TASKS.add(r);
  60. }
  61. protected static void doTasks()
  62. {
  63. if(!TASKS.isEmpty())
  64. {
  65. TASKS.forEach(r -> r.run());
  66. TASKS.clear();
  67. }
  68. }
  69. private static void updateViewMatrix()
  70. {
  71. FloatBuffer buffer = BufferUtils.createFloatBuffer(16);
  72. buffer.put(2.0f / Engine.WIDTH);
  73. buffer.put(0.0f);
  74. buffer.put(0.0f);
  75. buffer.put(0.0f);
  76. buffer.put(0.0f);
  77. buffer.put(2.0f / Engine.HEIGHT);
  78. buffer.put(0.0f);
  79. buffer.put(0.0f);
  80. buffer.put(0.0f);
  81. buffer.put(0.0f);
  82. buffer.put(1.0f);
  83. buffer.put(0.0f);
  84. buffer.put(-1.0f);
  85. buffer.put(-1.0f);
  86. buffer.put(0.0f);
  87. buffer.put(1.0f);
  88. buffer.flip();
  89. glUniformMatrix4fv(unifViewMatrix, false, buffer);
  90. }
  91. public static void updateMatrix()
  92. {
  93. glUniformMatrix4fv(unifModelMatrix, false, modelMatrix.getData());
  94. }
  95. public static void pushMatrix()
  96. {
  97. modelMatrix.push();
  98. }
  99. public static void popMatrix()
  100. {
  101. modelMatrix.pop();
  102. }
  103. public static void translate(float tx, float ty)
  104. {
  105. modelMatrix.translate(tx, ty);
  106. }
  107. public static void translateTo(float tx, float ty)
  108. {
  109. modelMatrix.translateTo(tx, ty);
  110. }
  111. public static void scale(float sx, float sy)
  112. {
  113. modelMatrix.scale(sx, sy);
  114. }
  115. public static void rotate(float angle)
  116. {
  117. modelMatrix.rotate(angle);
  118. }
  119. public static void setDepth(float depth)
  120. {
  121. glUniform1f(unifDepth, depth);
  122. }
  123. public static void setAmbientLight(float r, float g, float b)
  124. {
  125. glUniform3f(unifAmbientLight, r, g, b);
  126. }
  127. private static void checkLightIndex(int index)
  128. {
  129. if(index < 0 || index > unifLight.length)
  130. {
  131. throw new ShaderException("'" + index + "' is not a valid light index");
  132. }
  133. }
  134. public static void setLightColor(int index, float r, float g, float b)
  135. {
  136. checkLightIndex(index);
  137. glUniform3f(unifLight[index][0], r, g, b);
  138. }
  139. public static void setLightLocation(int index, float x, float y)
  140. {
  141. checkLightIndex(index);
  142. glUniform2f(unifLight[index][1], x, y);
  143. }
  144. public static void setLightStrength(int index, float strength)
  145. {
  146. checkLightIndex(index);
  147. glUniform1f(unifLight[index][2], strength);
  148. }
  149. public static void setTextureUsing(boolean use)
  150. {
  151. glUniform1i(unifUseTexture, use ? 1 : 0);
  152. }
  153. public static void setColorUsing(boolean use)
  154. {
  155. glUniform1i(unifUseColor, use ? 1 : 0);
  156. }
  157. public static void setLightUsing(boolean use)
  158. {
  159. glUniform1i(unifUseLight, use ? 1 : 0);
  160. }
  161. // -------------------------------------------------------------------------
  162. // general stuff
  163. // -------------------------------------------------------------------------
  164. private static String[] readFile(String path)
  165. {
  166. try
  167. {
  168. File f = new File(path);
  169. List<String> list = Files.readAllLines(f.toPath());
  170. list.replaceAll(s -> s + "\n");
  171. return list.toArray(new String[list.size()]);
  172. }
  173. catch(IOException ex)
  174. {
  175. throw new ShaderException("failed reading shader file '" + path + "'");
  176. }
  177. }
  178. private static String getError()
  179. {
  180. StringBuilder sb = new StringBuilder();
  181. int glErr = glGetError();
  182. while(glErr != GL_NO_ERROR)
  183. {
  184. sb.append(glErr);
  185. sb.append(" ");
  186. glErr = glGetError();
  187. }
  188. return sb.toString();
  189. }
  190. private static int createShaderProgram(String vertex, String fragment)
  191. {
  192. // ---------------------------------------------------------------------
  193. // vertex shader
  194. // ---------------------------------------------------------------------
  195. String vShaderSource[] = readFile(vertex);
  196. int vShader = glCreateShader(GL_VERTEX_SHADER);
  197. glShaderSource(vShader, vShaderSource);
  198. glCompileShader(vShader);
  199. String error = getError();
  200. if(!error.isEmpty())
  201. {
  202. throw new ShaderException("failed compiling vertex shader '" + vertex + "' " + error);
  203. }
  204. int compiled = glGetShaderi(vShader, GL_COMPILE_STATUS);
  205. if(compiled != 1)
  206. {
  207. throw new ShaderException("failed compiling vertex shader '" + vertex + "' " + compiled + " " + glGetShaderInfoLog(vShader));
  208. }
  209. // ---------------------------------------------------------------------
  210. // fragment shader
  211. // ---------------------------------------------------------------------
  212. String fShaderSource[] = readFile(fragment);
  213. int fShader = glCreateShader(GL_FRAGMENT_SHADER);
  214. glShaderSource(fShader, fShaderSource);
  215. glCompileShader(fShader);
  216. error = getError();
  217. if(!error.isEmpty())
  218. {
  219. throw new ShaderException("failed compiling fragment shader '" + fragment + "' " + error);
  220. }
  221. compiled = glGetShaderi(fShader, GL_COMPILE_STATUS);
  222. if(compiled != 1)
  223. {
  224. throw new ShaderException("failed compiling fragment shader '" + fragment + "' " + compiled + " " + glGetShaderInfoLog(fShader));
  225. }
  226. // ---------------------------------------------------------------------
  227. // linking
  228. // ---------------------------------------------------------------------
  229. int vfprogram = glCreateProgram();
  230. glAttachShader(vfprogram, vShader);
  231. glAttachShader(vfprogram, fShader);
  232. glLinkProgram(vfprogram);
  233. error = getError();
  234. if(!error.isEmpty())
  235. {
  236. throw new ShaderException("failed linking shaders '" + vertex + "' and '" + fragment + "' " + error);
  237. }
  238. compiled = glGetProgrami(vfprogram, GL_LINK_STATUS);
  239. if(compiled != 1)
  240. {
  241. throw new ShaderException("failed linking shaders '" + vertex + "' and '" + fragment + "' " + compiled + " " + glGetProgramInfoLog(vfprogram));
  242. }
  243. glDeleteShader(vShader);
  244. glDeleteShader(fShader);
  245. return vfprogram;
  246. }
  247. }