1
0
Fork 0
forked from len0rd/rockbox

Blackjack: Use standard menu and add playback menu, use pluginlib high scores.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22126 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Karl Kurbjun 2009-08-03 01:07:58 +00:00
parent bbc9aebae3
commit 50d3928901
8 changed files with 462 additions and 588 deletions

View file

@ -120,7 +120,7 @@ bool highscore_would_update(int score, struct highscore *scores,
}
#ifdef HAVE_LCD_BITMAP
void highscore_show(int position, struct highscore *scores, int num_scores)
void highscore_show(int position, struct highscore *scores, int num_scores, bool show_level)
{
int i, w, h;
char str[30];
@ -141,7 +141,11 @@ void highscore_show(int position, struct highscore *scores, int num_scores)
}
rb->lcd_putsxy(LCD_WIDTH/2-w/2, MARGIN, "High Scores");
rb->lcd_putsxy(LCD_WIDTH/4-w/4,2*h, "Score");
rb->lcd_putsxy(LCD_WIDTH*3/4-w/4,2*h, "Level");
/* Decide whether to display the level column or not */
if(show_level) {
rb->lcd_putsxy(LCD_WIDTH*3/4-w/4,2*h, "Level");
}
for (i = 0; i<num_scores; i++)
{
@ -154,8 +158,13 @@ void highscore_show(int position, struct highscore *scores, int num_scores)
rb->lcd_putsxy (MARGIN,3*h + h*i, str);
rb->snprintf (str, sizeof (str), "%d", scores[i].score);
rb->lcd_putsxy (LCD_WIDTH/4-w/4,3*h + h*i, str);
rb->snprintf (str, sizeof (str), "%d", scores[i].level);
rb->lcd_putsxy (LCD_WIDTH*3/4-w/4,3*h + h*i, str);
/* Decide whether to display the level column or not */
if(show_level) {
rb->snprintf (str, sizeof (str), "%d", scores[i].level);
rb->lcd_putsxy (LCD_WIDTH*3/4-w/4,3*h + h*i, str);
}
if(i == position) {
#ifdef HAVE_LCD_COLOR
rb->lcd_set_foreground(LCD_WHITE);