summaryrefslogtreecommitdiffstats
path: root/apps/settings_menu.c
blob: d40263cd00fa37f162d739543f217af9979fb4bf (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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2002 Robert Hak
 *
 * 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 <stdio.h>
#include <stdbool.h>

#include "lcd.h"
#include "menu.h"
#include "mpeg.h"
#include "button.h"
#include "kernel.h"
#include "sprintf.h"
#include "settings.h"
#include "settings_menu.h"
#include "backlight.h"
#include "playlist.h"  /* for playlist_shuffle */
#include "fat.h"                /* For dotfile settings */
#include "powermgmt.h"
#include "rtc.h"
#include "ata.h"

static Menu show_hidden_files(void)
{
    set_bool_options( "Hidden Files", &global_settings.show_hidden_files,
                      "show", "hide" );
    return MENU_OK;
}

static Menu contrast(void)
{
    set_int( "Contrast", "", &global_settings.contrast, 
             lcd_set_contrast, 1, 0, MAX_CONTRAST_SETTING );
    return MENU_OK;
}

#ifndef HAVE_RECORDER_KEYPAD
static Menu shuffle(void)
{
    set_bool( "Shuffle", &global_settings.playlist_shuffle );
    return MENU_OK;
}
#endif

static Menu play_selected(void)
{
    set_bool( "Play Selected", &global_settings.play_selected );
    return MENU_OK;
}

static Menu mp3_filter(void)
{
    set_bool( "Music Filter", &global_settings.mp3filter );
    return MENU_OK;
}

static Menu sort_case(void)
{
    set_bool( "Sort Case Sensitive", &global_settings.sort_case );
    return MENU_OK;
}

static Menu resume(void)
{
    char* names[] = { "off", "ask", "on" };
    set_option( "Resume", &global_settings.resume, names, 3, NULL );
    return MENU_OK;
}

static Menu backlight_timer(void)
{
    char* names[] = { "off", "on ",
                      "1s ", "2s ", "3s ", "4s ", "5s ",
                      "6s ", "7s ", "8s ", "9s ", "10s",
                      "15s", "20s", "25s", "30s", "45s",
                      "60s", "90s"};
    set_option("Backlight", &global_settings.backlight, names, 19, backlight_time );
    return MENU_OK;
}

static Menu scroll_speed(void)
{
    set_int("Scroll Speed Setting Example", "", &global_settings.scroll_speed, 
            &lcd_scroll_speed, 1, 1, 30 );
    return MENU_OK;
}

#ifdef HAVE_CHARGE_CTRL
static Menu deep_discharge(void)
{
    set_bool( "Deep Discharge", &global_settings.discharge );
    charge_restart_level = global_settings.discharge ? 
        CHARGE_RESTART_LO : CHARGE_RESTART_HI;
    return MENU_OK;
}
#endif

#ifdef HAVE_RTC
static Menu timedate_set(void)
{
    int timedate[7]; /* hour,minute,second,year,month,day,dayofweek */


    timedate[0] = rtc_read(0x03); /* hour   */
    timedate[1] = rtc_read(0x02); /* minute */
    timedate[2] = rtc_read(0x01); /* second */
    timedate[3] = rtc_read(0x07); /* year   */
    timedate[4] = rtc_read(0x06); /* month  */
    timedate[5] = rtc_read(0x05); /* day    */
    /* day of week not read, calculated */
    /* hour   */
    timedate[0] = ((timedate[0] & 0x30) >> 4) * 10 + (timedate[0] & 0x0f); 
    /* minute */
    timedate[1] = ((timedate[1] & 0x70) >> 4) * 10 + (timedate[1] & 0x0f); 
    /* second */
    timedate[2] = ((timedate[2] & 0x70) >> 4) * 10 + (timedate[2] & 0x0f); 
    /* year   */
    timedate[3] = ((timedate[3] & 0xf0) >> 4) * 10 + (timedate[3] & 0x0f); 
    /* month  */
    timedate[4] = ((timedate[4] & 0x10) >> 4) * 10 + (timedate[4] & 0x0f); 
    /* day    */
    timedate[5] = ((timedate[5] & 0x30) >> 4) * 10 + (timedate[5] & 0x0f);


    set_time("Set time/date",timedate);

    if(timedate[0] != -1) {
        /* hour   */
        timedate[0] = ((timedate[0]/10) << 4 | timedate[0]%10) & 0x3f; 
        /* minute */
        timedate[1] = ((timedate[1]/10) << 4 | timedate[1]%10) & 0x7f; 
        /* second */
        timedate[2] = ((timedate[2]/10) << 4 | timedate[2]%10) & 0x7f; 
        /* year   */
        timedate[3] = ((timedate[3]/10) << 4 | timedate[3]%10) & 0xff; 
        /* month  */
        timedate[4] = ((timedate[4]/10) << 4 | timedate[4]%10) & 0x1f; 
        /* day    */
        timedate[5] = ((timedate[5]/10) << 4 | timedate[5]%10) & 0x3f; 

        rtc_write(0x03, timedate[0] | (rtc_read(0x03) & 0xc0));  /* hour      */
        rtc_write(0x02, timedate[1] | (rtc_read(0x02) & 0x80));  /* minute    */
        rtc_write(0x01, timedate[2] | (rtc_read(0x01) & 0x80));  /* second    */
        rtc_write(0x07, timedate[3]);                            /* year      */
        rtc_write(0x06, timedate[4] | (rtc_read(0x06) & 0xe0));  /* month     */
        rtc_write(0x05, timedate[5] | (rtc_read(0x05) & 0xc0));  /* day       */
        rtc_write(0x04, timedate[6] | (rtc_read(0x04) & 0xf8));  /* dayofweek */
        rtc_write(0x00, 0x00);                          /* 0.1 + 0.01 seconds */
    }
    return MENU_OK;
}
#endif

static Menu spindown(void)
{
    set_int("Disk Spindown", "s", &global_settings.disk_spindown,
            ata_spindown, 1, 3, 254 );
    return MENU_OK;
}

static Menu ff_rewind_min_step(void) 
{ 
    char* names[] = { "1s", "2s", "3s", "4s",
                      "5s", "6s", "8s", "10s",
                      "15s", "20s", "25s", "30s",
                      "45s", "60s" };
    set_option("FF/RW Min Step", &global_settings.ff_rewind_min_step,
                names, 14, NULL ); 
    return MENU_OK; 
} 

static Menu ff_rewind_accel(void) 
{ 
    char* names[] = { "off", "2x/1s", "2x/2s", "2x/3s", 
                      "2x/4s", "2x/5s", "2x/6s", "2x/7s", 
                      "2x/8s", "2x/9s", "2x/10s", "2x/11s",
                      "2x/12s", "2x/13s", "2x/14s", "2x/15s", };
    set_option("FF/RW Accel", &global_settings.ff_rewind_accel, 
                names, 16, NULL ); 
    return MENU_OK; 
} 

static Menu browse_current(void)
{
    set_bool( "Follow Playlist", &global_settings.browse_current );
    return MENU_OK;
}

Menu playback_settings_menu(void)
{
    int m;
    Menu result;

    struct menu_items items[] = {
#ifndef HAVE_RECORDER_KEYPAD
        { "Shuffle",        shuffle            },
#endif
        { "Play Selected",  play_selected      },
        { "Resume",         resume             },
        { "FF/RW Min Step", ff_rewind_min_step },
        { "FF/RW Accel",    ff_rewind_accel    },
    };
    bool old_shuffle = global_settings.playlist_shuffle;
    
    m=menu_init( items, sizeof items / sizeof(struct menu_items) );
    result = menu_run(m);
    menu_exit(m);

    if (old_shuffle != global_settings.playlist_shuffle)
    {
        if (global_settings.playlist_shuffle)
        {
            randomise_playlist(current_tick);
        }
        else
        {
            sort_playlist(true);
        }
    }
    return result;
}

static Menu reset_settings(void)
{
    int button = 0;

    lcd_clear_display();
#ifdef HAVE_LCD_CHARCELLS
    lcd_puts(0,0,"Really?");
    lcd_puts(0,1,"Play/Stop");
#else
    lcd_puts(0,0,"Are you sure?");
    lcd_puts(0,1,"Play = Yes");
    lcd_puts(0,2,"Any Other = No");
#endif
    lcd_update();
    button = button_get(true);
    if (button == BUTTON_PLAY) {
        settings_reset();
        lcd_clear_display();
        lcd_puts(0,0,"Settings");
        lcd_puts(0,1,"Cleared");
        lcd_update();
        sleep(HZ);
        return(true);
    } else {
        lcd_clear_display();
        lcd_puts(0,0,"Canceled");
        lcd_update();
        sleep(HZ);
        return(false);
    }
}

static Menu fileview_settings_menu(void)
{
    int m;
    Menu result;

    struct menu_items items[] = {
        { "Sort Mode",       sort_case           },
        { "Music Filter",    mp3_filter          },
        { "Hidden Files",    show_hidden_files   },
        { "Follow Playlist", browse_current      },
    };

    m=menu_init( items, sizeof items / sizeof(struct menu_items) );
    result = menu_run(m);
    menu_exit(m);
    return result;
}

static Menu display_settings_menu(void)
{
    int m;
    Menu result;

    struct menu_items items[] = {
        { "Scroll Speed",    scroll_speed    },  
        { "Backlight",       backlight_timer },
        { "Contrast",        contrast        },  
    };
    
    m=menu_init( items, sizeof items / sizeof(struct menu_items) );
    result = menu_run(m);
    menu_exit(m);
    return result;
}

static Menu system_settings_menu(void)
{
    int m;
    Menu result;

    struct menu_items items[] = {
        { "Disk Spindown",   spindown        },
#ifdef HAVE_CHARGE_CTRL
        { "Deep Discharge",  deep_discharge  },
#endif
#ifdef HAVE_RTC
        { "Time/Date",       timedate_set    },
#endif
        { "Reset settings",  reset_settings },
    };
    
    m=menu_init( items, sizeof items / sizeof(struct menu_items) );
    result = menu_run(m);
    menu_exit(m);
    return result;
}

Menu settings_menu(void)
{
    int m;
    Menu result;

    struct menu_items items[] = {
        { "Playback",        playback_settings_menu },
        { "File View",       fileview_settings_menu },
        { "Display",         display_settings_menu  },
        { "System",          system_settings_menu   },
    };
    
    m=menu_init( items, sizeof items / sizeof(struct menu_items) );
    result = menu_run(m);
    menu_exit(m);
    return result;
}