diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-06-30 21:07:00 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-06-30 21:07:00 +0000 |
| commit | 93867305d514b90bec2d5d7541297aef6a157efa (patch) | |
| tree | e3e5ecfb84c337a227093122f7ddcf085d6c9f32 /apps/plugins/mosaique.c | |
| parent | 05c3cc297814543d68065389b08ef2123020b0b9 (diff) | |
| download | rockbox-93867305d514b90bec2d5d7541297aef6a157efa.zip rockbox-93867305d514b90bec2d5d7541297aef6a157efa.tar.gz rockbox-93867305d514b90bec2d5d7541297aef6a157efa.tar.bz2 rockbox-93867305d514b90bec2d5d7541297aef6a157efa.tar.xz | |
Player graphics library extended and converted to new api. Please note that the player gfx bitmap format chas changed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mosaique.c')
| -rw-r--r-- | apps/plugins/mosaique.c | 44 |
1 files changed, 15 insertions, 29 deletions
diff --git a/apps/plugins/mosaique.c b/apps/plugins/mosaique.c index 87ff3a4..75bd155 100644 --- a/apps/plugins/mosaique.c +++ b/apps/plugins/mosaique.c @@ -22,9 +22,11 @@ #ifdef HAVE_LCD_BITMAP #define LARGE ((LCD_WIDTH - 2) / 2) #define HAUT ((LCD_HEIGHT - 2) / 2) +#define MYLCD(fn) rb->lcd_ ## fn #else #define LARGE 9 #define HAUT 6 +#define MYLCD(fn) pgfx_ ## fn #endif /* variable button definitions */ @@ -62,18 +64,16 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) TEST_PLUGIN_API(api); (void)parameter; -#ifdef HAVE_LCD_BITMAP - rb->lcd_clear_display(); - rb->lcd_set_drawmode(DRMODE_COMPLEMENT); -#else +#ifdef HAVE_LCD_CHARCELLS if (!pgfx_init(rb, 4, 2)) { rb->splash(HZ*2, true, "Old LCD :("); return PLUGIN_OK; } pgfx_display(3, 0); - pgfx_clear_display(); #endif + MYLCD(clear_display)(); + MYLCD(set_drawmode)(DRMODE_COMPLEMENT); while (1) { x+=sx; @@ -102,19 +102,11 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) sy = -sy; } -#ifdef HAVE_LCD_BITMAP - rb->lcd_fillrect(LARGE-x, HAUT-y, 2*x+1, 1); - rb->lcd_fillrect(LARGE-x, HAUT+y, 2*x+1, 1); - rb->lcd_fillrect(LARGE-x, HAUT-y+1, 1, 2*y-1); - rb->lcd_fillrect(LARGE+x, HAUT-y+1, 1, 2*y-1); - rb->lcd_update(); -#else - pgfx_invertrect(LARGE-x, HAUT-y, 2*x+1, 1); - pgfx_invertrect(LARGE-x, HAUT+y, 2*x+1, 1); - pgfx_invertrect(LARGE-x, HAUT-y+1, 1, 2*y-1); - pgfx_invertrect(LARGE+x, HAUT-y+1, 1, 2*y-1); - pgfx_update(); -#endif + MYLCD(fillrect)(LARGE-x, HAUT-y, 2*x+1, 1); + MYLCD(fillrect)(LARGE-x, HAUT+y, 2*x+1, 1); + MYLCD(fillrect)(LARGE-x, HAUT-y+1, 1, 2*y-1); + MYLCD(fillrect)(LARGE+x, HAUT-y+1, 1, 2*y-1); + MYLCD(update)(); rb->sleep(HZ/timer); @@ -122,9 +114,8 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) switch (button) { case MOSAIQUE_QUIT: -#ifdef HAVE_LCD_BITMAP - rb->lcd_set_drawmode(DRMODE_SOLID); -#else + MYLCD(set_drawmode)(DRMODE_SOLID); +#ifdef HAVE_LCD_CHARCELLS pgfx_release(); #endif return PLUGIN_OK; @@ -141,20 +132,15 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) sy = rb->rand() % (HAUT/2) + 1; x=0; y=0; -#ifdef HAVE_LCD_BITMAP - rb->lcd_clear_display(); -#else - pgfx_clear_display(); -#endif + MYLCD(clear_display)(); break; default: if (rb->default_event_handler(button) == SYS_USB_CONNECTED) { -#ifdef HAVE_LCD_BITMAP - rb->lcd_set_drawmode(DRMODE_SOLID); -#else + MYLCD(set_drawmode)(DRMODE_SOLID); +#ifdef HAVE_LCD_CHARCELLS pgfx_release(); #endif return PLUGIN_USB_CONNECTED; |