summaryrefslogtreecommitdiff
path: root/apps/plugins/bitmaps
diff options
context:
space:
mode:
authorSebastian Leonhardt <sebastian.leonhardt@web.de>2014-05-24 23:37:57 +0200
committerSzymon Dziok <b0hoon@o2.pl>2014-05-27 20:14:23 +0200
commit148e0ab4162c7a441fbd99b9524c2a2542be8103 (patch)
tree467914caf75a729d1f2351194418acf81b81ff41 /apps/plugins/bitmaps
parenteb7e70950e864ae17636db1464f999fca179ec76 (diff)
downloadrockbox-148e0ab4162c7a441fbd99b9524c2a2542be8103.tar.gz
rockbox-148e0ab4162c7a441fbd99b9524c2a2542be8103.zip
YH820: game fix and improvements
* sudoku: make colour icons (without screen was squeezed) * jewels: add colour bitmaps * pegbox: make game fit on screen (add small header bitmap), improve keymap I left the original pegbox keymaps for samsung's YH-92x, because they seem to make some sense there (YH92x has a REC switch instead of pushbutton). Someone with a YH9xx target has to check what is better... Change-Id: Id388c9d69e4a5a1d8ad4c3d7a05cdfc1dff0d06c Reviewed-on: http://gerrit.rockbox.org/816 Reviewed-by: Szymon Dziok <b0hoon@o2.pl> Tested: Szymon Dziok <b0hoon@o2.pl>
Diffstat (limited to 'apps/plugins/bitmaps')
-rw-r--r--apps/plugins/bitmaps/native/SOURCES16
-rw-r--r--apps/plugins/bitmaps/native/jewels.128x96x16.bmpbin0 -> 9990 bytes
-rw-r--r--apps/plugins/bitmaps/native/pegbox_header.128x16x16.bmpbin0 -> 3126 bytes
-rw-r--r--apps/plugins/bitmaps/native/sudoku_inverse.128x96x16.bmpbin0 -> 1198 bytes
-rw-r--r--apps/plugins/bitmaps/native/sudoku_normal.128x96x16.bmpbin0 -> 1198 bytes
-rw-r--r--apps/plugins/bitmaps/native/sudoku_start.128x96x16.bmpbin0 -> 1198 bytes
6 files changed, 13 insertions, 3 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES
index c91d694aea..6197f168e7 100644
--- a/apps/plugins/bitmaps/native/SOURCES
+++ b/apps/plugins/bitmaps/native/SOURCES
@@ -411,8 +411,10 @@ jewels.128x128x16.bmp
411#elif ((LCD_WIDTH == 132) && (LCD_HEIGHT == 80)) || \ 411#elif ((LCD_WIDTH == 132) && (LCD_HEIGHT == 80)) || \
412 ((LCD_WIDTH == 96) && (LCD_HEIGHT == 96)) 412 ((LCD_WIDTH == 96) && (LCD_HEIGHT == 96))
413jewels.132x80x16.bmp 413jewels.132x80x16.bmp
414#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96) 414#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96) && !defined(HAVE_LCD_COLOR)
415jewels.128x96x2.bmp 415jewels.128x96x2.bmp
416#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96) && defined(HAVE_LCD_COLOR)
417jewels.128x96x16.bmp
416#elif (LCD_WIDTH == 138) && (LCD_HEIGHT == 110) 418#elif (LCD_WIDTH == 138) && (LCD_HEIGHT == 110)
417jewels.138x110x2.bmp 419jewels.138x110x2.bmp
418#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && !defined(HAVE_LCD_COLOR) 420#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && !defined(HAVE_LCD_COLOR)
@@ -451,7 +453,7 @@ minesweeper_tiles.8x8x1.bmp
451 453
452/* PegBox */ 454/* PegBox */
453#ifdef HAVE_LCD_COLOR 455#ifdef HAVE_LCD_COLOR
454/* currently only LCD_WIDTH is important, e.g. Nano and e200 use the same set */ 456/* for most targets only LCD_WIDTH is important, e.g. Nano and e200 use the same set */
455#if LCD_WIDTH >= 640 457#if LCD_WIDTH >= 640
456pegbox_pieces.48x48x16.bmp 458pegbox_pieces.48x48x16.bmp
457pegbox_header.640x80x16.bmp 459pegbox_header.640x80x16.bmp
@@ -475,7 +477,11 @@ pegbox_pieces.9x9x16.bmp
475pegbox_header.22x80x16.bmp 477pegbox_header.22x80x16.bmp
476#elif LCD_WIDTH >= 128 478#elif LCD_WIDTH >= 128
477pegbox_pieces.10x10x16.bmp 479pegbox_pieces.10x10x16.bmp
480# if LCD_HEIGHT > 96
478pegbox_header.128x42x16.bmp 481pegbox_header.128x42x16.bmp
482# else
483pegbox_header.128x16x16.bmp
484# endif
479#elif LCD_WIDTH >= 96 485#elif LCD_WIDTH >= 96
480pegbox_pieces.8x8x16.bmp 486pegbox_pieces.8x8x16.bmp
481pegbox_header.96x32x16.bmp 487pegbox_header.96x32x16.bmp
@@ -745,10 +751,14 @@ star_tiles.6x7x1.bmp
745sudoku_start.112x64x1.bmp 751sudoku_start.112x64x1.bmp
746sudoku_normal.112x64x1.bmp 752sudoku_normal.112x64x1.bmp
747sudoku_inverse.112x64x1.bmp 753sudoku_inverse.112x64x1.bmp
748#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96) && (LCD_DEPTH >= 2) 754#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96) && (LCD_DEPTH == 2)
749sudoku_start.128x96x2.bmp 755sudoku_start.128x96x2.bmp
750sudoku_normal.128x96x2.bmp 756sudoku_normal.128x96x2.bmp
751sudoku_inverse.128x96x2.bmp 757sudoku_inverse.128x96x2.bmp
758#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96) && (LCD_DEPTH == 16)
759sudoku_start.128x96x16.bmp
760sudoku_normal.128x96x16.bmp
761sudoku_inverse.128x96x16.bmp
752#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 128) && (LCD_DEPTH == 2) 762#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 128) && (LCD_DEPTH == 2)
753sudoku_start.128x128x2.bmp 763sudoku_start.128x128x2.bmp
754sudoku_normal.128x128x2.bmp 764sudoku_normal.128x128x2.bmp
diff --git a/apps/plugins/bitmaps/native/jewels.128x96x16.bmp b/apps/plugins/bitmaps/native/jewels.128x96x16.bmp
new file mode 100644
index 0000000000..6d8447740f
--- /dev/null
+++ b/apps/plugins/bitmaps/native/jewels.128x96x16.bmp
Binary files differ
diff --git a/apps/plugins/bitmaps/native/pegbox_header.128x16x16.bmp b/apps/plugins/bitmaps/native/pegbox_header.128x16x16.bmp
new file mode 100644
index 0000000000..7090b80f2e
--- /dev/null
+++ b/apps/plugins/bitmaps/native/pegbox_header.128x16x16.bmp
Binary files differ
diff --git a/apps/plugins/bitmaps/native/sudoku_inverse.128x96x16.bmp b/apps/plugins/bitmaps/native/sudoku_inverse.128x96x16.bmp
new file mode 100644
index 0000000000..fc0333b7dd
--- /dev/null
+++ b/apps/plugins/bitmaps/native/sudoku_inverse.128x96x16.bmp
Binary files differ
diff --git a/apps/plugins/bitmaps/native/sudoku_normal.128x96x16.bmp b/apps/plugins/bitmaps/native/sudoku_normal.128x96x16.bmp
new file mode 100644
index 0000000000..57915dd410
--- /dev/null
+++ b/apps/plugins/bitmaps/native/sudoku_normal.128x96x16.bmp
Binary files differ
diff --git a/apps/plugins/bitmaps/native/sudoku_start.128x96x16.bmp b/apps/plugins/bitmaps/native/sudoku_start.128x96x16.bmp
new file mode 100644
index 0000000000..0ff341c828
--- /dev/null
+++ b/apps/plugins/bitmaps/native/sudoku_start.128x96x16.bmp
Binary files differ