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"
|
2002-05-18 11:39:32 +00:00
|
|
|
|
2002-06-19 15:53:12 +00:00
|
|
|
char* credits[] = {
|
|
|
|
"Bjorn Stenberg",
|
|
|
|
"Linus Nielsen Feltzing",
|
|
|
|
"Andy Choi",
|
|
|
|
"Andrew Jamieson",
|
|
|
|
"Paul Suade",
|
|
|
|
"Joachim Schiffer",
|
|
|
|
"Daniel Stenberg",
|
|
|
|
"Alan Korr",
|
|
|
|
"Gary Czvitkovicz",
|
|
|
|
"Stuart Martin",
|
|
|
|
"Felix Arends",
|
|
|
|
"Ulf Ralberg",
|
|
|
|
"David Hardeman",
|
|
|
|
"Thomas Saeys",
|
|
|
|
"Grant Wier",
|
|
|
|
"Julien Labruyere",
|
|
|
|
"Nicolas Sauzede",
|
|
|
|
"Robert Hak",
|
|
|
|
"Dave Chapman",
|
|
|
|
"Stefan Meyer",
|
|
|
|
"Eric Linenberg",
|
2002-06-20 14:10:00 +00:00
|
|
|
"Tom Cvitan",
|
|
|
|
"Magnus Oman",
|
2002-06-26 14:44:45 +00:00
|
|
|
"Jerome Kuptz",
|
2002-06-28 13:33:06 +00:00
|
|
|
"Julien Boissinot",
|
2002-07-18 11:25:21 +00:00
|
|
|
"Nuutti Kotivuori",
|
|
|
|
"Heikki Hannikainen",
|
2002-07-22 16:39:46 +00:00
|
|
|
"Hardeep Sidhu",
|
2002-08-02 13:20:39 +00:00
|
|
|
"Markus Braun",
|
|
|
|
"Justin Heiner",
|
|
|
|
"Magnus Holmgren",
|
2002-08-05 14:16:48 +00:00
|
|
|
"Bill Napier",
|
2002-08-12 22:19:22 +00:00
|
|
|
"George Styles",
|
2002-09-02 09:05:50 +00:00
|
|
|
"Mats Lidell",
|
|
|
|
"Lee Marlow",
|
|
|
|
"Nate Nystrom",
|
|
|
|
"Nick Robinson",
|
|
|
|
"Chad Lockwood",
|
|
|
|
"John Pybus",
|
2002-09-02 13:18:12 +00:00
|
|
|
"Randy Wood",
|
2002-09-12 13:33:59 +00:00
|
|
|
"Gregory Haerr",
|
2002-09-30 19:10:40 +00:00
|
|
|
"Philipp Pertermann",
|
|
|
|
"Gilles Roux",
|
2002-10-01 11:58:40 +00:00
|
|
|
"Mark Hillebrand",
|
2002-05-18 11:39:32 +00:00
|
|
|
};
|
|
|
|
|
2002-05-21 15:03:43 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-06-19 15:53:12 +00:00
|
|
|
#define MAX_LINES 7
|
2002-05-21 15:03:43 +00:00
|
|
|
#define DISPLAY_TIME HZ*2
|
|
|
|
#else
|
|
|
|
#define MAX_LINES 2
|
|
|
|
#define DISPLAY_TIME HZ
|
|
|
|
#endif
|
|
|
|
|
2002-09-05 17:58:27 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
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 i;
|
2002-05-21 08:05:39 +00:00
|
|
|
int line = 0;
|
2002-07-27 20:17:43 +00:00
|
|
|
int numnames = sizeof(credits)/sizeof(char*);
|
2002-05-21 08:05:39 +00:00
|
|
|
|
|
|
|
lcd_clear_display();
|
2002-05-31 08:12:29 +00:00
|
|
|
|
2002-07-27 20:17:43 +00:00
|
|
|
for ( i=0; i < numnames; i += MAX_LINES )
|
|
|
|
{
|
|
|
|
lcd_clear_display();
|
|
|
|
for(line = 0;line < MAX_LINES && line+i < numnames;line++)
|
|
|
|
{
|
|
|
|
lcd_puts(0, line, credits[line+i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* abort on keypress */
|
2002-09-05 17:58:27 +00:00
|
|
|
if (button_get_w_tmo(DISPLAY_TIME))
|
|
|
|
return;
|
2002-07-27 20:17:43 +00:00
|
|
|
}
|
|
|
|
return;
|
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];
|
|
|
|
|
|
|
|
int y=64;
|
|
|
|
|
|
|
|
int height;
|
|
|
|
int width;
|
|
|
|
|
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();
|
|
|
|
for ( i=0; i <= (64-y)/height; i++ )
|
|
|
|
lcd_putsxy(0, i*height+y, line+i<numnames?credits[line+i]:"");
|
|
|
|
snprintf(buffer, sizeof(buffer), " [Credits] %2d/%2d ",
|
|
|
|
line+1, numnames);
|
|
|
|
lcd_putsxy(0, 0, buffer);
|
|
|
|
lcd_update();
|
|
|
|
|
|
|
|
if (button_get_w_tmo(HZ/20))
|
|
|
|
return;
|
|
|
|
|
|
|
|
y--;
|
|
|
|
|
|
|
|
if(y<0) {
|
|
|
|
line++;
|
|
|
|
if(line >= numnames)
|
|
|
|
break;
|
|
|
|
y+=height;
|
|
|
|
}
|
2002-09-05 17:58:27 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|