416 line
14 KiB

  1. //
  2. // Lol Engine - Fractal tutorial
  3. //
  4. // Copyright: (c) 2011 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://sam.zoy.org/projects/COPYING.WTFPL for more details.
  9. //
  10. #if defined HAVE_CONFIG_H
  11. # include "config.h"
  12. #endif
  13. #include <cstring>
  14. #include "core.h"
  15. #include "lolgl.h"
  16. #include "loldebug.h"
  17. using namespace std;
  18. using namespace lol;
  19. #if USE_SDL && defined __APPLE__
  20. # include <SDL_main.h>
  21. #endif
  22. #if defined _WIN32
  23. # undef main /* FIXME: still needed? */
  24. # include <direct.h>
  25. #endif
  26. class Fractal : public WorldEntity
  27. {
  28. public:
  29. Fractal(ivec2 const &size)
  30. {
  31. m_size = size;
  32. m_pixels = new u8vec4[size.x * size.y];
  33. m_tmppixels = new u8vec4[size.x / 2 * size.y / 2];
  34. m_frame = -1;
  35. for (int i = 0; i < 4; i++)
  36. {
  37. m_deltashift[i] = 0.0;
  38. m_deltascale[i] = 1.0;
  39. m_dirty[i] = 2;
  40. }
  41. m_center = -0.75;
  42. m_radius = 1.5;
  43. m_screenradius = 0.5 * (m_size.x < m_size.y ? m_size.x : m_size.y);
  44. m_ready = false;
  45. m_palette = new u8vec4[MAX_ITERATIONS * PALETTE_STEP];
  46. for (int i = 0; i < MAX_ITERATIONS * PALETTE_STEP; i++)
  47. {
  48. float f = i / (double)PALETTE_STEP;
  49. double r = 0.5 * sin(f * 0.27 - 2.5) + 0.5;
  50. double g = 0.5 * sin(f * 0.13 + 1.1) + 0.5;
  51. double b = 0.5 * sin(f * 0.21 + 0.4) + 0.5;
  52. uint8_t red = r * 255.0f;
  53. uint8_t green = g * 255.0f;
  54. uint8_t blue = b * 255.0f;
  55. m_palette[i] = u8vec4(blue, green, red, 0);
  56. }
  57. m_centertext = new Text(NULL, "gfx/font/ascii.png");
  58. m_centertext->SetPos(ivec3(5, m_size.y - 15, 1));
  59. Ticker::Ref(m_centertext);
  60. m_mousetext = new Text(NULL, "gfx/font/ascii.png");
  61. m_mousetext->SetPos(ivec3(5, m_size.y - 29, 1));
  62. Ticker::Ref(m_mousetext);
  63. m_zoomtext = new Text(NULL, "gfx/font/ascii.png");
  64. m_zoomtext->SetPos(ivec3(5, m_size.y - 43, 1));
  65. Ticker::Ref(m_zoomtext);
  66. position = ivec3(0, 0, 0);
  67. bbox[0] = position;
  68. bbox[1] = ivec3(size, 0);
  69. Input::TrackMouse(this);
  70. }
  71. ~Fractal()
  72. {
  73. Input::UntrackMouse(this);
  74. Ticker::Unref(m_centertext);
  75. Ticker::Unref(m_mousetext);
  76. Ticker::Unref(m_zoomtext);
  77. delete m_pixels;
  78. delete m_tmppixels;
  79. delete m_palette;
  80. }
  81. inline f64cmplx ScreenToWorldOffset(ivec2 pixel)
  82. {
  83. f64cmplx tmp = f64cmplx(0.5 + pixel.x - m_size.x / 2,
  84. 0.5 + m_size.y / 2 - pixel.y);
  85. return tmp * (m_radius / m_screenradius);
  86. }
  87. virtual void TickGame(float deltams)
  88. {
  89. WorldEntity::TickGame(deltams);
  90. m_frame = (m_frame + 1) % 4;
  91. f64cmplx worldmouse = m_center + ScreenToWorldOffset(mousepos);
  92. ivec3 buttons = Input::GetMouseButtons();
  93. #ifdef __CELLOS_LV2__
  94. if (true)
  95. #else
  96. if ((buttons[0] || buttons[2]) && mousepos.x != -1)
  97. #endif
  98. {
  99. f64cmplx oldcenter = m_center;
  100. double oldradius = m_radius;
  101. #ifdef __CELLOS_LV2__
  102. m_radius *= pow(2.0, -deltams * 0.00015);
  103. m_center = f64cmplx(0.001643721971153, 0.822467633298876);
  104. #else
  105. double zoom = pow(2.0, (buttons[0] ? -deltams : deltams) * 0.0025);
  106. if (m_radius * zoom > 8.0)
  107. zoom = 8.0 / m_radius;
  108. else if (m_radius * zoom < 1e-14)
  109. zoom = 1e-14 / m_radius;
  110. m_radius *= zoom;
  111. m_center = (m_center - worldmouse) * zoom + worldmouse;
  112. worldmouse = m_center + ScreenToWorldOffset(mousepos);
  113. #endif
  114. /* Store the transformation properties to go from m_frame-1
  115. * to m_frame. */
  116. m_deltashift[m_frame] = (oldcenter - m_center) / m_radius;
  117. m_deltascale[m_frame] = oldradius / m_radius;
  118. m_dirty[0] = m_dirty[1] = m_dirty[2] = m_dirty[3] = 2;
  119. }
  120. else
  121. {
  122. /* If settings didn't change, set transformation from previous
  123. * frame to identity. */
  124. m_deltashift[m_frame] = 0.0;
  125. m_deltascale[m_frame] = 1.0;
  126. }
  127. if (buttons[1])
  128. m_dirty[0] = m_dirty[1] = m_dirty[2] = m_dirty[3] = 2;
  129. char buf[128];
  130. sprintf(buf, "center: %+13.11f%+13.11fi", m_center.x, m_center.y);
  131. m_centertext->SetText(buf);
  132. sprintf(buf, " mouse: %+13.11f%+13.11fi", worldmouse.x, worldmouse.y);
  133. m_mousetext->SetText(buf);
  134. sprintf(buf, " zoom: %g", 1.0 / m_radius);
  135. m_zoomtext->SetText(buf);
  136. u8vec4 *m_pixelstart = m_pixels + m_size.x * m_size.y / 4 * m_frame;
  137. if (m_dirty[m_frame])
  138. {
  139. m_dirty[m_frame]--;
  140. for (int j = ((m_frame + 1) % 4) / 2; j < m_size.y; j += 2)
  141. for (int i = m_frame % 2; i < m_size.x; i += 2)
  142. {
  143. double const maxlen = 32;
  144. f64cmplx z0 = m_center + ScreenToWorldOffset(ivec2(i, j));
  145. f64cmplx r0 = z0;
  146. //f64cmplx r0(0.28693186889504513, 0.014286693904085048);
  147. //f64cmplx r0(0.001643721971153, 0.822467633298876);
  148. //f64cmplx r0(-1.207205434596, 0.315432814901);
  149. //f64cmplx r0(-0.79192956889854, -0.14632423080102);
  150. //f64cmplx r0(0.3245046418497685, 0.04855101129280834);
  151. f64cmplx z;
  152. int iter = MAX_ITERATIONS;
  153. for (z = z0; iter && z.sqlen() < maxlen * maxlen; z = z * z + r0)
  154. --iter;
  155. if (iter)
  156. {
  157. double f = iter;
  158. double n = z.sqlen();
  159. double k = log(n) * 0.5f / log(maxlen);
  160. /* Approximate log2(k) in [1,2]. */
  161. f += (- 0.344847817623168308695977510213252644185 * k
  162. + 2.024664188044341212602376988171727038739) * k
  163. - 1.674876738008591047163498125918330313237;
  164. *m_pixelstart++ = m_palette[(int)(f * PALETTE_STEP + 0.25 * m_frame)];
  165. }
  166. else
  167. {
  168. *m_pixelstart++ = u8vec4(0, 0, 0, 0);
  169. }
  170. }
  171. }
  172. }
  173. virtual void TickDraw(float deltams)
  174. {
  175. WorldEntity::TickDraw(deltams);
  176. static float const vertices[] =
  177. {
  178. 1.0f, 1.0f,
  179. -1.0f, 1.0f,
  180. -1.0f, -1.0f,
  181. -1.0f, -1.0f,
  182. 1.0f, -1.0f,
  183. 1.0f, 1.0f,
  184. };
  185. static float const texcoords[] =
  186. {
  187. 1.0f, 1.0f,
  188. 0.0f, 1.0f,
  189. 0.0f, 0.0f,
  190. 0.0f, 0.0f,
  191. 1.0f, 0.0f,
  192. 1.0f, 1.0f,
  193. };
  194. if (!m_ready)
  195. {
  196. /* Create a texture of half the width and twice the height
  197. * so that we can upload four different subimages each frame. */
  198. glGenTextures(1, &m_texid);
  199. glBindTexture(GL_TEXTURE_2D, m_texid);
  200. glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, m_size.x / 2, m_size.y * 2,
  201. 0, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV, m_pixels);
  202. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
  203. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
  204. m_shader = Shader::Create(
  205. #if !defined __CELLOS_LV2__
  206. "#version 120\n"
  207. "attribute vec2 in_TexCoord;\n"
  208. "attribute vec2 in_Vertex;"
  209. "void main(void) {"
  210. " gl_Position = vec4(in_Vertex, 0.0, 1.0);"
  211. " gl_TexCoord[0] = vec4(in_TexCoord, 0.0, 0.0);\n"
  212. "}",
  213. "#version 120\n"
  214. "uniform sampler2D in_Texture;\n"
  215. "void main(void) {"
  216. " vec2 coord = gl_TexCoord[0].xy;"
  217. /* gl_FragCoord is centered inside the pixel, so we remove
  218. * 0.5 from gl_FragCoord.x. Also, (0,0) is at the bottom
  219. * left whereas our images have (0,0) at the top left, so we
  220. * _add_ 0.5 to gl_FragCoord.y. (XXX: this is no longer true
  221. * but will be again when mouse coordinates are back to
  222. * being top-left again). */
  223. " float i = mod(gl_FragCoord.x - 0.5, 2.0);"
  224. " float j = mod(gl_FragCoord.y - 0.5 + i, 2.0);"
  225. " coord.y += i + j * 2;"
  226. " coord.y *= 0.25;"
  227. " vec4 p = texture2D(in_Texture, coord);"
  228. " gl_FragColor = p;"
  229. "}"
  230. #else
  231. "void main(float4 in_Position : POSITION,"
  232. " float2 in_TexCoord : TEXCOORD0,"
  233. " out float4 out_Position : POSITION,"
  234. " out float2 out_TexCoord : TEXCOORD0)"
  235. "{"
  236. " out_TexCoord = in_TexCoord;"
  237. " out_Position = in_Position;"
  238. "}",
  239. "void main(float4 in_FragCoord : WPOS,"
  240. " float2 in_TexCoord : TEXCOORD0,"
  241. " uniform sampler2D in_Texture,"
  242. " out float4 out_FragColor : COLOR)"
  243. "{"
  244. " float2 coord = in_TexCoord.xy;"
  245. " float i = frac((in_FragCoord.x - 0.5) * 0.5) * 2.0;"
  246. " float j = frac((in_FragCoord.y - 0.5 + i) * 0.5) * 2.0;"
  247. " coord.y += i + j * 2;"
  248. " coord.y *= 0.25;"
  249. " float4 p = tex2D(in_Texture, coord);"
  250. " out_FragColor = p;"
  251. "}"
  252. #endif
  253. );
  254. m_vertexattrib = m_shader->GetAttribLocation("in_Vertex");
  255. m_texattrib = m_shader->GetAttribLocation("in_TexCoord");
  256. m_ready = true;
  257. #if !defined __CELLOS_LV2__ && !defined __ANDROID__ && !defined __APPLE__
  258. /* Method 1: store vertex buffer on the GPU memory */
  259. glGenBuffers(1, &m_vbo);
  260. glBindBuffer(GL_ARRAY_BUFFER, m_vbo);
  261. glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices,
  262. GL_STATIC_DRAW);
  263. glGenBuffers(1, &m_tbo);
  264. glBindBuffer(GL_ARRAY_BUFFER, m_tbo);
  265. glBufferData(GL_ARRAY_BUFFER, sizeof(texcoords), texcoords,
  266. GL_STATIC_DRAW);
  267. #elif !defined __CELLOS_LV2__ && !defined __ANDROID__ && !defined __APPLE__
  268. /* Method 2: upload vertex information at each frame */
  269. #else
  270. #endif
  271. /* FIXME: this object never cleans up */
  272. }
  273. glEnable(GL_TEXTURE_2D);
  274. glBindTexture(GL_TEXTURE_2D, m_texid);
  275. if (m_dirty[m_frame])
  276. {
  277. m_dirty[m_frame]--;
  278. glTexSubImage2D(GL_TEXTURE_2D, 0, 0, m_frame * m_size.y / 2,
  279. m_size.x / 2, m_size.y / 2,
  280. GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV,
  281. m_pixels + m_size.x * m_size.y / 4 * m_frame);
  282. }
  283. /* If other frames are dirty, upload fake data for now */
  284. if (0) for (int i = 0; i < 4; i++)
  285. {
  286. if (m_dirty[i])
  287. {
  288. glTexSubImage2D(GL_TEXTURE_2D, 0, 0, i * m_size.y / 2,
  289. m_size.x / 2, m_size.y / 2,
  290. GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV,
  291. m_pixels + m_size.x * m_size.y / 4 * m_frame);
  292. }
  293. }
  294. m_shader->Bind();
  295. #if !defined __CELLOS_LV2__ && !defined __ANDROID__ && !defined __APPLE__
  296. glBindBuffer(GL_ARRAY_BUFFER, m_vbo);
  297. glEnableVertexAttribArray(m_vertexattrib);
  298. glVertexAttribPointer(m_vertexattrib, 2, GL_FLOAT, GL_FALSE, 0, 0);
  299. glBindBuffer(GL_ARRAY_BUFFER, m_tbo);
  300. glEnableVertexAttribArray(m_texattrib);
  301. glVertexAttribPointer(m_texattrib, 2, GL_FLOAT, GL_FALSE, 0, 0);
  302. #elif !defined __CELLOS_LV2__ && !defined __ANDROID__ && !defined __APPLE__
  303. /* Never used for now */
  304. //glEnableVertexAttribArray(m_vertexattrib);
  305. //glVertexAttribPointer(m_vertexattrib, 2, GL_FLOAT, GL_FALSE, 0, vertices);
  306. #else
  307. glEnableClientState(GL_VERTEX_ARRAY);
  308. glVertexPointer(2, GL_FLOAT, 0, vertices);
  309. glEnableClientState(GL_TEXTURE_COORD_ARRAY);
  310. glTexCoordPointer(2, GL_FLOAT, 0, texcoords);
  311. #endif
  312. glDrawArrays(GL_TRIANGLES, 0, 6);
  313. #if !defined __CELLOS_LV2__ && !defined __ANDROID__ && !defined __APPLE__
  314. glDisableVertexAttribArray(m_vertexattrib);
  315. glDisableVertexAttribArray(m_texattrib);
  316. glBindBuffer(GL_ARRAY_BUFFER, 0);
  317. #elif !defined __CELLOS_LV2__ && !defined __ANDROID__ && !defined __APPLE__
  318. /* Never used for now */
  319. //glDisableVertexAttribArray(m_vertexattrib);
  320. //glDisableVertexAttribArray(m_texattrib);
  321. #else
  322. glDisableClientState(GL_VERTEX_ARRAY);
  323. glDisableClientState(GL_TEXTURE_COORD_ARRAY);
  324. #endif
  325. }
  326. private:
  327. static int const MAX_ITERATIONS = 170;
  328. static int const PALETTE_STEP = 32;
  329. ivec2 m_size;
  330. u8vec4 *m_pixels, *m_tmppixels, *m_palette;
  331. Shader *m_shader;
  332. GLuint m_texid;
  333. #if !defined __CELLOS_LV2__ && !defined __ANDROID__ && !defined __APPLE__
  334. GLuint m_vbo, m_tbo;
  335. GLuint m_tco;
  336. #endif
  337. int m_vertexattrib, m_texattrib;
  338. int m_frame, m_dirty[4];
  339. bool m_ready;
  340. f64cmplx m_center;
  341. double m_radius, m_screenradius;
  342. f64cmplx m_deltashift[4];
  343. double m_deltascale[4];
  344. /* Debug information */
  345. Text *m_centertext, *m_mousetext, *m_zoomtext;
  346. };
  347. int main()
  348. {
  349. #if defined _WIN32
  350. _chdir("../..");
  351. #endif
  352. Application app("Tutorial 3: Fractal", ivec2(640, 480), 60.0f);
  353. new DebugFps(5, 5);
  354. new Fractal(ivec2(640, 480));
  355. //new DebugRecord("fractalol.ogm", 60.0f);
  356. app.Run();
  357. return EXIT_SUCCESS;
  358. }