1
0
Fork 0
forked from len0rd/rockbox

Snow.rock ported to the player, fullscreen.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5927 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-02-12 01:36:33 +00:00
parent aa6ec9530e
commit eea3d62945
2 changed files with 56 additions and 7 deletions

View file

@ -9,6 +9,7 @@ metronome.c
mosaique.c mosaique.c
rockbox_flash.c rockbox_flash.c
search.c search.c
snow.c
sort.c sort.c
stopwatch.c stopwatch.c
vbrfix.c vbrfix.c
@ -30,7 +31,6 @@ rockblox.c
sliding_puzzle.c sliding_puzzle.c
snake.c snake.c
snake2.c snake2.c
snow.c
sokoban.c sokoban.c
#if CONFIG_KEYPAD != IRIVER_H100_PAD #if CONFIG_KEYPAD != IRIVER_H100_PAD
/* just because it isn't fixed yet to deal with this keymap */ /* just because it isn't fixed yet to deal with this keymap */

View file

@ -17,10 +17,24 @@
* *
**************************************************************************/ **************************************************************************/
#include "plugin.h" #include "plugin.h"
#include "playergfx.h"
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
#define NUM_PARTICLES (LCD_WIDTH * LCD_HEIGHT / 72) #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 short particles[NUM_PARTICLES][2];
static struct plugin_api* rb; static struct plugin_api* rb;
@ -28,7 +42,7 @@ static struct plugin_api* rb;
static bool particle_exists(int particle) static bool particle_exists(int particle)
{ {
if (particles[particle][0]>=0 && particles[particle][1]>=0 && if (particles[particle][0]>=0 && particles[particle][1]>=0 &&
particles[particle][0]<LCD_WIDTH && particles[particle][1]<LCD_HEIGHT) particles[particle][0]<SNOW_WIDTH && particles[particle][1]<SNOW_HEIGHT)
return true; return true;
else else
return false; return false;
@ -40,7 +54,7 @@ static int create_particle(void)
for (i=0; i<NUM_PARTICLES; i++) { for (i=0; i<NUM_PARTICLES; i++) {
if (!particle_exists(i)) { if (!particle_exists(i)) {
particles[i][0]=(rb->rand()%LCD_WIDTH); particles[i][0]=(rb->rand()%SNOW_WIDTH);
particles[i][1]=0; particles[i][1]=0;
return i; return i;
} }
@ -57,7 +71,11 @@ static void snow_move(void)
for (i=0; i<NUM_PARTICLES; i++) { for (i=0; i<NUM_PARTICLES; i++) {
if (particle_exists(i)) { if (particle_exists(i)) {
#ifdef HAVE_LCD_BITMAP
rb->lcd_clearpixel(particles[i][0],particles[i][1]); rb->lcd_clearpixel(particles[i][0],particles[i][1]);
#else
pgfx_clearpixel(particles[i][0],particles[i][1]);
#endif
switch ((rb->rand()%7)) { switch ((rb->rand()%7)) {
case 0: case 0:
particles[i][0]++; particles[i][0]++;
@ -75,7 +93,11 @@ static void snow_move(void)
break; break;
} }
if (particle_exists(i)) if (particle_exists(i))
#ifdef HAVE_LCD_BITMAP
rb->lcd_drawpixel(particles[i][0],particles[i][1]); rb->lcd_drawpixel(particles[i][0],particles[i][1]);
#else
pgfx_drawpixel(particles[i][0],particles[i][1]);
#endif
} }
} }
} }
@ -88,7 +110,14 @@ static void snow_init(void)
particles[i][0]=-1; particles[i][0]=-1;
particles[i][1]=-1; particles[i][1]=-1;
} }
#ifdef HAVE_LCD_BITMAP
rb->lcd_clear_display(); rb->lcd_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) enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
@ -98,20 +127,40 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
(void)(parameter); (void)(parameter);
rb = api; 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(); snow_init();
while (1) { while (1) {
snow_move(); snow_move();
#ifdef HAVE_LCD_BITMAP
rb->lcd_update(); rb->lcd_update();
#else
pgfx_update();
#endif
rb->sleep(HZ/20); rb->sleep(HZ/20);
button = rb->button_get(false); button = rb->button_get(false);
if (button == BUTTON_OFF) if (button == SNOW_QUIT)
{
#ifdef HAVE_LCD_CHARCELLS
pgfx_release();
#endif
return PLUGIN_OK; return PLUGIN_OK;
}
else else
if (rb->default_event_handler(button) == SYS_USB_CONNECTED) if (rb->default_event_handler(button) == SYS_USB_CONNECTED)
{
#ifdef HAVE_LCD_CHARCELLS
pgfx_release();
#endif
return PLUGIN_USB_CONNECTED; return PLUGIN_USB_CONNECTED;
}
} }
} }
#endif