1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Itai Shaked
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 **************************************************************************/
20 #include "playergfx.h"
24 #ifdef HAVE_LCD_BITMAP
25 #define NUM_PARTICLES (LCD_WIDTH * LCD_HEIGHT / 72)
26 #define SNOW_HEIGHT LCD_HEIGHT
27 #define SNOW_WIDTH LCD_WIDTH
28 #define MYLCD(fn) rb->lcd_ ## fn
30 #define NUM_PARTICLES 10
31 #define SNOW_HEIGHT 14
33 #define MYLCD(fn) pgfx_ ## fn
36 /* variable button definitions */
37 #if CONFIG_KEYPAD == PLAYER_PAD
38 #define SNOW_QUIT BUTTON_STOP
39 #elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
40 (CONFIG_KEYPAD == IPOD_3G_PAD) || \
41 (CONFIG_KEYPAD == IPOD_1G2G_PAD)
42 #define SNOW_QUIT BUTTON_MENU
43 #elif CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
44 #define SNOW_QUIT BUTTON_PLAY
45 #elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD
46 #define SNOW_QUIT BUTTON_POWER
47 #elif CONFIG_KEYPAD == GIGABEAT_PAD
48 #define SNOW_QUIT BUTTON_POWER
49 #elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \
50 (CONFIG_KEYPAD == SANSA_C200_PAD)
51 #define SNOW_QUIT BUTTON_POWER
52 #elif CONFIG_KEYPAD == IRIVER_H10_PAD
53 #define SNOW_QUIT BUTTON_POWER
54 #elif CONFIG_KEYPAD == MROBE500_PAD
55 #define SNOW_QUIT BUTTON_POWER
56 #elif CONFIG_KEYPAD == MROBE100_PAD
57 #define SNOW_QUIT BUTTON_POWER
58 #elif CONFIG_KEYPAD == GIGABEAT_S_PAD
59 #define SNOW_QUIT BUTTON_BACK
60 #elif CONFIG_KEYPAD == IAUDIO_M3_PAD
61 #define SNOW_QUIT BUTTON_REC
62 #define SNOW_RC_QUIT BUTTON_RC_REC
63 #elif CONFIG_KEYPAD == COWOND2_PAD
64 #define SNOW_QUIT BUTTON_POWER
66 #define SNOW_QUIT BUTTON_OFF
67 #if (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
68 #define SNOW_RC_QUIT BUTTON_RC_STOP
72 static short particles
[NUM_PARTICLES
][2];
73 static struct plugin_api
* rb
;
75 #ifdef HAVE_LCD_BITMAP
78 static const unsigned char flake
[] = {0x0a,0x04,0x1f,0x04,0x0a};
81 static const unsigned char flake
[] = {0x02,0x07,0x02};
85 static bool particle_exists(int particle
)
87 if (particles
[particle
][0]>=0 && particles
[particle
][1]>=0 &&
88 particles
[particle
][0]<SNOW_WIDTH
&& particles
[particle
][1]<SNOW_HEIGHT
)
94 static int create_particle(void)
98 for (i
=0; i
<NUM_PARTICLES
; i
++) {
99 if (!particle_exists(i
)) {
100 particles
[i
][0]=(rb
->rand()%SNOW_WIDTH
);
108 static void snow_move(void)
115 for (i
=0; i
<NUM_PARTICLES
; i
++) {
116 if (particle_exists(i
)) {
117 MYLCD(set_drawmode
)(DRMODE_SOLID
|DRMODE_INVERSEVID
);
118 #ifdef HAVE_LCD_BITMAP
119 rb
->lcd_fillrect(particles
[i
][0],particles
[i
][1],
120 FLAKE_WIDTH
,FLAKE_WIDTH
);
122 pgfx_drawpixel(particles
[i
][0],particles
[i
][1]);
124 MYLCD(set_drawmode
)(DRMODE_SOLID
);
125 #ifdef HAVE_REMOTE_LCD
126 if (particles
[i
][0] <= LCD_REMOTE_WIDTH
127 && particles
[i
][1] <= LCD_REMOTE_HEIGHT
) {
128 rb
->lcd_remote_set_drawmode(DRMODE_SOLID
|DRMODE_INVERSEVID
);
129 rb
->lcd_remote_fillrect(particles
[i
][0],particles
[i
][1],
130 FLAKE_WIDTH
,FLAKE_WIDTH
);
131 rb
->lcd_remote_set_drawmode(DRMODE_SOLID
);
134 switch ((rb
->rand()%7)) {
150 if (particle_exists(i
))
151 #ifdef HAVE_LCD_BITMAP
152 rb
->lcd_mono_bitmap(flake
,particles
[i
][0],particles
[i
][1],
153 FLAKE_WIDTH
,FLAKE_WIDTH
);
155 pgfx_drawpixel(particles
[i
][0],particles
[i
][1]);
157 #ifdef HAVE_REMOTE_LCD
158 if (particles
[i
][0] <= LCD_REMOTE_WIDTH
159 && particles
[i
][1] <= LCD_REMOTE_HEIGHT
) {
160 rb
->lcd_remote_mono_bitmap(flake
,particles
[i
][0],particles
[i
][1],
161 FLAKE_WIDTH
,FLAKE_WIDTH
);
169 static void snow_init(void)
173 for (i
=0; i
<NUM_PARTICLES
; i
++) {
177 #ifdef HAVE_LCD_CHARCELLS
178 pgfx_display(0, 0); /* display three times */
182 MYLCD(clear_display
)();
183 #ifdef HAVE_REMOTE_LCD
184 rb
->lcd_remote_clear_display();
188 enum plugin_status
plugin_start(struct plugin_api
* api
, void* parameter
)
194 #ifdef HAVE_LCD_CHARCELLS
195 if (!pgfx_init(rb
, 4, 2))
197 rb
->splash(HZ
*2, "Old LCD :(");
201 #ifdef HAVE_LCD_COLOR
202 rb
->lcd_clear_display();
203 rb
->lcd_set_foreground(LCD_WHITE
);
204 rb
->lcd_set_background(LCD_DEFAULT_BG
);
210 #ifdef HAVE_REMOTE_LCD
211 rb
->lcd_remote_update();
215 button
= rb
->button_get(false);
217 if (button
== SNOW_QUIT
219 || button
== SNOW_RC_QUIT
223 #ifdef HAVE_LCD_CHARCELLS
229 if (rb
->default_event_handler(button
) == SYS_USB_CONNECTED
)
231 #ifdef HAVE_LCD_CHARCELLS
234 return PLUGIN_USB_CONNECTED
;