1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2002 Bjö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"
#include "lcd.h"
#include "button.h"
#include "kernel.h"
#include "main_menu.h"
#include "sound_menu.h"
#include "version.h"
#include "debug.h"
#ifdef HAVE_LCD_BITMAP
#include "bmp.h"
#include "screensaver.h"
extern void tetris(void);
#endif
int show_logo(void)
{
#ifdef HAVE_LCD_BITMAP
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;
lcd_clear_display();
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);
}
}
lcd_update();
#else
char *rockbox = "ROCKbox!";
lcd_puts(0, 0, rockbox);
#endif
return 0;
}
void show_splash(void)
{
if (show_logo() != 0)
return;
sleep(HZ*2);
}
void version(void)
{
lcd_clear_display();
lcd_puts(0,0,appsversion);
lcd_update();
button_get(true);
}
void main_menu(void)
{
int m;
enum {
Tetris, Screen_Saver, Splash, Credits, Sound, Version
};
/* 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 },
{ Credits, "Credits", show_credits },
{ Version, "Version", version }
};
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
menu_run(m);
menu_exit(m);
}
|