1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
12 * My crack at making a 80's style retro plasma effect for the fantastic
14 * Okay, I could've hard-coded the sine wave values, I just wanted the
15 * challange of calculating them! silly: maybe, fun: yes!
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version 2
20 * of the License, or (at your option) any later version.
22 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 * KIND, either express or implied.
25 ****************************************************************************/
28 #include "lib/helper.h"
30 #ifdef HAVE_LCD_BITMAP
32 #ifndef HAVE_LCD_COLOR
35 #include "lib/fixedpoint.h"
39 /******************************* Globals ***********************************/
41 static unsigned char wave_array
[256]; /* Pre calculated wave array */
43 static fb_data colours
[256]; /* Smooth transition of shades */
44 static int redfactor
= 1, greenfactor
= 2, bluefactor
= 3;
45 static int redphase
= 0, greenphase
= 50, bluephase
= 100;
46 /* lower chance of gray at regular intervals */
49 static unsigned char colours
[256]; /* Smooth transition of shades */
50 static unsigned char greybuffer
[LCD_HEIGHT
*LCD_WIDTH
]; /* off screen buffer */
51 static unsigned char *gbuf
;
52 static size_t gbuf_size
= 0;
54 static unsigned char sp1
, sp2
, sp3
, sp4
; /* Speed of plasma */
55 static int plasma_frequency
;
56 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
57 static bool boosted
= false;
60 /* Key assignement, all bitmapped models */
61 #if (CONFIG_KEYPAD == RECORDER_PAD) || (CONFIG_KEYPAD == ONDIO_PAD)
62 #define PLASMA_QUIT BUTTON_OFF
63 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
64 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
66 #elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
67 #define PLASMA_QUIT BUTTON_OFF
68 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
69 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
70 #define PLASMA_REGEN_COLORS BUTTON_SELECT
71 #define PLASMA_RC_QUIT BUTTON_RC_STOP
73 #elif (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
74 (CONFIG_KEYPAD == IPOD_1G2G_PAD)
75 #define PLASMA_QUIT BUTTON_MENU
76 #define PLASMA_INCREASE_FREQUENCY BUTTON_SCROLL_FWD
77 #define PLASMA_DECREASE_FREQUENCY BUTTON_SCROLL_BACK
78 #define PLASMA_REGEN_COLORS BUTTON_SELECT
80 #elif (CONFIG_KEYPAD == GIGABEAT_PAD)
81 #define PLASMA_QUIT BUTTON_POWER
82 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
83 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
84 #define PLASMA_REGEN_COLORS BUTTON_SELECT
86 #elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \
87 (CONFIG_KEYPAD == SANSA_C200_PAD) || \
88 (CONFIG_KEYPAD == SANSA_CLIP_PAD) || \
89 (CONFIG_KEYPAD == SANSA_M200_PAD)
90 #define PLASMA_QUIT BUTTON_POWER
91 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
92 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
93 #define PLASMA_REGEN_COLORS BUTTON_SELECT
95 #elif (CONFIG_KEYPAD == SANSA_FUZE_PAD)
96 #define PLASMA_QUIT (BUTTON_HOME|BUTTON_REPEAT)
97 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
98 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
99 #define PLASMA_REGEN_COLORS BUTTON_SELECT
101 #elif (CONFIG_KEYPAD == IAUDIO_X5M5_PAD)
102 #define PLASMA_QUIT BUTTON_POWER
103 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
104 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
105 #define PLASMA_REGEN_COLORS BUTTON_PLAY
107 #elif (CONFIG_KEYPAD == IRIVER_H10_PAD)
108 #define PLASMA_QUIT BUTTON_POWER
109 #define PLASMA_INCREASE_FREQUENCY BUTTON_SCROLL_UP
110 #define PLASMA_DECREASE_FREQUENCY BUTTON_SCROLL_DOWN
111 #define PLASMA_REGEN_COLORS BUTTON_PLAY
113 #elif (CONFIG_KEYPAD == GIGABEAT_S_PAD)
114 #define PLASMA_QUIT BUTTON_BACK
115 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
116 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
117 #define PLASMA_REGEN_COLORS BUTTON_SELECT
119 #elif (CONFIG_KEYPAD == MROBE100_PAD)
120 #define PLASMA_QUIT BUTTON_POWER
121 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
122 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
124 #elif (CONFIG_KEYPAD == IAUDIO_M3_PAD)
125 #define PLASMA_QUIT BUTTON_RC_REC
126 #define PLASMA_INCREASE_FREQUENCY BUTTON_RC_VOL_UP
127 #define PLASMA_DECREASE_FREQUENCY BUTTON_RC_VOL_DOWN
128 #define PLASMA_RC_QUIT BUTTON_REC
130 #elif (CONFIG_KEYPAD == COWON_D2_PAD)
131 #define PLASMA_QUIT BUTTON_POWER
133 #elif (CONFIG_KEYPAD == IAUDIO67_PAD)
134 #define PLASMA_QUIT BUTTON_POWER
135 #define PLASMA_INCREASE_FREQUENCY BUTTON_RIGHT
136 #define PLASMA_DECREASE_FREQUENCY BUTTON_LEFT
137 #define PLASMA_REGEN_COLORS BUTTON_PLAY
138 #define PLASMA_RC_QUIT BUTTON_STOP
140 #elif CONFIG_KEYPAD == CREATIVEZVM_PAD
141 #define PLASMA_QUIT BUTTON_BACK
142 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
143 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
144 #define PLASMA_REGEN_COLORS BUTTON_SELECT
146 #elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
147 #define PLASMA_QUIT BUTTON_POWER
148 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
149 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
150 #define PLASMA_REGEN_COLORS BUTTON_SELECT
152 #elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD
153 #define PLASMA_QUIT BUTTON_POWER
154 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
155 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
156 #define PLASMA_REGEN_COLORS BUTTON_PLAY
158 #elif (CONFIG_KEYPAD == ONDAVX747_PAD) || (CONFIG_KEYPAD == ONDAVX777_PAD)
159 #define PLASMA_QUIT BUTTON_POWER
161 #elif CONFIG_KEYPAD == SAMSUNG_YH_PAD
162 #define PLASMA_QUIT BUTTON_PLAY
163 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
164 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
165 #define PLASMA_REGEN_COLORS BUTTON_LEFT
167 #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
168 #define PLASMA_QUIT BUTTON_REC
169 #define PLASMA_INCREASE_FREQUENCY BUTTON_UP
170 #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN
171 #define PLASMA_REGEN_COLORS BUTTON_PLAY
175 #ifdef HAVE_TOUCHSCREEN
177 #define PLASMA_QUIT BUTTON_TOPLEFT
179 #ifndef PLASMA_INCREASE_FREQUENCY
180 #define PLASMA_INCREASE_FREQUENCY BUTTON_MIDRIGHT
182 #ifndef PLASMA_DECREASE_FREQUENCY
183 #define PLASMA_DECREASE_FREQUENCY BUTTON_MIDLEFT
185 #ifdef HAVE_LCD_COLOR
186 #ifndef PLASMA_REGEN_COLORS
187 #define PLASMA_REGEN_COLORS BUTTON_CENTER
189 #endif /* HAVE_LCD_COLOR */
190 #endif /* HAVE_TOUCHSCREEN */
195 * Main wave function so we don't have to re-calc the sine
196 * curve every time. Mess around WAV_AMP and FREQ to make slighlty
197 * weirder looking plasmas!
200 static void wave_table_generate(void)
205 wave_array
[i
] = (unsigned char)((WAV_AMP
206 * (fp14_sin((i
* 360 * plasma_frequency
) / 256))) / 16384);
210 #ifdef HAVE_LCD_COLOR
211 /* Make a smooth colour cycle. */
212 void shades_generate(int time
)
215 unsigned red
, green
, blue
;
216 unsigned r
= time
* redfactor
+ redphase
;
217 unsigned g
= time
* greenfactor
+ greenphase
;
218 unsigned b
= time
* bluefactor
+ bluephase
;
220 for(i
=0; i
< 256; ++i
)
222 r
&= 0xFF; g
&= 0xFF; b
&= 0xFF;
234 colours
[i
] = LCD_RGBPACK(red
, green
, blue
);
238 #if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
239 rb
->lcd_pal256_update_pal(colours
);
243 /* Make a smooth shade from black into white and back into black again. */
244 static void shades_generate(void)
248 for(i
=0; i
< 256; ++i
)
258 void cleanup(void *parameter
)
262 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
264 rb
->cpu_boost(false);
266 #ifndef HAVE_LCD_COLOR
269 /* Turn on backlight timeout (revert to settings) */
270 backlight_use_settings(); /* backlight control in lib/helper.c */
274 * Main function that also contain the main plasma
280 plasma_frequency
= 1;
281 int button
, delay
, x
, y
;
282 unsigned char p1
,p2
,p3
,p4
,t1
,t2
,t3
,t4
, z
,z0
;
283 long last_tick
= *rb
->current_tick
;
284 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
285 int cumulated_lag
= 0;
287 #ifdef HAVE_LCD_COLOR
288 #if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
298 /*Generate the neccesary pre calced stuff*/
299 wave_table_generate();
301 #ifndef HAVE_LCD_COLOR
302 shades_generate(); /* statically */
304 /* get the remainder of the plugin buffer */
305 gbuf
= (unsigned char *) rb
->plugin_get_buffer(&gbuf_size
);
307 grey_init(gbuf
, gbuf_size
, GREY_ON_COP
, LCD_WIDTH
, LCD_HEIGHT
, NULL
);
308 /* switch on greyscale overlay */
318 #ifdef HAVE_LCD_COLOR
319 shades_generate(time
++); /* dynamically */
320 #if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
321 ptr
= (unsigned char*)rb
->lcd_framebuffer
;
323 ptr
= rb
->lcd_framebuffer
;
331 for(y
= 0; y
< LCD_HEIGHT
; ++y
)
335 z0
= wave_array
[t1
] + wave_array
[t2
];
336 for(x
= 0; x
< LCD_WIDTH
; ++x
)
338 z
= z0
+ wave_array
[t3
] + wave_array
[t4
];
339 #if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
355 #ifdef HAVE_LCD_COLOR
356 #if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
357 rb
->lcd_blit_pal256( (unsigned char*)rb
->lcd_framebuffer
,
358 0,0,0,0,LCD_WIDTH
,LCD_HEIGHT
);
363 grey_ub_gray_bitmap(greybuffer
, 0, 0, LCD_WIDTH
, LCD_HEIGHT
);
366 delay
= last_tick
- *rb
->current_tick
+ HZ
/33;
367 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
368 if (!boosted
&& delay
< 0)
370 cumulated_lag
-= delay
; /* proportional increase */
371 if (cumulated_lag
>= HZ
)
372 rb
->cpu_boost(boosted
= true);
374 else if (boosted
&& delay
> 1) /* account for jitter */
376 if (--cumulated_lag
<= 0) /* slow decrease */
377 rb
->cpu_boost(boosted
= false);
380 button
= rb
->button_get_w_tmo(MAX(0, delay
));
381 last_tick
= *rb
->current_tick
;
385 #ifdef PLASMA_RC_QUIT
393 case (PLASMA_INCREASE_FREQUENCY
):
395 wave_table_generate();
398 case (PLASMA_DECREASE_FREQUENCY
):
399 if(plasma_frequency
>1)
402 wave_table_generate();
405 #ifdef HAVE_LCD_COLOR
406 case (PLASMA_REGEN_COLORS
):
407 redfactor
=rb
->rand()%4;
408 greenfactor
=rb
->rand()%4;
409 bluefactor
=rb
->rand()%4;
410 redphase
=rb
->rand()%256;
411 greenphase
=rb
->rand()%256;
412 bluephase
=rb
->rand()%256;
417 if (rb
->default_event_handler_ex(button
, cleanup
, NULL
)
418 == SYS_USB_CONNECTED
)
419 return PLUGIN_USB_CONNECTED
;
425 /*************************** Plugin entry point ****************************/
427 enum plugin_status
plugin_start(const void* parameter
)
433 rb
->lcd_set_backdrop(NULL
);
435 /* Turn off backlight timeout */
436 backlight_force_on(); /* backlight control in lib/helper.c */
438 #if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
439 rb
->lcd_set_mode(LCD_MODE_PAL256
);
444 #if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
445 rb
->lcd_set_mode(LCD_MODE_RGB565
);
451 #endif /* HAVE_LCD_BITMAP */