2002-05-18 11:39:32 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "credits.h"
|
|
|
|
#include "lcd.h"
|
2002-09-12 13:33:59 +00:00
|
|
|
#include "font.h"
|
2002-05-18 11:39:32 +00:00
|
|
|
#include "kernel.h"
|
2002-05-29 16:38:19 +00:00
|
|
|
#include "button.h"
|
2002-09-05 17:58:27 +00:00
|
|
|
#include "sprintf.h"
|
2005-05-08 11:51:06 +00:00
|
|
|
#include "string.h"
|
2002-05-18 11:39:32 +00:00
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2002-09-05 17:58:27 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2005-05-08 11:51:06 +00:00
|
|
|
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
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;
|
|
|
|
int curr_len = strlen(credits[0]);
|
|
|
|
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
|
|
|
{
|
|
|
|
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)
|
|
|
|
lcd_puts(0, line, credits[name] - x);
|
|
|
|
else
|
|
|
|
lcd_puts(x, line, credits[name]);
|
|
|
|
|
|
|
|
if (++name >= numnames)
|
|
|
|
break;
|
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-05-09 16:22:47 +00:00
|
|
|
lcd_putc(x2, line, '*');
|
2002-07-27 20:17:43 +00:00
|
|
|
|
2005-05-08 11:51:06 +00:00
|
|
|
new_len = strlen(credits[name]);
|
|
|
|
x += MAX(len/2 + 2, len - new_len/2 + 1);
|
|
|
|
len = new_len;
|
|
|
|
}
|
2002-07-27 20:17:43 +00:00
|
|
|
/* abort on keypress */
|
2005-05-08 11:51:06 +00:00
|
|
|
if (button_get_w_tmo(HZ/8) & BUTTON_REL)
|
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;
|
|
|
|
new_len = strlen(credits[curr_name]);
|
|
|
|
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
|
|
|
#else
|
|
|
|
|
|
|
|
void roll_credits(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int line = 0;
|
|
|
|
int numnames = sizeof(credits)/sizeof(char*);
|
|
|
|
char buffer[40];
|
|
|
|
|
2005-01-17 00:59:54 +00:00
|
|
|
int y=LCD_HEIGHT;
|
2002-09-05 17:58:27 +00:00
|
|
|
|
|
|
|
int height;
|
|
|
|
int width;
|
|
|
|
|
2003-03-17 21:16:23 +00:00
|
|
|
lcd_setfont(FONT_UI);
|
|
|
|
|
2002-09-24 18:04:15 +00:00
|
|
|
lcd_getstringsize("A", &width, &height);
|
2002-09-05 17:58:27 +00:00
|
|
|
|
|
|
|
while(1) {
|
2002-09-24 18:04:15 +00:00
|
|
|
lcd_clear_display();
|
2005-01-17 00:59:54 +00:00
|
|
|
for ( i=0; i <= (LCD_HEIGHT-y)/height; i++ )
|
2002-09-24 18:04:15 +00:00
|
|
|
lcd_putsxy(0, i*height+y, line+i<numnames?credits[line+i]:"");
|
|
|
|
snprintf(buffer, sizeof(buffer), " [Credits] %2d/%2d ",
|
|
|
|
line+1, numnames);
|
2003-11-20 01:33:41 +00:00
|
|
|
lcd_clearrect(0, 0, LCD_WIDTH, height);
|
2002-09-24 18:04:15 +00:00
|
|
|
lcd_putsxy(0, 0, buffer);
|
|
|
|
lcd_update();
|
|
|
|
|
2004-09-19 22:45:01 +00:00
|
|
|
if (button_get_w_tmo(HZ/20) & BUTTON_REL)
|
2002-09-24 18:04:15 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
y--;
|
|
|
|
|
|
|
|
if(y<0) {
|
|
|
|
line++;
|
|
|
|
if(line >= numnames)
|
|
|
|
break;
|
|
|
|
y+=height;
|
|
|
|
}
|
2002-09-05 17:58:27 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|