New Rockblox features

- Add "Ghost piece" feature
   - on 1-bit displays, it's too hard to distinguish from "real" pieces, should it be disabled?
 - Show what your score is when you get a high score
 - Indent

Change-Id: Ibefe748bca3a84736cf1884cc0872d9c36daa613
Reviewed-on: http://gerrit.rockbox.org/990
Tested: Franklin Wei <frankhwei536@gmail.com>
Reviewed-by: Michael Giacomelli <giac2000@hotmail.com>
This commit is contained in:
Franklin Wei 2014-09-27 19:53:16 -04:00 committed by Michael Giacomelli
parent f014a76866
commit 4991544037

View file

@ -30,8 +30,8 @@
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || \ #if (CONFIG_KEYPAD == IPOD_4G_PAD) || \
(CONFIG_KEYPAD == IPOD_3G_PAD) || \ (CONFIG_KEYPAD == IPOD_3G_PAD) || \
(CONFIG_KEYPAD == IPOD_1G2G_PAD) (CONFIG_KEYPAD == IPOD_1G2G_PAD)
#define ROCKBLOX_OFF (BUTTON_MENU | BUTTON_SELECT) #define ROCKBLOX_OFF (BUTTON_MENU | BUTTON_SELECT)
@ -44,8 +44,8 @@
#define ROCKBLOX_RESTART (BUTTON_SELECT | BUTTON_PLAY) #define ROCKBLOX_RESTART (BUTTON_SELECT | BUTTON_PLAY)
#define ROCKBLOX_DROP (BUTTON_SELECT | BUTTON_REL) #define ROCKBLOX_DROP (BUTTON_SELECT | BUTTON_REL)
#elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || \ #elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
(CONFIG_KEYPAD == IRIVER_H300_PAD) (CONFIG_KEYPAD == IRIVER_H300_PAD)
#define ROCKBLOX_OFF BUTTON_OFF #define ROCKBLOX_OFF BUTTON_OFF
#define ROCKBLOX_ROTATE_CCW BUTTON_UP #define ROCKBLOX_ROTATE_CCW BUTTON_UP
@ -328,8 +328,8 @@
#elif CONFIG_KEYPAD == ONDAVX777_PAD #elif CONFIG_KEYPAD == ONDAVX777_PAD
#define ROCKBLOX_OFF BUTTON_POWER #define ROCKBLOX_OFF BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define ROCKBLOX_OFF (BUTTON_REC|BUTTON_PLAY) #define ROCKBLOX_OFF (BUTTON_REC|BUTTON_PLAY)
#define ROCKBLOX_ROTATE_CCW BUTTON_UP #define ROCKBLOX_ROTATE_CCW BUTTON_UP
@ -772,14 +772,14 @@ extern const fb_data rockblox_background[];
% % % %%% - L has 4 orientations % % % %%% - L has 4 orientations
%% %%% % % %% %%% % %
% %% % %%
% % % %%% - J has 4 orientations % % % %%% - J has 4 orientations
%% %%% % % %% %%% % %
% % %%% % % %%%
%% % %% % - T has 4 orientations %% % %% % - T has 4 orientations
% %%% % % %%% %
*/ */
/* c=current f=figure o=orientation n=next */ /* c=current f=figure o=orientation n=next */
static struct _rockblox_status static struct _rockblox_status
@ -788,11 +788,12 @@ static struct _rockblox_status
int lines; int lines;
int level; int level;
int score; int score;
int cx; int cx; /* current piece, x-coord */
int cy; int cy; /* current piece, y-coord */
int cf; int cf; /* current figure number, index in figures[] */
int co; int co; /* orientation of figure */
int nf; int nf; /* next figure */
int hf; /* hold figure */
bool dropped; bool dropped;
short board[BOARD_HEIGHT][BOARD_WIDTH]; /* 20 rows of 10 blocks */ short board[BOARD_HEIGHT][BOARD_WIDTH]; /* 20 rows of 10 blocks */
} rockblox_status; } rockblox_status;
@ -824,92 +825,96 @@ struct figure
} }
/* array of figures */ /* array of figures */
figures[BLOCKS_NUM] = { figures[BLOCKS_NUM] = {
/* O */ /* O */
{ {
#if LCD_DEPTH >= 16 #if LCD_DEPTH >= 16
{LCD_RGBPACK (153, 255, 255), LCD_RGBPACK(0, 255, 255), {LCD_RGBPACK (153, 255, 255), LCD_RGBPACK(0, 255, 255),
LCD_RGBPACK(0,153,153)}, LCD_RGBPACK(0,153,153)},
#elif LCD_DEPTH == 2 #elif LCD_DEPTH == 2
{LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY}, {LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY},
#endif #endif
1, 1,
{-1, 0, -1, 0}, {-1, 0, -1, 0},
{0, 0, 1, 1} {0, 0, 1, 1}
}, },
/* I */ /* I */
{ {
#if LCD_DEPTH >= 16 #if LCD_DEPTH >= 16
{LCD_RGBPACK (255, 153, 128), LCD_RGBPACK (255, 0, 0), {LCD_RGBPACK (255, 153, 128), LCD_RGBPACK (255, 0, 0),
LCD_RGBPACK (153, 0, 0)}, LCD_RGBPACK (153, 0, 0)},
#elif LCD_DEPTH == 2 #elif LCD_DEPTH == 2
{LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY}, {LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY},
#endif #endif
2, 2,
{-2, -1, 0, 1}, {-2, -1, 0, 1},
{0, 0, 0, 0} {0, 0, 0, 0}
}, },
/* 'Z' */ /* 'Z' */
{ {
#if LCD_DEPTH >= 16 #if LCD_DEPTH >= 16
{LCD_RGBPACK (153, 255, 153), LCD_RGBPACK (0, 255, 0), {LCD_RGBPACK (153, 255, 153), LCD_RGBPACK (0, 255, 0),
LCD_RGBPACK (0, 153, 0)}, LCD_RGBPACK (0, 153, 0)},
#elif LCD_DEPTH == 2 #elif LCD_DEPTH == 2
{LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY}, {LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY},
#endif #endif
2, 2,
{0, 1, -1, 0}, {0, 1, -1, 0},
{0, 0, 1, 1} {0, 0, 1, 1}
}, },
/* 'S' */ /* 'S' */
{ {
#if LCD_DEPTH >= 16 #if LCD_DEPTH >= 16
{LCD_RGBPACK (153, 153, 255), LCD_RGBPACK (0, 0, 255), {LCD_RGBPACK (153, 153, 255), LCD_RGBPACK (0, 0, 255),
LCD_RGBPACK (0, 0, 153)}, LCD_RGBPACK (0, 0, 153)},
#elif LCD_DEPTH == 2 #elif LCD_DEPTH == 2
{LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY}, {LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY},
#endif #endif
2, 2,
{-1, 0, 0, 1}, {-1, 0, 0, 1},
{0, 0, 1, 1} {0, 0, 1, 1}
}, },
/* 'L' */ /* 'L' */
{ {
#if LCD_DEPTH >= 16 #if LCD_DEPTH >= 16
{LCD_RGBPACK (255, 255, 153), LCD_RGBPACK (255, 255, 0), {LCD_RGBPACK (255, 255, 153), LCD_RGBPACK (255, 255, 0),
LCD_RGBPACK (153, 153, 0)}, LCD_RGBPACK (153, 153, 0)},
#elif LCD_DEPTH == 2 #elif LCD_DEPTH == 2
{LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY}, {LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY},
#endif #endif
4, 4,
{-1, 0, 1, 1}, {-1, 0, 1, 1},
{0, 0, 0, 1} {0, 0, 0, 1}
}, },
/* 'J' */ /* 'J' */
{ {
#if LCD_DEPTH >= 16 #if LCD_DEPTH >= 16
{LCD_RGBPACK (255, 153, 255), LCD_RGBPACK (255, 0, 255), {LCD_RGBPACK (255, 153, 255), LCD_RGBPACK (255, 0, 255),
LCD_RGBPACK (153, 0, 153)}, LCD_RGBPACK (153, 0, 153)},
#elif LCD_DEPTH == 2 #elif LCD_DEPTH == 2
{LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY}, {LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY},
#endif #endif
4, 4,
{-1, 0, 1, -1}, {-1, 0, 1, -1},
{0, 0, 0, 1} {0, 0, 0, 1}
}, },
/* 'T' */ /* 'T' */
{ {
#if LCD_DEPTH >= 16 #if LCD_DEPTH >= 16
{LCD_RGBPACK (204, 204, 204), LCD_RGBPACK (153, 153, 153), {LCD_RGBPACK (204, 204, 204), LCD_RGBPACK (153, 153, 153),
LCD_RGBPACK (85, 85, 85)}, LCD_RGBPACK (85, 85, 85)},
#elif LCD_DEPTH == 2 #elif LCD_DEPTH == 2
{LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY}, {LCD_WHITE, LCD_LIGHTGRAY, LCD_DARKGRAY},
#endif
4,
{-1, 0, 1, 0},
{0, 0, 0, 1}
}
};
#if LCD_DEPTH >=2
unsigned int ghost_colors[BLOCKS_NUM][3]; /* same format as figure.colors[] */
#endif #endif
4,
{-1, 0, 1, 0},
{0, 0, 0, 1}
}
};
bool resume = false; bool resume = false;
bool resume_file = false; bool resume_file = false;
@ -954,7 +959,7 @@ static void show_details (void)
rb->lcd_putsxyf (LINES_X, LINES_Y, "%d", rockblox_status.lines); rb->lcd_putsxyf (LINES_X, LINES_Y, "%d", rockblox_status.lines);
#else /* HAVE_LCD_CHARCELLS */ #else /* HAVE_LCD_CHARCELLS */
rb->lcd_putsf (5, 0, "L%d/%d", rockblox_status.level, rb->lcd_putsf (5, 0, "L%d/%d", rockblox_status.level,
rockblox_status.lines); rockblox_status.lines);
rb->lcd_putsf (5, 1, "S%d", rockblox_status.score); rb->lcd_putsf (5, 1, "S%d", rockblox_status.score);
#endif #endif
} }
@ -966,7 +971,7 @@ static void show_highscores (void)
for (i = 0; i<NUM_SCORES; i++) for (i = 0; i<NUM_SCORES; i++)
rb->lcd_putsxyf (HIGH_LABEL_X, HIGH_SCORE_Y + (10 * i), rb->lcd_putsxyf (HIGH_LABEL_X, HIGH_SCORE_Y + (10 * i),
"%06d" HIGHSCORE_SPACE "L%1d", highscores[i].score, highscores[i].level); "%06d" HIGHSCORE_SPACE "L%1d", highscores[i].score, highscores[i].level);
} }
#endif #endif
@ -980,9 +985,9 @@ static void load_game(void)
if (fd < 0) return; if (fd < 0) return;
if (rb->read(fd, &rockblox_status, sizeof(struct _rockblox_status)) if (rb->read(fd, &rockblox_status, sizeof(struct _rockblox_status))
< (ssize_t)sizeof(struct _rockblox_status)) < (ssize_t)sizeof(struct _rockblox_status))
{ {
rb->splash(HZ/2, "Loading Rockblox resume info failed"); rb->splash(HZ/2, "Loading failed");
} else { } else {
resume = true; resume = true;
} }
@ -1001,7 +1006,7 @@ static void dump_resume(void)
goto fail; goto fail;
if (rb->write(fd, &rockblox_status, sizeof(struct _rockblox_status)) if (rb->write(fd, &rockblox_status, sizeof(struct _rockblox_status))
<= 0) <= 0)
{ {
rb->close(fd); rb->close(fd);
goto fail; goto fail;
@ -1010,7 +1015,7 @@ static void dump_resume(void)
return; return;
fail: fail:
rb->splash(HZ/2, "Writing Rockblox resume info failed"); rb->splash(HZ/2, "Saving failed");
return; return;
} }
@ -1021,8 +1026,8 @@ static void init_rockblox (bool resume)
tm = rb->get_time(); tm = rb->get_time();
rb->snprintf(score_name, sizeof(score_name), "%04d%02d%02d %02d%02d%02d", rb->snprintf(score_name, sizeof(score_name), "%04d%02d%02d %02d%02d%02d",
tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec); tm->tm_hour, tm->tm_min, tm->tm_sec);
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
rb->lcd_bitmap (rockblox_background, 0, 0, LCD_WIDTH, LCD_HEIGHT); rb->lcd_bitmap (rockblox_background, 0, 0, LCD_WIDTH, LCD_HEIGHT);
@ -1065,35 +1070,49 @@ static inline int level_speed(int level)
static int getRelativeX (int figure, int square, int orientation) static int getRelativeX (int figure, int square, int orientation)
{ {
switch (orientation) { switch (orientation) {
case 0: case 0:
return figures[figure].shapeX[square]; return figures[figure].shapeX[square];
case 1: case 1:
return figures[figure].shapeY[square]; return figures[figure].shapeY[square];
case 2: case 2:
return -figures[figure].shapeX[square]; return -figures[figure].shapeX[square];
case 3: case 3:
return -figures[figure].shapeY[square]; return -figures[figure].shapeY[square];
default: default:
return 0; return 0;
} }
} }
static int getRelativeY (int figure, int square, int orientation) static int getRelativeY (int figure, int square, int orientation)
{ {
switch (orientation) { switch (orientation) {
case 0: case 0:
return figures[figure].shapeY[square]; return figures[figure].shapeY[square];
case 1: case 1:
return -figures[figure].shapeX[square]; return -figures[figure].shapeX[square];
case 2: case 2:
return -figures[figure].shapeY[square]; return -figures[figure].shapeY[square];
case 3: case 3:
return figures[figure].shapeX[square]; return figures[figure].shapeX[square];
default: default:
return 0; return 0;
} }
} }
static bool canMoveTo (int x, int y, int newOrientation)
{
int i, rx, ry;
for (i = 0; i < 4; i++) {
ry = getRelativeY (rockblox_status.cf, i, newOrientation) + y;
rx = getRelativeX (rockblox_status.cf, i, newOrientation) + x;
if ((rx < 0 || rx >= BOARD_WIDTH) ||
(ry < 0 || ry >= BOARD_HEIGHT) ||
(rockblox_status.board[ry][rx] != EMPTY_BLOCK))
return false;
}
return true;
}
/* redraw the while board on the screen */ /* redraw the while board on the screen */
static void refresh_board (void) static void refresh_board (void)
{ {
@ -1112,6 +1131,8 @@ static void refresh_board (void)
mylcd_set_drawmode (DRMODE_SOLID); mylcd_set_drawmode (DRMODE_SOLID);
#endif #endif
/* draw board (not including current piece) */
for (i = 0; i < BOARD_WIDTH; i++) for (i = 0; i < BOARD_WIDTH; i++)
for (j = 0; j < BOARD_HEIGHT; j++) { for (j = 0; j < BOARD_HEIGHT; j++) {
block = rockblox_status.board[j][i]; block = rockblox_status.board[j][i];
@ -1150,11 +1171,58 @@ static void refresh_board (void)
} }
} }
/* draw ghost piece first so that it appears underneath the "real" piece */
int ghost_y=rockblox_status.cy;
/* find the position to draw it in */
while(canMoveTo(rockblox_status.cx, ghost_y+1, rockblox_status.co))
ghost_y++;
for (i = 0; i < 4; i++) { for (i = 0; i < 4; i++) {
x = getRelativeX (rockblox_status.cf, i, rockblox_status.co) x = getRelativeX (rockblox_status.cf, i, rockblox_status.co)
+ rockblox_status.cx; + rockblox_status.cx;
y = getRelativeY (rockblox_status.cf, i, rockblox_status.co) y = getRelativeY (rockblox_status.cf, i, rockblox_status.co)
+ rockblox_status.cy; + ghost_y;
#ifdef HAVE_LCD_BITMAP
#if LCD_DEPTH >= 2
/* middle drawing */
rb->lcd_set_foreground (ghost_colors[rockblox_status.cf][0]);
#endif
rb->lcd_fillrect (BOARD_X + x * BLOCK_WIDTH,
BOARD_Y + y * BLOCK_HEIGHT,
BLOCK_WIDTH, BLOCK_HEIGHT);
#if LCD_DEPTH >= 2
/* light drawing */
rb->lcd_set_foreground (ghost_colors[rockblox_status.cf][1]);
#endif
rb->lcd_vline (BOARD_X + x * BLOCK_WIDTH, BOARD_Y + y * BLOCK_HEIGHT,
BOARD_Y + (y + 1) * BLOCK_HEIGHT - 2);
rb->lcd_hline (BOARD_X + x * BLOCK_WIDTH,
BOARD_X + (x + 1) * BLOCK_WIDTH - 2,
BOARD_Y + y * BLOCK_HEIGHT);
#if LCD_DEPTH >= 2
/* shadow drawing */
rb->lcd_set_foreground (ghost_colors[rockblox_status.cf][2]);
#endif
rb->lcd_vline (BOARD_X + (x + 1) * BLOCK_WIDTH - 1,
BOARD_Y + y * BLOCK_HEIGHT + 1,
BOARD_Y + (y + 1) * BLOCK_HEIGHT - 1);
rb->lcd_hline (BOARD_X + x * BLOCK_WIDTH + 1,
BOARD_X + (x + 1) * BLOCK_WIDTH - 1,
BOARD_Y + (y + 1) * BLOCK_HEIGHT - 1);
#else /* HAVE_LCD_CHARCELLS */
pgfx_drawpixel (BOARD_X + x, BOARD_Y + y);
#endif
}
/* draw current piece */
for (i = 0; i < 4; i++) {
x = getRelativeX (rockblox_status.cf, i, rockblox_status.co)
+ rockblox_status.cx;
y = getRelativeY (rockblox_status.cf, i, rockblox_status.co)
+ rockblox_status.cy;
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
#if LCD_DEPTH >= 2 #if LCD_DEPTH >= 2
/* middle drawing */ /* middle drawing */
@ -1186,21 +1254,8 @@ static void refresh_board (void)
pgfx_drawpixel (BOARD_X + x, BOARD_Y + y); pgfx_drawpixel (BOARD_X + x, BOARD_Y + y);
#endif #endif
} }
mylcd_update ();
}
static bool canMoveTo (int x, int y, int newOrientation) mylcd_update ();
{
int i, rx, ry;
for (i = 0; i < 4; i++) {
ry = getRelativeY (rockblox_status.cf, i, newOrientation) + y;
rx = getRelativeX (rockblox_status.cf, i, newOrientation) + x;
if ((rx < 0 || rx >= BOARD_WIDTH) ||
(ry < 0 || ry >= BOARD_HEIGHT) ||
(rockblox_status.board[ry][rx] != EMPTY_BLOCK))
return false;
}
return true;
} }
/* draws the preview of next block in the preview window */ /* draws the preview of next block in the preview window */
@ -1291,7 +1346,7 @@ static void new_block (void)
rockblox_status.co = 0; /* start at the same orientation all time */ rockblox_status.co = 0; /* start at the same orientation all time */
rockblox_status.nf = t_rand (BLOCKS_NUM); rockblox_status.nf = t_rand (BLOCKS_NUM);
rockblox_status.gameover = !canMoveTo (rockblox_status.cx, rockblox_status.gameover = !canMoveTo (rockblox_status.cx,
rockblox_status.cy, rockblox_status.co); rockblox_status.cy, rockblox_status.co);
rockblox_status.dropped = false; rockblox_status.dropped = false;
draw_next_block (); draw_next_block ();
@ -1307,7 +1362,7 @@ static int check_lines (void)
for (j = 0; j < BOARD_HEIGHT; j++) { for (j = 0; j < BOARD_HEIGHT; j++) {
for (i = 0; ((i < BOARD_WIDTH) && for (i = 0; ((i < BOARD_WIDTH) &&
(rockblox_status.board[j][i] != EMPTY_BLOCK)); i++); (rockblox_status.board[j][i] != EMPTY_BLOCK)); i++);
if (i == BOARD_WIDTH) { /* woo hoo, we have a line */ if (i == BOARD_WIDTH) { /* woo hoo, we have a line */
rockblox++; rockblox++;
for (y = j; y > 0; y--) for (y = j; y > 0; y--)
@ -1406,38 +1461,39 @@ static int rockblox_menu(void)
rb->button_clear_queue(); rb->button_clear_queue();
while (true) { while (true) {
switch (rb->do_menu(&main_menu, &selected, NULL, false)) { switch (rb->do_menu(&main_menu, &selected, NULL, false)) {
case 0: case 0:
if(resume_file) if(resume_file)
rb->remove(RESUME_FILE); rb->remove(RESUME_FILE);
init_rockblox(true); init_rockblox(true);
return 0; return 0;
case 1: case 1:
init_rockblox(false); init_rockblox(false);
return 0; return 0;
case 2: case 2:
if (rockblox_help()) if (rockblox_help())
return 1;
break;
case 3:
highscore_show(-1, highscores, NUM_SCORES, true);
break;
case 4:
if (playback_control(NULL))
return 1;
break;
case 5:
return 1; return 1;
case 6: break;
if (resume) { case 3:
rb->splash(HZ*1, "Saving game ..."); highscore_show(-1, highscores, NUM_SCORES, true);
dump_resume(); break;
} case 4:
if (playback_control(NULL))
return 1; return 1;
case MENU_ATTACHED_USB: break;
return 1; case 5:
default: return 1;
return 1; case 6:
break; if (resume) {
rb->splash(0, "Saving...");
dump_resume();
rb->lcd_update();
}
return 1;
case MENU_ATTACHED_USB:
return 1;
default:
return 1;
break;
} }
} }
} }
@ -1483,44 +1539,44 @@ static int rockblox_loop (void)
button = rb->button_get_w_tmo (MAX(next_down_tick - *rb->current_tick, 1)); button = rb->button_get_w_tmo (MAX(next_down_tick - *rb->current_tick, 1));
switch (button) { switch (button) {
#ifdef ROCKBLOX_RC_OFF #ifdef ROCKBLOX_RC_OFF
case ROCKBLOX_RC_OFF: case ROCKBLOX_RC_OFF:
#endif #endif
case ROCKBLOX_OFF: case ROCKBLOX_OFF:
#ifdef ROCKBLOX_OFF_PRE #ifdef ROCKBLOX_OFF_PRE
if (lastbutton != ROCKBLOX_OFF_PRE) if (lastbutton != ROCKBLOX_OFF_PRE)
break;
#endif
resume = true;
return 0;
break; break;
#endif
resume = true;
return 0;
break;
#if defined(ROCKBLOX_ROTATE) #if defined(ROCKBLOX_ROTATE)
case ROCKBLOX_ROTATE: case ROCKBLOX_ROTATE:
#endif #endif
case ROCKBLOX_ROTATE_CCW: case ROCKBLOX_ROTATE_CCW:
case ROCKBLOX_ROTATE_CCW | BUTTON_REPEAT: case ROCKBLOX_ROTATE_CCW | BUTTON_REPEAT:
#ifdef HAVE_SCROLLWHEEL #ifdef HAVE_SCROLLWHEEL
/* if the wheel is disabled, add an event to the stack. */ /* if the wheel is disabled, add an event to the stack. */
if(wheel_enabled == false) if(wheel_enabled == false)
wheel_events++; wheel_events++;
/* if it's enabled, go ahead and rotate.. */ /* if it's enabled, go ahead and rotate.. */
if(wheel_enabled) if(wheel_enabled)
#endif #endif
#ifdef ROCKBLOX_ROTATE_CCW2 #ifdef ROCKBLOX_ROTATE_CCW2
/* fallback */ /* fallback */
case ROCKBLOX_ROTATE_CCW2: case ROCKBLOX_ROTATE_CCW2:
#endif #endif
move_block (0, 0, (rockblox_status.co + 1) % figures[rockblox_status.cf].max_or); move_block (0, 0, (rockblox_status.co + 1) % figures[rockblox_status.cf].max_or);
break; break;
case ROCKBLOX_ROTATE_CW: case ROCKBLOX_ROTATE_CW:
case ROCKBLOX_ROTATE_CW | BUTTON_REPEAT: case ROCKBLOX_ROTATE_CW | BUTTON_REPEAT:
#ifdef HAVE_SCROLLWHEEL #ifdef HAVE_SCROLLWHEEL
if(wheel_enabled == false) if(wheel_enabled == false)
wheel_events++; wheel_events++;
if(wheel_enabled) if(wheel_enabled)
#endif #endif
#ifdef ROCKBLOX_ROTATE_CW2 #ifdef ROCKBLOX_ROTATE_CW2
/* fallback */ /* fallback */
@ -1529,43 +1585,43 @@ static int rockblox_loop (void)
move_block (0, 0, move_block (0, 0,
(rockblox_status.co + figures[rockblox_status.cf].max_or - (rockblox_status.co + figures[rockblox_status.cf].max_or -
1) % figures[rockblox_status.cf].max_or); 1) % figures[rockblox_status.cf].max_or);
break; break;
case ROCKBLOX_DOWN: case ROCKBLOX_DOWN:
case ROCKBLOX_DOWN | BUTTON_REPEAT: case ROCKBLOX_DOWN | BUTTON_REPEAT:
move_block (0, 1, rockblox_status.co); move_block (0, 1, rockblox_status.co);
break; break;
case ROCKBLOX_RIGHT: case ROCKBLOX_RIGHT:
case ROCKBLOX_RIGHT | BUTTON_REPEAT: case ROCKBLOX_RIGHT | BUTTON_REPEAT:
move_block (1, 0, rockblox_status.co); move_block (1, 0, rockblox_status.co);
break; break;
case ROCKBLOX_LEFT: case ROCKBLOX_LEFT:
case ROCKBLOX_LEFT | BUTTON_REPEAT: case ROCKBLOX_LEFT | BUTTON_REPEAT:
move_block (-1, 0, rockblox_status.co); move_block (-1, 0, rockblox_status.co);
break; break;
case ROCKBLOX_DROP: case ROCKBLOX_DROP:
#ifdef ROCKBLOX_DROP_PRE #ifdef ROCKBLOX_DROP_PRE
if (lastbutton != ROCKBLOX_DROP_PRE) if (lastbutton != ROCKBLOX_DROP_PRE)
break; break;
#endif #endif
while (canMoveTo (rockblox_status.cx, rockblox_status.cy + 1, rockblox_status.co)) while (canMoveTo (rockblox_status.cx, rockblox_status.cy + 1, rockblox_status.co))
move_block (0, 1, rockblox_status.co); move_block (0, 1, rockblox_status.co);
rockblox_status.dropped = true; rockblox_status.dropped = true;
break; break;
#ifdef ROCKBLOX_RESTART #ifdef ROCKBLOX_RESTART
case ROCKBLOX_RESTART: case ROCKBLOX_RESTART:
rb->splash (HZ * 1, "Restarting..."); rb->splash (HZ * 1, "Restarting...");
init_rockblox (false); init_rockblox (false);
break; break;
#endif #endif
default: default:
if (rb->default_event_handler (button) == SYS_USB_CONNECTED) if (rb->default_event_handler (button) == SYS_USB_CONNECTED)
return PLUGIN_USB_CONNECTED; return PLUGIN_USB_CONNECTED;
break; break;
} }
#if defined(ROCKBLOX_OFF_PRE) || defined(ROCKBLOX_DROP_PRE) #if defined(ROCKBLOX_OFF_PRE) || defined(ROCKBLOX_DROP_PRE)
if (button != BUTTON_NONE) if (button != BUTTON_NONE)
@ -1645,10 +1701,41 @@ enum plugin_status plugin_start (const void *parameter)
return PLUGIN_OK; return PLUGIN_OK;
} }
#endif #endif
/* Turn off backlight timeout */ /* Turn off backlight timeout */
backlight_ignore_timeout(); backlight_ignore_timeout();
load_game(); load_game();
resume_file = resume; resume_file = resume;
#if LCD_DEPTH >= 2
/* precalculate ghost piece colors */
#ifdef HAVE_LCD_COLOR
for(int p=0;p<BLOCKS_NUM;++p)
{
for(int i=0;i<3;++i)
{
/* find red average */
int red=0;
red+=RGB_UNPACK_RED(figures[p].color[i])/4;
/* green */
int green=0;
green+=RGB_UNPACK_GREEN(figures[p].color[i])/4;
/* blue */
int blue=0;
blue+=RGB_UNPACK_BLUE(figures[p].color[i])/4;
ghost_colors[p][i]=LCD_RGBPACK(red,green,blue);
}
}
#else /* greyscale or monochrome */
for(int p=0;p<BLOCKS_NUM;++p)
{
for(int i=0;i<3;++i)
ghost_colors[p][i]=figures[p].color[i]/2;
}
#endif
#endif /* LCD_DEPTH >= 2 */
while(!rockblox_loop()) { while(!rockblox_loop()) {
if(!resume) { if(!resume) {
int position = highscore_update(rockblox_status.score, int position = highscore_update(rockblox_status.score,
@ -1656,7 +1743,7 @@ enum plugin_status plugin_start (const void *parameter)
highscores, NUM_SCORES); highscores, NUM_SCORES);
if (position != -1) { if (position != -1) {
if (position == 0) if (position == 0)
rb->splash(HZ*2, "New High Score"); rb->splashf(HZ*2, "New High Score: %d", rockblox_status.score);
highscore_show(position, highscores, NUM_SCORES, true); highscore_show(position, highscores, NUM_SCORES, true);
} }
} }