2002-05-21 14:35:18 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* 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 "menu.h"
|
|
|
|
|
#include "tree.h"
|
|
|
|
|
#include "credits.h"
|
2002-05-21 15:14:15 +00:00
|
|
|
|
#include "lcd.h"
|
|
|
|
|
#include "button.h"
|
|
|
|
|
#include "kernel.h"
|
2002-05-26 17:11:02 +00:00
|
|
|
|
#include "main_menu.h"
|
|
|
|
|
#include "sound_menu.h"
|
2002-05-29 10:55:49 +00:00
|
|
|
|
#include "version.h"
|
2002-05-29 16:38:19 +00:00
|
|
|
|
#include "debug.h"
|
2002-05-21 14:35:18 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-05-30 06:32:06 +00:00
|
|
|
|
#include "bmp.h"
|
2002-05-21 14:35:18 +00:00
|
|
|
|
#include "screensaver.h"
|
|
|
|
|
extern void tetris(void);
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-05-30 09:49:54 +00:00
|
|
|
|
int show_logo(void)
|
2002-05-21 14:35:18 +00:00
|
|
|
|
{
|
2002-05-30 06:59:47 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-05-21 14:35:18 +00:00
|
|
|
|
unsigned char buffer[112 * 8];
|
|
|
|
|
|
|
|
|
|
int failure;
|
|
|
|
|
int width=0;
|
|
|
|
|
int height=0;
|
|
|
|
|
|
|
|
|
|
failure = read_bmp_file("/rockbox112.bmp", &width, &height, buffer);
|
|
|
|
|
|
|
|
|
|
debugf("read_bmp_file() returned %d, width %d height %d\n",
|
|
|
|
|
failure, width, height);
|
|
|
|
|
|
|
|
|
|
if (failure) {
|
|
|
|
|
debugf("Unable to find \"/rockbox112.bmp\"\n");
|
|
|
|
|
return -1;
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
int eline;
|
|
|
|
|
|
2002-05-30 16:54:48 +00:00
|
|
|
|
lcd_clear_display();
|
|
|
|
|
|
2002-05-21 14:35:18 +00:00
|
|
|
|
for(i=0, eline=0; i< height; i+=8, eline++) {
|
|
|
|
|
/* the bitmap function doesn't work with full-height bitmaps
|
|
|
|
|
so we "stripe" the logo output */
|
|
|
|
|
lcd_bitmap(&buffer[eline*width], 0, 10+i, width,
|
|
|
|
|
(height-i)>8?8:height-i, false);
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-05-30 06:59:47 +00:00
|
|
|
|
lcd_update();
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
char *rockbox = "ROCKbox!";
|
|
|
|
|
lcd_puts(0, 0, rockbox);
|
|
|
|
|
#endif
|
2002-05-21 14:35:18 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void show_splash(void)
|
|
|
|
|
{
|
|
|
|
|
if (show_logo() != 0)
|
2002-05-30 08:06:42 +00:00
|
|
|
|
return;
|
2002-05-30 16:54:48 +00:00
|
|
|
|
|
|
|
|
|
sleep(200);
|
2002-05-21 14:35:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-05-29 10:55:49 +00:00
|
|
|
|
void version(void)
|
|
|
|
|
{
|
|
|
|
|
lcd_clear_display();
|
|
|
|
|
lcd_puts(0,0,appsversion);
|
|
|
|
|
lcd_update();
|
2002-05-29 10:57:29 +00:00
|
|
|
|
button_get(true);
|
2002-05-29 10:55:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-05-21 14:35:18 +00:00
|
|
|
|
void main_menu(void)
|
|
|
|
|
{
|
2002-05-26 17:11:02 +00:00
|
|
|
|
int m;
|
|
|
|
|
enum {
|
2002-05-29 10:55:49 +00:00
|
|
|
|
Tetris, Screen_Saver, Splash, Credits, Sound, Version
|
2002-05-26 17:11:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* main menu */
|
|
|
|
|
struct menu_items items[] = {
|
|
|
|
|
{ Sound, "Sound", sound_menu },
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
{ Tetris, "Tetris", tetris },
|
|
|
|
|
{ Screen_Saver, "Screen Saver", screensaver },
|
|
|
|
|
#endif
|
|
|
|
|
{ Splash, "Splash", show_splash },
|
2002-05-29 10:55:49 +00:00
|
|
|
|
{ Credits, "Credits", show_credits },
|
|
|
|
|
{ Version, "Version", version }
|
2002-05-26 17:11:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
|
|
|
|
menu_run(m);
|
|
|
|
|
menu_exit(m);
|
2002-05-21 14:35:18 +00:00
|
|
|
|
}
|