From ea4947a95f2478fd2d72c0af43829ebb6c4328a3 Mon Sep 17 00:00:00 2001 From: Adam Boot Date: Mon, 20 Mar 2006 03:06:07 +0000 Subject: New game plugin: bubbles, initial commit git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9126 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/bitmaps/native/SOURCES | 53 +++++++++++++++------ .../bitmaps/native/bubbles_emblem.160x128x16.bmp | Bin 0 -> 1590 bytes .../bitmaps/native/bubbles_emblem.160x128x2.bmp | Bin 0 -> 1590 bytes .../bitmaps/native/bubbles_emblem.220x176x16.bmp | Bin 0 -> 3510 bytes .../bitmaps/native/bubbles_emblem.320x240x16.bmp | Bin 0 -> 6198 bytes .../bitmaps/native/bubbles_left.160x128x16.bmp | Bin 0 -> 12854 bytes .../bitmaps/native/bubbles_left.176x132x16.bmp | Bin 0 -> 15894 bytes .../bitmaps/native/bubbles_left.220x176x16.bmp | Bin 0 -> 24694 bytes .../bitmaps/native/bubbles_left.240x320x16.bmp | Bin 0 -> 53814 bytes .../bitmaps/native/bubbles_left.320x240x16.bmp | Bin 0 -> 51894 bytes .../bitmaps/native/bubbles_right.160x128x16.bmp | Bin 0 -> 12342 bytes .../bitmaps/native/bubbles_right.176x132x16.bmp | Bin 0 -> 16422 bytes .../bitmaps/native/bubbles_right.220x176x16.bmp | Bin 0 -> 25398 bytes .../bitmaps/native/bubbles_right.240x320x16.bmp | Bin 0 -> 55094 bytes .../bitmaps/native/bubbles_right.320x240x16.bmp | Bin 0 -> 52854 bytes 15 files changed, 39 insertions(+), 14 deletions(-) create mode 100755 apps/plugins/bitmaps/native/bubbles_emblem.160x128x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_emblem.160x128x2.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_emblem.220x176x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_emblem.320x240x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_left.160x128x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_left.176x132x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_left.220x176x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_left.240x320x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_left.320x240x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_right.160x128x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_right.176x132x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_right.220x176x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_right.240x320x16.bmp create mode 100755 apps/plugins/bitmaps/native/bubbles_right.320x240x16.bmp (limited to 'apps/plugins/bitmaps/native') diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index 6b6896d263..b267fc9dfa 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -1,24 +1,28 @@ #ifdef HAVE_LCD_BITMAP -/* Bejeweled */ -#if (LCD_WIDTH == 112) && (LCD_HEIGHT == 64) -jewels.112x64x1.bmp -#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 64) -jewels.112x64x1.bmp -#elif (LCD_WIDTH == 138) && (LCD_HEIGHT == 110) -jewels.138x110x1.bmp -#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && !defined(HAVE_LCD_COLOR) -jewels.160x128x1.bmp +/* Bubbles */ +#if (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && !defined(HAVE_LCD_COLOR) +bubbles_emblem.160x128x2.bmp #elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && defined(HAVE_LCD_COLOR) -jewels.160x128x16.bmp +bubbles_emblem.160x128x16.bmp +bubbles_left.160x128x16.bmp +bubbles_right.160x128x16.bmp #elif (LCD_WIDTH == 176) && (LCD_HEIGHT == 132) -jewels.160x128x16.bmp +bubbles_emblem.160x128x16.bmp +bubbles_left.176x132x16.bmp +bubbles_right.176x132x16.bmp #elif (LCD_WIDTH == 220) && (LCD_HEIGHT == 176) -jewels.220x176x16.bmp +bubbles_emblem.220x176x16.bmp +bubbles_left.220x176x16.bmp +bubbles_right.220x176x16.bmp #elif (LCD_WIDTH == 240) && (LCD_HEIGHT == 320) -jewels.220x176x16.bmp +bubbles_emblem.220x176x16.bmp +bubbles_left.240x320x16.bmp +bubbles_right.240x320x16.bmp #elif (LCD_WIDTH == 320) && (LCD_HEIGHT == 240) -jewels.320x240x16.bmp +bubbles_emblem.320x240x16.bmp +bubbles_left.320x240x16.bmp +bubbles_right.320x240x16.bmp #endif /* ChessBox */ @@ -34,6 +38,27 @@ chessbox_pieces.128x128x1.bmp chessbox_pieces.64x64x1.bmp #endif +/* Jewels */ +#if (LCD_WIDTH == 112) && (LCD_HEIGHT == 64) +jewels.112x64x1.bmp +#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 64) +jewels.112x64x1.bmp +#elif (LCD_WIDTH == 138) && (LCD_HEIGHT == 110) +jewels.138x110x1.bmp +#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && !defined(HAVE_LCD_COLOR) +jewels.160x128x1.bmp +#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && defined(HAVE_LCD_COLOR) +jewels.160x128x16.bmp +#elif (LCD_WIDTH == 176) && (LCD_HEIGHT == 132) +jewels.160x128x16.bmp +#elif (LCD_WIDTH == 220) && (LCD_HEIGHT == 176) +jewels.220x176x16.bmp +#elif (LCD_WIDTH == 240) && (LCD_HEIGHT == 320) +jewels.220x176x16.bmp +#elif (LCD_WIDTH == 320) && (LCD_HEIGHT == 240) +jewels.320x240x16.bmp +#endif + /* Solitaire */ #ifdef HAVE_LCD_COLOR solitaire_cardback.220x176x16.bmp diff --git a/apps/plugins/bitmaps/native/bubbles_emblem.160x128x16.bmp b/apps/plugins/bitmaps/native/bubbles_emblem.160x128x16.bmp new file mode 100755 index 0000000000..cda6ef4f74 Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_emblem.160x128x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_emblem.160x128x2.bmp b/apps/plugins/bitmaps/native/bubbles_emblem.160x128x2.bmp new file mode 100755 index 0000000000..ea803f6da7 Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_emblem.160x128x2.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_emblem.220x176x16.bmp b/apps/plugins/bitmaps/native/bubbles_emblem.220x176x16.bmp new file mode 100755 index 0000000000..92cb7d1be1 Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_emblem.220x176x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_emblem.320x240x16.bmp b/apps/plugins/bitmaps/native/bubbles_emblem.320x240x16.bmp new file mode 100755 index 0000000000..f32aff410b Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_emblem.320x240x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_left.160x128x16.bmp b/apps/plugins/bitmaps/native/bubbles_left.160x128x16.bmp new file mode 100755 index 0000000000..15f78cfdf2 Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_left.160x128x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_left.176x132x16.bmp b/apps/plugins/bitmaps/native/bubbles_left.176x132x16.bmp new file mode 100755 index 0000000000..dbad0543a3 Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_left.176x132x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_left.220x176x16.bmp b/apps/plugins/bitmaps/native/bubbles_left.220x176x16.bmp new file mode 100755 index 0000000000..cbe38ca53c Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_left.220x176x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_left.240x320x16.bmp b/apps/plugins/bitmaps/native/bubbles_left.240x320x16.bmp new file mode 100755 index 0000000000..25cf12ddbf Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_left.240x320x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_left.320x240x16.bmp b/apps/plugins/bitmaps/native/bubbles_left.320x240x16.bmp new file mode 100755 index 0000000000..194bea0ff0 Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_left.320x240x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_right.160x128x16.bmp b/apps/plugins/bitmaps/native/bubbles_right.160x128x16.bmp new file mode 100755 index 0000000000..d065365e82 Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_right.160x128x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_right.176x132x16.bmp b/apps/plugins/bitmaps/native/bubbles_right.176x132x16.bmp new file mode 100755 index 0000000000..1093c17b2b Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_right.176x132x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_right.220x176x16.bmp b/apps/plugins/bitmaps/native/bubbles_right.220x176x16.bmp new file mode 100755 index 0000000000..c0d8bef8ab Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_right.220x176x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_right.240x320x16.bmp b/apps/plugins/bitmaps/native/bubbles_right.240x320x16.bmp new file mode 100755 index 0000000000..7f08389cc0 Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_right.240x320x16.bmp differ diff --git a/apps/plugins/bitmaps/native/bubbles_right.320x240x16.bmp b/apps/plugins/bitmaps/native/bubbles_right.320x240x16.bmp new file mode 100755 index 0000000000..5872fdc8ec Binary files /dev/null and b/apps/plugins/bitmaps/native/bubbles_right.320x240x16.bmp differ -- cgit v1.2.3