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
61 #define SNOW_QUIT BUTTON_OFF
62 #if (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
63 #define SNOW_RC_QUIT BUTTON_RC_STOP
67 static short particles
[NUM_PARTICLES
][2];
68 static struct plugin_api
* rb
;
70 #ifdef HAVE_LCD_BITMAP
73 static const unsigned char flake
[] = {0x0a,0x04,0x1f,0x04,0x0a};
76 static const unsigned char flake
[] = {0x02,0x07,0x02};
80 static bool particle_exists(int particle
)
82 if (particles
[particle
][0]>=0 && particles
[particle
][1]>=0 &&
83 particles
[particle
][0]<SNOW_WIDTH
&& particles
[particle
][1]<SNOW_HEIGHT
)
89 static int create_particle(void)
93 for (i
=0; i
<NUM_PARTICLES
; i
++) {
94 if (!particle_exists(i
)) {
95 particles
[i
][0]=(rb
->rand()%SNOW_WIDTH
);
103 static void snow_move(void)
110 for (i
=0; i
<NUM_PARTICLES
; i
++) {
111 if (particle_exists(i
)) {
112 MYLCD(set_drawmode
)(DRMODE_SOLID
|DRMODE_INVERSEVID
);
113 #ifdef HAVE_LCD_BITMAP
114 rb
->lcd_fillrect(particles
[i
][0],particles
[i
][1],
115 FLAKE_WIDTH
,FLAKE_WIDTH
);
117 pgfx_drawpixel(particles
[i
][0],particles
[i
][1]);
119 MYLCD(set_drawmode
)(DRMODE_SOLID
);
120 #ifdef HAVE_REMOTE_LCD
121 if (particles
[i
][0] <= LCD_REMOTE_WIDTH
122 && particles
[i
][1] <= LCD_REMOTE_HEIGHT
) {
123 rb
->lcd_remote_set_drawmode(DRMODE_SOLID
|DRMODE_INVERSEVID
);
124 rb
->lcd_remote_fillrect(particles
[i
][0],particles
[i
][1],
125 FLAKE_WIDTH
,FLAKE_WIDTH
);
126 rb
->lcd_remote_set_drawmode(DRMODE_SOLID
);
129 switch ((rb
->rand()%7)) {
145 if (particle_exists(i
))
146 #ifdef HAVE_LCD_BITMAP
147 rb
->lcd_mono_bitmap(flake
,particles
[i
][0],particles
[i
][1],
148 FLAKE_WIDTH
,FLAKE_WIDTH
);
150 pgfx_drawpixel(particles
[i
][0],particles
[i
][1]);
152 #ifdef HAVE_REMOTE_LCD
153 if (particles
[i
][0] <= LCD_REMOTE_WIDTH
154 && particles
[i
][1] <= LCD_REMOTE_HEIGHT
) {
155 rb
->lcd_remote_mono_bitmap(flake
,particles
[i
][0],particles
[i
][1],
156 FLAKE_WIDTH
,FLAKE_WIDTH
);
164 static void snow_init(void)
168 for (i
=0; i
<NUM_PARTICLES
; i
++) {
172 #ifdef HAVE_LCD_CHARCELLS
173 pgfx_display(0, 0); /* display three times */
177 MYLCD(clear_display
)();
178 #ifdef HAVE_REMOTE_LCD
179 rb
->lcd_remote_clear_display();
183 enum plugin_status
plugin_start(struct plugin_api
* api
, void* parameter
)
189 #ifdef HAVE_LCD_CHARCELLS
190 if (!pgfx_init(rb
, 4, 2))
192 rb
->splash(HZ
*2, "Old LCD :(");
196 #ifdef HAVE_LCD_COLOR
197 rb
->lcd_clear_display();
198 rb
->lcd_set_foreground(LCD_WHITE
);
199 rb
->lcd_set_background(LCD_DEFAULT_BG
);
205 #ifdef HAVE_REMOTE_LCD
206 rb
->lcd_remote_update();
210 button
= rb
->button_get(false);
212 if (button
== SNOW_QUIT
214 || button
== SNOW_RC_QUIT
218 #ifdef HAVE_LCD_CHARCELLS
224 if (rb
->default_event_handler(button
) == SYS_USB_CONNECTED
)
226 #ifdef HAVE_LCD_CHARCELLS
229 return PLUGIN_USB_CONNECTED
;