2003-06-29 19:48:24 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2003-07-21 11:03:14 +00:00
|
|
|
* $Id$
|
2003-06-29 19:48:24 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Vicentini Martin
|
|
|
|
*
|
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.
|
2003-06-29 19:48:24 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "plugin.h"
|
|
|
|
|
2004-10-18 21:45:00 +00:00
|
|
|
/* variable button definitions */
|
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_OFF
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2005-12-14 01:31:37 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
2004-10-18 21:45:00 +00:00
|
|
|
#define PUZZLE_SHUFFLE BUTTON_F1
|
|
|
|
#define PUZZLE_PICTURE BUTTON_F2
|
|
|
|
|
2007-01-14 13:48:09 +00:00
|
|
|
#elif CONFIG_KEYPAD == ARCHOS_AV300_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_OFF
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2007-01-14 13:48:09 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_F1
|
|
|
|
#define PUZZLE_PICTURE BUTTON_F2
|
|
|
|
|
2004-10-18 21:45:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_OFF
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2005-12-14 01:31:37 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
2004-10-18 21:45:00 +00:00
|
|
|
#define PUZZLE_SHUFFLE_PICTURE_PRE BUTTON_MENU
|
|
|
|
#define PUZZLE_SHUFFLE (BUTTON_MENU | BUTTON_REPEAT)
|
|
|
|
#define PUZZLE_PICTURE (BUTTON_MENU | BUTTON_REL)
|
|
|
|
|
2005-06-29 12:47:24 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IRIVER_H300_PAD)
|
2005-02-04 12:41:09 +00:00
|
|
|
#define PUZZLE_QUIT BUTTON_OFF
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2005-12-14 01:31:37 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
2005-02-04 12:41:09 +00:00
|
|
|
#define PUZZLE_SHUFFLE BUTTON_SELECT
|
|
|
|
#define PUZZLE_PICTURE BUTTON_ON
|
2005-12-14 01:31:37 +00:00
|
|
|
|
2006-06-30 16:43:47 +00:00
|
|
|
#define PUZZLE_RC_QUIT BUTTON_RC_STOP
|
|
|
|
|
2006-02-24 20:54:09 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
|
2007-07-27 09:57:27 +00:00
|
|
|
(CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
2006-03-18 20:17:25 +00:00
|
|
|
#define PUZZLE_QUIT (BUTTON_SELECT | BUTTON_MENU)
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2006-03-18 20:17:25 +00:00
|
|
|
#define PUZZLE_UP BUTTON_MENU
|
|
|
|
#define PUZZLE_DOWN BUTTON_PLAY
|
|
|
|
#define PUZZLE_SHUFFLE (BUTTON_SELECT | BUTTON_LEFT)
|
|
|
|
#define PUZZLE_PICTURE (BUTTON_SELECT | BUTTON_RIGHT)
|
2005-12-14 01:31:37 +00:00
|
|
|
|
2007-03-16 23:02:39 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IAUDIO_X5M5_PAD)
|
2006-01-18 11:09:06 +00:00
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2006-01-18 11:09:06 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_REC
|
|
|
|
#define PUZZLE_PICTURE BUTTON_PLAY
|
|
|
|
|
2006-02-24 15:42:52 +00:00
|
|
|
#elif (CONFIG_KEYPAD == GIGABEAT_PAD)
|
2007-05-19 23:38:09 +00:00
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2006-02-24 15:42:52 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_SELECT
|
2007-05-19 23:38:09 +00:00
|
|
|
#define PUZZLE_PICTURE BUTTON_A
|
2006-02-24 15:42:52 +00:00
|
|
|
|
2007-09-20 10:49:48 +00:00
|
|
|
#elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \
|
2008-12-12 19:50:49 +00:00
|
|
|
(CONFIG_KEYPAD == SANSA_C200_PAD)
|
2006-10-26 13:38:09 +00:00
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2006-10-26 13:38:09 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_REC
|
|
|
|
#define PUZZLE_PICTURE BUTTON_SELECT
|
|
|
|
|
2009-01-04 23:33:15 +00:00
|
|
|
#elif (CONFIG_KEYPAD == SANSA_FUZE_PAD)
|
2009-04-10 17:28:26 +00:00
|
|
|
#define PUZZLE_QUIT (BUTTON_HOME|BUTTON_REPEAT)
|
2009-01-04 23:33:15 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_SELECT|BUTTON_DOWN
|
|
|
|
#define PUZZLE_PICTURE BUTTON_SELECT
|
|
|
|
|
2008-11-28 00:37:28 +00:00
|
|
|
#elif (CONFIG_KEYPAD == SANSA_CLIP_PAD)
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_HOME
|
|
|
|
#define PUZZLE_PICTURE BUTTON_SELECT
|
|
|
|
|
2008-12-12 19:50:49 +00:00
|
|
|
#elif (CONFIG_KEYPAD == SANSA_M200_PAD)
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE (BUTTON_SELECT | BUTTON_UP)
|
|
|
|
#define PUZZLE_PICTURE (BUTTON_SELECT | BUTTON_REL)
|
|
|
|
|
2006-08-03 20:17:25 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IRIVER_H10_PAD)
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2006-08-03 20:17:25 +00:00
|
|
|
#define PUZZLE_UP BUTTON_SCROLL_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_SCROLL_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_REW
|
|
|
|
#define PUZZLE_PICTURE BUTTON_PLAY
|
|
|
|
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#elif (CONFIG_KEYPAD == GIGABEAT_S_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == SAMSUNG_YPR0_PAD)
|
2008-02-17 12:23:02 +00:00
|
|
|
#define PUZZLE_QUIT BUTTON_BACK
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2008-02-17 12:23:02 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_SELECT
|
|
|
|
#define PUZZLE_PICTURE BUTTON_MENU
|
|
|
|
|
2008-03-01 22:55:09 +00:00
|
|
|
#elif (CONFIG_KEYPAD == MROBE100_PAD)
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
2008-03-22 10:24:28 +00:00
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
2008-03-01 22:55:09 +00:00
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_SELECT
|
|
|
|
#define PUZZLE_PICTURE BUTTON_DISPLAY
|
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_RC_REC
|
|
|
|
#define PUZZLE_LEFT BUTTON_RC_REW
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RC_FF
|
|
|
|
#define PUZZLE_UP BUTTON_RC_VOL_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_RC_VOL_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_RC_MODE
|
|
|
|
#define PUZZLE_PICTURE BUTTON_RC_MENU
|
|
|
|
|
2009-12-15 20:51:41 +00:00
|
|
|
#elif (CONFIG_KEYPAD == COWON_D2_PAD)
|
2008-03-22 22:03:34 +00:00
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
2008-04-27 15:30:19 +00:00
|
|
|
#define PUZZLE_QUIT_TEXT "[POWER]"
|
2008-03-22 22:03:34 +00:00
|
|
|
|
2008-12-04 21:28:56 +00:00
|
|
|
#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_BACK
|
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
2008-12-08 09:51:42 +00:00
|
|
|
#define PUZZLE_SHUFFLE BUTTON_PLAY
|
2008-12-04 21:28:56 +00:00
|
|
|
#define PUZZLE_PICTURE BUTTON_MENU
|
|
|
|
|
2009-01-24 22:41:55 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_VIEW
|
|
|
|
#define PUZZLE_PICTURE BUTTON_MENU
|
|
|
|
|
2010-11-03 02:45:53 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_HDD6330_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_NEXT
|
|
|
|
#define PUZZLE_PICTURE BUTTON_MENU
|
|
|
|
|
2009-12-09 18:20:49 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
|
|
|
#define PUZZLE_LEFT BUTTON_PREV
|
|
|
|
#define PUZZLE_RIGHT BUTTON_NEXT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_RIGHT
|
|
|
|
#define PUZZLE_PICTURE BUTTON_MENU
|
|
|
|
|
2009-08-31 21:11:32 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDAVX747_PAD || \
|
|
|
|
CONFIG_KEYPAD == ONDAVX777_PAD || \
|
|
|
|
CONFIG_KEYPAD == MROBE500_PAD
|
2009-04-07 23:41:44 +00:00
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
|
|
|
#define PUZZLE_QUIT_TEXT "[POWER]"
|
|
|
|
|
2009-08-04 03:08:32 +00:00
|
|
|
#elif (CONFIG_KEYPAD == SAMSUNG_YH_PAD)
|
|
|
|
#define PUZZLE_QUIT BUTTON_REC
|
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_REW
|
|
|
|
#define PUZZLE_PICTURE BUTTON_PLAY
|
|
|
|
|
2010-02-13 15:46:34 +00:00
|
|
|
#elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD)
|
|
|
|
#define PUZZLE_QUIT BUTTON_REC
|
|
|
|
#define PUZZLE_LEFT BUTTON_PREV
|
|
|
|
#define PUZZLE_RIGHT BUTTON_NEXT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_CANCEL
|
|
|
|
#define PUZZLE_PICTURE BUTTON_MENU
|
|
|
|
|
2010-04-26 21:40:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == MPIO_HD200_PAD
|
|
|
|
#define PUZZLE_QUIT (BUTTON_REC | BUTTON_PLAY)
|
|
|
|
#define PUZZLE_LEFT BUTTON_VOL_DOWN
|
|
|
|
#define PUZZLE_RIGHT BUTTON_VOL_UP
|
2010-11-02 10:44:34 +00:00
|
|
|
#define PUZZLE_UP BUTTON_REW
|
|
|
|
#define PUZZLE_DOWN BUTTON_FF
|
2010-04-26 21:40:00 +00:00
|
|
|
#define PUZZLE_SHUFFLE BUTTON_REC
|
|
|
|
#define PUZZLE_PICTURE BUTTON_PLAY
|
|
|
|
|
2010-11-30 10:52:14 +00:00
|
|
|
#elif CONFIG_KEYPAD == MPIO_HD300_PAD
|
2012-02-02 13:42:42 +00:00
|
|
|
#define PUZZLE_QUIT (BUTTON_MENU | BUTTON_REPEAT)
|
|
|
|
#define PUZZLE_LEFT BUTTON_FF
|
|
|
|
#define PUZZLE_RIGHT BUTTON_REW
|
|
|
|
#define PUZZLE_UP BUTTON_DOWN
|
|
|
|
#define PUZZLE_DOWN BUTTON_UP
|
2010-11-30 10:52:14 +00:00
|
|
|
#define PUZZLE_SHUFFLE BUTTON_ENTER
|
|
|
|
#define PUZZLE_PICTURE BUTTON_PLAY
|
|
|
|
|
2011-10-02 16:21:11 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_FUZEPLUS_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
2012-03-01 22:23:29 +00:00
|
|
|
#define PUZZLE_SHUFFLE BUTTON_PLAYPAUSE|BUTTON_REPEAT
|
|
|
|
#define PUZZLE_PICTURE BUTTON_SELECT|BUTTON_REPEAT
|
2011-10-02 16:21:11 +00:00
|
|
|
|
2011-11-16 14:08:01 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_CONNECT_PAD
|
|
|
|
#define PUZZLE_QUIT BUTTON_POWER
|
|
|
|
#define PUZZLE_LEFT BUTTON_LEFT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_RIGHT
|
|
|
|
#define PUZZLE_UP BUTTON_UP
|
|
|
|
#define PUZZLE_DOWN BUTTON_DOWN
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_VOL_DOWN
|
|
|
|
#define PUZZLE_PICTURE BUTTON_SELECT
|
|
|
|
|
2008-03-01 22:55:09 +00:00
|
|
|
#else
|
|
|
|
#error No keymap defined!
|
2004-10-18 21:45:00 +00:00
|
|
|
#endif
|
|
|
|
|
2008-08-23 09:46:38 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2008-04-27 15:30:19 +00:00
|
|
|
#ifndef PUZZLE_QUIT
|
|
|
|
#define PUZZLE_QUIT BUTTON_TOPLEFT
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_LEFT
|
|
|
|
#define PUZZLE_LEFT BUTTON_MIDLEFT
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_RIGHT
|
|
|
|
#define PUZZLE_RIGHT BUTTON_MIDRIGHT
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_UP
|
|
|
|
#define PUZZLE_UP BUTTON_TOPMIDDLE
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_DOWN
|
|
|
|
#define PUZZLE_DOWN BUTTON_BOTTOMMIDDLE
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_SHUFFLE
|
|
|
|
#define PUZZLE_SHUFFLE BUTTON_BOTTOMLEFT
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_PICTURE
|
|
|
|
#define PUZZLE_PICTURE BUTTON_CENTER
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_QUIT_TEXT
|
|
|
|
#define PUZZLE_QUIT_TEXT "[TOPLEFT]"
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_SHUFFLE_TEXT
|
|
|
|
#define PUZZLE_SHUFFLE_TEXT "[BOTTOMLEFT]"
|
|
|
|
#endif
|
|
|
|
#ifndef PUZZLE_PICTURE_TEXT
|
|
|
|
#define PUZZLE_PICTURE_TEXT "[CENTER]"
|
|
|
|
#endif
|
|
|
|
#endif
|
2008-01-31 18:08:22 +00:00
|
|
|
|
2009-05-20 09:47:11 +00:00
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
#include "lib/read_image.h"
|
|
|
|
#define READ_IMAGE read_image_file
|
|
|
|
#else
|
|
|
|
#define READ_IMAGE rb->read_bmp_file
|
|
|
|
#endif
|
|
|
|
|
2008-11-03 14:37:50 +00:00
|
|
|
#include "pluginbitmaps/sliding_puzzle.h"
|
2008-01-31 18:08:22 +00:00
|
|
|
#define IMAGE_WIDTH BMPWIDTH_sliding_puzzle
|
|
|
|
#define IMAGE_HEIGHT BMPHEIGHT_sliding_puzzle
|
|
|
|
#define IMAGE_SIZE IMAGE_WIDTH
|
|
|
|
|
2008-02-02 12:10:42 +00:00
|
|
|
/* use a square image, (the default Archos bitmap looks square on its display)
|
2008-01-26 00:16:06 +00:00
|
|
|
Puzzle image dimension is min(lcd_height,lcd_width)
|
2008-02-02 12:10:42 +00:00
|
|
|
4x4 is more convenient for square puzzles
|
2008-01-26 00:16:06 +00:00
|
|
|
Note: sliding_puzzle.bmp should be evenly divisible by SPOTS_X
|
|
|
|
and SPOTS_Y, otherwise lcd_bitmap_part stride won't be correct */
|
|
|
|
#define SPOTS_X 4
|
|
|
|
#define SPOTS_Y 4
|
2008-01-31 18:08:22 +00:00
|
|
|
#define SPOTS_WIDTH (IMAGE_WIDTH / SPOTS_X)
|
|
|
|
#define SPOTS_HEIGHT (IMAGE_HEIGHT / SPOTS_Y)
|
|
|
|
#define NUM_SPOTS (SPOTS_X*SPOTS_Y)
|
|
|
|
#define HOLE_ID (NUM_SPOTS)
|
2008-01-26 00:16:06 +00:00
|
|
|
#define INITIAL_HOLE (HOLE_ID-1)
|
|
|
|
|
|
|
|
enum picmodes
|
|
|
|
{
|
|
|
|
PICMODE_NUMERALS = 0,
|
|
|
|
PICMODE_INITIAL_PICTURE,
|
|
|
|
PICMODE_DEFAULT_PICTURE,
|
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
PICMODE_ALBUM_ART,
|
|
|
|
#endif
|
|
|
|
// PICMODE_RANDOM,
|
|
|
|
PICMODE_LAST_XXX /* placeholder */
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* const picmode_descriptions[] = {
|
|
|
|
"Numerals",
|
|
|
|
"Viewer Picture",
|
|
|
|
"Default Picture",
|
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
"Album Art",
|
|
|
|
#endif
|
|
|
|
"Shouldn't Get Here",
|
2003-06-29 19:48:24 +00:00
|
|
|
};
|
|
|
|
|
2008-01-26 00:16:06 +00:00
|
|
|
static int spots[NUM_SPOTS];
|
|
|
|
static int hole = INITIAL_HOLE, moves;
|
2008-02-03 14:34:37 +00:00
|
|
|
static unsigned char s[32];
|
2008-01-26 00:16:06 +00:00
|
|
|
static enum picmodes picmode = PICMODE_INITIAL_PICTURE;
|
2008-02-03 14:34:37 +00:00
|
|
|
static int num_font = FONT_UI;
|
|
|
|
static int moves_font = FONT_UI;
|
|
|
|
static int moves_y = 0;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2009-05-20 09:47:11 +00:00
|
|
|
static unsigned char *img_buf;
|
|
|
|
static size_t img_buf_len;
|
2008-01-26 00:16:06 +00:00
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
static char albumart_path[MAX_PATH+1];
|
|
|
|
#endif
|
|
|
|
static char img_buf_path[MAX_PATH+1];
|
|
|
|
|
|
|
|
static const fb_data * puzzle_bmp_ptr;
|
|
|
|
/* initial_bmp_path points to selected bitmap if this game is launched
|
|
|
|
as a viewer for a .bmp file, or NULL if game is launched regular way */
|
|
|
|
static const char * initial_bmp_path=NULL;
|
|
|
|
|
|
|
|
#ifdef HAVE_ALBUMART
|
2011-10-15 20:38:08 +00:00
|
|
|
static const char * get_albumart_bmp_path(void)
|
2008-01-26 00:16:06 +00:00
|
|
|
{
|
|
|
|
struct mp3entry* track = rb->audio_current_track();
|
|
|
|
|
|
|
|
if (!track || !track->path || track->path[0] == '\0')
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!rb->search_albumart_files(track, "", albumart_path, MAX_PATH ) )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
albumart_path[ MAX_PATH ] = '\0';
|
|
|
|
return albumart_path;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-10-15 20:38:08 +00:00
|
|
|
#if 0 /* unused */
|
|
|
|
static const char * get_random_bmp_path(void)
|
2008-01-26 00:16:06 +00:00
|
|
|
{
|
|
|
|
return(initial_bmp_path);
|
|
|
|
}
|
2011-10-15 20:38:08 +00:00
|
|
|
#endif
|
2008-01-26 00:16:06 +00:00
|
|
|
|
|
|
|
static bool load_resize_bitmap(void)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
const char * filename = NULL;
|
|
|
|
|
|
|
|
/* initially assume using the built-in default */
|
|
|
|
puzzle_bmp_ptr = sliding_puzzle;
|
|
|
|
|
|
|
|
switch( picmode ){
|
|
|
|
/* some modes don't even need to touch disk and trivially succeed */
|
|
|
|
case PICMODE_NUMERALS:
|
|
|
|
case PICMODE_DEFAULT_PICTURE:
|
|
|
|
default:
|
|
|
|
return(true);
|
|
|
|
|
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
case PICMODE_ALBUM_ART:
|
|
|
|
filename = get_albumart_bmp_path();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
case PICMODE_RANDOM:
|
|
|
|
if(NULL == (filename=get_random_bmp_path()) )
|
|
|
|
filename = initial_bmp_path;
|
|
|
|
break;
|
|
|
|
*/
|
|
|
|
case PICMODE_INITIAL_PICTURE:
|
|
|
|
filename = initial_bmp_path;
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
if( filename != NULL )
|
|
|
|
{
|
|
|
|
/* if we already loaded image before, don't touch disk */
|
|
|
|
if( 0 == rb->strcmp( filename, img_buf_path ) )
|
|
|
|
{
|
|
|
|
puzzle_bmp_ptr = (const fb_data *)img_buf;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct bitmap main_bitmap;
|
|
|
|
rb->memset(&main_bitmap,0,sizeof(struct bitmap));
|
|
|
|
main_bitmap.data = img_buf;
|
|
|
|
|
|
|
|
main_bitmap.width = IMAGE_WIDTH;
|
|
|
|
main_bitmap.height = IMAGE_HEIGHT;
|
|
|
|
|
2009-05-20 09:47:11 +00:00
|
|
|
rc = READ_IMAGE( filename, &main_bitmap,
|
|
|
|
img_buf_len,
|
|
|
|
FORMAT_NATIVE|FORMAT_RESIZE|FORMAT_DITHER,
|
|
|
|
NULL);
|
2008-01-26 00:16:06 +00:00
|
|
|
if( rc > 0 )
|
|
|
|
{
|
|
|
|
puzzle_bmp_ptr = (const fb_data *)img_buf;
|
|
|
|
rb->strcpy( img_buf_path, filename );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* something must have failed. get_albumart_bmp_path could return
|
|
|
|
NULL if albumart doesn't exist or couldn't be loaded, or
|
|
|
|
read_bmp_file could have failed. return false and caller should
|
|
|
|
try the next mode (PICMODE_DEFAULT_PICTURE and PICMODE_NUMERALS will
|
|
|
|
always succeed) */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-06-29 19:48:24 +00:00
|
|
|
/* draws a spot at the coordinates (x,y), range of p is 1-20 */
|
2003-07-21 11:03:14 +00:00
|
|
|
static void draw_spot(int p, int x, int y)
|
|
|
|
{
|
2008-02-03 14:34:37 +00:00
|
|
|
int w, h;
|
|
|
|
|
2008-01-26 00:16:06 +00:00
|
|
|
if (p == HOLE_ID)
|
|
|
|
{
|
|
|
|
#if LCD_DEPTH==1
|
|
|
|
/* the bottom-right cell of the default sliding_puzzle image is
|
|
|
|
an appropriate hole graphic */
|
|
|
|
rb->lcd_bitmap_part(sliding_puzzle, ((p-1)%SPOTS_X)*SPOTS_WIDTH,
|
2009-08-31 13:56:48 +00:00
|
|
|
((p-1)/SPOTS_X)*SPOTS_HEIGHT,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sliding_puzzle, BMPHEIGHT_sliding_puzzle),
|
2009-08-31 13:56:48 +00:00
|
|
|
x, y, SPOTS_WIDTH, SPOTS_HEIGHT);
|
2008-01-26 00:16:06 +00:00
|
|
|
#else
|
|
|
|
/* just draw a black rectangle */
|
2008-02-03 14:34:37 +00:00
|
|
|
int old_fg = rb->lcd_get_foreground();
|
|
|
|
rb->lcd_set_foreground(LCD_BLACK);
|
2008-01-26 00:16:06 +00:00
|
|
|
rb->lcd_fillrect(x,y,SPOTS_WIDTH,SPOTS_HEIGHT);
|
2010-02-28 14:56:40 +00:00
|
|
|
rb->lcd_set_foreground(LCD_WHITE);
|
|
|
|
rb->lcd_drawrect(x,y,SPOTS_WIDTH,SPOTS_HEIGHT);
|
2008-02-03 14:34:37 +00:00
|
|
|
rb->lcd_set_foreground(old_fg);
|
2008-01-26 00:16:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (picmode != PICMODE_NUMERALS)
|
|
|
|
{
|
|
|
|
rb->lcd_bitmap_part( puzzle_bmp_ptr, ((p-1)%SPOTS_X)*SPOTS_WIDTH,
|
2009-08-31 13:56:48 +00:00
|
|
|
((p-1)/SPOTS_X)*SPOTS_HEIGHT,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sliding_puzzle, BMPHEIGHT_sliding_puzzle),
|
2009-08-31 13:56:48 +00:00
|
|
|
x, y, SPOTS_WIDTH, SPOTS_HEIGHT);
|
2003-06-29 19:48:24 +00:00
|
|
|
} else {
|
2008-01-26 00:16:06 +00:00
|
|
|
rb->lcd_drawrect(x, y, SPOTS_WIDTH, SPOTS_HEIGHT);
|
2005-06-24 22:33:21 +00:00
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
2008-01-26 00:16:06 +00:00
|
|
|
rb->lcd_fillrect(x+1, y+1, SPOTS_WIDTH-2, SPOTS_HEIGHT-2);
|
2005-06-24 22:33:21 +00:00
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID);
|
2003-06-29 19:48:24 +00:00
|
|
|
rb->snprintf(s, sizeof(s), "%d", p);
|
2008-02-03 14:34:37 +00:00
|
|
|
rb->lcd_setfont(num_font);
|
|
|
|
rb->lcd_getstringsize(s, &w, &h);
|
|
|
|
rb->lcd_putsxy(x + (SPOTS_WIDTH/2) - w / 2,
|
|
|
|
y + (SPOTS_HEIGHT/2) - h / 2, s);
|
2003-06-29 19:48:24 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2003-06-29 19:48:24 +00:00
|
|
|
/* check if the puzzle is solved */
|
2003-07-21 11:03:14 +00:00
|
|
|
static bool puzzle_finished(void)
|
|
|
|
{
|
2003-06-29 19:48:24 +00:00
|
|
|
int i;
|
2008-01-26 00:16:06 +00:00
|
|
|
for (i=0; i<NUM_SPOTS; i++)
|
2003-06-29 19:48:24 +00:00
|
|
|
if (spots[i] != (i+1))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2003-06-29 19:48:24 +00:00
|
|
|
/* move a piece in any direction */
|
2003-07-21 11:03:14 +00:00
|
|
|
static void move_spot(int x, int y)
|
|
|
|
{
|
2008-02-03 14:34:37 +00:00
|
|
|
int i, w;
|
2008-01-26 00:16:06 +00:00
|
|
|
spots[hole] = spots[hole-x-SPOTS_X*y];
|
|
|
|
hole -= (x+SPOTS_X*y);
|
2003-06-29 19:48:24 +00:00
|
|
|
moves++;
|
2008-02-03 14:34:37 +00:00
|
|
|
rb->lcd_setfont(moves_font);
|
|
|
|
#if LCD_WIDTH > LCD_HEIGHT
|
2003-06-29 19:48:24 +00:00
|
|
|
rb->snprintf(s, sizeof(s), "%d", moves);
|
2008-02-03 14:34:37 +00:00
|
|
|
w = rb->lcd_getstringsize(s, NULL, NULL);
|
|
|
|
rb->lcd_putsxy((IMAGE_WIDTH+1+(LCD_WIDTH-IMAGE_WIDTH-1)/2) - w / 2,
|
|
|
|
moves_y, s);
|
2008-01-26 00:16:06 +00:00
|
|
|
#else
|
2008-02-03 14:34:37 +00:00
|
|
|
(void)w;
|
2010-08-28 21:46:45 +00:00
|
|
|
rb->lcd_putsxyf(3, moves_y, "Moves: %d", moves);
|
2008-01-26 00:16:06 +00:00
|
|
|
#endif
|
|
|
|
for(i=1;i<=4;i++)
|
|
|
|
{
|
|
|
|
draw_spot(HOLE_ID,
|
|
|
|
(hole%SPOTS_X)*SPOTS_WIDTH,
|
|
|
|
(hole/SPOTS_X)*SPOTS_HEIGHT);
|
|
|
|
draw_spot(spots[hole],
|
|
|
|
(hole%SPOTS_X)*SPOTS_WIDTH + (i*x*SPOTS_WIDTH)/5,
|
|
|
|
(hole/SPOTS_X)*SPOTS_HEIGHT + (i*y*SPOTS_HEIGHT)/5);
|
|
|
|
rb->lcd_update();
|
|
|
|
rb->sleep(HZ/50);
|
2003-06-29 19:48:24 +00:00
|
|
|
}
|
2008-01-26 00:16:06 +00:00
|
|
|
draw_spot(HOLE_ID,
|
|
|
|
(hole%SPOTS_X)*SPOTS_WIDTH,
|
|
|
|
(hole/SPOTS_X)*SPOTS_HEIGHT);
|
|
|
|
draw_spot(spots[hole],
|
|
|
|
((hole%SPOTS_X)+x)*SPOTS_WIDTH,
|
|
|
|
((hole/SPOTS_X)+y)*SPOTS_HEIGHT);
|
|
|
|
rb->lcd_update();
|
|
|
|
|
|
|
|
spots[hole] = HOLE_ID;
|
2003-06-29 19:48:24 +00:00
|
|
|
}
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2008-02-03 14:34:37 +00:00
|
|
|
static void draw_playfield(void)
|
2003-07-21 11:03:14 +00:00
|
|
|
{
|
2008-02-03 14:34:37 +00:00
|
|
|
int i, w;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2003-06-29 19:48:24 +00:00
|
|
|
rb->lcd_clear_display();
|
2008-02-03 14:34:37 +00:00
|
|
|
rb->lcd_setfont(moves_font);
|
|
|
|
#if LCD_WIDTH > LCD_HEIGHT
|
|
|
|
rb->lcd_vline(IMAGE_WIDTH, 0, LCD_HEIGHT-1);
|
|
|
|
w = rb->lcd_getstringsize("Moves", NULL, NULL);
|
|
|
|
rb->lcd_putsxy((IMAGE_WIDTH+1+(LCD_WIDTH-IMAGE_WIDTH-1)/2) - w / 2,
|
|
|
|
10, "Moves");
|
2003-06-29 19:48:24 +00:00
|
|
|
rb->snprintf(s, sizeof(s), "%d", moves);
|
2008-02-03 14:34:37 +00:00
|
|
|
w = rb->lcd_getstringsize(s, NULL, NULL);
|
|
|
|
rb->lcd_putsxy((IMAGE_WIDTH+1+(LCD_WIDTH-IMAGE_WIDTH-1)/2) - w / 2,
|
|
|
|
moves_y, s);
|
2008-01-26 00:16:06 +00:00
|
|
|
#else
|
2008-02-03 14:34:37 +00:00
|
|
|
(void)w;
|
|
|
|
rb->lcd_hline(0, LCD_WIDTH-1, IMAGE_HEIGHT);
|
2010-08-28 21:46:45 +00:00
|
|
|
rb->lcd_putsxyf(3, moves_y, "Moves: %d", moves);
|
2008-01-26 00:16:06 +00:00
|
|
|
#endif
|
|
|
|
|
2008-02-03 14:34:37 +00:00
|
|
|
/* draw spots to the lcd */
|
|
|
|
for (i=0; i<NUM_SPOTS; i++)
|
|
|
|
draw_spot(spots[i], (i%SPOTS_X)*SPOTS_WIDTH, (i/SPOTS_X)*SPOTS_HEIGHT);
|
|
|
|
|
|
|
|
rb->lcd_update();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initializes the puzzle */
|
|
|
|
static void puzzle_init(void)
|
|
|
|
{
|
|
|
|
int i, r, temp, tsp[NUM_SPOTS];
|
|
|
|
|
|
|
|
moves = 0;
|
|
|
|
|
2003-07-21 11:03:14 +00:00
|
|
|
/* shuffle spots */
|
2008-01-26 00:16:06 +00:00
|
|
|
for (i=NUM_SPOTS-1; i>=0; i--) {
|
2004-07-12 10:46:00 +00:00
|
|
|
r = (rb->rand() % (i+1));
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2003-06-29 19:48:24 +00:00
|
|
|
temp = spots[r];
|
|
|
|
spots[r] = spots[i];
|
|
|
|
spots[i] = temp;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
|
|
|
if (spots[i]==HOLE_ID)
|
2003-06-29 19:48:24 +00:00
|
|
|
hole = i;
|
|
|
|
}
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2003-07-21 11:03:14 +00:00
|
|
|
/* test if the puzzle is solvable */
|
2008-01-26 00:16:06 +00:00
|
|
|
for (i=0; i<NUM_SPOTS; i++)
|
2004-07-12 10:46:00 +00:00
|
|
|
tsp[i] = spots[i];
|
2003-06-29 19:48:24 +00:00
|
|
|
r=0;
|
2004-07-12 10:46:00 +00:00
|
|
|
|
|
|
|
/* First, check if the problem has even or odd parity,
|
|
|
|
depending on where the empty square is */
|
2008-01-26 00:16:06 +00:00
|
|
|
if ((((SPOTS_X-1)-hole%SPOTS_X) + ((SPOTS_Y-1)-hole/SPOTS_X))%2 == 1)
|
2004-07-12 10:46:00 +00:00
|
|
|
++r;
|
|
|
|
|
|
|
|
/* Now check how many swaps we need to solve it */
|
2008-01-26 00:16:06 +00:00
|
|
|
for (i=0; i<NUM_SPOTS-1; i++) {
|
2003-06-29 19:48:24 +00:00
|
|
|
while (tsp[i] != (i+1)) {
|
|
|
|
temp = tsp[i];
|
|
|
|
tsp[i] = tsp[temp-1];
|
|
|
|
tsp[temp-1] = temp;
|
|
|
|
++r;
|
|
|
|
}
|
|
|
|
}
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2003-07-21 11:03:14 +00:00
|
|
|
/* if the random puzzle isn't solvable just change two spots */
|
2003-06-29 19:48:24 +00:00
|
|
|
if (r%2 == 1) {
|
2008-01-26 00:16:06 +00:00
|
|
|
if (spots[0]!=HOLE_ID && spots[1]!=HOLE_ID) {
|
2003-06-29 19:48:24 +00:00
|
|
|
temp = spots[0];
|
|
|
|
spots[0] = spots[1];
|
|
|
|
spots[1] = temp;
|
|
|
|
} else {
|
|
|
|
temp = spots[2];
|
|
|
|
spots[2] = spots[3];
|
|
|
|
spots[3] = temp;
|
|
|
|
}
|
|
|
|
}
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2008-02-03 14:34:37 +00:00
|
|
|
draw_playfield();
|
2003-06-29 19:48:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* the main game loop */
|
2003-07-21 11:03:14 +00:00
|
|
|
static int puzzle_loop(void)
|
|
|
|
{
|
2004-10-18 21:45:00 +00:00
|
|
|
int button;
|
2011-05-01 14:44:20 +00:00
|
|
|
#if defined(PUZZLE_SHUFFLE_PICTURE_PRE)
|
2004-10-18 21:45:00 +00:00
|
|
|
int lastbutton = BUTTON_NONE;
|
2011-05-01 14:44:20 +00:00
|
|
|
#endif
|
2008-01-26 00:16:06 +00:00
|
|
|
bool load_success;
|
|
|
|
|
2003-06-29 19:48:24 +00:00
|
|
|
puzzle_init();
|
|
|
|
while(true) {
|
2004-10-18 21:45:00 +00:00
|
|
|
button = rb->button_get(true);
|
|
|
|
switch (button) {
|
2006-06-30 16:43:47 +00:00
|
|
|
#ifdef PUZZLE_RC_QUIT
|
|
|
|
case PUZZLE_RC_QUIT:
|
|
|
|
#endif
|
2004-10-18 21:45:00 +00:00
|
|
|
case PUZZLE_QUIT:
|
2003-06-29 19:48:24 +00:00
|
|
|
/* get out of here */
|
|
|
|
return PLUGIN_OK;
|
|
|
|
|
2004-10-18 21:45:00 +00:00
|
|
|
case PUZZLE_SHUFFLE:
|
|
|
|
#ifdef PUZZLE_SHUFFLE_PICTURE_PRE
|
|
|
|
if (lastbutton != PUZZLE_SHUFFLE_PICTURE_PRE)
|
|
|
|
break;
|
|
|
|
#endif
|
2003-06-29 19:48:24 +00:00
|
|
|
/* mix up the pieces */
|
|
|
|
puzzle_init();
|
|
|
|
break;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2004-10-18 21:45:00 +00:00
|
|
|
case PUZZLE_PICTURE:
|
|
|
|
#ifdef PUZZLE_SHUFFLE_PICTURE_PRE
|
|
|
|
if (lastbutton != PUZZLE_SHUFFLE_PICTURE_PRE)
|
|
|
|
break;
|
|
|
|
#endif
|
2003-06-29 19:48:24 +00:00
|
|
|
/* change picture */
|
2008-01-26 00:16:06 +00:00
|
|
|
picmode = (picmode+1)%PICMODE_LAST_XXX;
|
|
|
|
|
2008-12-26 07:03:22 +00:00
|
|
|
/* if load_resize_bitmap fails to load bitmap, try next picmode
|
|
|
|
*/
|
2008-01-26 00:16:06 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
load_success = load_resize_bitmap();
|
|
|
|
if( !load_success )
|
|
|
|
picmode = (picmode+1)%PICMODE_LAST_XXX;
|
|
|
|
}
|
|
|
|
while( !load_success );
|
|
|
|
|
|
|
|
/* tell the user what mode we picked in the end! */
|
|
|
|
rb->splash(HZ,picmode_descriptions[ picmode ] );
|
2008-02-03 14:34:37 +00:00
|
|
|
draw_playfield();
|
2003-06-29 19:48:24 +00:00
|
|
|
break;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
case PUZZLE_LEFT:
|
2008-01-26 00:16:06 +00:00
|
|
|
if ((hole%SPOTS_X)<(SPOTS_X-1) && !puzzle_finished())
|
2003-06-29 19:48:24 +00:00
|
|
|
move_spot(-1, 0);
|
|
|
|
break;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
case PUZZLE_RIGHT:
|
2008-01-26 00:16:06 +00:00
|
|
|
if ((hole%SPOTS_X)>0 && !puzzle_finished())
|
2003-06-29 19:48:24 +00:00
|
|
|
move_spot(1, 0);
|
|
|
|
break;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2005-12-14 01:31:37 +00:00
|
|
|
case PUZZLE_UP:
|
2008-01-26 00:16:06 +00:00
|
|
|
if ((hole/SPOTS_X)<(SPOTS_Y-1) && !puzzle_finished())
|
2003-06-29 19:48:24 +00:00
|
|
|
move_spot(0, -1);
|
|
|
|
break;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2005-12-14 01:31:37 +00:00
|
|
|
case PUZZLE_DOWN:
|
2008-01-26 00:16:06 +00:00
|
|
|
if ((hole/SPOTS_X)>0 && !puzzle_finished())
|
2003-06-29 19:48:24 +00:00
|
|
|
move_spot(0, 1);
|
|
|
|
break;
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2004-10-18 21:45:00 +00:00
|
|
|
default:
|
|
|
|
if (rb->default_event_handler(button) == SYS_USB_CONNECTED)
|
|
|
|
return PLUGIN_USB_CONNECTED;
|
|
|
|
break;
|
2003-06-29 19:48:24 +00:00
|
|
|
}
|
2011-05-01 14:44:20 +00:00
|
|
|
#if defined(PUZZLE_SHUFFLE_PICTURE_PRE)
|
2004-10-18 21:45:00 +00:00
|
|
|
if (button != BUTTON_NONE)
|
|
|
|
lastbutton = button;
|
2011-05-01 14:44:20 +00:00
|
|
|
#endif
|
2003-06-29 19:48:24 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2009-01-16 10:34:40 +00:00
|
|
|
enum plugin_status plugin_start(
|
2008-12-26 07:03:22 +00:00
|
|
|
const void* parameter)
|
2003-06-29 19:48:24 +00:00
|
|
|
{
|
|
|
|
int i, w, h;
|
|
|
|
|
2008-01-26 00:16:06 +00:00
|
|
|
initial_bmp_path=(const char *)parameter;
|
2009-05-20 09:47:11 +00:00
|
|
|
img_buf = rb->plugin_get_buffer(&img_buf_len);
|
2008-01-26 00:16:06 +00:00
|
|
|
picmode = PICMODE_INITIAL_PICTURE;
|
|
|
|
img_buf_path[0] = '\0';
|
|
|
|
|
|
|
|
/* If launched as a viewer, just go straight to the game without
|
|
|
|
bothering with the splash or instructions page */
|
|
|
|
if(parameter==NULL)
|
|
|
|
{
|
|
|
|
/* if not launched as a viewer, use default puzzle, and show help */
|
|
|
|
picmode = PICMODE_DEFAULT_PICTURE;
|
|
|
|
|
|
|
|
/* print title */
|
|
|
|
rb->lcd_getstringsize((unsigned char *)"Sliding Puzzle", &w, &h);
|
|
|
|
w = (w+1)/2;
|
|
|
|
h = (h+1)/2;
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->lcd_putsxy(LCD_WIDTH/2-w, (LCD_HEIGHT/2)-h,
|
|
|
|
(unsigned char *)"Sliding Puzzle");
|
|
|
|
rb->lcd_update();
|
|
|
|
rb->sleep(HZ);
|
|
|
|
|
|
|
|
/* print instructions */
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->lcd_setfont(FONT_SYSFIXED);
|
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD || CONFIG_KEYPAD == ARCHOS_AV300_PAD
|
|
|
|
rb->lcd_putsxy(3, 18, "[OFF] to stop");
|
|
|
|
rb->lcd_putsxy(3, 28, "[F1] shuffle");
|
|
|
|
rb->lcd_putsxy(3, 38, "[F2] change pic");
|
2004-10-18 21:45:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
2008-01-26 00:16:06 +00:00
|
|
|
rb->lcd_putsxy(0, 18, "[OFF] to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, "[MODE..] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[MODE] change pic");
|
2006-03-18 20:17:25 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
|
2007-07-27 09:57:27 +00:00
|
|
|
(CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
2008-01-26 00:16:06 +00:00
|
|
|
rb->lcd_putsxy(0, 18, "[S-MENU] to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, "[S-LEFT] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[S-RIGHT] change pic");
|
|
|
|
#elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IRIVER_H300_PAD)
|
|
|
|
rb->lcd_putsxy(0, 18, "[STOP] to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, "[SELECT] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[PLAY] change pic");
|
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD
|
|
|
|
rb->lcd_putsxy(0, 18, "[OFF] to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, "[REC] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[PLAY] change pic");
|
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_PAD
|
2009-03-29 10:41:31 +00:00
|
|
|
rb->lcd_putsxy(0, 18, "[POWER] to stop");
|
2008-01-26 00:16:06 +00:00
|
|
|
rb->lcd_putsxy(0, 28, "[SELECT] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[A] change pic");
|
|
|
|
#elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \
|
2008-01-26 00:37:24 +00:00
|
|
|
(CONFIG_KEYPAD == SANSA_C200_PAD)
|
2008-01-26 00:16:06 +00:00
|
|
|
rb->lcd_putsxy(0, 18, "[OFF] to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, "[REC] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[SELECT] change pic");
|
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H10_PAD
|
|
|
|
rb->lcd_putsxy(0, 18, "[OFF] to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, "[REW] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[PLAY] change pic");
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_S_PAD || \
|
|
|
|
CONFIG_KEYPAD == SAMSUNG_YPR0_PAD
|
2009-03-29 10:41:31 +00:00
|
|
|
rb->lcd_putsxy(0, 18, "[BACK] to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, "[SELECT] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[MENU] change pic");
|
2008-03-23 09:21:49 +00:00
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
|
|
|
|
rb->lcd_putsxy(0, 18, "[REC] to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, "[MODE] shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, "[MENU] change pic");
|
2004-10-18 21:45:00 +00:00
|
|
|
#endif
|
2008-08-23 09:46:38 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2008-04-27 15:30:19 +00:00
|
|
|
rb->lcd_putsxy(0, 18, PUZZLE_QUIT_TEXT " to stop");
|
|
|
|
rb->lcd_putsxy(0, 28, PUZZLE_SHUFFLE_TEXT " shuffle");
|
|
|
|
rb->lcd_putsxy(0, 38, PUZZLE_PICTURE_TEXT " change pic");
|
|
|
|
#endif
|
2008-01-26 00:16:06 +00:00
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
rb->lcd_putsxy(0,48," pic->albumart->num");
|
|
|
|
#else
|
|
|
|
rb->lcd_putsxy(0,48," pic<->num");
|
|
|
|
#endif
|
|
|
|
rb->lcd_update();
|
|
|
|
rb->button_get_w_tmo(HZ*2);
|
|
|
|
}
|
|
|
|
|
|
|
|
hole = INITIAL_HOLE;
|
|
|
|
|
|
|
|
if( !load_resize_bitmap() )
|
|
|
|
{
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->splash(HZ*2,"Failed to load bitmap!");
|
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
|
|
|
|
2008-02-03 14:34:37 +00:00
|
|
|
/* Calculate possible font sizes and text positions */
|
|
|
|
rb->lcd_setfont(FONT_UI);
|
|
|
|
rb->lcd_getstringsize("15", &w, &h);
|
|
|
|
if ((w > (SPOTS_WIDTH-2)) || (h > (SPOTS_HEIGHT-2)))
|
|
|
|
num_font = FONT_SYSFIXED;
|
|
|
|
|
|
|
|
#if LCD_WIDTH > LCD_HEIGHT
|
|
|
|
rb->lcd_getstringsize("Moves", &w, &h);
|
|
|
|
if (w > (LCD_WIDTH-IMAGE_WIDTH-1))
|
|
|
|
moves_font = FONT_SYSFIXED;
|
|
|
|
rb->lcd_setfont(moves_font);
|
|
|
|
rb->lcd_getstringsize("Moves", &w, &h);
|
|
|
|
moves_y = 10 + h;
|
|
|
|
#else
|
|
|
|
rb->lcd_getstringsize("Moves: 999", &w, &h);
|
|
|
|
if ((w > LCD_WIDTH) || (h > (LCD_HEIGHT-IMAGE_HEIGHT-1)))
|
|
|
|
moves_font = FONT_SYSFIXED;
|
|
|
|
rb->lcd_setfont(moves_font);
|
|
|
|
rb->lcd_getstringsize("Moves: 999", &w, &h);
|
|
|
|
moves_y = (IMAGE_HEIGHT+1+(LCD_HEIGHT-IMAGE_HEIGHT-1)/2) - h / 2;
|
|
|
|
#endif
|
|
|
|
for (i=0; i<NUM_SPOTS; i++)
|
|
|
|
spots[i]=(i+1);
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
2008-01-26 00:16:06 +00:00
|
|
|
rb->lcd_set_background(LCD_BLACK);
|
|
|
|
rb->lcd_set_foreground(LCD_WHITE);
|
|
|
|
rb->lcd_set_backdrop(NULL);
|
2008-02-03 14:34:37 +00:00
|
|
|
#elif LCD_DEPTH > 1
|
|
|
|
rb->lcd_set_background(LCD_WHITE);
|
|
|
|
rb->lcd_set_foreground(LCD_BLACK);
|
|
|
|
rb->lcd_set_backdrop(NULL);
|
2008-01-26 00:16:06 +00:00
|
|
|
#endif
|
|
|
|
|
2008-02-03 14:34:37 +00:00
|
|
|
draw_playfield();
|
2003-06-29 19:48:24 +00:00
|
|
|
rb->sleep(HZ*2);
|
2008-01-26 00:16:06 +00:00
|
|
|
|
2003-06-29 19:48:24 +00:00
|
|
|
return puzzle_loop();
|
|
|
|
}
|