You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

209 lines
5.6 KiB

  1. /*
  2. * cacaball metaballs effect for libcaca
  3. * Copyright (c) 2003-2004 Jean-Yves Lamoureux <jylam@lnxscene.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the Do What The Fuck You Want To
  10. * Public License, Version 2, as published by Sam Hocevar. See
  11. * http://sam.zoy.org/wtfpl/COPYING for more details.
  12. */
  13. #include "config.h"
  14. #if !defined(__KERNEL__)
  15. # include <string.h>
  16. # include <math.h>
  17. # ifndef M_PI
  18. # define M_PI 3.14159265358979323846
  19. # endif
  20. #endif
  21. #include "cucul.h"
  22. #include "caca.h"
  23. /* Virtual buffer size */
  24. #define XSIZ 256
  25. #define YSIZ 256
  26. #define METASIZE 128
  27. #define METABALLS 12
  28. /* Colour index where to crop balls */
  29. #define CROPBALL 200
  30. static void create_ball(void);
  31. static void draw_ball(unsigned int, unsigned int);
  32. static unsigned char pixels[XSIZ * YSIZ];
  33. static unsigned char metaball[METASIZE * METASIZE];
  34. int main(int argc, char **argv)
  35. {
  36. cucul_t *qq; caca_t *kk;
  37. unsigned int r[256], g[256], b[256], a[256];
  38. float d[METABALLS], di[METABALLS], dj[METABALLS], dk[METABALLS];
  39. unsigned int x[METABALLS], y[METABALLS];
  40. struct cucul_bitmap *cucul_bitmap;
  41. float i = 10.0, j = 17.0, k = 11.0;
  42. int p, frame = 0, pause = 0;
  43. double frameOffset[360 + 80];
  44. double frameOffset40[360];
  45. double frameOffset80[360];
  46. qq = cucul_init();
  47. if(!qq)
  48. return 1;
  49. kk = caca_attach(qq);
  50. if(!kk)
  51. return 1;
  52. caca_set_delay(kk, 20000);
  53. /* Make the palette eatable by libcaca */
  54. for(p = 0; p < 256; p++)
  55. r[p] = g[p] = b[p] = a[p] = 0x0;
  56. r[255] = g[255] = b[255] = 0xfff;
  57. /* Create a libcucul bitmap smaller than our pixel buffer, so that we
  58. * display only the interesting part of it */
  59. cucul_bitmap = cucul_create_bitmap(qq, 8, XSIZ - METASIZE, YSIZ - METASIZE,
  60. XSIZ, 0, 0, 0, 0);
  61. /* Generate ball sprite */
  62. create_ball();
  63. for(p = 0; p < METABALLS; p++)
  64. {
  65. d[p] = cucul_rand(0, 100);
  66. di[p] = (float)cucul_rand(500, 4000) / 6000.0;
  67. dj[p] = (float)cucul_rand(500, 4000) / 6000.0;
  68. dk[p] = (float)cucul_rand(500, 4000) / 6000.0;
  69. }
  70. for(frame = 0; frame < 360; frame++) {
  71. frameOffset[frame] = frame * M_PI / 60;
  72. frameOffset40[frame] = (frame + 40) * M_PI / 60;
  73. frameOffset80[frame] = (frame + 80) * M_PI / 60;
  74. }
  75. /* Go ! */
  76. for(;;)
  77. {
  78. switch(caca_get_event(kk, CACA_EVENT_KEY_PRESS))
  79. {
  80. case CACA_EVENT_KEY_PRESS | CACA_KEY_ESCAPE: goto end;
  81. case CACA_EVENT_KEY_PRESS | ' ': pause = !pause;
  82. }
  83. if(pause)
  84. goto paused;
  85. frame++;
  86. if(frame >= 360)
  87. frame = 0;
  88. /* Crop the palette */
  89. for(p = CROPBALL; p < 255; p++)
  90. {
  91. int t1, t2, t3;
  92. double c1 = 1.0 + sin((double)frameOffset[frame]);
  93. double c2 = 1.0 + sin((double)frameOffset40[frame]);
  94. double c3 = 1.0 + sin((double)frameOffset80[frame]);
  95. t1 = p < 0x40 ? 0 : p < 0xc0 ? (p - 0x40) * 0x20 : 0xfff;
  96. t2 = p < 0xe0 ? 0 : (p - 0xe0) * 0x80;
  97. t3 = p < 0x40 ? p * 0x40 : 0xfff;
  98. r[p] = (c1 * t1 + c2 * t2 + c3 * t3) / 4;
  99. g[p] = (c1 * t2 + c2 * t3 + c3 * t1) / 4;
  100. b[p] = (c1 * t3 + c2 * t1 + c3 * t2) / 4;
  101. }
  102. /* Set the palette */
  103. cucul_set_bitmap_palette(qq, cucul_bitmap, r, g, b, a);
  104. /* Silly paths for our balls */
  105. for(p = 0; p < METABALLS; p++)
  106. {
  107. float u = di[p] * i + dj[p] * j + dk[p] * sin(di[p] * k);
  108. float v = d[p] + di[p] * j + dj[p] * k + dk[p] * sin(dk[p] * i);
  109. u = sin(i + u * 2.1) * (1.0 + sin(u));
  110. v = sin(j + v * 1.9) * (1.0 + sin(v));
  111. x[p] = (XSIZ - METASIZE) / 2 + u * (XSIZ - METASIZE) / 4;
  112. y[p] = (YSIZ - METASIZE) / 2 + v * (YSIZ - METASIZE) / 4;
  113. }
  114. i += 0.011;
  115. j += 0.017;
  116. k += 0.019;
  117. memset(pixels, 0, XSIZ * YSIZ);
  118. /* Here is all the trick. Maybe if you're that
  119. * clever you'll understand. */
  120. for(p = 0; p < METABALLS; p++)
  121. draw_ball(x[p], y[p]);
  122. paused:
  123. /* Draw our virtual buffer to screen, letting libcucul resize it */
  124. cucul_draw_bitmap(qq, 0, 0,
  125. cucul_get_width(qq) - 1, cucul_get_height(qq) - 1,
  126. cucul_bitmap, pixels + (METASIZE / 2) * (1 + XSIZ));
  127. caca_display(kk);
  128. }
  129. /* End, bye folks */
  130. end:
  131. cucul_free_bitmap(qq, cucul_bitmap);
  132. caca_detach(kk);
  133. cucul_end(qq);
  134. return 0;
  135. }
  136. /* Generate ball sprite
  137. * You should read the comments, I already wrote that before ... */
  138. static void create_ball(void)
  139. {
  140. int x, y;
  141. float distance;
  142. for(y = 0; y < METASIZE; y++)
  143. for(x = 0; x < METASIZE; x++)
  144. {
  145. distance = ((METASIZE/2) - x) * ((METASIZE/2) - x)
  146. + ((METASIZE/2) - y) * ((METASIZE/2) - y);
  147. distance = sqrt(distance) * 64 / METASIZE;
  148. metaball[x + y * METASIZE] = distance > 15 ? 0 : (255 - distance) * 15;
  149. }
  150. }
  151. /* You missed the trick ? */
  152. static void draw_ball(unsigned int bx, unsigned int by)
  153. {
  154. unsigned int color;
  155. unsigned int i, e = 0;
  156. unsigned int b = (by * XSIZ) + bx;
  157. for(i = 0; i < METASIZE * METASIZE; i++)
  158. {
  159. color = pixels[b] + metaball[i];
  160. if(color > 255)
  161. color = 255;
  162. pixels[b] = color;
  163. if(e == METASIZE)
  164. {
  165. e = 0;
  166. b += XSIZ - METASIZE;
  167. }
  168. b++;
  169. e++;
  170. }
  171. }