/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id$ * * Copyright (C) 2002 Itai Shaked * * All files in this archive are subject to the GNU General Public License. * See the file COPYING in the source tree root for full license agreement. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * **************************************************************************/ #include "plugin.h" #include "playergfx.h" #ifdef HAVE_LCD_BITMAP #define NUM_PARTICLES (LCD_WIDTH * LCD_HEIGHT / 72) #define SNOW_HEIGHT LCD_HEIGHT #define SNOW_WIDTH LCD_WIDTH #else #define NUM_PARTICLES 10 #define SNOW_HEIGHT 14 #define SNOW_WIDTH 20 #endif /* variable button definitions */ #if CONFIG_KEYPAD == PLAYER_PAD #define SNOW_QUIT BUTTON_STOP #else #define SNOW_QUIT BUTTON_OFF #endif static short particles[NUM_PARTICLES][2]; static struct plugin_api* rb; static bool particle_exists(int particle) { if (particles[particle][0]>=0 && particles[particle][1]>=0 && particles[particle][0]rand()%SNOW_WIDTH); particles[i][1]=0; return i; } } return -1; } static void snow_move(void) { int i; if (!(rb->rand()%2)) create_particle(); for (i=0; ilcd_clearpixel(particles[i][0],particles[i][1]); #else pgfx_clearpixel(particles[i][0],particles[i][1]); #endif switch ((rb->rand()%7)) { case 0: particles[i][0]++; break; case 1: particles[i][0]--; break; case 2: break; default: particles[i][1]++; break; } if (particle_exists(i)) #ifdef HAVE_LCD_BITMAP rb->lcd_drawpixel(particles[i][0],particles[i][1]); #else pgfx_drawpixel(particles[i][0],particles[i][1]); #endif } } } static void snow_init(void) { int i; for (i=0; ilcd_clear_display(); #else pgfx_display(0, 0); /* display three times */ pgfx_display(4, 0); pgfx_display(8, 0); pgfx_clear_display(); #endif } enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { int button; TEST_PLUGIN_API(api); (void)(parameter); rb = api; #ifdef HAVE_LCD_CHARCELLS if (!pgfx_init(rb, 4, 2)) { rb->splash(HZ*2, true, "Old LCD :("); return PLUGIN_OK; } #endif snow_init(); while (1) { snow_move(); #ifdef HAVE_LCD_BITMAP rb->lcd_update(); #else pgfx_update(); #endif rb->sleep(HZ/20); button = rb->button_get(false); if (button == SNOW_QUIT) { #ifdef HAVE_LCD_CHARCELLS pgfx_release(); #endif return PLUGIN_OK; } else if (rb->default_event_handler(button) == SYS_USB_CONNECTED) { #ifdef HAVE_LCD_CHARCELLS pgfx_release(); #endif return PLUGIN_USB_CONNECTED; } } }