Simple single-color 8x8x8 LED Cube with AVRs
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.

visualizer.c 7.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. /*
  2. * visualizer.c
  3. *
  4. * Copyright 2011 Thomas Buck <xythobuz@me.com>
  5. * Copyright 2011 Max Nuding <max.nuding@gmail.com>
  6. * Copyright 2011 Felix Bäder <baeder.felix@gmail.com>
  7. *
  8. * This file is part of LED-Cube.
  9. *
  10. * LED-Cube is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation, either version 3 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * LED-Cube is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with LED-Cube. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. #include <avr/io.h>
  24. #include <stdint.h>
  25. #include <visualizer.h>
  26. #include <cube.h>
  27. #include <buffhelp.h>
  28. #define FACTOR 31 // 8 LEDs, Max Val 255:
  29. // 256 / 8 = 32 => Divide by 31 (FACTOR) to get num of leds to light
  30. // 255 / FACTOR = 8,...
  31. // 127 / FACTOR = 4,...
  32. #define THRESHOLD (FACTOR * 10 / 17)
  33. uint8_t maxVal(uint8_t data, uint8_t log);
  34. void setRow(uint8_t x, uint8_t z, uint8_t height, uint8_t *buf);
  35. uint8_t average(uint8_t *data);
  36. void filterData(uint8_t *data, uint8_t log);
  37. void simpleVisualization(uint8_t *data);
  38. void fullDepthVisualization(uint8_t *data);
  39. void horribleWave(uint8_t *audioData);
  40. void simpleLog(uint8_t *data);
  41. void fullDepthLog(uint8_t *data);
  42. void linLog(uint8_t *data);
  43. #define NUMOFVISUALIZATIONS 6
  44. void (*visualizations[NUMOFVISUALIZATIONS])(uint8_t *data) = { &simpleVisualization,
  45. &fullDepthVisualization, &horribleWave,
  46. &simpleLog, &fullDepthLog, &linLog };
  47. uint8_t logScale[8] = { 2, 4, 8, 16, 31, 63, 125, 250 }; // --> ca. (1 << (led + 1));
  48. uint8_t numberOfVisualizations(void) {
  49. return NUMOFVISUALIZATIONS;
  50. }
  51. void runVisualization(uint8_t *data, uint8_t id) {
  52. if (id < NUMOFVISUALIZATIONS) {
  53. if ((id <= 5) && (id > 2)) {
  54. filterData(data, 1);
  55. visualizations[id](data);
  56. } else {
  57. filterData(data, 0);
  58. visualizations[id](data);
  59. }
  60. }
  61. }
  62. uint8_t maxVal(uint8_t data, uint8_t log) {
  63. uint8_t max = 0;
  64. if (log) {
  65. while ((max <= 7) && (data > logScale[max])) // Some bitshifting would do it...
  66. max++; // But this is more fine grained
  67. } else {
  68. max = data / FACTOR;
  69. }
  70. return max;
  71. }
  72. uint8_t average(uint8_t *data) {
  73. uint16_t sum = 0;
  74. uint8_t i;
  75. for (i = 0; i < 7; i++) {
  76. sum += data[i];
  77. }
  78. sum /= 7;
  79. return (uint8_t)sum;
  80. }
  81. void filterData(uint8_t *data, uint8_t log) {
  82. uint8_t i;
  83. uint8_t max;
  84. if (log) {
  85. max = THRESHOLD / 2;
  86. } else {
  87. max = THRESHOLD;
  88. }
  89. if (average(data) < max) {
  90. for (i = 0; i < 7; i++) {
  91. data[i] = 0;
  92. }
  93. }
  94. }
  95. void simpleVUMeter(uint8_t *data, uint8_t *buff, uint8_t z, uint8_t log) {
  96. uint8_t i, h = 0, max;
  97. for(i = 0; i < 7; i++) {
  98. max = maxVal(data[i], log);
  99. for (h = 0; h < max; h++) {
  100. if (i == 0) {
  101. buffSetPixel(buff, i, (h * 10 / 15), z);
  102. }
  103. buffSetPixel(buff, i + 1, h, z);
  104. }
  105. }
  106. }
  107. void simpleLog(uint8_t *data) {
  108. uint8_t *buff;
  109. buff = buffNew();
  110. buffClearAllPixels(buff);
  111. setRow(0, 0, maxVal(average(data), 1), buff); // Show average
  112. simpleVUMeter(data, buff, 7, 1);
  113. setImage(buff);
  114. buffFree(buff);
  115. }
  116. void simpleVisualization(uint8_t *data) {
  117. uint8_t *buff;
  118. buff = buffNew();
  119. buffClearAllPixels(buff);
  120. setRow(0, 0, maxVal(average(data), 0), buff); // Show average
  121. simpleVUMeter(data, buff, 7, 0);
  122. setImage(buff);
  123. buffFree(buff);
  124. }
  125. void linLog(uint8_t *data) {
  126. uint8_t *buff;
  127. buff = buffNew();
  128. buffClearAllPixels(buff);
  129. simpleVUMeter(data, buff, 2, 1);
  130. filterData(data, 0);
  131. simpleVUMeter(data, buff, 5, 0);
  132. setImage(buff);
  133. buffFree(buff);
  134. }
  135. void fullDepthLog(uint8_t *data) {
  136. uint8_t *buff;
  137. uint8_t i;
  138. buff = buffNew();
  139. buffClearAllPixels(buff);
  140. for (i = 0; i < 8; i++) {
  141. simpleVUMeter(data, buff, i, 1);
  142. }
  143. setImage(buff);
  144. buffFree(buff);
  145. }
  146. void fullDepthVisualization(uint8_t *data) {
  147. uint8_t *buff;
  148. uint8_t i;
  149. buff = buffNew();
  150. buffClearAllPixels(buff);
  151. for (i = 0; i < 8; i++) {
  152. simpleVUMeter(data, buff, i, 0);
  153. }
  154. setImage(buff);
  155. buffFree(buff);
  156. }
  157. void setRow(uint8_t x, uint8_t z, uint8_t height, uint8_t *buf) {
  158. uint8_t i;
  159. for (i = 0; i < height; i++) {
  160. buffSetPixel(buf, x, i, z);
  161. }
  162. }
  163. void horribleWave(uint8_t *audioData) {
  164. uint8_t *imageData = buffNew();
  165. buffClearAllPixels(imageData);
  166. // Could not figure out a way to represent this easily in a loop
  167. // without using a shitload of 'if's...
  168. setRow(0, 0, (audioData[0] / FACTOR), imageData);
  169. setRow(0, 1, (audioData[0] / FACTOR), imageData);
  170. setRow(1, 0, (audioData[0] / FACTOR), imageData);
  171. setRow(0, 2, (audioData[1] / FACTOR), imageData);
  172. setRow(0, 3, (audioData[1] / FACTOR), imageData);
  173. setRow(1, 1, (audioData[1] / FACTOR), imageData);
  174. setRow(1, 2, (audioData[1] / FACTOR), imageData);
  175. setRow(2, 0, (audioData[1] / FACTOR), imageData);
  176. setRow(2, 1, (audioData[1] / FACTOR), imageData);
  177. setRow(0, 4, (audioData[2] / FACTOR), imageData);
  178. setRow(0, 5, (audioData[2] / FACTOR), imageData);
  179. setRow(1, 3, (audioData[2] / FACTOR), imageData);
  180. setRow(1, 4, (audioData[2] / FACTOR), imageData);
  181. setRow(2, 2, (audioData[2] / FACTOR), imageData);
  182. setRow(2, 3, (audioData[2] / FACTOR), imageData);
  183. setRow(3, 0, (audioData[2] / FACTOR), imageData);
  184. setRow(3, 1, (audioData[2] / FACTOR), imageData);
  185. setRow(3, 2, (audioData[2] / FACTOR), imageData);
  186. setRow(4, 0, (audioData[2] / FACTOR), imageData);
  187. setRow(4, 1, (audioData[2] / FACTOR), imageData);
  188. setRow(0, 6, (audioData[3] / FACTOR), imageData);
  189. setRow(0, 7, (audioData[3] / FACTOR), imageData);
  190. setRow(1, 5, (audioData[3] / FACTOR), imageData);
  191. setRow(1, 6, (audioData[3] / FACTOR), imageData);
  192. setRow(2, 4, (audioData[3] / FACTOR), imageData);
  193. setRow(2, 5, (audioData[3] / FACTOR), imageData);
  194. setRow(3, 3, (audioData[3] / FACTOR), imageData);
  195. setRow(3, 4, (audioData[3] / FACTOR), imageData);
  196. setRow(4, 2, (audioData[3] / FACTOR), imageData);
  197. setRow(4, 3, (audioData[3] / FACTOR), imageData);
  198. setRow(5, 0, (audioData[3] / FACTOR), imageData);
  199. setRow(5, 1, (audioData[3] / FACTOR), imageData);
  200. setRow(5, 2, (audioData[3] / FACTOR), imageData);
  201. setRow(6, 0, (audioData[3] / FACTOR), imageData);
  202. setRow(6, 1, (audioData[3] / FACTOR), imageData);
  203. setRow(1, 7, (audioData[4] / FACTOR), imageData);
  204. setRow(2, 6, (audioData[4] / FACTOR), imageData);
  205. setRow(2, 7, (audioData[4] / FACTOR), imageData);
  206. setRow(3, 5, (audioData[4] / FACTOR), imageData);
  207. setRow(3, 6, (audioData[4] / FACTOR), imageData);
  208. setRow(4, 4, (audioData[4] / FACTOR), imageData);
  209. setRow(4, 5, (audioData[4] / FACTOR), imageData);
  210. setRow(5, 3, (audioData[4] / FACTOR), imageData);
  211. setRow(5, 4, (audioData[4] / FACTOR), imageData);
  212. setRow(6, 2, (audioData[4] / FACTOR), imageData);
  213. setRow(6, 3, (audioData[4] / FACTOR), imageData);
  214. setRow(7, 0, (audioData[4] / FACTOR), imageData);
  215. setRow(7, 1, (audioData[4] / FACTOR), imageData);
  216. setRow(3, 7, (audioData[5] / FACTOR), imageData);
  217. setRow(4, 6, (audioData[5] / FACTOR), imageData);
  218. setRow(4, 7, (audioData[5] / FACTOR), imageData);
  219. setRow(5, 5, (audioData[5] / FACTOR), imageData);
  220. setRow(5, 6, (audioData[5] / FACTOR), imageData);
  221. setRow(6, 4, (audioData[5] / FACTOR), imageData);
  222. setRow(6, 5, (audioData[5] / FACTOR), imageData);
  223. setRow(7, 2, (audioData[5] / FACTOR), imageData);
  224. setRow(7, 3, (audioData[5] / FACTOR), imageData);
  225. setRow(7, 4, (audioData[5] / FACTOR), imageData);
  226. setRow(5, 7, (audioData[6] / FACTOR), imageData);
  227. setRow(6, 6, (audioData[6] / FACTOR), imageData);
  228. setRow(6, 7, (audioData[6] / FACTOR), imageData);
  229. setRow(7, 5, (audioData[6] / FACTOR), imageData);
  230. setRow(7, 6, (audioData[6] / FACTOR), imageData);
  231. setRow(7, 7, (audioData[6] / FACTOR), imageData);
  232. setImage(imageData);
  233. buffFree(imageData);
  234. }