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"
|
|
|
|
#include "kernel.h"
|
2002-05-29 16:38:19 +00:00
|
|
|
#include "button.h"
|
2002-05-18 11:39:32 +00:00
|
|
|
|
2002-05-21 15:03:43 +00:00
|
|
|
struct credit {
|
|
|
|
char *name;
|
|
|
|
char *desc;
|
|
|
|
};
|
2002-05-18 11:39:32 +00:00
|
|
|
|
2002-05-21 15:03:43 +00:00
|
|
|
struct credit credits[] = {
|
2002-06-16 23:48:16 +00:00
|
|
|
{ "Bjorn Stenberg", "Originator, Project manager, Code" },
|
|
|
|
{ "Linus Nielsen Feltzing", "Electronics, Code" },
|
2002-05-18 11:39:32 +00:00
|
|
|
{ "Andy Choi", "Checksums" },
|
2002-06-16 23:48:16 +00:00
|
|
|
{ "Andrew Jamieson", "Schematics, Electronics" },
|
2002-05-18 11:39:32 +00:00
|
|
|
{ "Paul Suade", "Serial port setup" },
|
2002-06-16 23:48:16 +00:00
|
|
|
{ "Joachim Schiffer", "Schematics, Electronics" },
|
2002-05-18 11:39:32 +00:00
|
|
|
{ "Daniel Stenberg", "Code" },
|
|
|
|
{ "Alan Korr", "Code" },
|
|
|
|
{ "Gary Czvitkovicz", "Code" },
|
|
|
|
{ "Stuart Martin", "Code" },
|
|
|
|
{ "Felix Arends", "Code" },
|
|
|
|
{ "Ulf Ralberg", "Thread embryo" },
|
2002-05-21 08:05:39 +00:00
|
|
|
{ "David Hardeman", "Initial ID3 code" },
|
2002-05-18 11:39:32 +00:00
|
|
|
{ "Thomas Saeys", "Logo" },
|
|
|
|
{ "Grant Wier", "Code" },
|
2002-05-21 08:05:39 +00:00
|
|
|
{ "Julien Labruyere", "Donated Archos Player" },
|
2002-05-18 11:39:32 +00:00
|
|
|
{ "Nicolas Sauzede", "Display research" },
|
|
|
|
{ "Robert Hak", "Code, FAQ, Sarcasm" },
|
|
|
|
{ "Dave Chapman", "Code" },
|
|
|
|
{ "Stefan Meyer", "Code" },
|
2002-06-16 23:48:16 +00:00
|
|
|
{ "Eric Linenberg", "Sokoban" },
|
2002-05-18 11:39:32 +00:00
|
|
|
};
|
|
|
|
|
2002-05-21 15:03:43 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
#define MAX_LINES 6
|
|
|
|
#define DISPLAY_TIME HZ*2
|
|
|
|
#else
|
|
|
|
#define MAX_LINES 2
|
|
|
|
#define DISPLAY_TIME HZ
|
|
|
|
#endif
|
|
|
|
|
2002-05-31 08:12:29 +00:00
|
|
|
void roll_credits(void)
|
2002-05-18 11:39:32 +00:00
|
|
|
{
|
2002-05-30 06:57:39 +00:00
|
|
|
unsigned int i;
|
|
|
|
int j;
|
2002-05-21 08:05:39 +00:00
|
|
|
int line = 0;
|
|
|
|
|
|
|
|
lcd_clear_display();
|
2002-05-31 08:12:29 +00:00
|
|
|
|
2002-05-21 15:03:43 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
lcd_setmargins(0,9);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for ( i=0; i<sizeof(credits)/sizeof(struct credit); i++ ) {
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
lcd_putsxy(0, 0, " [Credits]",0);
|
|
|
|
#endif
|
|
|
|
lcd_puts(0, line, credits[i].name);
|
|
|
|
line++;
|
|
|
|
if ( line == MAX_LINES ) {
|
2002-05-21 08:05:39 +00:00
|
|
|
lcd_update();
|
2002-05-21 15:03:43 +00:00
|
|
|
/* abort on keypress */
|
|
|
|
for ( j=0;j<10;j++ ) {
|
|
|
|
sleep(DISPLAY_TIME/10);
|
2002-05-28 12:10:12 +00:00
|
|
|
if (button_get(false))
|
2002-05-21 15:03:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-05-21 08:05:39 +00:00
|
|
|
lcd_clear_display();
|
|
|
|
line=0;
|
|
|
|
}
|
|
|
|
}
|
2002-05-21 15:03:43 +00:00
|
|
|
if ( line != MAX_LINES ) {
|
2002-05-21 08:05:39 +00:00
|
|
|
lcd_update();
|
2002-05-21 15:03:43 +00:00
|
|
|
/* abort on keypress */
|
|
|
|
for ( j=0;j<10;j++ ) {
|
|
|
|
sleep(DISPLAY_TIME/10);
|
2002-05-28 12:10:12 +00:00
|
|
|
if (button_get(false))
|
2002-05-21 15:03:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-05-21 08:05:39 +00:00
|
|
|
}
|
2002-05-18 11:39:32 +00:00
|
|
|
}
|