From f43f7e74683399788574b646a21aa5099fc446f6 Mon Sep 17 00:00:00 2001 From: Robert Hak Date: Sat, 18 May 2002 11:39:32 +0000 Subject: list the credits from the menu on rockbox git-svn-id: svn://svn.rockbox.org/rockbox/trunk@630 a1c6a512-1295-4272-9138-f99709370657 --- apps/credits.c | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ apps/credits.h | 35 ++++++++++++++++++++++++++ 2 files changed, 114 insertions(+) create mode 100644 apps/credits.c create mode 100644 apps/credits.h diff --git a/apps/credits.c b/apps/credits.c new file mode 100644 index 0000000000..f210d1ffa8 --- /dev/null +++ b/apps/credits.c @@ -0,0 +1,79 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by Robert Hak + * + * 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 diff --git a/apps/credits.h b/apps/credits.h new file mode 100644 index 0000000000..d109e55dde --- /dev/null +++ b/apps/credits.h @@ -0,0 +1,35 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by Robert Hak + * + * 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 + + -- cgit v1.2.3