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-05-29 16:38:19 +00:00
|
|
|
|
#include "debug.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-01 21:50:52 +00:00
|
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
2002-07-02 08:20:23 +00:00
|
|
|
|
#ifdef ARCHOS_RECORDER
|
2002-07-01 21:50:52 +00:00
|
|
|
|
#include "adc.h"
|
|
|
|
|
#endif
|
2002-05-21 14:35:18 +00:00
|
|
|
|
#endif
|
2002-07-02 08:20:23 +00:00
|
|
|
|
#endif
|
2002-05-21 14:35:18 +00:00
|
|
|
|
|
2002-07-01 21:50:52 +00:00
|
|
|
|
void dbg_ports(void);
|
|
|
|
|
|
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))
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
roll_credits();
|
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;
|
|
|
|
|
|
|
|
|
|
/* 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-06-27 01:08:11 +00:00
|
|
|
|
{ "Version", show_credits },
|
2002-07-01 21:50:52 +00:00
|
|
|
|
#ifndef SIMULATOR
|
2002-07-02 08:20:23 +00:00
|
|
|
|
#ifdef ARCHOS_RECORDER
|
2002-07-01 21:50:52 +00:00
|
|
|
|
{ "Debug (keep out!)", dbg_ports },
|
2002-07-02 08:20:23 +00:00
|
|
|
|
#endif
|
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
|
|
|
|
}
|
2002-07-01 21:50:52 +00:00
|
|
|
|
|
|
|
|
|
/*---------------------------------------------------*/
|
|
|
|
|
/* SPECIAL DEBUG STUFF */
|
|
|
|
|
/*---------------------------------------------------*/
|
|
|
|
|
#ifndef SIMULATOR
|
2002-07-02 08:20:23 +00:00
|
|
|
|
#ifdef ARCHOS_RECORDER
|
2002-07-02 14:24:14 +00:00
|
|
|
|
extern int ata_device;
|
|
|
|
|
extern int ata_io_address;
|
|
|
|
|
|
2002-07-01 21:50:52 +00:00
|
|
|
|
/* Test code!!! */
|
|
|
|
|
void dbg_ports(void)
|
|
|
|
|
{
|
|
|
|
|
unsigned short porta;
|
|
|
|
|
unsigned short portb;
|
|
|
|
|
unsigned char portc;
|
|
|
|
|
char buf[32];
|
|
|
|
|
int button;
|
|
|
|
|
|
|
|
|
|
lcd_clear_display();
|
|
|
|
|
|
|
|
|
|
while(1)
|
|
|
|
|
{
|
|
|
|
|
porta = PADR;
|
|
|
|
|
portb = PBDR;
|
|
|
|
|
portc = PCDR;
|
|
|
|
|
|
|
|
|
|
snprintf(buf, 32, "PADR: %04x", porta);
|
|
|
|
|
lcd_puts(0, 0, buf);
|
|
|
|
|
snprintf(buf, 32, "PBDR: %04x", portb);
|
|
|
|
|
lcd_puts(0, 1, buf);
|
|
|
|
|
|
|
|
|
|
snprintf(buf, 32, "AN0: %03x AN4: %03x", adc_read(0), adc_read(4));
|
|
|
|
|
lcd_puts(0, 3, buf);
|
|
|
|
|
snprintf(buf, 32, "AN1: %03x AN5: %03x", adc_read(1), adc_read(5));
|
|
|
|
|
lcd_puts(0, 4, buf);
|
|
|
|
|
snprintf(buf, 32, "AN2: %03x AN6: %03x", adc_read(2), adc_read(6));
|
|
|
|
|
lcd_puts(0, 5, buf);
|
|
|
|
|
snprintf(buf, 32, "AN3: %03x AN7: %03x", adc_read(3), adc_read(7));
|
|
|
|
|
lcd_puts(0, 6, buf);
|
2002-07-02 14:24:14 +00:00
|
|
|
|
|
|
|
|
|
snprintf(buf, 32, "%s : 0x%x",
|
|
|
|
|
ata_device?"slave":"master", ata_io_address);
|
|
|
|
|
lcd_puts(0, 7, buf);
|
2002-07-01 21:50:52 +00:00
|
|
|
|
|
|
|
|
|
lcd_update();
|
|
|
|
|
sleep(HZ/10);
|
|
|
|
|
|
|
|
|
|
button = button_get(false);
|
|
|
|
|
|
|
|
|
|
switch(button)
|
|
|
|
|
{
|
|
|
|
|
case BUTTON_ON:
|
|
|
|
|
/* Toggle the charger */
|
|
|
|
|
PBDR ^= 0x20;
|
|
|
|
|
break;
|
2002-07-02 02:39:25 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
2002-07-01 21:50:52 +00:00
|
|
|
|
case BUTTON_OFF:
|
2002-07-02 02:39:25 +00:00
|
|
|
|
#else
|
|
|
|
|
case BUTTON_STOP:
|
|
|
|
|
#endif /* Disable the charger */
|
2002-07-01 21:50:52 +00:00
|
|
|
|
PBDR |= 0x20;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2002-07-02 08:20:23 +00:00
|
|
|
|
#endif
|