summaryrefslogtreecommitdiffstats
path: root/apps/main_menu.c
blob: b547d2ba88fffb15ea6dde5e37049b28a678220c (plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/***************************************************************************
 *             __________               __   ___.
 *   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 "config.h"
#include "options.h"

#include "menu.h"
#include "tree.h"
#include "credits.h"
#include "lcd.h"
#include "font.h"
#include "button.h"
#include "kernel.h"
#include "main_menu.h"
#include "version.h"
#include "debug_menu.h"
#include "sprintf.h"
#include <string.h>
#include "playlist.h"
#include "settings.h"
#include "settings_menu.h"
#include "power.h"
#include "powermgmt.h"
#include "sound_menu.h"
#include "status.h"
#include "fat.h"
#include "sleeptimer.h"
#include "wps.h"
#include "buffer.h"
#ifdef HAVE_FMRADIO
#include "radio.h"
#endif

#include "lang.h"

#ifdef HAVE_MAS3587F
#include "recording.h"
#endif

#ifdef HAVE_ALARM_MOD
#include "alarm_menu.h"
#endif

#ifdef HAVE_LCD_BITMAP
#include "bmp.h"
#include "icons.h"

#ifdef USE_GAMES
#include "games_menu.h"
#endif /* End USE_GAMES */

#ifdef USE_DEMOS
#include "demo_menu.h"
#endif /* End USE_DEMOS */

#endif /* End HAVE_LCD_BITMAP */

int show_logo( void )
{
#ifdef HAVE_LCD_BITMAP
    char version[32];
    unsigned char *ptr=rockbox112x37;
    int height, i, font_h, font_w;

    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;

    int i;
    int eline;

    int failure;
    failure = read_bmp_file("/rockbox112.bmp", &width, &height, buffer);

    debugf("read_bmp_file() returned %d, width %d height %d\n",
           failure, width, height);
    
    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);
    }
#endif

    snprintf(version, sizeof(version), "Ver. %s", appsversion);
    lcd_setfont(FONT_SYSFIXED);
    lcd_getstringsize("A", &font_w, &font_h);
    lcd_putsxy((LCD_WIDTH/2) - ((strlen(version)*font_w)/2),
               LCD_HEIGHT-font_h, version);
    lcd_update();

#else
    char *rockbox = "  ROCKbox!";
    lcd_clear_display();
    lcd_double_height(true);
    lcd_puts(0, 0, rockbox);
    lcd_puts(0, 1, appsversion);
#endif

    return 0;
}

bool show_credits(void)
{
    int j = 0;
    int btn;

    show_logo();
#ifdef HAVE_LCD_CHARCELLS
    lcd_double_height(false);
#endif
    
    for (j = 0; j < 10; j++) {
        sleep((HZ*2)/10);

        btn = button_get(false);
        if (btn !=  BUTTON_NONE && !(btn & BUTTON_REL))
            return false;
    }
    roll_credits();
    return false;
}

#ifdef SIMULATOR
extern bool simulate_usb(void);
#endif
bool show_info(void)
{
    char s[32];
    /* avoid overflow for 8MB mod :) was: ((mp3end - mp3buf) * 1000) / 0x100000; */
    int buflen = ((mp3end - mp3buf) * 100) / 0x19999;
    int integer, decimal;
    bool done = false;
    int key;
    int state = 1;

    while(!done)
    {
        int y=0;
        lcd_clear_display();
#ifdef HAVE_LCD_BITMAP
        lcd_puts(0, y++, str(LANG_ROCKBOX_INFO));
        y++;
        state = 3;
#endif

        if (state & 1) {
            integer = buflen / 1000;
            decimal = buflen % 1000;
#ifdef HAVE_LCD_CHARCELLS
            snprintf(s, sizeof(s), str(LANG_BUFFER_STAT_PLAYER),
                     integer, decimal);
#else
            snprintf(s, sizeof(s), str(LANG_BUFFER_STAT_RECORDER),
                     integer, decimal);
#endif
            lcd_puts(0, y++, s);
            
#ifdef HAVE_CHARGE_CTRL
            if (charge_state == 1)
                snprintf(s, sizeof(s), str(LANG_BATTERY_CHARGE));
            else if (charge_state == 2)
                snprintf(s, sizeof(s), str(LANG_BATTERY_TOPOFF_CHARGE));
            else if (charge_state == 3)
                snprintf(s, sizeof(s), str(LANG_BATTERY_TRICKLE_CHARGE));
            else
#endif
            snprintf(s, sizeof(s), str(LANG_BATTERY_TIME), battery_level(),
                     battery_time() / 60, battery_time() % 60);
            lcd_puts(0, y++, s);
        }

        if (state & 2) {
            unsigned int size, free;
            fat_size( &size, &free );

            size /= 1024;
            integer = size / 1024;
            decimal = size % 1024 / 100;
            snprintf(s, sizeof s, str(LANG_DISK_STAT), integer, decimal);
            lcd_puts(0, y++, s);
            
            free /= 1024;
            integer = free / 1024;
            decimal = free % 1024 / 100;
            snprintf(s, sizeof s, str(LANG_DISK_FREE_STAT), integer, decimal);
            lcd_puts(0, y++, s);
        }
        lcd_update();

        /* Wait for a key to be pushed */
        key = button_get_w_tmo(HZ*5);
        switch(key) {
#ifdef HAVE_PLAYER_KEYPAD
            case BUTTON_STOP | BUTTON_REL:
#else
            case BUTTON_LEFT | BUTTON_REL:
            case BUTTON_OFF | BUTTON_REL:
#endif
                done = true;
                break;

#ifdef HAVE_PLAYER_KEYPAD
            case BUTTON_LEFT:
            case BUTTON_RIGHT:
                if (state == 1)
                    state = 2;
                else
                    state = 1;
                break;
#endif
        }
    }

    return false;
}

bool main_menu(void)
{
    int m;
    bool result;

    /* main menu */
    struct menu_items items[] = {
        { str(LANG_SOUND_SETTINGS),     sound_menu        },
        { str(LANG_GENERAL_SETTINGS),   settings_menu     },
#ifdef HAVE_FMRADIO
        { "FM Radio",   radio_screen     },
#endif
#ifdef HAVE_MAS3587F
        { str(LANG_RECORDING),          recording_screen  },
        { str(LANG_RECORDING_SETTINGS), recording_menu    },
#endif
        { str(LANG_CREATE_PLAYLIST),    create_playlist   },
        { str(LANG_MENU_SHOW_ID3_INFO), browse_id3        },
        { str(LANG_SLEEP_TIMER),        sleeptimer_screen },
#ifdef HAVE_ALARM_MOD
        { str(LANG_ALARM_MOD_ALARM_MENU), alarm_screen    },
#endif
#ifdef HAVE_LCD_BITMAP
#ifdef USE_GAMES
        { str(LANG_GAMES),              games_menu        },
#endif
#ifdef USE_DEMOS
        { str(LANG_DEMOS),              demo_menu },
#endif /* end USE_DEMOS */
#endif
        { str(LANG_INFO),               show_info         },
        { str(LANG_VERSION),            show_credits      },
#ifndef SIMULATOR
        { str(LANG_DEBUG),              debug_menu        },
#else
        { str(LANG_USB),                simulate_usb      },
#endif
    };

    m=menu_init( items, sizeof items / sizeof(struct menu_items) );
#ifdef HAVE_LCD_CHARCELLS
    status_set_param(true);
#endif
    result = menu_run(m);
#ifdef HAVE_LCD_CHARCELLS
    status_set_param(false);
#endif
    menu_exit(m);

    settings_save();

    return result;
}

/* -----------------------------------------------------------------
 * vim: et sw=4 ts=8 sts=4 tw=78
 */