list the credits from the menu on rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@630 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cace8a053a
commit
f43f7e7468
2 changed files with 114 additions and 0 deletions
79
apps/credits.c
Normal file
79
apps/credits.c
Normal file
|
@ -0,0 +1,79 @@
|
|||
/***************************************************************************
|
||||
* __________ __ ___.
|
||||
* 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.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
//#ifdef __ROCKBOX_CREDITS_H__
|
||||
|
||||
#include "credits.h"
|
||||
#include "lcd.h"
|
||||
#include "kernel.h"
|
||||
|
||||
#define DISPLAY_TIME 200
|
||||
|
||||
struct credit credits[CREDIT_COUNT] = {
|
||||
{ "[Credits]", "" },
|
||||
{ "Björn Stenberg", "Originator, project manager, code" },
|
||||
{ "Linus Nielsen Feltzing", "Electronics, code" },
|
||||
{ "Andy Choi", "Checksums" },
|
||||
{ "Andrew Jamieson", "Schematics, electronics" },
|
||||
{ "Paul Suade", "Serial port setup" },
|
||||
{ "Joachim Schiffer", "Schematics, electronics" },
|
||||
{ "Daniel Stenberg", "Code" },
|
||||
{ "Alan Korr", "Code" },
|
||||
{ "Gary Czvitkovicz", "Code" },
|
||||
{ "Stuart Martin", "Code" },
|
||||
{ "Felix Arends", "Code" },
|
||||
{ "Ulf Ralberg", "Thread embryo" },
|
||||
{ "David Härdeman", "Initial ID3 code" },
|
||||
{ "Thomas Saeys", "Logo" },
|
||||
{ "Grant Wier", "Code" },
|
||||
{ "Julien Labruyére", "Donated Archos Player" },
|
||||
{ "Nicolas Sauzede", "Display research" },
|
||||
{ "Robert Hak", "Code, FAQ, Sarcasm" },
|
||||
{ "Dave Chapman", "Code" },
|
||||
{ "Stefan Meyer", "Code" },
|
||||
};
|
||||
|
||||
void show_credits(void)
|
||||
{
|
||||
int i = 0;
|
||||
int line = 0;
|
||||
|
||||
lcd_clear_display();
|
||||
|
||||
while(i < CREDIT_COUNT-1) {
|
||||
if ((line % 4 == 0) && (line!=0)) {
|
||||
lcd_puts(0, 0, (char *)credits[0].name);
|
||||
lcd_update();
|
||||
sleep(DISPLAY_TIME);
|
||||
lcd_clear_display();
|
||||
line=0;
|
||||
}
|
||||
lcd_puts(0, ++line, (char *)credits[++i].name);
|
||||
}
|
||||
|
||||
if ((i-1)%4 != 0) {
|
||||
lcd_puts(0, 0, (char *)credits[0].name);
|
||||
lcd_update();
|
||||
sleep(DISPLAY_TIME);
|
||||
lcd_clear_display();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//#endif
|
35
apps/credits.h
Normal file
35
apps/credits.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/***************************************************************************
|
||||
* __________ __ ___.
|
||||
* 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.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __ROCKBOX_CREDITS_H__
|
||||
#define __ROCKBOX_CREDITS_H__
|
||||
|
||||
#define CREDIT_COUNT 21
|
||||
|
||||
struct credit {
|
||||
const char *name;
|
||||
const char *desc;
|
||||
};
|
||||
|
||||
/* Show who worked on the project */
|
||||
void show_credits(void);
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in a new issue