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"
|
2010-06-04 13:22:50 +00:00
|
|
|
#include "lib/mylcd.h"
|
2012-02-25 23:39:00 +00:00
|
|
|
#include "lib/pluginlib_actions.h"
|
2006-01-15 18:20:18 +00:00
|
|
|
|
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
|
|
|
|
#else
|
|
|
|
#define NUM_PARTICLES 10
|
|
|
|
#define SNOW_HEIGHT 14
|
|
|
|
#define SNOW_WIDTH 20
|
|
|
|
#endif
|
|
|
|
|
2012-02-25 23:39:00 +00:00
|
|
|
static const struct button_mapping *plugin_contexts[] = { pla_main_ctx };
|
2009-05-06 05:48:18 +00:00
|
|
|
|
2012-02-25 23:39:00 +00:00
|
|
|
/* PLA definitions */
|
|
|
|
#define SNOW_QUIT PLA_EXIT
|
|
|
|
#define SNOW_QUIT2 PLA_CANCEL
|
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)) {
|
2010-06-04 13:22:50 +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
|
2010-06-04 13:22:50 +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
|
2010-06-04 13:22:50 +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();
|
2010-06-04 13:22:50 +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
|
|
|
|
2012-02-25 23:39:00 +00:00
|
|
|
/*We get button from PLA this way */
|
|
|
|
button = pluginlib_getaction(TIMEOUT_NOBLOCK, plugin_contexts,
|
|
|
|
ARRAYLEN(plugin_contexts));
|
2004-10-16 00:07:43 +00:00
|
|
|
|
2012-02-25 23:39:00 +00:00
|
|
|
if ((button == SNOW_QUIT) || (button == SNOW_QUIT2))
|
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
|
|
|
|