2003-06-29 16:33:04 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Eric Linenberg
|
|
|
|
* February 2003: Robert Hak performs a cleanup/rewrite/feature addition.
|
|
|
|
* Eric smiles. Bjorn cries. Linus say 'huh?'.
|
2007-06-28 20:45:00 +00:00
|
|
|
* March 2007: Sean Morrisey performs a major rewrite/feature addition.
|
2003-06-29 16:33:04 +00:00
|
|
|
*
|
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 16:33:04 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "plugin.h"
|
2007-06-28 20:45:00 +00:00
|
|
|
#include "lib/playback_control.h"
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2010-08-24 14:30:46 +00:00
|
|
|
|
2006-01-15 18:20:18 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_TITLE "Sokoban"
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-08-06 13:42:52 +00:00
|
|
|
#define SOKOBAN_LEVELS_FILE PLUGIN_GAMES_DIR "/sokoban.levels"
|
2011-03-02 23:43:54 +00:00
|
|
|
#define SOKOBAN_SAVE_FILE PLUGIN_GAMES_DATA_DIR "/sokoban.save"
|
|
|
|
|
|
|
|
#ifdef APPLICATION
|
|
|
|
#define SOKOBAN_SAVE_FOLDER PLUGIN_GAMES_DATA_DIR
|
|
|
|
#else
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_SAVE_FOLDER "/games"
|
2011-03-02 23:43:54 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2008-11-03 14:37:50 +00:00
|
|
|
#include "pluginbitmaps/sokoban_tiles.h"
|
2008-05-18 13:05:45 +00:00
|
|
|
#define SOKOBAN_TILESIZE BMPWIDTH_sokoban_tiles
|
2008-11-20 11:27:31 +00:00
|
|
|
|
|
|
|
/* If tilesize is 0 (which it is during dependency generation) gcc will abort
|
|
|
|
(div by 0) and this plugin won't get any dependencies
|
|
|
|
*/
|
|
|
|
#if SOKOBAN_TILESIZE < 1
|
|
|
|
#define SOKOBAN_TILESIZE 10
|
|
|
|
#endif
|
|
|
|
|
2008-05-18 13:05:45 +00:00
|
|
|
/* SOKOBAN_TILESIZE is the number of pixels for each block.
|
2007-06-28 20:45:00 +00:00
|
|
|
* Set dynamically so all targets can support levels
|
|
|
|
* that fill their entire screen, less the stat box.
|
|
|
|
* 16 rows & 20 cols minimum */
|
2008-05-18 13:05:45 +00:00
|
|
|
#if LCD_WIDTH > LCD_HEIGHT /* horizontal layout*/
|
|
|
|
#define ROWS (LCD_HEIGHT/SOKOBAN_TILESIZE)
|
|
|
|
#if (LCD_WIDTH+4) >= (20*SOKOBAN_TILESIZE+40) /* wide or narrow stats box */
|
|
|
|
#define COLS ((LCD_WIDTH-40)/SOKOBAN_TILESIZE)
|
2007-02-13 06:48:10 +00:00
|
|
|
#else
|
2008-05-18 13:05:45 +00:00
|
|
|
#define COLS ((LCD_WIDTH-32)/SOKOBAN_TILESIZE)
|
|
|
|
#endif
|
|
|
|
#else /* vertical layout*/
|
|
|
|
#define ROWS ((LCD_HEIGHT-25)/SOKOBAN_TILESIZE)
|
|
|
|
#define COLS (LCD_WIDTH/SOKOBAN_TILESIZE)
|
2007-02-13 06:48:10 +00:00
|
|
|
#endif
|
2007-06-28 20:45:00 +00:00
|
|
|
|
2010-05-18 12:46:53 +00:00
|
|
|
/* size of code+bss */
|
|
|
|
#if CONFIG_CPU == SH7034
|
|
|
|
#define CODE_SIZE 0x3000 /* 12k */
|
|
|
|
#else
|
|
|
|
#define CODE_SIZE 0x5000 /* 20k */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CODE_AND_UNDO_SIZE (CODE_SIZE+0x1000) /* + 4k */
|
|
|
|
|
|
|
|
/* Use either all but code & undo of the plugin buffer for level data
|
2007-06-28 20:45:00 +00:00
|
|
|
* or 128k, which ever is less */
|
2010-05-18 12:46:53 +00:00
|
|
|
#if PLUGIN_BUFFER_SIZE - CODE_AND_UNDO_SIZE < 0x20000
|
|
|
|
#define MAX_LEVEL_DATA (PLUGIN_BUFFER_SIZE - CODE_AND_UNDO_SIZE)
|
2007-06-28 20:45:00 +00:00
|
|
|
#else
|
|
|
|
#define MAX_LEVEL_DATA 0x20000
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Number of levels for which to allocate buffer indexes */
|
|
|
|
#define MAX_LEVELS MAX_LEVEL_DATA/70
|
|
|
|
|
2010-05-18 12:46:53 +00:00
|
|
|
/* Use remaining plugin buffer (- code prog) for undo, up to 64k */
|
|
|
|
#if PLUGIN_BUFFER_SIZE - MAX_LEVEL_DATA - CODE_SIZE > 0x10000
|
2007-06-28 20:45:00 +00:00
|
|
|
#define MAX_UNDOS 0x10000
|
2007-02-13 06:48:10 +00:00
|
|
|
#else
|
2010-05-18 12:46:53 +00:00
|
|
|
#define MAX_UNDOS (PLUGIN_BUFFER_SIZE - MAX_LEVEL_DATA - CODE_SIZE)
|
2007-02-13 06:48:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Move/push definitions for undo */
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_PUSH_LEFT 'L'
|
|
|
|
#define SOKOBAN_PUSH_RIGHT 'R'
|
|
|
|
#define SOKOBAN_PUSH_UP 'U'
|
|
|
|
#define SOKOBAN_PUSH_DOWN 'D'
|
|
|
|
#define SOKOBAN_MOVE_LEFT 'l'
|
|
|
|
#define SOKOBAN_MOVE_RIGHT 'r'
|
|
|
|
#define SOKOBAN_MOVE_UP 'u'
|
|
|
|
#define SOKOBAN_MOVE_DOWN 'd'
|
|
|
|
|
|
|
|
#define SOKOBAN_MOVE_DIFF (SOKOBAN_MOVE_LEFT-SOKOBAN_PUSH_LEFT)
|
|
|
|
#define SOKOBAN_MOVE_MIN SOKOBAN_MOVE_DOWN
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2004-10-18 21:45:00 +00:00
|
|
|
/* variable button definitions */
|
2007-06-28 20:45:00 +00:00
|
|
|
#if (CONFIG_KEYPAD == RECORDER_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == ARCHOS_AV300_PAD)
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2005-12-14 01:31:37 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_OFF
|
2004-10-18 21:45:00 +00:00
|
|
|
#define SOKOBAN_UNDO BUTTON_ON
|
2007-02-13 06:48:10 +00:00
|
|
|
#define SOKOBAN_REDO BUTTON_PLAY
|
2004-10-18 21:45:00 +00:00
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_F1
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_F2
|
2007-01-14 13:48:09 +00:00
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_F3
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
2007-06-28 20:45:00 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_ON
|
|
|
|
#define BUTTON_SAVE_NAME "ON"
|
2007-01-14 13:48:09 +00:00
|
|
|
|
2004-10-18 21:45:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2005-12-14 01:31:37 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_OFF
|
2004-10-18 21:45:00 +00:00
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_MENU
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_MENU | BUTTON_REL)
|
2007-02-13 06:48:10 +00:00
|
|
|
#define SOKOBAN_REDO (BUTTON_MENU | BUTTON_DOWN)
|
2004-10-18 21:45:00 +00:00
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_MENU | BUTTON_LEFT)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_MENU | BUTTON_UP)
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_MENU | BUTTON_RIGHT)
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_MENU
|
2007-06-28 20:45:00 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_MENU
|
|
|
|
#define BUTTON_SAVE_NAME "MENU"
|
2004-10-18 21:45:00 +00:00
|
|
|
|
2005-06-29 12:47:24 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IRIVER_H300_PAD)
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2005-12-14 01:31:37 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_OFF
|
2007-02-13 06:48:10 +00:00
|
|
|
#define SOKOBAN_UNDO BUTTON_REC
|
|
|
|
#define SOKOBAN_REDO BUTTON_MODE
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_ON | BUTTON_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_ON
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_ON | BUTTON_UP)
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_ON
|
2007-06-28 20:45:00 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_MODE
|
|
|
|
#define BUTTON_SAVE_NAME "MODE"
|
2005-12-14 01:31:37 +00:00
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_RC_MENU BUTTON_RC_STOP
|
2006-06-30 16:43:47 +00:00
|
|
|
|
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)
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2005-12-14 01:31:37 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_MENU
|
|
|
|
#define SOKOBAN_DOWN BUTTON_PLAY
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_MENU (BUTTON_SELECT | BUTTON_MENU)
|
2005-12-14 01:31:37 +00:00
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_SELECT
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_SELECT | BUTTON_REL)
|
2007-02-13 06:48:10 +00:00
|
|
|
#define SOKOBAN_REDO (BUTTON_SELECT | BUTTON_PLAY)
|
2005-12-14 01:31:37 +00:00
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_SELECT | BUTTON_LEFT)
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_SELECT | BUTTON_RIGHT)
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
2007-06-28 20:45:00 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
2005-12-14 01:31:37 +00:00
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
/* FIXME: if/when simultaneous button presses work for X5/M5,
|
|
|
|
* add level up/down */
|
2007-06-28 20:45:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2006-01-18 11:09:06 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
2006-02-24 15:06:25 +00:00
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_SELECT
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_SELECT | BUTTON_REL)
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_REC
|
|
|
|
#define SOKOBAN_REDO BUTTON_PLAY
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
2007-06-28 20:45:00 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
2006-01-18 11:09:06 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H10_PAD
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_SCROLL_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_SCROLL_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_REW
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_REW | BUTTON_REL)
|
|
|
|
#define SOKOBAN_REDO BUTTON_FF
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_PLAY | BUTTON_SCROLL_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_PLAY | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_PLAY | BUTTON_SCROLL_UP)
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
2007-06-28 20:45:00 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE_NAME "PLAY"
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_PAD
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2006-02-24 15:42:52 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
2007-02-13 06:48:10 +00:00
|
|
|
#define SOKOBAN_UNDO BUTTON_SELECT
|
2007-05-19 23:38:09 +00:00
|
|
|
#define SOKOBAN_REDO BUTTON_A
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
2007-02-13 06:48:10 +00:00
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_MENU
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
2007-06-28 20:45:00 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
2006-02-24 15:42:52 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_E200_PAD
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2006-10-26 13:38:09 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
2006-10-26 13:38:09 +00:00
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_SELECT
|
2007-02-13 06:48:10 +00:00
|
|
|
#define SOKOBAN_UNDO (BUTTON_SELECT | BUTTON_REL)
|
|
|
|
#define SOKOBAN_REDO BUTTON_REC
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_SELECT | BUTTON_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_SELECT | BUTTON_RIGHT)
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_SELECT | BUTTON_UP)
|
2007-06-29 19:52:13 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
2007-06-28 20:45:00 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
2006-08-03 20:17:25 +00:00
|
|
|
|
2009-01-04 23:33:15 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_FUZE_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2009-04-10 17:28:26 +00:00
|
|
|
#define SOKOBAN_MENU (BUTTON_HOME|BUTTON_REPEAT)
|
2009-01-04 23:33:15 +00:00
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_SELECT
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_SELECT | BUTTON_REL)
|
|
|
|
#define SOKOBAN_REDO (BUTTON_SELECT | BUTTON_LEFT)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_SELECT | BUTTON_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_SELECT | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_SELECT | BUTTON_UP)
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
|
|
|
|
2008-05-18 13:05:45 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_C200_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_SELECT
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_SELECT | BUTTON_REL)
|
|
|
|
#define SOKOBAN_REDO BUTTON_REC
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_SELECT | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
|
|
|
|
2008-11-28 00:37:28 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_CLIP_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_SELECT
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_SELECT | BUTTON_REL)
|
|
|
|
#define SOKOBAN_REDO BUTTON_HOME
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_SELECT | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
|
|
|
|
2008-12-12 19:50:49 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_M200_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_SELECT
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_SELECT | BUTTON_REL)
|
|
|
|
#define SOKOBAN_REDO (BUTTON_SELECT | BUTTON_UP)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_SELECT | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
|
|
|
|
2008-02-17 12:23:02 +00:00
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_S_PAD
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2008-02-17 12:23:02 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_UNDO BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_REDO BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_PREV
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_PLAY
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_NEXT
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
|
|
|
|
2008-03-01 22:55:09 +00:00
|
|
|
#elif CONFIG_KEYPAD == MROBE100_PAD
|
2008-03-22 10:24:28 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
2008-03-01 22:55:09 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO BUTTON_SELECT
|
|
|
|
#define SOKOBAN_REDO BUTTON_MENU
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_DISPLAY | BUTTON_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_DISPLAY | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_DISPLAY | BUTTON_UP)
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_RC_REW
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RC_FF
|
|
|
|
#define SOKOBAN_UP BUTTON_RC_VOL_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_RC_VOL_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_RC_REC
|
|
|
|
#define SOKOBAN_UNDO BUTTON_RC_MODE
|
|
|
|
#define SOKOBAN_REDO BUTTON_RC_MENU
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_RC_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_RC_PLAY
|
|
|
|
#define BUTTON_SAVE_NAME "PLAY"
|
|
|
|
|
|
|
|
#define SOKOBAN_RC_MENU BUTTON_REC
|
|
|
|
|
2009-12-15 20:51:41 +00:00
|
|
|
#elif CONFIG_KEYPAD == COWON_D2_PAD
|
2008-03-22 22:03:34 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
2009-12-12 21:34:21 +00:00
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_MINUS
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_PLUS
|
2008-04-27 15:30:19 +00:00
|
|
|
#define SOKOBAN_MENU_NAME "[MENU]"
|
2008-03-22 22:03:34 +00:00
|
|
|
|
2008-10-07 16:38:28 +00:00
|
|
|
#elif CONFIG_KEYPAD == IAUDIO67_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_STOP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_PLAY
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_UNDO BUTTON_VOLDOWN
|
|
|
|
#define SOKOBAN_REDO BUTTON_VOLUP
|
|
|
|
#define SOKOBAN_PAUSE (BUTTON_MENU|BUTTON_LEFT)
|
|
|
|
#define BUTTON_SAVE (BUTTON_MENU|BUTTON_PLAY)
|
|
|
|
#define BUTTON_SAVE_NAME "MENU+PLAY"
|
|
|
|
|
|
|
|
#define SOKOBAN_RC_MENU (BUTTON_MENU|BUTTON_STOP)
|
|
|
|
|
2008-12-04 21:28:56 +00:00
|
|
|
#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_UNDO BUTTON_BACK
|
|
|
|
#define SOKOBAN_REDO (BUTTON_BACK | BUTTON_PLAY)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_SELECT | BUTTON_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_SELECT | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_SELECT | BUTTON_UP)
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_CUSTOM
|
|
|
|
#define BUTTON_SAVE_NAME "CUSTOM"
|
|
|
|
|
2014-03-21 21:16:02 +00:00
|
|
|
#elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_BACK
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_MENU
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_PLAY | BUTTON_BACK)
|
|
|
|
#define SOKOBAN_REDO (BUTTON_PLAY | BUTTON_MENU)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_PLAY | BUTTON_POWER)
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE_NAME "PLAY"
|
2014-06-30 18:24:15 +00:00
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == SONY_NWZ_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO BUTTON_BACK
|
|
|
|
#define SOKOBAN_REDO BUTTON_NONE
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE_NAME "Play"
|
2014-07-17 08:40:17 +00:00
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == CREATIVE_ZEN_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_UNDO BUTTON_BACK
|
|
|
|
#define SOKOBAN_REDO BUTTON_SHORTCUT
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAYPAUSE
|
|
|
|
#define BUTTON_SAVE BUTTON_PLAYPAUSE
|
|
|
|
#define BUTTON_SAVE_NAME "Play/pause"
|
2014-03-21 21:16:02 +00:00
|
|
|
|
2018-03-02 20:53:55 +00:00
|
|
|
#elif CONFIG_KEYPAD == AGPTEK_ROCKER_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO BUTTON_VOLUP
|
|
|
|
#define SOKOBAN_REDO BUTTON_VOLDOWN
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "Select"
|
|
|
|
|
2009-01-24 22:41:55 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_UNDO BUTTON_VIEW
|
|
|
|
#define SOKOBAN_REDO (BUTTON_SELECT | BUTTON_VIEW)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_POWER
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_PLAYLIST
|
|
|
|
#define BUTTON_SAVE_NAME "PLAYLIST"
|
|
|
|
|
2010-11-02 20:09:02 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_HDD6330_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
2010-11-03 03:23:14 +00:00
|
|
|
#define SOKOBAN_UNDO BUTTON_PREV
|
2010-11-02 20:09:02 +00:00
|
|
|
#define SOKOBAN_REDO (BUTTON_PLAY | BUTTON_PREV)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_POWER
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
2010-11-03 03:00:18 +00:00
|
|
|
#define BUTTON_SAVE BUTTON_NEXT
|
|
|
|
#define BUTTON_SAVE_NAME "NEXT"
|
2010-11-02 20:09:02 +00:00
|
|
|
|
2009-12-03 23:13:45 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_PREV
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_NEXT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_UNDO BUTTON_LEFT
|
|
|
|
#define SOKOBAN_REDO (BUTTON_LEFT | BUTTON_PLAY)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_POWER
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_RIGHT
|
|
|
|
#define BUTTON_SAVE_NAME "RIGHT"
|
|
|
|
|
2009-04-07 23:41:44 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDAVX747_PAD
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_MENU_NAME "[MENU]"
|
|
|
|
|
2009-08-31 21:11:32 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDAVX777_PAD
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_MENU_NAME "[POWER]"
|
|
|
|
|
2009-04-21 04:24:16 +00:00
|
|
|
#elif CONFIG_KEYPAD == MROBE500_PAD
|
|
|
|
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_MENU_NAME "[POWER]"
|
|
|
|
|
2015-07-19 23:50:26 +00:00
|
|
|
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
|
2009-08-04 03:08:32 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2015-07-19 23:50:26 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_PLAY
|
|
|
|
#define SOKOBAN_UNDO BUTTON_REW
|
|
|
|
#define SOKOBAN_REDO BUTTON_FFWD
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_REC | BUTTON_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_REC | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_REC | BUTTON_UP)
|
|
|
|
#define SOKOBAN_QUIT_REPLAY BUTTON_REW
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE_NAME "PLAY"
|
|
|
|
|
2016-01-23 14:54:08 +00:00
|
|
|
#elif CONFIG_KEYPAD == SAMSUNG_YH92X_PAD
|
2015-07-19 23:50:26 +00:00
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2015-12-27 17:14:41 +00:00
|
|
|
#define SOKOBAN_MENU_PRE BUTTON_PLAY
|
|
|
|
#define SOKOBAN_MENU (BUTTON_PLAY | BUTTON_REL)
|
2014-10-15 12:25:28 +00:00
|
|
|
#define SOKOBAN_UNDO BUTTON_REW
|
2009-08-04 03:08:32 +00:00
|
|
|
#define SOKOBAN_REDO BUTTON_FFWD
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_PLAY | BUTTON_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_PLAY | BUTTON_RIGHT)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_PLAY | BUTTON_UP)
|
2015-07-19 23:50:26 +00:00
|
|
|
#define SOKOBAN_QUIT_REPLAY BUTTON_REW
|
2009-08-04 03:08:32 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE_NAME "PLAY"
|
|
|
|
|
2010-02-13 15:46:34 +00:00
|
|
|
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_PREV
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_NEXT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_REC
|
|
|
|
#define SOKOBAN_UNDO BUTTON_CANCEL
|
|
|
|
#define SOKOBAN_REDO BUTTON_OK
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_OK | BUTTON_PREV)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_OK | BUTTON_CANCEL)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_OK | BUTTON_NEXT)
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_MENU
|
|
|
|
#define BUTTON_SAVE_NAME "MENU"
|
|
|
|
|
2010-04-26 21:40:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == MPIO_HD200_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_VOL_UP
|
2010-11-02 10:44:34 +00:00
|
|
|
#define SOKOBAN_UP BUTTON_REW
|
|
|
|
#define SOKOBAN_DOWN BUTTON_FF
|
|
|
|
#define SOKOBAN_MENU BUTTON_FUNC
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_PLAY | BUTTON_REW)
|
|
|
|
#define SOKOBAN_REDO (BUTTON_PLAY | BUTTON_FF)
|
2010-04-26 21:40:00 +00:00
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_PLAY | BUTTON_VOL_DOWN)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_REC
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_PLAY | BUTTON_VOL_UP)
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
2010-11-02 10:44:34 +00:00
|
|
|
#define BUTTON_SAVE (BUTTON_PLAY|BUTTON_FUNC)
|
|
|
|
#define BUTTON_SAVE_NAME "PLAY+FUNC"
|
2010-04-26 21:40:00 +00:00
|
|
|
|
2010-11-30 10:52:14 +00:00
|
|
|
#elif CONFIG_KEYPAD == MPIO_HD300_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_REW
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_FF
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2012-02-02 13:42:42 +00:00
|
|
|
#define SOKOBAN_MENU (BUTTON_MENU | BUTTON_REPEAT)
|
|
|
|
#define SOKOBAN_UNDO BUTTON_REC
|
|
|
|
#define SOKOBAN_REDO BUTTON_PLAY
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_PLAY | BUTTON_REW)
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_PLAY | BUTTON_ENTER)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_PLAY | BUTTON_FF)
|
2010-11-30 10:52:14 +00:00
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
2012-02-02 13:42:42 +00:00
|
|
|
#define BUTTON_SAVE (BUTTON_ENTER | BUTTON_REL)
|
|
|
|
#define BUTTON_SAVE_NAME "ENTER"
|
2010-11-30 10:52:14 +00:00
|
|
|
|
2011-10-02 16:51:27 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_FUZEPLUS_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
2012-03-01 22:23:29 +00:00
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_BOTTOMLEFT
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_BOTTOMLEFT|BUTTON_REL)
|
|
|
|
#define SOKOBAN_REDO_PRE BUTTON_BOTTOMRIGHT
|
|
|
|
#define SOKOBAN_REDO (BUTTON_BOTTOMRIGHT|BUTTON_REL)
|
2012-01-15 01:28:10 +00:00
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_BACK
|
2012-03-01 22:23:29 +00:00
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
2011-10-02 16:51:27 +00:00
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAYPAUSE
|
|
|
|
#define BUTTON_SAVE (BUTTON_SELECT|BUTTON_REPEAT)
|
2012-03-01 22:23:29 +00:00
|
|
|
#define BUTTON_SAVE_NAME "SELECT LONG"
|
2011-10-02 16:51:27 +00:00
|
|
|
|
2011-11-16 14:08:01 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_CONNECT_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO BUTTON_PREV
|
|
|
|
#define SOKOBAN_REDO BUTTON_NEXT
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_NEXT|BUTTON_PREV)
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE (BUTTON_SELECT|BUTTON_REPEAT)
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT LONG"
|
|
|
|
|
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 == SAMSUNG_YPR0_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_UNDO BUTTON_BACK
|
|
|
|
#define SOKOBAN_REDO BUTTON_USER
|
|
|
|
//#define SOKOBAN_LEVEL_DOWN (BUTTON_POWER|BUTTON_REL)
|
|
|
|
//#define SOKOBAN_LEVEL_REPEAT (BUTTON_CENTER|BUTTON_REPEAT)
|
|
|
|
//#define SOKOBAN_LEVEL_UP (BUTTON_MENU|BUTTON_REPEAT)
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE BUTTON_SELECT
|
|
|
|
#define BUTTON_SAVE_NAME "SELECT"
|
|
|
|
|
2012-03-23 18:32:50 +00:00
|
|
|
#elif CONFIG_KEYPAD == HM60X_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO BUTTON_SELECT
|
|
|
|
#define SOKOBAN_REDO (BUTTON_SELECT|BUTTON_POWER)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN (BUTTON_DOWN|BUTTON_POWER)
|
|
|
|
#define SOKOBAN_LEVEL_UP (BUTTON_UP | BUTTON_POWER)
|
|
|
|
#define SOKOBAN_PAUSE (BUTTON_RIGHT|BUTTON_POWER)
|
|
|
|
#define BUTTON_SAVE (BUTTON_LEFT|BUTTON_POWER)
|
|
|
|
#define BUTTON_SAVE_NAME "LEFT + POWER"
|
|
|
|
|
2012-04-06 16:17:27 +00:00
|
|
|
#elif CONFIG_KEYPAD == HM801_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_LEFT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_UP BUTTON_UP
|
|
|
|
#define SOKOBAN_DOWN BUTTON_DOWN
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO BUTTON_SELECT
|
|
|
|
#define SOKOBAN_REDO (BUTTON_POWER | BUTTON_SELECT)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_PREV
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_NEXT
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE (BUTTON_POWER | BUTTON_PLAY)
|
|
|
|
#define BUTTON_SAVE_NAME "POWER + PLAY"
|
|
|
|
|
2014-08-30 11:15:53 +00:00
|
|
|
#elif CONFIG_KEYPAD == DX50_PAD
|
|
|
|
#define SOKOBAN_MENU (BUTTON_POWER|BUTTON_REL)
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_LEFT
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_RIGHT
|
|
|
|
#define SOKOBAN_MENU_NAME "Power"
|
|
|
|
#define SOKOBAN_PAUSE_NAME "Play"
|
|
|
|
|
2018-02-22 22:42:29 +00:00
|
|
|
#elif CONFIG_KEYPAD == CREATIVE_ZENXFI2_PAD
|
|
|
|
#define SOKOBAN_MENU BUTTON_MENU
|
|
|
|
#define SOKOBAN_MENU_NAME "[MENU]"
|
|
|
|
|
2018-06-28 10:24:26 +00:00
|
|
|
#elif CONFIG_KEYPAD == XDUOO_X3_PAD
|
|
|
|
#define SOKOBAN_LEFT BUTTON_PREV
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_NEXT
|
|
|
|
#define SOKOBAN_UP BUTTON_HOME
|
|
|
|
#define SOKOBAN_DOWN BUTTON_OPTION
|
|
|
|
#define SOKOBAN_MENU BUTTON_POWER
|
|
|
|
#define SOKOBAN_UNDO_PRE BUTTON_PLAY
|
|
|
|
#define SOKOBAN_UNDO (BUTTON_PLAY | BUTTON_REL)
|
|
|
|
#define SOKOBAN_REDO (BUTTON_POWER | BUTTON_PLAY)
|
|
|
|
#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT (BUTTON_PLAY | BUTTON_NEXT)
|
|
|
|
#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE BUTTON_PLAY
|
|
|
|
#define BUTTON_SAVE_NAME "PLAY"
|
|
|
|
|
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 SOKOBAN_LEFT
|
|
|
|
#define SOKOBAN_LEFT BUTTON_MIDLEFT
|
|
|
|
#endif
|
|
|
|
#ifndef SOKOBAN_RIGHT
|
|
|
|
#define SOKOBAN_RIGHT BUTTON_MIDRIGHT
|
|
|
|
#endif
|
|
|
|
#ifndef SOKOBAN_UP
|
|
|
|
#define SOKOBAN_UP BUTTON_TOPMIDDLE
|
|
|
|
#endif
|
|
|
|
#ifndef SOKOBAN_DOWN
|
|
|
|
#define SOKOBAN_DOWN BUTTON_BOTTOMMIDDLE
|
|
|
|
#endif
|
|
|
|
#ifndef SOKOBAN_MENU
|
|
|
|
#define SOKOBAN_MENU BUTTON_TOPLEFT
|
|
|
|
#define SOKOBAN_MENU_NAME "[TOPLEFT]"
|
|
|
|
#endif
|
|
|
|
#ifndef SOKOBAN_UNDO
|
|
|
|
#define SOKOBAN_UNDO BUTTON_BOTTOMRIGHT
|
|
|
|
#define SOKOBAN_UNDO_NAME "[BOTTOMRIGHT]"
|
|
|
|
#endif
|
|
|
|
#ifndef SOKOBAN_REDO
|
|
|
|
#define SOKOBAN_REDO BUTTON_BOTTOMLEFT
|
|
|
|
#define SOKOBAN_REDO_NAME "[BOTTOMLEFT]"
|
|
|
|
#endif
|
|
|
|
#ifndef SOKOBAN_PAUSE
|
|
|
|
#define SOKOBAN_PAUSE BUTTON_CENTER
|
|
|
|
#define SOKOBAN_PAUSE_NAME "[CENTER]"
|
|
|
|
#endif
|
|
|
|
#ifndef SOKOBAN_LEVEL_REPEAT
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT BUTTON_TOPRIGHT
|
|
|
|
#define SOKOBAN_LEVEL_REPEAT_NAME "[TOPRIGHT]"
|
|
|
|
#endif
|
|
|
|
#ifndef BUTTON_SAVE
|
|
|
|
#define BUTTON_SAVE BUTTON_CENTER
|
|
|
|
#define BUTTON_SAVE_NAME "CENTER"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-07-19 23:50:26 +00:00
|
|
|
#ifndef SOKOBAN_QUIT_REPLAY
|
|
|
|
#define SOKOBAN_QUIT_REPLAY SOKOBAN_MENU
|
|
|
|
#endif
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
#define SOKOBAN_FONT FONT_SYSFIXED
|
2006-01-19 06:25:59 +00:00
|
|
|
|
2005-07-19 16:48:02 +00:00
|
|
|
|
2006-05-09 05:36:46 +00:00
|
|
|
/* The Location, Undo and LevelInfo structs are OO-flavored.
|
|
|
|
* (oooh!-flavored as Schnueff puts it.) It makes more you have to know,
|
2003-06-29 16:33:04 +00:00
|
|
|
* but the overall data layout becomes more manageable. */
|
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
/* Level data & stats */
|
2003-06-29 16:33:04 +00:00
|
|
|
struct LevelInfo {
|
2007-06-29 19:52:13 +00:00
|
|
|
int index; /* Level index (level number - 1) */
|
2007-06-28 20:45:00 +00:00
|
|
|
int moves; /* Moves & pushes for the stats */
|
|
|
|
int pushes;
|
|
|
|
short boxes_to_go; /* Number of unplaced boxes remaining in level */
|
|
|
|
short height; /* Height & width for centering level display */
|
|
|
|
short width;
|
2003-06-29 16:33:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Location {
|
|
|
|
short row;
|
|
|
|
short col;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Our full undo history */
|
|
|
|
static struct UndoInfo {
|
2007-06-28 20:45:00 +00:00
|
|
|
int count; /* How many undos have been done */
|
|
|
|
int current; /* Which history is the current undo */
|
|
|
|
int max; /* Which history is the max redoable */
|
2007-02-13 06:48:10 +00:00
|
|
|
char history[MAX_UNDOS];
|
2003-06-29 16:33:04 +00:00
|
|
|
} undo_info;
|
|
|
|
|
|
|
|
/* Our playing board */
|
|
|
|
static struct BoardInfo {
|
2007-06-28 20:45:00 +00:00
|
|
|
char board[ROWS][COLS]; /* The current board data */
|
|
|
|
struct LevelInfo level; /* Level data & stats */
|
|
|
|
struct Location player; /* Where the player is */
|
|
|
|
int max_level; /* The number of levels we have */
|
2003-06-29 16:33:04 +00:00
|
|
|
} current_info;
|
|
|
|
|
2006-01-19 06:25:59 +00:00
|
|
|
static struct BufferedBoards {
|
2007-06-28 20:45:00 +00:00
|
|
|
char filename[MAX_PATH]; /* Filename of the levelset we're using */
|
|
|
|
char data[MAX_LEVEL_DATA]; /* Buffered level data */
|
|
|
|
int index[MAX_LEVELS + 1]; /* Where each buffered board begins & ends */
|
|
|
|
int start; /* Index of first buffered board */
|
|
|
|
int end; /* Index of last buffered board */
|
|
|
|
short prebuffered_boards; /* Number of boards before current to store */
|
2006-01-19 06:25:59 +00:00
|
|
|
} buffered_boards;
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
static char buf[ROWS*(COLS + 1)]; /* Enough for a whole board or a filename */
|
|
|
|
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
static void init_undo(void)
|
|
|
|
{
|
|
|
|
undo_info.count = 0;
|
2007-06-28 20:45:00 +00:00
|
|
|
undo_info.current = 0;
|
|
|
|
undo_info.max = 0;
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
static void get_delta(char direction, short *d_r, short *d_c)
|
2003-06-29 16:33:04 +00:00
|
|
|
{
|
2007-02-13 06:48:10 +00:00
|
|
|
switch (direction) {
|
|
|
|
case SOKOBAN_PUSH_LEFT:
|
|
|
|
case SOKOBAN_MOVE_LEFT:
|
|
|
|
*d_r = 0;
|
|
|
|
*d_c = -1;
|
|
|
|
break;
|
|
|
|
case SOKOBAN_PUSH_RIGHT:
|
|
|
|
case SOKOBAN_MOVE_RIGHT:
|
|
|
|
*d_r = 0;
|
|
|
|
*d_c = 1;
|
|
|
|
break;
|
|
|
|
case SOKOBAN_PUSH_UP:
|
|
|
|
case SOKOBAN_MOVE_UP:
|
|
|
|
*d_r = -1;
|
|
|
|
*d_c = 0;
|
|
|
|
break;
|
|
|
|
case SOKOBAN_PUSH_DOWN:
|
|
|
|
case SOKOBAN_MOVE_DOWN:
|
|
|
|
*d_r = 1;
|
|
|
|
*d_c = 0;
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
static bool undo(void)
|
2003-06-29 16:33:04 +00:00
|
|
|
{
|
2007-02-13 06:48:10 +00:00
|
|
|
char undo;
|
|
|
|
short r, c;
|
|
|
|
short d_r = 0, d_c = 0; /* delta row & delta col */
|
|
|
|
char *space_cur, *space_next, *space_prev;
|
|
|
|
bool undo_push = false;
|
|
|
|
|
|
|
|
/* If no more undos or we've wrapped all the way around, quit */
|
2007-06-28 20:45:00 +00:00
|
|
|
if (undo_info.count == 0 || undo_info.current - 1 == undo_info.max)
|
2007-06-29 19:52:13 +00:00
|
|
|
return false;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Move to previous undo in the list */
|
|
|
|
if (undo_info.current == 0 && undo_info.count > 1)
|
|
|
|
undo_info.current = MAX_UNDOS - 1;
|
|
|
|
else
|
|
|
|
undo_info.current--;
|
|
|
|
|
|
|
|
undo_info.count--;
|
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
undo = undo_info.history[undo_info.current];
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
if (undo < SOKOBAN_MOVE_MIN)
|
|
|
|
undo_push = true;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
get_delta(undo, &d_r, &d_c);
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
r = current_info.player.row;
|
|
|
|
c = current_info.player.col;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
/* Give the 3 spaces we're going to use better names */
|
|
|
|
space_cur = ¤t_info.board[r][c];
|
|
|
|
space_next = ¤t_info.board[r + d_r][c + d_c];
|
|
|
|
space_prev = ¤t_info.board[r - d_r][c - d_c];
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
/* Update board info */
|
|
|
|
if (undo_push) {
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Moving box from goal to floor */
|
|
|
|
if (*space_next == '*' && *space_cur == '@')
|
2007-02-13 06:48:10 +00:00
|
|
|
current_info.level.boxes_to_go++;
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Moving box from floor to goal */
|
2007-02-13 06:48:10 +00:00
|
|
|
else if (*space_next == '$' && *space_cur == '+')
|
|
|
|
current_info.level.boxes_to_go--;
|
|
|
|
|
|
|
|
/* Move box off of next space... */
|
2007-06-28 20:45:00 +00:00
|
|
|
*space_next = (*space_next == '*' ? '.' : ' ');
|
2007-02-13 06:48:10 +00:00
|
|
|
/* ...and on to current space */
|
2007-06-28 20:45:00 +00:00
|
|
|
*space_cur = (*space_cur == '+' ? '*' : '$');
|
2007-02-13 06:48:10 +00:00
|
|
|
|
|
|
|
current_info.level.pushes--;
|
|
|
|
} else
|
|
|
|
/* Just move player off of current space */
|
|
|
|
*space_cur = (*space_cur == '+' ? '.' : ' ');
|
|
|
|
/* Move player back to previous space */
|
|
|
|
*space_prev = (*space_prev == '.' ? '+' : '@');
|
|
|
|
|
|
|
|
/* Update position */
|
|
|
|
current_info.player.row -= d_r;
|
|
|
|
current_info.player.col -= d_c;
|
|
|
|
|
|
|
|
current_info.level.moves--;
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
return true;
|
2007-02-13 06:48:10 +00:00
|
|
|
}
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
static void add_undo(char undo)
|
|
|
|
{
|
2007-06-28 20:45:00 +00:00
|
|
|
undo_info.history[undo_info.current] = undo;
|
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
/* Wrap around if MAX_UNDOS exceeded */
|
|
|
|
if (undo_info.current < (MAX_UNDOS - 1))
|
|
|
|
undo_info.current++;
|
|
|
|
else
|
|
|
|
undo_info.current = 0;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
if (undo_info.count < MAX_UNDOS)
|
|
|
|
undo_info.count++;
|
|
|
|
}
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
static bool move(char direction, bool redo)
|
|
|
|
{
|
|
|
|
short r, c;
|
|
|
|
short d_r = 0, d_c = 0; /* delta row & delta col */
|
|
|
|
char *space_cur, *space_next, *space_beyond;
|
|
|
|
bool push = false;
|
|
|
|
|
|
|
|
get_delta(direction, &d_r, &d_c);
|
|
|
|
|
|
|
|
r = current_info.player.row;
|
|
|
|
c = current_info.player.col;
|
|
|
|
|
|
|
|
/* Check for out-of-bounds */
|
|
|
|
if (r + 2*d_r < 0 || r + 2*d_r >= ROWS ||
|
|
|
|
c + 2*d_c < 0 || c + 2*d_c >= COLS)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Give the 3 spaces we're going to use better names */
|
|
|
|
space_cur = ¤t_info.board[r][c];
|
|
|
|
space_next = ¤t_info.board[r + d_r][c + d_c];
|
|
|
|
space_beyond = ¤t_info.board[r + 2*d_r][c + 2*d_c];
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
if (*space_next == '$' || *space_next == '*') {
|
2007-02-13 06:48:10 +00:00
|
|
|
/* Change direction from move to push for undo */
|
|
|
|
if (direction >= SOKOBAN_MOVE_MIN)
|
|
|
|
direction -= SOKOBAN_MOVE_DIFF;
|
|
|
|
push = true;
|
|
|
|
}
|
2007-06-28 20:45:00 +00:00
|
|
|
else if (direction < SOKOBAN_MOVE_MIN)
|
|
|
|
/* Change back to move if redo/solution playback push is invalid */
|
|
|
|
direction += SOKOBAN_MOVE_DIFF;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
/* Update board info */
|
|
|
|
if (push) {
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Moving box from goal to floor */
|
|
|
|
if (*space_next == '*' && *space_beyond == ' ')
|
2007-02-13 06:48:10 +00:00
|
|
|
current_info.level.boxes_to_go++;
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Moving box from floor to goal */
|
2007-02-13 06:48:10 +00:00
|
|
|
else if (*space_next == '$' && *space_beyond == '.')
|
|
|
|
current_info.level.boxes_to_go--;
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Check for invalid move */
|
2007-02-13 06:48:10 +00:00
|
|
|
else if (*space_beyond != '.' && *space_beyond != ' ')
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Move player onto next space */
|
2007-06-28 20:45:00 +00:00
|
|
|
*space_next = (*space_next == '*' ? '+' : '@');
|
2007-02-13 06:48:10 +00:00
|
|
|
/* Move box onto space beyond next */
|
2007-06-28 20:45:00 +00:00
|
|
|
*space_beyond = (*space_beyond == '.' ? '*' : '$');
|
2007-02-13 06:48:10 +00:00
|
|
|
|
|
|
|
current_info.level.pushes++;
|
|
|
|
} else {
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Check for invalid move */
|
|
|
|
if (*space_next != '.' && *space_next != ' ')
|
2007-02-13 06:48:10 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Move player onto next space */
|
|
|
|
*space_next = (*space_next == '.' ? '+' : '@');
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
2007-02-13 06:48:10 +00:00
|
|
|
/* Move player off of current space */
|
|
|
|
*space_cur = (*space_cur == '+' ? '.' : ' ');
|
|
|
|
|
|
|
|
/* Update position */
|
|
|
|
current_info.player.row += d_r;
|
|
|
|
current_info.player.col += d_c;
|
|
|
|
|
|
|
|
current_info.level.moves++;
|
|
|
|
|
|
|
|
/* Update undo_info.max to current on every normal move,
|
2007-06-28 20:45:00 +00:00
|
|
|
* except if it's the same as a redo. */
|
|
|
|
/* normal move and either */
|
2007-02-13 06:48:10 +00:00
|
|
|
if (!redo &&
|
2007-06-28 20:45:00 +00:00
|
|
|
/* moves have been undone... */
|
2007-02-13 06:48:10 +00:00
|
|
|
((undo_info.max != undo_info.current &&
|
2007-06-28 20:45:00 +00:00
|
|
|
/* ...and the current move is NOT the same as the one in history */
|
|
|
|
undo_info.history[undo_info.current] != direction) ||
|
2007-02-13 06:48:10 +00:00
|
|
|
/* or moves have not been undone */
|
|
|
|
undo_info.max == undo_info.current)) {
|
|
|
|
add_undo(direction);
|
|
|
|
undo_info.max = undo_info.current;
|
|
|
|
} else /* redo move or move was same as redo */
|
2007-06-28 20:45:00 +00:00
|
|
|
add_undo(direction); /* add_undo to update current */
|
2007-02-13 06:48:10 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
#ifdef SOKOBAN_REDO
|
|
|
|
static bool redo(void)
|
|
|
|
{
|
|
|
|
/* If no moves have been undone, quit */
|
|
|
|
if (undo_info.current == undo_info.max)
|
|
|
|
return false;
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
return move(undo_info.history[(undo_info.current < MAX_UNDOS ?
|
|
|
|
undo_info.current : 0)], true);
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
2007-02-13 06:48:10 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
static void init_boards(void)
|
|
|
|
{
|
2009-07-14 13:57:45 +00:00
|
|
|
rb->strlcpy(buffered_boards.filename, SOKOBAN_LEVELS_FILE,
|
|
|
|
sizeof(buffered_boards.filename));
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
current_info.level.index = 0;
|
2003-06-29 16:33:04 +00:00
|
|
|
current_info.player.row = 0;
|
|
|
|
current_info.player.col = 0;
|
|
|
|
current_info.max_level = 0;
|
2006-05-09 05:36:46 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
buffered_boards.start = 0;
|
|
|
|
buffered_boards.end = 0;
|
|
|
|
buffered_boards.prebuffered_boards = 0;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
init_undo();
|
|
|
|
}
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
static bool read_levels(bool initialize)
|
2003-06-29 16:33:04 +00:00
|
|
|
{
|
|
|
|
int fd = 0;
|
2007-06-28 20:45:00 +00:00
|
|
|
short len;
|
|
|
|
short lastlen = 0;
|
|
|
|
short row = 0;
|
2006-01-19 06:25:59 +00:00
|
|
|
int level_count = 0;
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
int i = 0;
|
|
|
|
int level_len = 0;
|
|
|
|
bool index_set = false;
|
2006-05-09 05:36:46 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Get the index of the first level to buffer */
|
|
|
|
if (current_info.level.index > buffered_boards.prebuffered_boards &&
|
|
|
|
!initialize)
|
|
|
|
buffered_boards.start = current_info.level.index -
|
|
|
|
buffered_boards.prebuffered_boards;
|
|
|
|
else
|
|
|
|
buffered_boards.start = 0;
|
2006-05-09 05:36:46 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
if ((fd = rb->open(buffered_boards.filename, O_RDONLY)) < 0) {
|
2008-08-15 08:27:39 +00:00
|
|
|
rb->splashf(HZ*2, "Unable to open %s", buffered_boards.filename);
|
2007-06-28 20:45:00 +00:00
|
|
|
return false;
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
2006-05-09 05:36:46 +00:00
|
|
|
|
2006-01-19 06:25:59 +00:00
|
|
|
do {
|
2007-06-28 20:45:00 +00:00
|
|
|
len = rb->read_line(fd, buf, sizeof(buf));
|
|
|
|
|
|
|
|
/* Correct len when trailing \r's or \n's are counted */
|
|
|
|
if (len > 2 && buf[len - 2] == '\0')
|
|
|
|
len -= 2;
|
|
|
|
else if (len > 1 && buf[len - 1] == '\0')
|
|
|
|
len--;
|
|
|
|
|
|
|
|
/* Skip short lines & lines with non-level data */
|
|
|
|
if (len >= 3 && ((buf[0] >= '1' && buf[0] <= '9') || buf[0] == '#' ||
|
|
|
|
buf[0] == ' ' || buf[0] == '-' || buf[0] == '_')) {
|
|
|
|
if (level_count >= buffered_boards.start) {
|
|
|
|
/* Set the index of this level */
|
|
|
|
if (!index_set &&
|
|
|
|
level_count - buffered_boards.start < MAX_LEVELS) {
|
|
|
|
buffered_boards.index[level_count - buffered_boards.start]
|
|
|
|
= i;
|
|
|
|
index_set = true;
|
|
|
|
}
|
|
|
|
/* Copy buffer to board data */
|
|
|
|
if (i + level_len + len < MAX_LEVEL_DATA) {
|
|
|
|
rb->memcpy(&buffered_boards.data[i + level_len], buf, len);
|
|
|
|
buffered_boards.data[i + level_len + len] = '\n';
|
|
|
|
}
|
2006-01-19 06:25:59 +00:00
|
|
|
}
|
2007-06-28 20:45:00 +00:00
|
|
|
level_len += len + 1;
|
2006-01-19 06:25:59 +00:00
|
|
|
row++;
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
/* If newline & level is tall enough or is RLE */
|
|
|
|
} else if (buf[0] == '\0' && (row > 2 || lastlen > 22)) {
|
|
|
|
level_count++;
|
|
|
|
if (level_count >= buffered_boards.start) {
|
|
|
|
i += level_len;
|
|
|
|
if (i < MAX_LEVEL_DATA)
|
|
|
|
buffered_boards.end = level_count;
|
|
|
|
else if (!initialize)
|
|
|
|
break;
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
2007-06-28 20:45:00 +00:00
|
|
|
row = 0;
|
|
|
|
level_len = 0;
|
|
|
|
index_set = false;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
} else if (len > 22)
|
|
|
|
len = 1;
|
|
|
|
|
|
|
|
} while ((lastlen = len));
|
|
|
|
|
|
|
|
/* Set the index of the end of the last level */
|
|
|
|
if (level_count - buffered_boards.start < MAX_LEVELS)
|
|
|
|
buffered_boards.index[level_count - buffered_boards.start] = i;
|
|
|
|
|
|
|
|
if (initialize) {
|
|
|
|
current_info.max_level = level_count;
|
|
|
|
buffered_boards.prebuffered_boards = buffered_boards.end/2;
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
rb->close(fd);
|
|
|
|
|
|
|
|
return true;
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
2006-05-09 05:36:46 +00:00
|
|
|
|
2006-01-19 06:25:59 +00:00
|
|
|
static void load_level(void)
|
2003-06-29 16:33:04 +00:00
|
|
|
{
|
2007-06-28 20:45:00 +00:00
|
|
|
int c, r;
|
|
|
|
int i, n;
|
|
|
|
int level_size;
|
|
|
|
int index = current_info.level.index - buffered_boards.start;
|
|
|
|
char *level;
|
|
|
|
|
|
|
|
/* Get the buffered board index of the current level */
|
|
|
|
if (current_info.level.index < buffered_boards.start ||
|
|
|
|
current_info.level.index >= buffered_boards.end) {
|
2006-01-19 06:25:59 +00:00
|
|
|
read_levels(false);
|
2007-06-28 20:45:00 +00:00
|
|
|
if (current_info.level.index > buffered_boards.prebuffered_boards)
|
|
|
|
index = buffered_boards.prebuffered_boards;
|
|
|
|
else
|
|
|
|
index = current_info.level.index;
|
2006-01-19 06:25:59 +00:00
|
|
|
}
|
2007-06-28 20:45:00 +00:00
|
|
|
level = &buffered_boards.data[buffered_boards.index[index]];
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Reset level info */
|
2003-06-29 16:33:04 +00:00
|
|
|
current_info.level.moves = 0;
|
2007-02-13 06:48:10 +00:00
|
|
|
current_info.level.pushes = 0;
|
2007-06-28 20:45:00 +00:00
|
|
|
current_info.level.boxes_to_go = 0;
|
|
|
|
current_info.level.width = 0;
|
|
|
|
|
|
|
|
/* Clear board */
|
|
|
|
for (r = 0; r < ROWS; r++)
|
|
|
|
for (c = 0; c < COLS; c++)
|
|
|
|
current_info.board[r][c] = 'X';
|
|
|
|
|
|
|
|
level_size = buffered_boards.index[index + 1] -
|
|
|
|
buffered_boards.index[index];
|
|
|
|
|
|
|
|
for (r = 0, c = 0, n = 1, i = 0; i < level_size; i++) {
|
|
|
|
if (level[i] == '\n' || level[i] == '|') {
|
|
|
|
if (c > 3) {
|
|
|
|
/* Update max width of level & go to next row */
|
|
|
|
if (c > current_info.level.width)
|
|
|
|
current_info.level.width = c;
|
|
|
|
c = 0;
|
|
|
|
r++;
|
|
|
|
if (r >= ROWS)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (c < COLS) {
|
|
|
|
/* Read RLE character's length into n */
|
|
|
|
if (level[i] >= '0' && level[i] <= '9') {
|
|
|
|
n = level[i++] - '0';
|
|
|
|
if (level[i] >= '0' && level[i] <= '9')
|
|
|
|
n = n*10 + level[i++] - '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cleanup & replace */
|
|
|
|
if (level[i] == '%')
|
|
|
|
level[i] = '*';
|
|
|
|
else if (level[i] == '-' || level[i] == '_')
|
|
|
|
level[i] = ' ';
|
|
|
|
|
|
|
|
if (n > 1) {
|
|
|
|
if (c + n >= COLS)
|
|
|
|
n = COLS - c;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
if (level[i] == '.')
|
|
|
|
current_info.level.boxes_to_go += n;
|
2006-05-09 05:36:46 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Put RLE character n times */
|
|
|
|
while (n--)
|
|
|
|
current_info.board[r][c++] = level[i];
|
|
|
|
n = 1;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
} else {
|
|
|
|
if (level[i] == '.' || level[i] == '+')
|
|
|
|
current_info.level.boxes_to_go++;
|
|
|
|
|
|
|
|
if (level[i] == '@' ||level[i] == '+') {
|
|
|
|
current_info.player.row = r;
|
|
|
|
current_info.player.col = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
current_info.board[r][c++] = level[i];
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
current_info.level.height = r;
|
|
|
|
|
|
|
|
#if LCD_DEPTH > 2
|
|
|
|
/* Fill in blank space outside level on color targets */
|
|
|
|
for (r = 0; r < ROWS; r++)
|
|
|
|
for (c = 0; current_info.board[r][c] == ' ' && c < COLS; c++)
|
|
|
|
current_info.board[r][c] = 'X';
|
|
|
|
|
|
|
|
for (c = 0; c < COLS; c++) {
|
|
|
|
for (r = 0; (current_info.board[r][c] == ' ' ||
|
|
|
|
current_info.board[r][c] == 'X') && r < ROWS; r++)
|
|
|
|
current_info.board[r][c] = 'X';
|
|
|
|
for (r = ROWS - 1; (current_info.board[r][c] == ' ' ||
|
|
|
|
current_info.board[r][c] == 'X') && r >= 0; r--)
|
|
|
|
current_info.board[r][c] = 'X';
|
|
|
|
}
|
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
|
|
|
|
2006-05-09 05:36:46 +00:00
|
|
|
static void update_screen(void)
|
2003-06-29 16:33:04 +00:00
|
|
|
{
|
2007-06-28 20:45:00 +00:00
|
|
|
int c, r;
|
|
|
|
int rows, cols;
|
2007-02-13 06:48:10 +00:00
|
|
|
|
2008-05-18 13:05:45 +00:00
|
|
|
#if LCD_WIDTH - (COLS*SOKOBAN_TILESIZE) < 32
|
2007-06-28 20:45:00 +00:00
|
|
|
#define STAT_HEIGHT 25
|
|
|
|
#define STAT_X (LCD_WIDTH - 120)/2
|
|
|
|
#define STAT_Y (LCD_HEIGHT - STAT_HEIGHT)
|
|
|
|
#define BOARD_WIDTH LCD_WIDTH
|
|
|
|
#define BOARD_HEIGHT (LCD_HEIGHT - STAT_HEIGHT)
|
|
|
|
rb->lcd_putsxy(STAT_X + 4, STAT_Y + 4, "Level");
|
2010-08-28 21:46:45 +00:00
|
|
|
rb->lcd_putsxyf(STAT_X + 7, STAT_Y + 14, "%d", current_info.level.index + 1);
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->lcd_putsxy(STAT_X + 41, STAT_Y + 4, "Moves");
|
2010-08-28 21:46:45 +00:00
|
|
|
rb->lcd_putsxyf(STAT_X + 44, STAT_Y + 14, "%d", current_info.level.moves);
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->lcd_putsxy(STAT_X + 79, STAT_Y + 4, "Pushes");
|
2010-08-28 21:46:45 +00:00
|
|
|
rb->lcd_putsxyf(STAT_X + 82, STAT_Y + 14, "%d", current_info.level.pushes);
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
rb->lcd_drawrect(STAT_X, STAT_Y, 38, STAT_HEIGHT);
|
|
|
|
rb->lcd_drawrect(STAT_X + 37, STAT_Y, 39, STAT_HEIGHT);
|
|
|
|
rb->lcd_drawrect(STAT_X + 75, STAT_Y, 45, STAT_HEIGHT);
|
2005-07-19 16:48:02 +00:00
|
|
|
#else
|
2008-05-18 13:05:45 +00:00
|
|
|
#if LCD_WIDTH - (COLS*SOKOBAN_TILESIZE) > 40
|
2007-06-28 20:45:00 +00:00
|
|
|
#define STAT_X (LCD_WIDTH - 40)
|
|
|
|
#else
|
2008-05-18 13:05:45 +00:00
|
|
|
#define STAT_X COLS*SOKOBAN_TILESIZE
|
2007-02-13 06:48:10 +00:00
|
|
|
#endif
|
2008-05-18 13:58:21 +00:00
|
|
|
#define STAT_Y (LCD_HEIGHT - 64)/2
|
2007-06-28 20:45:00 +00:00
|
|
|
#define STAT_WIDTH (LCD_WIDTH - STAT_X)
|
|
|
|
#define BOARD_WIDTH (LCD_WIDTH - STAT_WIDTH)
|
|
|
|
#define BOARD_HEIGHT LCD_HEIGHT
|
2008-05-18 13:58:21 +00:00
|
|
|
rb->lcd_putsxy(STAT_X + 1, STAT_Y + 2, "Level");
|
2010-08-28 21:46:45 +00:00
|
|
|
rb->lcd_putsxyf(STAT_X + 4, STAT_Y + 12, "%d", current_info.level.index + 1);
|
2008-05-18 13:58:21 +00:00
|
|
|
rb->lcd_putsxy(STAT_X + 1, STAT_Y + 23, "Moves");
|
2010-08-28 21:46:45 +00:00
|
|
|
rb->lcd_putsxyf(STAT_X + 4, STAT_Y + 33, "%d", current_info.level.moves);
|
2008-05-18 13:58:21 +00:00
|
|
|
#if STAT_WIDTH < 38
|
|
|
|
rb->lcd_putsxy(STAT_X + 1, STAT_Y + 44, "Push");
|
|
|
|
#else
|
|
|
|
rb->lcd_putsxy(STAT_X + 1, STAT_Y + 44, "Pushes");
|
|
|
|
#endif
|
2010-08-28 21:46:45 +00:00
|
|
|
rb->lcd_putsxyf(STAT_X + 4, STAT_Y + 54, "%d", current_info.level.pushes);
|
2007-02-13 06:48:10 +00:00
|
|
|
|
2008-05-18 13:58:21 +00:00
|
|
|
rb->lcd_drawrect(STAT_X, STAT_Y + 0, STAT_WIDTH, 64);
|
|
|
|
rb->lcd_hline(STAT_X, LCD_WIDTH - 1, STAT_Y + 21);
|
|
|
|
rb->lcd_hline(STAT_X, LCD_WIDTH - 1, STAT_Y + 42);
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2006-06-10 20:39:33 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
/* load the board to the screen */
|
|
|
|
for (rows = 0; rows < ROWS; rows++) {
|
|
|
|
for (cols = 0; cols < COLS; cols++) {
|
2008-05-18 13:05:45 +00:00
|
|
|
c = cols*SOKOBAN_TILESIZE +
|
|
|
|
(BOARD_WIDTH - current_info.level.width*SOKOBAN_TILESIZE)/2;
|
|
|
|
r = rows*SOKOBAN_TILESIZE +
|
|
|
|
(BOARD_HEIGHT - current_info.level.height*SOKOBAN_TILESIZE)/2;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
switch(current_info.board[rows][cols]) {
|
|
|
|
case 'X': /* blank space outside of level */
|
|
|
|
break;
|
2006-06-10 20:39:33 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
case ' ': /* floor */
|
2008-05-18 13:05:45 +00:00
|
|
|
rb->lcd_bitmap_part(sokoban_tiles, 0, 0*SOKOBAN_TILESIZE,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sokoban_tiles,
|
|
|
|
BMPHEIGHT_sokoban_tiles),
|
2009-08-31 13:56:48 +00:00
|
|
|
c, r, SOKOBAN_TILESIZE, SOKOBAN_TILESIZE);
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
case '#': /* wall */
|
2008-05-18 13:05:45 +00:00
|
|
|
rb->lcd_bitmap_part(sokoban_tiles, 0, 1*SOKOBAN_TILESIZE,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sokoban_tiles,
|
|
|
|
BMPHEIGHT_sokoban_tiles),
|
2009-08-31 13:56:48 +00:00
|
|
|
c, r, SOKOBAN_TILESIZE, SOKOBAN_TILESIZE);
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '$': /* box */
|
2008-05-18 13:05:45 +00:00
|
|
|
rb->lcd_bitmap_part(sokoban_tiles, 0, 2*SOKOBAN_TILESIZE,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sokoban_tiles,
|
|
|
|
BMPHEIGHT_sokoban_tiles),
|
2009-08-31 13:56:48 +00:00
|
|
|
c, r, SOKOBAN_TILESIZE,SOKOBAN_TILESIZE);
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
2007-02-13 06:48:10 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
case '*': /* box on goal */
|
2008-05-18 13:05:45 +00:00
|
|
|
rb->lcd_bitmap_part(sokoban_tiles, 0, 3*SOKOBAN_TILESIZE,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sokoban_tiles,
|
|
|
|
BMPHEIGHT_sokoban_tiles),
|
2009-08-31 13:56:48 +00:00
|
|
|
c, r, SOKOBAN_TILESIZE, SOKOBAN_TILESIZE);
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '.': /* goal */
|
2008-05-18 13:05:45 +00:00
|
|
|
rb->lcd_bitmap_part(sokoban_tiles, 0, 4*SOKOBAN_TILESIZE,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sokoban_tiles,
|
|
|
|
BMPHEIGHT_sokoban_tiles),
|
2009-08-31 13:56:48 +00:00
|
|
|
c, r, SOKOBAN_TILESIZE, SOKOBAN_TILESIZE);
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '@': /* player */
|
2008-05-18 13:05:45 +00:00
|
|
|
rb->lcd_bitmap_part(sokoban_tiles, 0, 5*SOKOBAN_TILESIZE,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sokoban_tiles,
|
|
|
|
BMPHEIGHT_sokoban_tiles),
|
2009-08-31 13:56:48 +00:00
|
|
|
c, r, SOKOBAN_TILESIZE, SOKOBAN_TILESIZE);
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
2007-02-13 06:48:10 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
case '+': /* player on goal */
|
2008-05-18 13:05:45 +00:00
|
|
|
rb->lcd_bitmap_part(sokoban_tiles, 0, 6*SOKOBAN_TILESIZE,
|
2009-09-04 00:46:24 +00:00
|
|
|
STRIDE( SCREEN_MAIN,
|
|
|
|
BMPWIDTH_sokoban_tiles,
|
|
|
|
BMPHEIGHT_sokoban_tiles),
|
2009-08-31 13:56:48 +00:00
|
|
|
c, r, SOKOBAN_TILESIZE, SOKOBAN_TILESIZE);
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
/* print out the screen */
|
|
|
|
rb->lcd_update();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_level(void)
|
|
|
|
{
|
|
|
|
load_level();
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
update_screen();
|
|
|
|
}
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
static bool save(char *filename, bool solution)
|
|
|
|
{
|
|
|
|
int fd;
|
2007-06-29 19:52:13 +00:00
|
|
|
char *loc;
|
|
|
|
DIR *dir;
|
|
|
|
char dirname[MAX_PATH];
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
rb->splash(0, "Saving...");
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
/* Create dir if it doesn't exist */
|
|
|
|
if ((loc = rb->strrchr(filename, '/')) != NULL) {
|
2009-07-14 13:57:45 +00:00
|
|
|
rb->strlcpy(dirname, filename, loc - filename + 1);
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
if(!(dir = rb->opendir(dirname)))
|
|
|
|
rb->mkdir(dirname);
|
|
|
|
else
|
|
|
|
rb->closedir(dir);
|
|
|
|
}
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
if (filename[0] == '\0' ||
|
2010-05-06 17:35:13 +00:00
|
|
|
(fd = rb->open(filename, O_WRONLY|O_CREAT|O_TRUNC, 0666)) < 0) {
|
2008-08-15 08:27:39 +00:00
|
|
|
rb->splashf(HZ*2, "Unable to open %s", filename);
|
2007-06-28 20:45:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sokoban: S/P for solution/progress : level number : current undo */
|
|
|
|
rb->snprintf(buf, sizeof(buf), "Sokoban:%c:%d:%d\n", (solution ? 'S' : 'P'),
|
|
|
|
current_info.level.index + 1, undo_info.current);
|
|
|
|
rb->write(fd, buf, rb->strlen(buf));
|
|
|
|
|
|
|
|
/* Filename of levelset */
|
|
|
|
rb->write(fd, buffered_boards.filename,
|
|
|
|
rb->strlen(buffered_boards.filename));
|
|
|
|
rb->write(fd, "\n", 1);
|
|
|
|
|
|
|
|
/* Full undo history */
|
|
|
|
rb->write(fd, undo_info.history, undo_info.max);
|
|
|
|
|
|
|
|
rb->close(fd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool load(char *filename, bool silent)
|
|
|
|
{
|
|
|
|
int fd;
|
2007-06-29 19:52:13 +00:00
|
|
|
int i, n;
|
2007-06-28 20:45:00 +00:00
|
|
|
int len;
|
|
|
|
int button;
|
2007-06-29 19:52:13 +00:00
|
|
|
bool play_solution;
|
|
|
|
bool paused = false;
|
|
|
|
unsigned short speed = 2;
|
|
|
|
int delay[] = {HZ/2, HZ/3, HZ/4, HZ/6, HZ/8, HZ/12, HZ/16, HZ/25};
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
if (filename[0] == '\0' || (fd = rb->open(filename, O_RDONLY)) < 0) {
|
|
|
|
if (!silent)
|
2008-08-15 08:27:39 +00:00
|
|
|
rb->splashf(HZ*2, "Unable to open %s", filename);
|
2007-06-28 20:45:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read header, level number, & current undo */
|
|
|
|
rb->read_line(fd, buf, sizeof(buf));
|
|
|
|
|
|
|
|
/* If we're opening a level file, not a solution/progress file */
|
|
|
|
if (rb->strncmp(buf, "Sokoban", 7) != 0) {
|
|
|
|
rb->close(fd);
|
|
|
|
|
2009-07-14 13:57:45 +00:00
|
|
|
rb->strlcpy(buffered_boards.filename, filename,
|
|
|
|
sizeof(buffered_boards.filename));
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
if (!read_levels(true))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
current_info.level.index = 0;
|
|
|
|
load_level();
|
|
|
|
|
|
|
|
/* If there aren't any boxes to go or the player position wasn't set,
|
|
|
|
* the file probably wasn't a Sokoban level file */
|
|
|
|
if (current_info.level.boxes_to_go == 0 ||
|
|
|
|
current_info.player.row == 0 || current_info.player.col == 0) {
|
|
|
|
if (!silent)
|
|
|
|
rb->splash(HZ*2, "File is not a Sokoban level file");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* Read filename of levelset */
|
|
|
|
rb->read_line(fd, buffered_boards.filename,
|
|
|
|
sizeof(buffered_boards.filename));
|
|
|
|
|
|
|
|
/* Read full undo history */
|
|
|
|
len = rb->read_line(fd, undo_info.history, MAX_UNDOS);
|
|
|
|
|
|
|
|
/* Correct len when trailing \r's or \n's are counted */
|
|
|
|
if (len > 2 && undo_info.history[len - 2] == '\0')
|
|
|
|
len -= 2;
|
|
|
|
else if (len > 1 && undo_info.history[len - 1] == '\0')
|
|
|
|
len--;
|
|
|
|
|
|
|
|
rb->close(fd);
|
|
|
|
|
|
|
|
/* Check to see if we're going to play a solution or resume progress */
|
|
|
|
play_solution = (buf[8] == 'S');
|
|
|
|
|
|
|
|
/* Get level number */
|
|
|
|
for (n = 0, i = 10; buf[i] >= '0' && buf[i] <= '9' && i < 15; i++)
|
|
|
|
n = n*10 + buf[i] - '0';
|
|
|
|
current_info.level.index = n - 1;
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
/* Get undo index */
|
2007-06-28 20:45:00 +00:00
|
|
|
for (n = 0, i++; buf[i] >= '0' && buf[i] <= '9' && i < 21; i++)
|
|
|
|
n = n*10 + buf[i] - '0';
|
|
|
|
if (n > len)
|
|
|
|
n = len;
|
2007-06-29 19:52:13 +00:00
|
|
|
undo_info.max = len;
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
if (current_info.level.index < 0) {
|
|
|
|
if (!silent)
|
|
|
|
rb->splash(HZ*2, "Error loading level");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!read_levels(true))
|
|
|
|
return false;
|
|
|
|
if (current_info.level.index >= current_info.max_level) {
|
|
|
|
if (!silent)
|
|
|
|
rb->splash(HZ*2, "Error loading level");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
load_level();
|
|
|
|
|
|
|
|
if (play_solution) {
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
update_screen();
|
2007-06-29 19:52:13 +00:00
|
|
|
rb->sleep(2*delay[speed]);
|
|
|
|
|
|
|
|
/* Replay solution until menu button is pressed */
|
|
|
|
i = 0;
|
|
|
|
while (true) {
|
|
|
|
if (i < len) {
|
|
|
|
if (!move(undo_info.history[i], true)) {
|
|
|
|
n = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
update_screen();
|
|
|
|
i++;
|
|
|
|
} else
|
|
|
|
paused = true;
|
2007-06-28 20:45:00 +00:00
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
rb->sleep(delay[speed]);
|
2007-06-28 20:45:00 +00:00
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
while ((button = rb->button_get(false)) || paused) {
|
2007-06-28 20:45:00 +00:00
|
|
|
switch (button) {
|
2015-07-19 23:50:26 +00:00
|
|
|
case SOKOBAN_QUIT_REPLAY:
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Pretend the level is complete so we'll quit */
|
|
|
|
current_info.level.boxes_to_go = 0;
|
|
|
|
return true;
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
case SOKOBAN_PAUSE:
|
|
|
|
/* Toggle pause state */
|
|
|
|
paused = !paused;
|
|
|
|
break;
|
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
case SOKOBAN_LEFT:
|
|
|
|
case SOKOBAN_LEFT | BUTTON_REPEAT:
|
2007-06-29 19:52:13 +00:00
|
|
|
/* Go back one move */
|
|
|
|
if (paused) {
|
|
|
|
if (undo())
|
|
|
|
i--;
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
update_screen();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
case SOKOBAN_RIGHT:
|
|
|
|
case SOKOBAN_RIGHT | BUTTON_REPEAT:
|
2007-06-29 19:52:13 +00:00
|
|
|
/* Go forward one move */
|
|
|
|
if (paused) {
|
|
|
|
if (redo())
|
|
|
|
i++;
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
update_screen();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
case SOKOBAN_UP:
|
2007-06-29 19:52:13 +00:00
|
|
|
case SOKOBAN_UP | BUTTON_REPEAT:
|
|
|
|
/* Speed up */
|
|
|
|
if (speed < sizeof(delay)/sizeof(int) - 1)
|
|
|
|
speed++;
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SOKOBAN_DOWN:
|
2007-06-29 19:52:13 +00:00
|
|
|
case SOKOBAN_DOWN | BUTTON_REPEAT:
|
|
|
|
/* Slow down */
|
|
|
|
if (speed > 0)
|
|
|
|
speed--;
|
2007-06-28 20:45:00 +00:00
|
|
|
}
|
2007-06-29 19:52:13 +00:00
|
|
|
|
|
|
|
if (paused)
|
|
|
|
rb->sleep(HZ/33);
|
2007-06-28 20:45:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
/* If level is complete, wait for keypress before quitting */
|
2007-06-28 20:45:00 +00:00
|
|
|
if (current_info.level.boxes_to_go == 0)
|
|
|
|
rb->button_get(true);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* Advance to current undo */
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
if (!move(undo_info.history[i], true)) {
|
|
|
|
n = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rb->button_clear_queue();
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
}
|
|
|
|
|
|
|
|
undo_info.current = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sokoban_menu(void)
|
|
|
|
{
|
|
|
|
int button;
|
|
|
|
int selection = 0;
|
|
|
|
bool menu_quit;
|
|
|
|
int start_selected = 0;
|
|
|
|
|
|
|
|
MENUITEM_STRINGLIST(menu, "Sokoban Menu", NULL,
|
2007-06-29 19:52:13 +00:00
|
|
|
"Resume", "Select Level", "Audio Playback", "Keys",
|
2007-06-28 20:45:00 +00:00
|
|
|
"Load Default Level Set", "Quit Without Saving",
|
|
|
|
"Save Progress & Quit");
|
|
|
|
|
|
|
|
do {
|
|
|
|
menu_quit = true;
|
2008-03-26 03:35:24 +00:00
|
|
|
selection = rb->do_menu(&menu, &start_selected, NULL, false);
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
switch (selection) {
|
|
|
|
case 0: /* Resume */
|
|
|
|
break;
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
case 1: /* Select level */
|
|
|
|
current_info.level.index++;
|
|
|
|
rb->set_int("Select Level", "", UNIT_INT,
|
|
|
|
¤t_info.level.index, NULL, 1, 1,
|
|
|
|
current_info.max_level, NULL);
|
|
|
|
current_info.level.index--;
|
2017-08-01 22:00:36 +00:00
|
|
|
init_undo();
|
|
|
|
draw_level();
|
2007-06-29 19:52:13 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: /* Audio playback control */
|
2009-01-16 10:34:40 +00:00
|
|
|
playback_control(NULL);
|
2007-06-28 20:45:00 +00:00
|
|
|
menu_quit = false;
|
|
|
|
break;
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
case 3: /* Keys */
|
2007-06-28 20:45:00 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
rb->screens[i]->clear_display();
|
|
|
|
rb->lcd_setfont(SOKOBAN_FONT);
|
|
|
|
|
|
|
|
#if (CONFIG_KEYPAD == RECORDER_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == ARCHOS_AV300_PAD)
|
|
|
|
rb->lcd_putsxy(3, 6, "[OFF] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[ON] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[PLAY] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[F1] Down a Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[F2] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[F3] Up a Level");
|
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
|
|
|
rb->lcd_putsxy(3, 6, "[OFF] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[MODE] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[MODE+DOWN] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[MODE+LEFT] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[MODE+UP] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[MODE+RIGHT] Up Level");
|
|
|
|
#elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IRIVER_H300_PAD)
|
|
|
|
rb->lcd_putsxy(3, 6, "[STOP] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[REC] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[MODE] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[PLAY+DOWN] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[PLAY] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[PLAY+UP] Next Level");
|
|
|
|
#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
|
2007-07-27 09:57:27 +00:00
|
|
|
(CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->lcd_putsxy(3, 6, "[SELECT+MENU] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[SELECT] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[SELECT+PLAY] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[SELECT+LEFT] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[SELECT+RIGHT] Next Level");
|
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD
|
|
|
|
rb->lcd_putsxy(3, 6, "[POWER] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[SELECT] Undo");
|
2007-06-29 19:52:13 +00:00
|
|
|
rb->lcd_putsxy(3, 26, "[PLAY] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[REC] Restart Level");
|
2007-06-28 20:45:00 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H10_PAD
|
|
|
|
rb->lcd_putsxy(3, 6, "[POWER] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[REW] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[FF] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[PLAY+DOWN] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[PLAY+RIGHT] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[PLAY+UP] Next Level");
|
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_PAD
|
|
|
|
rb->lcd_putsxy(3, 6, "[POWER] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[SELECT] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[A] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[VOL-] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[MENU] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[VOL+] Next Level");
|
|
|
|
#elif CONFIG_KEYPAD == SANSA_E200_PAD
|
|
|
|
rb->lcd_putsxy(3, 6, "[POWER] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[SELECT] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[REC] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[SELECT+DOWN] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[SELECT+RIGHT] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[SELECT+UP] Next Level");
|
2009-03-29 10:41:31 +00:00
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_S_PAD
|
|
|
|
rb->lcd_putsxy(3, 6, "[MENU] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[VOL+] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[VOL-] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[PREV] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[PLAY] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[NEXT] Next Level");
|
2011-11-16 14:08:01 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_CONNECT_PAD
|
|
|
|
rb->lcd_putsxy(3, 6, "[POWER] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[PREV] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[NEXT] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[VOL-] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[NEXT+PREV] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[VOL+] Next Level");
|
2016-01-23 14:54:08 +00:00
|
|
|
#elif CONFIG_KEYPAD == SAMSUNG_YH92X_PAD
|
2015-07-19 23:50:26 +00:00
|
|
|
rb->lcd_putsxy(3, 6, "[PLAY] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[REW] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[FFWD] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[PLAY+DOWN] Previous Level");
|
|
|
|
rb->lcd_putsxy(3, 46, "[PLAY+RIGHT] Restart Level");
|
|
|
|
rb->lcd_putsxy(3, 56, "[PLAY+UP] Next Level");
|
|
|
|
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
|
|
|
|
rb->lcd_putsxy(3, 6, "[PLAY] Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, "[REW] Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, "[FFWD] Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, "[REC+DOWN] Prev. Lvl");
|
|
|
|
rb->lcd_putsxy(3, 46, "[REC+RIGHT] Rest. Lvl");
|
|
|
|
rb->lcd_putsxy(3, 56, "[REC+UP] Next Level");
|
2007-06-28 20: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(3, 6, SOKOBAN_MENU_NAME " Menu");
|
|
|
|
rb->lcd_putsxy(3, 16, SOKOBAN_UNDO_NAME " Undo");
|
|
|
|
rb->lcd_putsxy(3, 26, SOKOBAN_REDO_NAME " Redo");
|
|
|
|
rb->lcd_putsxy(3, 36, SOKOBAN_PAUSE_NAME " Pause");
|
|
|
|
rb->lcd_putsxy(3, 46, SOKOBAN_LEVEL_REPEAT_NAME " Restart Level");
|
|
|
|
#endif
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
rb->screens[i]->update();
|
|
|
|
|
|
|
|
/* Display until keypress */
|
|
|
|
do {
|
|
|
|
rb->sleep(HZ/20);
|
|
|
|
button = rb->button_get(false);
|
|
|
|
} while (!button || button & BUTTON_REL ||
|
|
|
|
button & BUTTON_REPEAT);
|
|
|
|
|
|
|
|
menu_quit = false;
|
|
|
|
break;
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
case 4: /* Load default levelset */
|
2007-06-28 20:45:00 +00:00
|
|
|
init_boards();
|
|
|
|
if (!read_levels(true))
|
2007-06-29 19:52:13 +00:00
|
|
|
return 5; /* Quit */
|
2007-06-28 20:45:00 +00:00
|
|
|
load_level();
|
|
|
|
break;
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
case 5: /* Quit */
|
2007-06-28 20:45:00 +00:00
|
|
|
break;
|
|
|
|
|
2007-06-29 19:52:13 +00:00
|
|
|
case 6: /* Save & quit */
|
2007-06-28 20:45:00 +00:00
|
|
|
save(SOKOBAN_SAVE_FILE, false);
|
|
|
|
rb->reload_directory();
|
|
|
|
}
|
|
|
|
|
|
|
|
} while (!menu_quit);
|
|
|
|
|
|
|
|
/* Restore font */
|
|
|
|
rb->lcd_setfont(SOKOBAN_FONT);
|
|
|
|
|
|
|
|
FOR_NB_SCREENS(i) {
|
|
|
|
rb->screens[i]->clear_display();
|
|
|
|
rb->screens[i]->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
return selection;
|
|
|
|
}
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
static bool sokoban_loop(void)
|
|
|
|
{
|
2007-06-28 20:45:00 +00:00
|
|
|
bool moved;
|
2011-05-08 21:06:38 +00:00
|
|
|
int i = 0, button = 0;
|
2015-12-27 17:14:41 +00:00
|
|
|
#if defined(SOKOBAN_UNDO_PRE) || defined(SOKOBAN_MENU_PRE)
|
2011-05-08 21:06:38 +00:00
|
|
|
int lastbutton = 0;
|
|
|
|
#endif
|
2007-02-13 06:48:10 +00:00
|
|
|
int w, h;
|
2007-06-28 20:45:00 +00:00
|
|
|
char *loc;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
while (true) {
|
|
|
|
moved = false;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
button = rb->button_get(true);
|
|
|
|
|
2006-05-09 05:36:46 +00:00
|
|
|
switch(button)
|
2003-06-29 16:33:04 +00:00
|
|
|
{
|
2015-12-27 17:14:41 +00:00
|
|
|
case SOKOBAN_MENU:
|
|
|
|
#ifdef SOKOBAN_MENU_PRE
|
|
|
|
if (lastbutton != SOKOBAN_MENU_PRE)
|
|
|
|
break;
|
|
|
|
/* fallthrough */
|
|
|
|
#endif
|
2007-06-29 19:52:13 +00:00
|
|
|
#ifdef SOKOBAN_RC_MENU
|
|
|
|
case SOKOBAN_RC_MENU:
|
2006-06-30 16:43:47 +00:00
|
|
|
#endif
|
2007-06-28 20:45:00 +00:00
|
|
|
switch (sokoban_menu()) {
|
2007-06-29 19:52:13 +00:00
|
|
|
case 5: /* Quit */
|
|
|
|
case 6: /* Save & quit */
|
2007-06-28 20:45:00 +00:00
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
|
|
|
update_screen();
|
|
|
|
break;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2004-10-18 21:45:00 +00:00
|
|
|
case SOKOBAN_UNDO:
|
|
|
|
#ifdef SOKOBAN_UNDO_PRE
|
|
|
|
if (lastbutton != SOKOBAN_UNDO_PRE)
|
|
|
|
break;
|
2007-06-28 20:45:00 +00:00
|
|
|
#else /* repeat can't work here for Ondio, iPod, et al */
|
2004-10-18 21:45:00 +00:00
|
|
|
case SOKOBAN_UNDO | BUTTON_REPEAT:
|
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
undo();
|
|
|
|
rb->lcd_clear_display();
|
2004-10-18 21:45:00 +00:00
|
|
|
update_screen();
|
2003-06-29 16:33:04 +00:00
|
|
|
break;
|
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
#ifdef SOKOBAN_REDO
|
|
|
|
case SOKOBAN_REDO:
|
|
|
|
case SOKOBAN_REDO | BUTTON_REPEAT:
|
|
|
|
moved = redo();
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
update_screen();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2007-06-29 20:12:04 +00:00
|
|
|
#ifdef SOKOBAN_LEVEL_UP
|
2004-10-18 21:45:00 +00:00
|
|
|
case SOKOBAN_LEVEL_UP:
|
|
|
|
case SOKOBAN_LEVEL_UP | BUTTON_REPEAT:
|
2007-02-13 06:48:10 +00:00
|
|
|
/* next level */
|
2003-06-29 16:33:04 +00:00
|
|
|
init_undo();
|
2007-06-28 20:45:00 +00:00
|
|
|
if (current_info.level.index + 1 < current_info.max_level)
|
|
|
|
current_info.level.index++;
|
2007-02-13 06:48:10 +00:00
|
|
|
|
|
|
|
draw_level();
|
2003-06-29 16:33:04 +00:00
|
|
|
break;
|
2007-06-29 20:12:04 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-29 20:12:04 +00:00
|
|
|
#ifdef SOKOBAN_LEVEL_DOWN
|
2004-10-18 21:45:00 +00:00
|
|
|
case SOKOBAN_LEVEL_DOWN:
|
|
|
|
case SOKOBAN_LEVEL_DOWN | BUTTON_REPEAT:
|
2003-06-29 16:33:04 +00:00
|
|
|
/* previous level */
|
|
|
|
init_undo();
|
2007-06-28 20:45:00 +00:00
|
|
|
if (current_info.level.index > 0)
|
|
|
|
current_info.level.index--;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
draw_level();
|
|
|
|
break;
|
2007-06-29 20:12:04 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
#ifdef SOKOBAN_LEVEL_REPEAT
|
2004-10-18 21:45:00 +00:00
|
|
|
case SOKOBAN_LEVEL_REPEAT:
|
|
|
|
case SOKOBAN_LEVEL_REPEAT | BUTTON_REPEAT:
|
2003-06-29 16:33:04 +00:00
|
|
|
/* same level */
|
|
|
|
init_undo();
|
|
|
|
draw_level();
|
|
|
|
break;
|
2007-02-13 06:48:10 +00:00
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
case SOKOBAN_LEFT:
|
|
|
|
case SOKOBAN_LEFT | BUTTON_REPEAT:
|
2007-02-13 06:48:10 +00:00
|
|
|
moved = move(SOKOBAN_MOVE_LEFT, false);
|
2003-06-29 16:33:04 +00:00
|
|
|
break;
|
|
|
|
|
2008-03-22 10:24:28 +00:00
|
|
|
case SOKOBAN_RIGHT:
|
|
|
|
case SOKOBAN_RIGHT | BUTTON_REPEAT:
|
2007-02-13 06:48:10 +00:00
|
|
|
moved = move(SOKOBAN_MOVE_RIGHT, false);
|
2003-06-29 16:33:04 +00:00
|
|
|
break;
|
|
|
|
|
2005-12-14 01:31:37 +00:00
|
|
|
case SOKOBAN_UP:
|
2007-02-13 06:48:10 +00:00
|
|
|
case SOKOBAN_UP | BUTTON_REPEAT:
|
|
|
|
moved = move(SOKOBAN_MOVE_UP, false);
|
2003-06-29 16:33:04 +00:00
|
|
|
break;
|
|
|
|
|
2005-12-14 01:31:37 +00:00
|
|
|
case SOKOBAN_DOWN:
|
2007-02-13 06:48:10 +00:00
|
|
|
case SOKOBAN_DOWN | BUTTON_REPEAT:
|
|
|
|
moved = move(SOKOBAN_MOVE_DOWN, false);
|
2003-06-29 16:33:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-10-18 21:45:00 +00:00
|
|
|
if (rb->default_event_handler(button) == SYS_USB_CONNECTED)
|
|
|
|
return PLUGIN_USB_CONNECTED;
|
2003-06-29 16:33:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-12-27 17:14:41 +00:00
|
|
|
#if defined(SOKOBAN_UNDO_PRE) || defined(SOKOBAN_MENU_PRE)
|
2007-06-28 20:45:00 +00:00
|
|
|
lastbutton = button;
|
2011-05-08 21:06:38 +00:00
|
|
|
#endif
|
2004-10-18 21:45:00 +00:00
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
if (moved) {
|
|
|
|
rb->lcd_clear_display();
|
2004-10-18 21:45:00 +00:00
|
|
|
update_screen();
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We have completed this level */
|
|
|
|
if (current_info.level.boxes_to_go == 0) {
|
2007-02-13 06:48:10 +00:00
|
|
|
|
|
|
|
if (moved) {
|
|
|
|
rb->lcd_clear_display();
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
/* Show level complete message & stats */
|
|
|
|
rb->snprintf(buf, sizeof(buf), "Level %d Complete!",
|
|
|
|
current_info.level.index + 1);
|
|
|
|
rb->lcd_getstringsize(buf, &w, &h);
|
|
|
|
rb->lcd_putsxy(LCD_WIDTH/2 - w/2, LCD_HEIGHT/2 - h*3, buf);
|
|
|
|
|
|
|
|
rb->snprintf(buf, sizeof(buf), "%4d Moves ",
|
2007-02-13 06:48:10 +00:00
|
|
|
current_info.level.moves);
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->lcd_getstringsize(buf, &w, &h);
|
|
|
|
rb->lcd_putsxy(LCD_WIDTH/2 - w/2, LCD_HEIGHT/2 - h, buf);
|
|
|
|
|
|
|
|
rb->snprintf(buf, sizeof(buf), "%4d Pushes",
|
2007-02-13 06:48:10 +00:00
|
|
|
current_info.level.pushes);
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->lcd_getstringsize(buf, &w, &h);
|
|
|
|
rb->lcd_putsxy(LCD_WIDTH/2 - w/2, LCD_HEIGHT/2, buf);
|
|
|
|
|
|
|
|
if (undo_info.count < MAX_UNDOS) {
|
|
|
|
rb->snprintf(buf, sizeof(buf), "%s: Save solution",
|
|
|
|
BUTTON_SAVE_NAME);
|
|
|
|
rb->lcd_getstringsize(buf, &w, &h);
|
|
|
|
rb->lcd_putsxy(LCD_WIDTH/2 - w/2, LCD_HEIGHT/2 + h*2, buf);
|
|
|
|
}
|
|
|
|
|
2007-02-13 06:48:10 +00:00
|
|
|
rb->lcd_update();
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->sleep(HZ/4);
|
|
|
|
rb->button_clear_queue();
|
2007-02-13 06:48:10 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Display for 4 seconds or until new keypress */
|
2007-06-29 19:52:13 +00:00
|
|
|
for (i = 0; i < 80; i++) {
|
2007-02-13 06:48:10 +00:00
|
|
|
rb->sleep(HZ/20);
|
|
|
|
button = rb->button_get(false);
|
2007-06-28 20:45:00 +00:00
|
|
|
if (button && !(button & BUTTON_REL) &&
|
|
|
|
!(button & BUTTON_REPEAT))
|
2007-02-13 06:48:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
if (button == BUTTON_SAVE) {
|
|
|
|
if (undo_info.count < MAX_UNDOS) {
|
2007-06-29 19:52:13 +00:00
|
|
|
/* Set filename to current levelset plus level number
|
|
|
|
* and .sok extension. Use SAVE_FOLDER if using the
|
|
|
|
* default levelset, since it's in a hidden folder. */
|
|
|
|
if (rb->strcmp(buffered_boards.filename,
|
|
|
|
SOKOBAN_LEVELS_FILE) == 0) {
|
|
|
|
rb->snprintf(buf, sizeof(buf),
|
|
|
|
"%s/sokoban.%d.sok",
|
|
|
|
SOKOBAN_SAVE_FOLDER,
|
|
|
|
current_info.level.index + 1);
|
|
|
|
} else {
|
|
|
|
if ((loc = rb->strrchr(buffered_boards.filename,
|
|
|
|
'.')) != NULL)
|
|
|
|
*loc = '\0';
|
|
|
|
rb->snprintf(buf, sizeof(buf), "%s.%d.sok",
|
|
|
|
buffered_boards.filename,
|
|
|
|
current_info.level.index + 1);
|
|
|
|
if (loc != NULL)
|
|
|
|
*loc = '.';
|
|
|
|
}
|
2007-06-28 20:45:00 +00:00
|
|
|
|
|
|
|
if (!rb->kbd_input(buf, MAX_PATH))
|
|
|
|
save(buf, true);
|
|
|
|
} else
|
|
|
|
rb->splash(HZ*2, "Solution too long to save");
|
|
|
|
|
|
|
|
rb->lcd_setfont(SOKOBAN_FONT); /* Restore font */
|
|
|
|
}
|
2007-02-13 06:48:10 +00:00
|
|
|
}
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
FOR_NB_SCREENS(i) {
|
|
|
|
rb->screens[i]->clear_display();
|
|
|
|
rb->screens[i]->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
current_info.level.index++;
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
/* clear undo stats */
|
|
|
|
init_undo();
|
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
if (current_info.level.index >= current_info.max_level) {
|
|
|
|
/* Show levelset complete message */
|
|
|
|
rb->snprintf(buf, sizeof(buf), "You WIN!!");
|
|
|
|
rb->lcd_getstringsize(buf, &w, &h);
|
|
|
|
rb->lcd_putsxy(LCD_WIDTH/2 - w/2, LCD_HEIGHT/2 - h/2, buf);
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2005-06-24 22:33:21 +00:00
|
|
|
rb->lcd_set_drawmode(DRMODE_COMPLEMENT);
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Display for 4 seconds or until keypress */
|
|
|
|
for (i = 0; i < 80; i++) {
|
2006-01-19 06:25:59 +00:00
|
|
|
rb->lcd_fillrect(0, 0, LCD_WIDTH, LCD_HEIGHT);
|
2003-06-29 16:33:04 +00:00
|
|
|
rb->lcd_update();
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->sleep(HZ/10);
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
button = rb->button_get(false);
|
2007-06-28 20:45:00 +00:00
|
|
|
if (button && !(button & BUTTON_REL))
|
2003-06-29 16:33:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-06-24 22:33:21 +00:00
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID);
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
/* Reset to first level & show quit menu */
|
|
|
|
current_info.level.index = 0;
|
|
|
|
|
|
|
|
switch (sokoban_menu()) {
|
2007-06-29 19:52:13 +00:00
|
|
|
case 5: /* Quit */
|
|
|
|
case 6: /* Save & quit */
|
2007-06-28 20:45:00 +00:00
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
2003-06-29 16:33:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
load_level();
|
|
|
|
update_screen();
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* end while */
|
|
|
|
|
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-16 10:34:40 +00:00
|
|
|
enum plugin_status plugin_start(const void* parameter)
|
2003-06-29 16:33:04 +00:00
|
|
|
{
|
|
|
|
int w, h;
|
|
|
|
|
|
|
|
(void)(parameter);
|
2006-05-09 05:36:46 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->lcd_setfont(SOKOBAN_FONT);
|
2006-05-09 05:36:46 +00:00
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
rb->lcd_clear_display();
|
2007-02-13 06:48:10 +00:00
|
|
|
rb->lcd_getstringsize(SOKOBAN_TITLE, &w, &h);
|
|
|
|
rb->lcd_putsxy(LCD_WIDTH/2 - w/2, LCD_HEIGHT/2 - h/2, SOKOBAN_TITLE);
|
2003-06-29 16:33:04 +00:00
|
|
|
rb->lcd_update();
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->sleep(HZ); /* Show title for 1 second */
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
init_boards();
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
if (parameter == NULL) {
|
|
|
|
/* Attempt to resume saved progress, otherwise start at beginning */
|
|
|
|
if (!load(SOKOBAN_SAVE_FILE, true)) {
|
|
|
|
init_boards();
|
|
|
|
if (!read_levels(true))
|
|
|
|
return PLUGIN_OK;
|
|
|
|
load_level();
|
|
|
|
}
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
} else {
|
|
|
|
/* The plugin is being used to open a file */
|
|
|
|
if (load((char*) parameter, false)) {
|
|
|
|
/* If we loaded & played a solution, quit */
|
|
|
|
if (current_info.level.boxes_to_go == 0)
|
|
|
|
return PLUGIN_OK;
|
|
|
|
} else
|
|
|
|
return PLUGIN_OK;
|
2007-02-13 06:48:10 +00:00
|
|
|
}
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2007-06-28 20:45:00 +00:00
|
|
|
rb->lcd_clear_display();
|
|
|
|
update_screen();
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
return sokoban_loop();
|
|
|
|
}
|