2002-09-06 22:30:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Itai Shaked
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2002-09-06 22:30:10 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2003-06-29 16:33:04 +00:00
|
|
|
**************************************************************************/
|
|
|
|
#include "plugin.h"
|
2008-11-20 11:27:31 +00:00
|
|
|
#include "lib/playergfx.h"
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2006-01-15 18:20:18 +00:00
|
|
|
PLUGIN_HEADER
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-02-09 00:33:23 +00:00
|
|
|
#define NUM_PARTICLES (LCD_WIDTH * LCD_HEIGHT / 72)
|
2005-02-12 01:36:33 +00:00
|
|
|
#define SNOW_HEIGHT LCD_HEIGHT
|
|
|
|
#define SNOW_WIDTH LCD_WIDTH
|
2005-06-30 21:07:00 +00:00
|
|
|
#define MYLCD(fn) rb->lcd_ ## fn
|
2005-02-12 01:36:33 +00:00
|
|
|
#else
|
|
|
|
#define NUM_PARTICLES 10
|
|
|
|
#define SNOW_HEIGHT 14
|
|
|
|
#define SNOW_WIDTH 20
|
2005-06-30 21:07:00 +00:00
|
|
|
#define MYLCD(fn) pgfx_ ## fn
|
2005-02-12 01:36:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* variable button definitions */
|
|
|
|
#if CONFIG_KEYPAD == PLAYER_PAD
|
|
|
|
#define SNOW_QUIT BUTTON_STOP
|
2009-05-06 05:48:18 +00:00
|
|
|
|
2006-02-24 20:54:09 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
|
2007-07-27 09:57:27 +00:00
|
|
|
(CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
2005-12-14 01:31:37 +00:00
|
|
|
#define SNOW_QUIT BUTTON_MENU
|
2009-05-06 05:48:18 +00:00
|
|
|
|
2009-08-04 03:08:32 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IRIVER_IFP7XX_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == SAMSUNG_YH_PAD)
|
2006-01-12 00:35:50 +00:00
|
|
|
#define SNOW_QUIT BUTTON_PLAY
|
2009-05-06 05:48:18 +00:00
|
|
|
|
2007-09-20 10:49:48 +00:00
|
|
|
#elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \
|
2008-12-12 19:50:49 +00:00
|
|
|
(CONFIG_KEYPAD == SANSA_C200_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == SANSA_CLIP_PAD) || \
|
2009-05-06 05:48:18 +00:00
|
|
|
(CONFIG_KEYPAD == SANSA_M200_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == MROBE500_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IRIVER_H10_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == MROBE100_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == COWOND2_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IAUDIO67_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == PHILIPS_HDD1630_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == ONDAVX747_PAD) || \
|
2009-08-31 21:11:32 +00:00
|
|
|
(CONFIG_KEYPAD == ONDAVX777_PAD) || \
|
2009-05-06 05:48:18 +00:00
|
|
|
(CONFIG_KEYPAD == GIGABEAT_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IAUDIO_X5M5_PAD)
|
2006-10-26 13:38:09 +00:00
|
|
|
#define SNOW_QUIT BUTTON_POWER
|
2009-05-06 05:48:18 +00:00
|
|
|
|
2009-01-04 23:33:15 +00:00
|
|
|
#elif (CONFIG_KEYPAD == SANSA_FUZE_PAD)
|
2009-04-10 17:28:26 +00:00
|
|
|
#define SNOW_QUIT (BUTTON_HOME|BUTTON_REPEAT)
|
2009-05-06 05:48:18 +00:00
|
|
|
|
2009-05-15 13:43:30 +00:00
|
|
|
#elif (CONFIG_KEYPAD == GIGABEAT_S_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == CREATIVEZVM_PAD)
|
2008-02-17 12:23:02 +00:00
|
|
|
#define SNOW_QUIT BUTTON_BACK
|
2009-05-06 05:48:18 +00:00
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
|
|
|
|
#define SNOW_QUIT BUTTON_REC
|
|
|
|
#define SNOW_RC_QUIT BUTTON_RC_REC
|
2009-05-06 05:48:18 +00:00
|
|
|
|
2005-02-12 01:36:33 +00:00
|
|
|
#else
|
|
|
|
#define SNOW_QUIT BUTTON_OFF
|
2006-06-30 16:43:47 +00:00
|
|
|
#if (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
|
|
|
|
#define SNOW_RC_QUIT BUTTON_RC_STOP
|
|
|
|
#endif
|
2005-02-12 01:36:33 +00:00
|
|
|
#endif
|
2002-09-06 22:30:10 +00:00
|
|
|
|
|
|
|
static short particles[NUM_PARTICLES][2];
|
|
|
|
|
2005-05-21 13:11:50 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
#if LCD_WIDTH >= 160
|
|
|
|
#define FLAKE_WIDTH 5
|
|
|
|
static const unsigned char flake[] = {0x0a,0x04,0x1f,0x04,0x0a};
|
|
|
|
#else
|
|
|
|
#define FLAKE_WIDTH 3
|
|
|
|
static const unsigned char flake[] = {0x02,0x07,0x02};
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2002-09-06 22:30:10 +00:00
|
|
|
static bool particle_exists(int particle)
|
|
|
|
{
|
2005-02-12 01:36:33 +00:00
|
|
|
if (particles[particle][0]>=0 && particles[particle][1]>=0 &&
|
|
|
|
particles[particle][0]<SNOW_WIDTH && particles[particle][1]<SNOW_HEIGHT)
|
2002-09-06 22:30:10 +00:00
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int create_particle(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<NUM_PARTICLES; i++) {
|
|
|
|
if (!particle_exists(i)) {
|
2005-02-12 01:36:33 +00:00
|
|
|
particles[i][0]=(rb->rand()%SNOW_WIDTH);
|
2002-09-06 22:30:10 +00:00
|
|
|
particles[i][1]=0;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void snow_move(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
if (!(rb->rand()%2))
|
2002-09-06 22:30:10 +00:00
|
|
|
create_particle();
|
|
|
|
|
|
|
|
for (i=0; i<NUM_PARTICLES; i++) {
|
|
|
|
if (particle_exists(i)) {
|
2005-06-30 21:07:00 +00:00
|
|
|
MYLCD(set_drawmode)(DRMODE_SOLID|DRMODE_INVERSEVID);
|
2005-02-12 01:36:33 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-06-24 22:33:21 +00:00
|
|
|
rb->lcd_fillrect(particles[i][0],particles[i][1],
|
|
|
|
FLAKE_WIDTH,FLAKE_WIDTH);
|
2005-02-12 01:36:33 +00:00
|
|
|
#else
|
2005-06-30 21:07:00 +00:00
|
|
|
pgfx_drawpixel(particles[i][0],particles[i][1]);
|
2005-05-21 13:22:39 +00:00
|
|
|
#endif
|
2005-06-30 21:07:00 +00:00
|
|
|
MYLCD(set_drawmode)(DRMODE_SOLID);
|
2005-05-21 13:22:39 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
if (particles[i][0] <= LCD_REMOTE_WIDTH
|
|
|
|
&& particles[i][1] <= LCD_REMOTE_HEIGHT) {
|
2005-06-29 01:39:50 +00:00
|
|
|
rb->lcd_remote_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
|
|
|
rb->lcd_remote_fillrect(particles[i][0],particles[i][1],
|
|
|
|
FLAKE_WIDTH,FLAKE_WIDTH);
|
|
|
|
rb->lcd_remote_set_drawmode(DRMODE_SOLID);
|
2005-05-21 13:22:39 +00:00
|
|
|
}
|
2005-02-12 01:36:33 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
switch ((rb->rand()%7)) {
|
2002-09-06 22:30:10 +00:00
|
|
|
case 0:
|
|
|
|
particles[i][0]++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
particles[i][0]--;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
particles[i][1]++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (particle_exists(i))
|
2005-02-12 01:36:33 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-07-06 22:58:02 +00:00
|
|
|
rb->lcd_mono_bitmap(flake,particles[i][0],particles[i][1],
|
|
|
|
FLAKE_WIDTH,FLAKE_WIDTH);
|
2005-02-12 01:36:33 +00:00
|
|
|
#else
|
|
|
|
pgfx_drawpixel(particles[i][0],particles[i][1]);
|
2005-05-21 13:22:39 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
if (particles[i][0] <= LCD_REMOTE_WIDTH
|
|
|
|
&& particles[i][1] <= LCD_REMOTE_HEIGHT) {
|
2006-07-28 07:35:45 +00:00
|
|
|
rb->lcd_remote_mono_bitmap(flake,particles[i][0],particles[i][1],
|
|
|
|
FLAKE_WIDTH,FLAKE_WIDTH);
|
2005-05-21 13:22:39 +00:00
|
|
|
}
|
2005-02-12 01:36:33 +00:00
|
|
|
#endif
|
2002-09-06 22:30:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-21 13:11:50 +00:00
|
|
|
|
2002-09-06 22:30:10 +00:00
|
|
|
static void snow_init(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<NUM_PARTICLES; i++) {
|
|
|
|
particles[i][0]=-1;
|
|
|
|
particles[i][1]=-1;
|
|
|
|
}
|
2005-06-30 21:07:00 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2005-02-12 01:36:33 +00:00
|
|
|
pgfx_display(0, 0); /* display three times */
|
|
|
|
pgfx_display(4, 0);
|
|
|
|
pgfx_display(8, 0);
|
|
|
|
#endif
|
2005-06-30 21:07:00 +00:00
|
|
|
MYLCD(clear_display)();
|
2005-05-21 13:22:39 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2005-06-29 01:39:50 +00:00
|
|
|
rb->lcd_remote_clear_display();
|
2005-05-21 13:22:39 +00:00
|
|
|
#endif
|
2002-09-06 22:30:10 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 10:34:40 +00:00
|
|
|
enum plugin_status plugin_start(const void* parameter)
|
2002-09-06 22:30:10 +00:00
|
|
|
{
|
2004-10-16 00:07:43 +00:00
|
|
|
int button;
|
2003-06-29 16:33:04 +00:00
|
|
|
(void)(parameter);
|
2002-09-06 22:30:10 +00:00
|
|
|
|
2005-02-12 01:36:33 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2009-01-16 10:34:40 +00:00
|
|
|
if (!pgfx_init(4, 2))
|
2005-02-12 01:36:33 +00:00
|
|
|
{
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(HZ*2, "Old LCD :(");
|
2005-02-12 01:36:33 +00:00
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
2007-08-01 13:36:37 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->lcd_set_foreground(LCD_WHITE);
|
|
|
|
rb->lcd_set_background(LCD_DEFAULT_BG);
|
2005-02-12 01:36:33 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
snow_init();
|
2002-09-06 22:30:10 +00:00
|
|
|
while (1) {
|
|
|
|
snow_move();
|
2005-06-30 21:07:00 +00:00
|
|
|
MYLCD(update)();
|
2005-05-21 13:22:39 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2005-06-29 01:39:50 +00:00
|
|
|
rb->lcd_remote_update();
|
2005-02-12 01:36:33 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
rb->sleep(HZ/20);
|
2002-10-23 14:42:45 +00:00
|
|
|
|
2004-10-16 00:07:43 +00:00
|
|
|
button = rb->button_get(false);
|
|
|
|
|
2006-06-30 16:43:47 +00:00
|
|
|
if (button == SNOW_QUIT
|
|
|
|
#ifdef SNOW_RC_QUIT
|
|
|
|
|| button == SNOW_RC_QUIT
|
|
|
|
#endif
|
|
|
|
)
|
2005-02-12 01:36:33 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
pgfx_release();
|
|
|
|
#endif
|
2004-10-16 07:18:59 +00:00
|
|
|
return PLUGIN_OK;
|
2005-02-12 01:36:33 +00:00
|
|
|
}
|
2004-10-16 00:07:43 +00:00
|
|
|
else
|
|
|
|
if (rb->default_event_handler(button) == SYS_USB_CONNECTED)
|
2005-02-12 01:36:33 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
pgfx_release();
|
|
|
|
#endif
|
2004-10-16 00:07:43 +00:00
|
|
|
return PLUGIN_USB_CONNECTED;
|
2005-02-12 01:36:33 +00:00
|
|
|
}
|
2002-09-06 22:30:10 +00:00
|
|
|
}
|
|
|
|
}
|
2002-10-23 14:42:45 +00:00
|
|
|
|