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"
|
2002-05-29 10:55:49 +00:00
|
|
|
|
#include "version.h"
|
2002-07-15 11:02:12 +00:00
|
|
|
|
#include "debug_menu.h"
|
2002-05-31 20:27:40 +00:00
|
|
|
|
#include "sprintf.h"
|
|
|
|
|
#include <string.h>
|
2002-06-13 13:53:22 +00:00
|
|
|
|
#include "playlist.h"
|
2002-06-24 13:52:03 +00:00
|
|
|
|
#include "settings.h"
|
2002-06-24 21:40:41 +00:00
|
|
|
|
#include "settings_menu.h"
|
|
|
|
|
#include "sound_menu.h"
|
2002-05-21 14:35:18 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-06-24 08:51:28 +00:00
|
|
|
|
#include "games_menu.h"
|
|
|
|
|
#include "screensavers_menu.h"
|
2002-05-30 06:32:06 +00:00
|
|
|
|
#include "bmp.h"
|
2002-05-31 12:32:00 +00:00
|
|
|
|
#include "icons.h"
|
2002-07-02 08:20:23 +00:00
|
|
|
|
#endif
|
2002-05-21 14:35:18 +00:00
|
|
|
|
|
2002-05-31 07:04:13 +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-31 07:04:13 +00:00
|
|
|
|
char version[32];
|
2002-06-10 14:01:05 +00:00
|
|
|
|
unsigned char *ptr=rockbox112x37;
|
|
|
|
|
int height, i, font_h, font_w;
|
2002-05-21 14:35:18 +00:00
|
|
|
|
|
2002-06-10 14:01:05 +00:00
|
|
|
|
lcd_clear_display();
|
|
|
|
|
|
|
|
|
|
for(i=0; i < 37; i+=8) {
|
|
|
|
|
/* the bitmap function doesn't work with full-height bitmaps
|
|
|
|
|
so we "stripe" the logo output */
|
|
|
|
|
lcd_bitmap(ptr, 0, 10+i, 112, (37-i)>8?8:37-i, false);
|
|
|
|
|
ptr += 112;
|
|
|
|
|
}
|
|
|
|
|
height = 37;
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
/*
|
|
|
|
|
* This code is not used anymore, but I kept it here since it shows
|
|
|
|
|
* one way of using the BMP reader function to display an externally
|
|
|
|
|
* providing logo.
|
|
|
|
|
*/
|
|
|
|
|
unsigned char buffer[112 * 8];
|
|
|
|
|
int width;
|
2002-05-21 14:35:18 +00:00
|
|
|
|
|
2002-05-31 12:32:00 +00:00
|
|
|
|
int i;
|
|
|
|
|
int eline;
|
|
|
|
|
|
2002-06-10 14:01:05 +00:00
|
|
|
|
int failure;
|
2002-05-21 14:35:18 +00:00
|
|
|
|
failure = read_bmp_file("/rockbox112.bmp", &width, &height, buffer);
|
|
|
|
|
|
|
|
|
|
debugf("read_bmp_file() returned %d, width %d height %d\n",
|
|
|
|
|
failure, width, height);
|
|
|
|
|
|
2002-05-31 07:04:13 +00:00
|
|
|
|
for(i=0, eline=0; i < height; i+=8, eline++) {
|
2002-05-21 14:35:18 +00:00
|
|
|
|
/* 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-06-10 14:01:05 +00:00
|
|
|
|
#endif
|
2002-05-30 06:59:47 +00:00
|
|
|
|
|
2002-05-31 07:04:13 +00:00
|
|
|
|
snprintf(version, sizeof(version), "Ver. %s", appsversion);
|
|
|
|
|
lcd_getfontsize(0, &font_w, &font_h);
|
2002-05-31 07:13:08 +00:00
|
|
|
|
lcd_putsxy((LCD_WIDTH/2) - ((strlen(version)*font_w)/2),
|
|
|
|
|
height+10+font_h, version, 0);
|
2002-05-31 12:32:00 +00:00
|
|
|
|
lcd_update();
|
|
|
|
|
|
2002-05-30 06:59:47 +00:00
|
|
|
|
#else
|
|
|
|
|
char *rockbox = "ROCKbox!";
|
2002-05-31 09:56:05 +00:00
|
|
|
|
lcd_clear_display();
|
|
|
|
|
#ifdef HAVE_NEW_CHARCELL_LCD
|
|
|
|
|
lcd_double_height(true);
|
|
|
|
|
#endif
|
2002-05-30 06:59:47 +00:00
|
|
|
|
lcd_puts(0, 0, rockbox);
|
2002-05-31 07:04:13 +00:00
|
|
|
|
lcd_puts(0, 1, appsversion);
|
2002-05-30 06:59:47 +00:00
|
|
|
|
#endif
|
2002-05-21 14:35:18 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-31 08:12:29 +00:00
|
|
|
|
void show_credits(void)
|
2002-05-21 14:35:18 +00:00
|
|
|
|
{
|
2002-05-31 08:12:29 +00:00
|
|
|
|
int j = 0;
|
2002-05-30 16:54:48 +00:00
|
|
|
|
|
2002-05-31 08:12:29 +00:00
|
|
|
|
show_logo();
|
2002-05-31 09:56:05 +00:00
|
|
|
|
#ifdef HAVE_NEW_CHARCELL_LCD
|
|
|
|
|
lcd_double_height(false);
|
|
|
|
|
#endif
|
2002-05-31 08:12:29 +00:00
|
|
|
|
|
|
|
|
|
for (j = 0; j < 10; j++) {
|
|
|
|
|
sleep((HZ*2)/10);
|
|
|
|
|
|
|
|
|
|
if (button_get(false))
|
2002-07-15 11:02:12 +00:00
|
|
|
|
return;
|
2002-05-31 08:12:29 +00:00
|
|
|
|
}
|
|
|
|
|
roll_credits();
|
2002-05-29 10:55:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-07-15 11:02:12 +00:00
|
|
|
|
void show_info(void)
|
|
|
|
|
{
|
|
|
|
|
char s[32];
|
|
|
|
|
|
|
|
|
|
lcd_clear_display();
|
|
|
|
|
lcd_puts(0, 0, "Rockbox info:");
|
|
|
|
|
/* TODO: add disk size/usage info, battery charge etc here? */
|
|
|
|
|
snprintf(s, sizeof(s), "Booted: %d times", global_settings.total_boots);
|
|
|
|
|
lcd_puts(0, 2, s);
|
|
|
|
|
lcd_update();
|
|
|
|
|
|
|
|
|
|
button_get(true);
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-21 14:35:18 +00:00
|
|
|
|
void main_menu(void)
|
|
|
|
|
{
|
2002-05-26 17:11:02 +00:00
|
|
|
|
int m;
|
|
|
|
|
|
|
|
|
|
/* main menu */
|
|
|
|
|
struct menu_items items[] = {
|
2002-06-27 01:08:11 +00:00
|
|
|
|
{ "Sound Settings", sound_menu },
|
|
|
|
|
{ "General Settings", settings_menu },
|
2002-05-26 17:11:02 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-06-27 01:08:11 +00:00
|
|
|
|
{ "Games", games_menu },
|
|
|
|
|
{ "Screensavers", screensavers_menu },
|
2002-05-26 17:11:02 +00:00
|
|
|
|
#endif
|
2002-07-15 11:02:12 +00:00
|
|
|
|
{ "Info", show_info },
|
2002-06-27 01:08:11 +00:00
|
|
|
|
{ "Version", show_credits },
|
2002-07-01 21:50:52 +00:00
|
|
|
|
#ifndef SIMULATOR
|
2002-07-15 11:02:12 +00:00
|
|
|
|
{ "Debug (keep out!)", debug_menu },
|
2002-07-01 21:50:52 +00:00
|
|
|
|
#endif
|
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
|
|
|
|
}
|