2002-05-18 11:39:32 +00:00
|
|
|
/***************************************************************************
|
2005-09-02 05:39:09 +00:00
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2002-05-18 11:39:32 +00:00
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Robert Hak <rhak at ramapo.edu>
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2005-09-02 05:39:09 +00:00
|
|
|
#include "plugin.h"
|
2007-08-15 12:42:09 +00:00
|
|
|
#include "helper.h"
|
2002-05-18 11:39:32 +00:00
|
|
|
|
2006-01-15 18:20:18 +00:00
|
|
|
PLUGIN_HEADER
|
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
#if (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
|
|
|
|
|
|
|
|
#define QUIT BUTTON_OFF
|
|
|
|
#define UP BUTTON_UP
|
|
|
|
#define DOWN BUTTON_DOWN
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
|
|
|
|
|
|
|
#define QUIT BUTTON_OFF
|
|
|
|
#define UP BUTTON_UP
|
|
|
|
#define DOWN BUTTON_DOWN
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
|
|
|
|
#define QUIT BUTTON_OFF
|
|
|
|
#define UP BUTTON_UP
|
|
|
|
#define DOWN BUTTON_DOWN
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == ARCHOS_AV300_PAD
|
|
|
|
|
|
|
|
#define QUIT BUTTON_OFF
|
|
|
|
#define UP BUTTON_UP
|
|
|
|
#define DOWN BUTTON_DOWN
|
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IPOD_4G_PAD)
|
|
|
|
|
|
|
|
#define QUIT BUTTON_MENU
|
|
|
|
#define UP BUTTON_SCROLL_BACK
|
|
|
|
#define DOWN BUTTON_SCROLL_FWD
|
|
|
|
|
|
|
|
#elif (CONFIG_KEYPAD == GIGABEAT_PAD)
|
|
|
|
|
|
|
|
#define QUIT BUTTON_A
|
|
|
|
#define UP BUTTON_UP
|
|
|
|
#define DOWN BUTTON_DOWN
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD /* grayscale at the moment */
|
|
|
|
|
|
|
|
#define QUIT BUTTON_POWER
|
|
|
|
#define UP BUTTON_UP
|
|
|
|
#define DOWN BUTTON_DOWN
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == SANSA_E200_PAD
|
|
|
|
|
|
|
|
#define QUIT BUTTON_POWER
|
|
|
|
#define UP BUTTON_SCROLL_UP
|
|
|
|
#define DOWN BUTTON_SCROLL_DOWN
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H10_PAD /* grayscale at the moment */
|
|
|
|
|
|
|
|
#define QUIT BUTTON_POWER
|
|
|
|
#define UP BUTTON_SCROLL_UP
|
|
|
|
#define DOWN BUTTON_SCROLL_DOWN
|
|
|
|
|
2007-08-30 20:15:55 +00:00
|
|
|
#elif CONFIG_KEYPAD == PLAYER_PAD
|
|
|
|
|
|
|
|
#define QUIT BUTTON_STOP
|
|
|
|
#define UP BUTTON_LEFT
|
|
|
|
#define DOWN BUTTON_RIGHT
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == IPOD_1G2G_PAD
|
|
|
|
|
2007-08-30 20:17:49 +00:00
|
|
|
#define QUIT (BUTTON_PLAY|BUTTON_REPEAT)
|
2007-08-30 20:15:55 +00:00
|
|
|
#define UP BUTTON_SCROLL_BACK
|
|
|
|
#define DOWN BUTTON_SCROLL_FWD
|
|
|
|
|
2007-08-30 20:25:19 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
|
|
|
|
|
|
|
|
#define QUIT BUTTON_PLAY
|
|
|
|
#define UP BUTTON_UP
|
|
|
|
#define DOWN BUTTON_DOWN
|
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
#else
|
|
|
|
#error Unsupported keypad
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-09-02 05:39:09 +00:00
|
|
|
void roll_credits(void);
|
2004-08-03 20:52:31 +00:00
|
|
|
const char* const credits[] = {
|
2002-10-15 07:50:52 +00:00
|
|
|
#include "credits.raw" /* generated list of names from docs/CREDITS */
|
2002-05-18 11:39:32 +00:00
|
|
|
};
|
|
|
|
|
2005-09-02 05:39:09 +00:00
|
|
|
static struct plugin_api* rb;
|
|
|
|
|
|
|
|
enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|
|
|
{
|
|
|
|
int j = 0;
|
|
|
|
int btn;
|
|
|
|
|
|
|
|
(void)parameter;
|
|
|
|
rb = api;
|
|
|
|
|
2007-03-14 17:19:27 +00:00
|
|
|
/* Turn off backlight timeout */
|
2007-08-16 23:01:18 +00:00
|
|
|
backlight_force_on(rb); /* backlight control in lib/helper.c */
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2005-09-02 05:39:09 +00:00
|
|
|
rb->show_logo();
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
rb->lcd_double_height(false);
|
|
|
|
#endif
|
|
|
|
|
2007-03-14 21:54:18 +00:00
|
|
|
/* Show the logo for about 3 secs allowing the user to stop */
|
2006-03-21 05:45:37 +00:00
|
|
|
for (j = 0; j < 15; j++) {
|
2005-09-02 05:39:09 +00:00
|
|
|
rb->sleep((HZ*2)/10);
|
|
|
|
|
|
|
|
btn = rb->button_get(false);
|
2007-08-30 19:55:54 +00:00
|
|
|
if (btn != BUTTON_NONE && (btn & QUIT))
|
2007-03-14 17:27:21 +00:00
|
|
|
goto end_of_proc;
|
2005-09-02 05:39:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
roll_credits();
|
|
|
|
|
2007-03-14 17:27:21 +00:00
|
|
|
end_of_proc:
|
2007-08-15 12:42:09 +00:00
|
|
|
/* Turn on backlight timeout (revert to settings) */
|
2007-08-16 23:01:18 +00:00
|
|
|
backlight_use_settings(rb); /* backlight control in lib/helper.c */
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2005-09-02 05:39:09 +00:00
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
|
|
|
|
2002-09-05 17:58:27 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2002-05-31 08:12:29 +00:00
|
|
|
void roll_credits(void)
|
2002-05-18 11:39:32 +00:00
|
|
|
{
|
2002-07-27 20:17:43 +00:00
|
|
|
int numnames = sizeof(credits)/sizeof(char*);
|
2005-05-08 11:51:06 +00:00
|
|
|
int curr_name = 0;
|
2006-05-29 10:46:41 +00:00
|
|
|
int curr_len = rb->utf8length(credits[0]);
|
2005-05-08 11:51:06 +00:00
|
|
|
int curr_index = 0;
|
|
|
|
int curr_line = 0;
|
|
|
|
int name, len, new_len, line, x;
|
2002-05-21 08:05:39 +00:00
|
|
|
|
2005-05-08 11:51:06 +00:00
|
|
|
while (1)
|
2002-07-27 20:17:43 +00:00
|
|
|
{
|
2005-09-02 05:39:09 +00:00
|
|
|
rb->lcd_clear_display();
|
2005-05-08 11:51:06 +00:00
|
|
|
|
|
|
|
name = curr_name;
|
|
|
|
x = -curr_index;
|
|
|
|
len = curr_len;
|
|
|
|
line = curr_line;
|
|
|
|
|
|
|
|
while (x < 11)
|
2002-07-27 20:17:43 +00:00
|
|
|
{
|
2005-05-08 11:51:06 +00:00
|
|
|
int x2;
|
|
|
|
|
|
|
|
if (x < 0)
|
2006-05-29 10:46:41 +00:00
|
|
|
rb->lcd_puts(0, line, credits[name] + rb->utf8seek(credits[name], -x));
|
2005-05-08 11:51:06 +00:00
|
|
|
else
|
2005-09-02 05:39:09 +00:00
|
|
|
rb->lcd_puts(x, line, credits[name]);
|
|
|
|
|
2005-05-08 11:51:06 +00:00
|
|
|
if (++name >= numnames)
|
|
|
|
break;
|
2006-05-02 21:44:04 +00:00
|
|
|
|
2005-05-09 16:22:47 +00:00
|
|
|
line ^= 1;
|
2005-05-08 11:51:06 +00:00
|
|
|
|
|
|
|
x2 = x + len/2;
|
|
|
|
if ((unsigned)x2 < 11)
|
2005-09-02 05:39:09 +00:00
|
|
|
rb->lcd_putc(x2, line, '*');
|
2002-07-27 20:17:43 +00:00
|
|
|
|
2006-05-29 10:46:41 +00:00
|
|
|
new_len = rb->utf8length(credits[name]);
|
2005-05-08 11:51:06 +00:00
|
|
|
x += MAX(len/2 + 2, len - new_len/2 + 1);
|
|
|
|
len = new_len;
|
|
|
|
}
|
2007-04-06 22:55:00 +00:00
|
|
|
rb->lcd_update();
|
|
|
|
|
2002-07-27 20:17:43 +00:00
|
|
|
/* abort on keypress */
|
2007-08-30 19:55:54 +00:00
|
|
|
if (rb->button_get_w_tmo(HZ/8) & QUIT)
|
2002-09-05 17:58:27 +00:00
|
|
|
return;
|
2005-05-08 11:51:06 +00:00
|
|
|
|
|
|
|
if (++curr_index >= curr_len)
|
|
|
|
{
|
|
|
|
if (++curr_name >= numnames)
|
|
|
|
break;
|
2006-05-29 10:46:41 +00:00
|
|
|
new_len = rb->utf8length(credits[curr_name]);
|
2005-05-08 11:51:06 +00:00
|
|
|
curr_index -= MAX(curr_len/2 + 2, curr_len - new_len/2 + 1);
|
|
|
|
curr_len = new_len;
|
|
|
|
curr_line ^= 1;
|
|
|
|
}
|
2002-07-27 20:17:43 +00:00
|
|
|
}
|
2002-05-18 11:39:32 +00:00
|
|
|
}
|
2002-09-05 17:58:27 +00:00
|
|
|
|
2005-09-22 10:56:42 +00:00
|
|
|
#else
|
|
|
|
|
2002-09-05 17:58:27 +00:00
|
|
|
void roll_credits(void)
|
|
|
|
{
|
2006-05-29 10:21:22 +00:00
|
|
|
#if (CONFIG_KEYPAD == RECORDER_PAD)
|
|
|
|
#define PAUSE_TIME 1.2
|
|
|
|
#define ANIM_SPEED 35
|
2007-07-27 09:57:27 +00:00
|
|
|
#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
2006-05-29 10:21:22 +00:00
|
|
|
#define PAUSE_TIME 0
|
|
|
|
#define ANIM_SPEED 100
|
|
|
|
#elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
|
|
|
|
#define PAUSE_TIME 0
|
|
|
|
#define ANIM_SPEED 35
|
2006-08-09 13:25:19 +00:00
|
|
|
#elif (CONFIG_KEYPAD == GIGABEAT_PAD)
|
|
|
|
#define PAUSE_TIME 0
|
|
|
|
#define ANIM_SPEED 100
|
2006-05-29 10:21:22 +00:00
|
|
|
#else
|
|
|
|
#define PAUSE_TIME 1
|
|
|
|
#define ANIM_SPEED 40
|
|
|
|
#endif
|
2002-09-05 17:58:27 +00:00
|
|
|
|
2006-05-29 10:21:22 +00:00
|
|
|
#define NUM_VISIBLE_LINES (LCD_HEIGHT/font_h - 1)
|
|
|
|
#define CREDITS_TARGETPOS ((LCD_WIDTH/2)-(credits_w/2))
|
2002-09-05 17:58:27 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
int i=0, j=0, k=0, namepos=0, offset_dummy, btn;
|
2006-05-29 10:21:22 +00:00
|
|
|
int name_w, name_h, name_targetpos=1, font_h;
|
|
|
|
int credits_w, credits_pos;
|
|
|
|
int numnames = (sizeof(credits)/sizeof(char*));
|
|
|
|
char name[40], elapsednames[20];
|
2003-03-17 21:16:23 +00:00
|
|
|
|
2005-09-02 05:39:09 +00:00
|
|
|
rb->lcd_setfont(FONT_UI);
|
2006-05-29 10:21:22 +00:00
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->lcd_update();
|
2005-09-02 05:39:09 +00:00
|
|
|
|
2006-05-29 10:21:22 +00:00
|
|
|
rb->lcd_getstringsize("A", NULL, &font_h);
|
2002-09-05 17:58:27 +00:00
|
|
|
|
2006-05-29 10:21:22 +00:00
|
|
|
/* snprintf "credits" text, and save the width and height */
|
|
|
|
rb->snprintf(elapsednames, sizeof(elapsednames), "[Credits] %d/%d",
|
|
|
|
j+1, numnames);
|
|
|
|
rb->lcd_getstringsize(elapsednames, &credits_w, NULL);
|
|
|
|
|
|
|
|
/* fly in "credits" text from the left */
|
|
|
|
for(credits_pos = 0 - credits_w; credits_pos <= CREDITS_TARGETPOS;
|
|
|
|
credits_pos += (CREDITS_TARGETPOS-credits_pos + 14) / 7)
|
|
|
|
{
|
2005-09-02 05:39:09 +00:00
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
2006-05-29 10:21:22 +00:00
|
|
|
rb->lcd_fillrect(0, 0, LCD_WIDTH, font_h);
|
2005-09-02 05:39:09 +00:00
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID);
|
2006-05-29 10:21:22 +00:00
|
|
|
rb->lcd_putsxy(credits_pos, 0, elapsednames);
|
|
|
|
rb->lcd_update_rect(0, 0, LCD_WIDTH, font_h);
|
|
|
|
rb->sleep(HZ/ANIM_SPEED);
|
|
|
|
}
|
2002-09-24 18:04:15 +00:00
|
|
|
|
2006-05-29 10:21:22 +00:00
|
|
|
/* first screen's worth of lines fly in */
|
|
|
|
for(i=0; i<NUM_VISIBLE_LINES; i++)
|
|
|
|
{
|
|
|
|
rb->snprintf(name, sizeof(name), "%s", credits[i]);
|
|
|
|
rb->lcd_getstringsize(name, &name_w, &name_h);
|
|
|
|
|
|
|
|
rb->snprintf(elapsednames, sizeof(elapsednames), "[Credits] %d/%d",
|
|
|
|
i+1, numnames);
|
|
|
|
rb->lcd_getstringsize(elapsednames, &credits_w, NULL);
|
|
|
|
rb->lcd_putsxy(CREDITS_TARGETPOS, 0, elapsednames);
|
2002-09-24 18:04:15 +00:00
|
|
|
|
2006-05-29 10:21:22 +00:00
|
|
|
for(namepos = 0-name_w; namepos <= name_targetpos;
|
|
|
|
namepos += (name_targetpos - namepos + 14) / 7)
|
|
|
|
{
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
|
|
|
rb->lcd_fillrect(0, font_h*(i+1), LCD_WIDTH, font_h); /* clear any trails left behind */
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID);
|
|
|
|
rb->lcd_putsxy(namepos, font_h*(i+1), name);
|
|
|
|
rb->lcd_update_rect(0, font_h*(i+1), LCD_WIDTH, font_h);
|
|
|
|
rb->lcd_update_rect(CREDITS_TARGETPOS, 0, credits_w, font_h);
|
2002-09-24 18:04:15 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
/* exit on power key */
|
2006-05-29 10:21:22 +00:00
|
|
|
btn = rb->button_get_w_tmo(HZ/ANIM_SPEED);
|
2007-08-30 19:55:54 +00:00
|
|
|
if (btn != BUTTON_NONE && (btn & QUIT))
|
2006-05-29 10:21:22 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
j+=i;
|
|
|
|
|
|
|
|
/* pause for a bit if needed */
|
|
|
|
btn = rb->button_get_w_tmo(HZ*PAUSE_TIME); /* exit on keypress */
|
2007-08-30 19:55:54 +00:00
|
|
|
if (btn != BUTTON_NONE && (btn & QUIT))
|
2006-05-29 10:21:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* now begin looping the in-out animation */
|
2007-08-30 19:55:54 +00:00
|
|
|
do {
|
|
|
|
for(; j < numnames; j+=i)
|
2006-05-29 10:21:22 +00:00
|
|
|
{
|
2007-08-30 19:55:54 +00:00
|
|
|
/* just a screen's worth at a time */
|
|
|
|
for(i=0; i<NUM_VISIBLE_LINES; i++)
|
|
|
|
{
|
|
|
|
if(j+i >= numnames)
|
2002-09-24 18:04:15 +00:00
|
|
|
break;
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
offset_dummy=1;
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
rb->snprintf(name, sizeof(name), "%s",
|
|
|
|
credits[(j>=NUM_VISIBLE_LINES)?
|
|
|
|
j+i-NUM_VISIBLE_LINES:j+i]);
|
|
|
|
rb->lcd_getstringsize(name, &name_w, &name_h);
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
/* fly out an existing line.. */
|
|
|
|
while(namepos<LCD_WIDTH+offset_dummy)
|
|
|
|
{
|
2006-05-29 10:21:22 +00:00
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
|
|
|
rb->lcd_fillrect(0, font_h*(i+1), LCD_WIDTH, font_h); /* clear trails */
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID);
|
|
|
|
rb->lcd_putsxy(namepos, font_h*(i+1), name);
|
|
|
|
rb->lcd_update_rect(0, font_h*(i+1), LCD_WIDTH, font_h);
|
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
/* exit on keypress, react to scrolling */
|
2006-05-29 10:21:22 +00:00
|
|
|
btn = rb->button_get_w_tmo(HZ/ANIM_SPEED);
|
2007-08-30 19:55:54 +00:00
|
|
|
if (btn != BUTTON_NONE)
|
|
|
|
{
|
|
|
|
if (btn & QUIT)
|
2006-05-29 10:21:22 +00:00
|
|
|
return;
|
2007-08-30 19:55:54 +00:00
|
|
|
else if ((btn & UP) ^ (btn & DOWN))
|
|
|
|
{
|
|
|
|
/* compute the new position */
|
|
|
|
j+=((btn & UP)?-1:1)*(NUM_VISIBLE_LINES/2);
|
|
|
|
if (j+i >= numnames) j=numnames-i-1;
|
|
|
|
if (j < 0) j = 0;
|
|
|
|
|
|
|
|
/* and refresh the whole screen */
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
|
|
|
rb->lcd_fillrect(0, 0, LCD_WIDTH,
|
|
|
|
font_h * (NUM_VISIBLE_LINES+1));
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID);
|
|
|
|
|
|
|
|
rb->snprintf(elapsednames, sizeof(elapsednames),
|
|
|
|
"[Credits] %d/%d", j+i+1, numnames);
|
|
|
|
rb->lcd_getstringsize(elapsednames, &credits_w, NULL);
|
|
|
|
rb->lcd_putsxy(CREDITS_TARGETPOS, 0, elapsednames);
|
|
|
|
|
|
|
|
for (k=0; k<NUM_VISIBLE_LINES; k++)
|
|
|
|
if (k!=i)
|
|
|
|
{
|
|
|
|
rb->snprintf(name, sizeof(name), "%s",
|
|
|
|
credits[(j>=NUM_VISIBLE_LINES)?
|
|
|
|
((k<i)?
|
|
|
|
(j+k):(j+k-NUM_VISIBLE_LINES)):
|
|
|
|
j+k]);
|
|
|
|
rb->lcd_putsxy(0, font_h*(k+1), name);
|
|
|
|
}
|
|
|
|
rb->lcd_update_rect(0, font_h, LCD_WIDTH,
|
|
|
|
font_h * (NUM_VISIBLE_LINES+1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-05-29 10:21:22 +00:00
|
|
|
namepos += offset_dummy;
|
|
|
|
offset_dummy++;
|
2007-08-30 19:55:54 +00:00
|
|
|
}
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
rb->snprintf(name, sizeof(name), "%s", credits[j+i]);
|
|
|
|
rb->lcd_getstringsize(name, &name_w, &name_h);
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
rb->snprintf(elapsednames, sizeof(elapsednames), "[Credits] %d/%d",
|
|
|
|
j+i+1, numnames);
|
|
|
|
rb->lcd_getstringsize(elapsednames, &credits_w, NULL);
|
|
|
|
rb->lcd_putsxy(CREDITS_TARGETPOS, 0, elapsednames);
|
|
|
|
if (j+i < NUM_VISIBLE_LINES) /* takes care of trail on loop */
|
|
|
|
rb->lcd_update_rect(0, 0, LCD_WIDTH, font_h);
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
for(namepos = 0-name_w; namepos <= name_targetpos;
|
|
|
|
namepos += (name_targetpos - namepos + 14) / 7)
|
|
|
|
{
|
2006-05-29 10:21:22 +00:00
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
|
|
|
rb->lcd_fillrect(0, font_h*(i+1), LCD_WIDTH, font_h);
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID);
|
|
|
|
rb->lcd_putsxy(namepos, font_h*(i+1), name);
|
|
|
|
rb->lcd_update_rect(0, font_h*(i+1), LCD_WIDTH, font_h);
|
|
|
|
rb->lcd_update_rect(CREDITS_TARGETPOS, 0, credits_w, font_h);
|
|
|
|
|
|
|
|
/* exit on keypress */
|
|
|
|
btn = rb->button_get_w_tmo(HZ/ANIM_SPEED);
|
2007-08-30 19:55:54 +00:00
|
|
|
if (btn != BUTTON_NONE && (btn & QUIT))
|
|
|
|
return;
|
|
|
|
}
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
namepos = name_targetpos;
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
/* ..and repeat. */
|
|
|
|
}
|
2002-09-05 17:58:27 +00:00
|
|
|
|
2007-08-30 19:55:54 +00:00
|
|
|
btn = rb->button_get_w_tmo(HZ*PAUSE_TIME); /* exit on keypress */
|
|
|
|
if (btn != BUTTON_NONE && (btn & QUIT))
|
2006-05-29 10:21:22 +00:00
|
|
|
return;
|
2007-08-30 19:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
if(k) {
|
|
|
|
/* on loop, the new credit line might shorten */
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
|
|
|
rb->lcd_fillrect(0, 0, LCD_WIDTH, font_h);
|
|
|
|
}
|
|
|
|
} while(k); /* repeat in-out animation forever if scrolling occured */
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2006-05-29 10:46:41 +00:00
|
|
|
btn = rb->button_get_w_tmo(HZ*2.5); /* exit on keypress */
|
2007-08-30 19:55:54 +00:00
|
|
|
if (btn != BUTTON_NONE && (btn & QUIT))
|
2006-05-29 10:21:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
offset_dummy = 1;
|
|
|
|
|
|
|
|
/* now make the text exit to the right */
|
|
|
|
for(credits_pos = (LCD_WIDTH/2)-(credits_w/2); credits_pos <= LCD_WIDTH+offset_dummy;
|
|
|
|
credits_pos += offset_dummy, offset_dummy++)
|
|
|
|
{
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
|
|
|
rb->lcd_fillrect(0, 0, LCD_WIDTH, font_h);
|
|
|
|
rb->lcd_set_drawmode(DRMODE_SOLID);
|
|
|
|
rb->lcd_putsxy(credits_pos, 0, elapsednames);
|
|
|
|
rb->lcd_update();
|
2002-09-05 17:58:27 +00:00
|
|
|
}
|
|
|
|
}
|
2006-05-29 10:21:22 +00:00
|
|
|
|
2002-09-05 17:58:27 +00:00
|
|
|
#endif
|