2002-05-26 17:03:52 +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.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
2002-05-27 07:00:48 +00:00
|
|
|
|
#include "config.h"
|
2002-05-26 17:03:52 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdbool.h>
|
2002-08-20 19:37:00 +00:00
|
|
|
|
#include "kernel.h"
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#include "lcd.h"
|
2002-05-26 17:03:52 +00:00
|
|
|
|
#include "menu.h"
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#include "button.h"
|
2002-05-26 17:03:52 +00:00
|
|
|
|
#include "mpeg.h"
|
2002-06-19 14:58:57 +00:00
|
|
|
|
#include "settings.h"
|
2002-08-13 09:15:21 +00:00
|
|
|
|
#include "status.h"
|
2002-09-24 17:22:12 +00:00
|
|
|
|
#include "screens.h"
|
2002-08-20 19:37:00 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
#include "icons.h"
|
|
|
|
|
#endif
|
2002-09-18 14:08:05 +00:00
|
|
|
|
#include "lang.h"
|
2003-02-15 00:03:23 +00:00
|
|
|
|
#include "sprintf.h"
|
2002-05-26 17:03:52 +00:00
|
|
|
|
|
2002-06-28 12:40:32 +00:00
|
|
|
|
static char *fmt[] =
|
|
|
|
|
{
|
|
|
|
|
"", /* no decimals */
|
|
|
|
|
"%d.%d %s ", /* 1 decimal */
|
|
|
|
|
"%d.%02d %s " /* 2 decimals */
|
|
|
|
|
};
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
bool set_sound(char* string,
|
2002-06-28 11:48:53 +00:00
|
|
|
|
int* variable,
|
|
|
|
|
int setting)
|
|
|
|
|
{
|
|
|
|
|
bool done = false;
|
2002-08-20 20:30:32 +00:00
|
|
|
|
bool changed = true;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
int min, max;
|
|
|
|
|
int val;
|
2002-06-28 12:40:32 +00:00
|
|
|
|
int numdec;
|
|
|
|
|
int integer;
|
|
|
|
|
int dec;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
char* unit;
|
|
|
|
|
char str[32];
|
|
|
|
|
|
|
|
|
|
unit = mpeg_sound_unit(setting);
|
2002-06-28 12:40:32 +00:00
|
|
|
|
numdec = mpeg_sound_numdecimals(setting);
|
2002-06-28 11:48:53 +00:00
|
|
|
|
min = mpeg_sound_min(setting);
|
|
|
|
|
max = mpeg_sound_max(setting);
|
|
|
|
|
|
2002-08-20 19:37:00 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
if(global_settings.statusbar)
|
|
|
|
|
lcd_setmargins(0, STATUSBAR_HEIGHT);
|
|
|
|
|
else
|
|
|
|
|
lcd_setmargins(0, 0);
|
|
|
|
|
#endif
|
2002-06-28 11:48:53 +00:00
|
|
|
|
lcd_clear_display();
|
|
|
|
|
lcd_puts_scroll(0,0,string);
|
|
|
|
|
|
|
|
|
|
while (!done) {
|
2002-08-20 19:37:00 +00:00
|
|
|
|
if (changed) {
|
|
|
|
|
val = mpeg_val2phys(setting, *variable);
|
|
|
|
|
if(numdec)
|
|
|
|
|
{
|
|
|
|
|
integer = val / (10 * numdec);
|
|
|
|
|
dec = val % (10 * numdec);
|
|
|
|
|
snprintf(str,sizeof str, fmt[numdec], integer, dec, unit);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
snprintf(str,sizeof str,"%d %s ", val, unit);
|
|
|
|
|
}
|
2002-06-28 12:40:32 +00:00
|
|
|
|
}
|
2002-06-28 11:48:53 +00:00
|
|
|
|
lcd_puts(0,1,str);
|
2002-08-13 09:15:21 +00:00
|
|
|
|
status_draw();
|
2002-08-20 19:37:00 +00:00
|
|
|
|
lcd_update();
|
2002-06-28 11:48:53 +00:00
|
|
|
|
|
2002-08-20 19:37:00 +00:00
|
|
|
|
changed = false;
|
|
|
|
|
switch( button_get_w_tmo(HZ/2) ) {
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
|
case BUTTON_UP:
|
2002-07-27 22:45:29 +00:00
|
|
|
|
case BUTTON_UP | BUTTON_REPEAT:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#else
|
|
|
|
|
case BUTTON_RIGHT:
|
2002-07-27 22:45:29 +00:00
|
|
|
|
case BUTTON_RIGHT | BUTTON_REPEAT:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#endif
|
|
|
|
|
(*variable)++;
|
|
|
|
|
if(*variable > max )
|
|
|
|
|
*variable = max;
|
2002-08-20 19:37:00 +00:00
|
|
|
|
changed = true;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
|
case BUTTON_DOWN:
|
2002-07-27 22:45:29 +00:00
|
|
|
|
case BUTTON_DOWN | BUTTON_REPEAT:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#else
|
|
|
|
|
case BUTTON_LEFT:
|
2002-07-27 22:45:29 +00:00
|
|
|
|
case BUTTON_LEFT | BUTTON_REPEAT:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#endif
|
|
|
|
|
(*variable)--;
|
|
|
|
|
if(*variable < min )
|
|
|
|
|
*variable = min;
|
2002-08-20 19:37:00 +00:00
|
|
|
|
changed = true;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
|
case BUTTON_LEFT:
|
|
|
|
|
#else
|
|
|
|
|
case BUTTON_STOP:
|
|
|
|
|
case BUTTON_MENU:
|
|
|
|
|
#endif
|
|
|
|
|
done = true;
|
|
|
|
|
break;
|
2002-09-24 17:22:12 +00:00
|
|
|
|
|
|
|
|
|
case SYS_USB_CONNECTED:
|
|
|
|
|
usb_screen();
|
|
|
|
|
return true;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
}
|
2002-08-20 19:37:00 +00:00
|
|
|
|
if (changed) {
|
|
|
|
|
mpeg_sound_set(setting, *variable);
|
2002-08-14 21:30:06 +00:00
|
|
|
|
#ifdef HAVE_MAS3507D
|
2002-08-20 19:37:00 +00:00
|
|
|
|
if(setting == SOUND_BALANCE)
|
|
|
|
|
mpeg_sound_set(SOUND_VOLUME, global_settings.volume);
|
2002-08-14 21:30:06 +00:00
|
|
|
|
#endif
|
2002-08-20 19:37:00 +00:00
|
|
|
|
}
|
2002-06-28 11:48:53 +00:00
|
|
|
|
}
|
|
|
|
|
lcd_stop_scroll();
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return false;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool volume(void)
|
2002-05-26 17:03:52 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_VOLUME), &global_settings.volume, SOUND_VOLUME);
|
2002-05-26 17:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool balance(void)
|
2002-08-14 21:30:06 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_BALANCE), &global_settings.balance,
|
|
|
|
|
SOUND_BALANCE);
|
2002-08-14 21:30:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool bass(void)
|
2002-05-26 17:03:52 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_BASS), &global_settings.bass, SOUND_BASS);
|
2002-05-26 17:03:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool treble(void)
|
2002-05-26 17:03:52 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_TREBLE), &global_settings.treble, SOUND_TREBLE);
|
2002-05-26 17:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-08 20:44:25 +00:00
|
|
|
|
#ifdef HAVE_MAS3587F
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool loudness(void)
|
2002-07-22 16:39:17 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_LOUDNESS), &global_settings.loudness,
|
|
|
|
|
SOUND_LOUDNESS);
|
2002-07-22 16:39:17 +00:00
|
|
|
|
};
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool bass_boost(void)
|
2002-07-22 16:39:17 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_BBOOST), &global_settings.bass_boost,
|
|
|
|
|
SOUND_SUPERBASS);
|
2002-07-22 16:39:17 +00:00
|
|
|
|
};
|
2002-07-25 15:55:22 +00:00
|
|
|
|
|
2002-09-10 05:31:12 +00:00
|
|
|
|
static void set_avc(int val)
|
|
|
|
|
{
|
|
|
|
|
mpeg_sound_set(SOUND_AVC, val);
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool avc(void)
|
2002-07-25 15:55:22 +00:00
|
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
|
char* names[] = { str(LANG_OFF), "2s", "4s", "8s" };
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_option(str(LANG_DECAY), &global_settings.avc,
|
|
|
|
|
names, 4, set_avc);
|
2002-07-25 15:55:22 +00:00
|
|
|
|
}
|
2002-11-10 23:18:33 +00:00
|
|
|
|
|
|
|
|
|
static bool recsource(void)
|
|
|
|
|
{
|
|
|
|
|
char *names[] = {str(LANG_RECORDING_SRC_MIC), str(LANG_RECORDING_SRC_LINE),
|
|
|
|
|
str(LANG_RECORDING_SRC_DIGITAL) };
|
|
|
|
|
return set_option(str(LANG_RECORDING_SOURCE),
|
|
|
|
|
&global_settings.rec_source,
|
|
|
|
|
names, 3, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool recfrequency(void)
|
|
|
|
|
{
|
|
|
|
|
char *names[] = {"44.1kHz", "48kHz", "32kHz",
|
|
|
|
|
"22.05kHz", "24kHz", "16kHz"};
|
|
|
|
|
|
|
|
|
|
return set_option(str(LANG_RECORDING_FREQUENCY),
|
|
|
|
|
&global_settings.rec_frequency,
|
|
|
|
|
names, 6, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool recchannels(void)
|
|
|
|
|
{
|
|
|
|
|
char *names[] = {str(LANG_CHANNEL_STEREO), str(LANG_CHANNEL_MONO)};
|
|
|
|
|
|
|
|
|
|
return set_option(str(LANG_RECORDING_CHANNELS),
|
|
|
|
|
&global_settings.rec_channels,
|
|
|
|
|
names, 2, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool recquality(void)
|
|
|
|
|
{
|
|
|
|
|
return set_int(str(LANG_RECORDING_QUALITY), "",
|
|
|
|
|
&global_settings.rec_quality,
|
|
|
|
|
NULL, 1, 0, 7 );
|
|
|
|
|
}
|
|
|
|
|
#endif /* HAVE_MAS3587F */
|
2002-07-22 16:39:17 +00:00
|
|
|
|
|
2002-09-10 06:24:46 +00:00
|
|
|
|
static void set_chanconf(int val)
|
|
|
|
|
{
|
|
|
|
|
mpeg_sound_set(SOUND_CHANNELS, val);
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool chanconf(void)
|
2002-09-09 15:13:33 +00:00
|
|
|
|
{
|
2003-02-27 15:02:20 +00:00
|
|
|
|
char *names[] = {str(LANG_CHANNEL_STEREO),
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
|
str(LANG_CHANNEL_STEREO_NARROW_PLAYER),
|
|
|
|
|
#else
|
|
|
|
|
str(LANG_CHANNEL_STEREO_NARROW_RECORDER),
|
|
|
|
|
#endif
|
|
|
|
|
str(LANG_CHANNEL_MONO),
|
|
|
|
|
str(LANG_CHANNEL_LEFT), str(LANG_CHANNEL_RIGHT),
|
|
|
|
|
str(LANG_CHANNEL_KARAOKE), str(LANG_CHANNEL_STEREO_WIDE) };
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_option(str(LANG_CHANNEL), &global_settings.channel_config,
|
2003-02-27 15:02:20 +00:00
|
|
|
|
names, 7, set_chanconf );
|
2002-09-09 15:13:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
bool sound_menu(void)
|
2002-05-26 17:03:52 +00:00
|
|
|
|
{
|
|
|
|
|
int m;
|
2002-09-24 17:22:12 +00:00
|
|
|
|
bool result;
|
2002-05-26 17:03:52 +00:00
|
|
|
|
struct menu_items items[] = {
|
2002-09-18 14:08:05 +00:00
|
|
|
|
{ str(LANG_VOLUME), volume },
|
|
|
|
|
{ str(LANG_BASS), bass },
|
|
|
|
|
{ str(LANG_TREBLE), treble },
|
|
|
|
|
{ str(LANG_BALANCE), balance },
|
|
|
|
|
{ str(LANG_CHANNEL_MENU), chanconf },
|
2002-08-08 20:44:25 +00:00
|
|
|
|
#ifdef HAVE_MAS3587F
|
2002-09-18 14:08:05 +00:00
|
|
|
|
{ str(LANG_LOUDNESS), loudness },
|
|
|
|
|
{ str(LANG_BBOOST), bass_boost },
|
|
|
|
|
{ str(LANG_AUTOVOL), avc }
|
2002-07-22 16:39:17 +00:00
|
|
|
|
#endif
|
2002-05-26 17:03:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
2002-08-23 12:32:52 +00:00
|
|
|
|
result = menu_run(m);
|
2002-05-26 17:03:52 +00:00
|
|
|
|
menu_exit(m);
|
2002-08-23 12:32:52 +00:00
|
|
|
|
|
|
|
|
|
return result;
|
2002-05-26 17:03:52 +00:00
|
|
|
|
}
|
2002-11-10 23:18:33 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_MAS3587F
|
|
|
|
|
bool recording_menu(void)
|
|
|
|
|
{
|
|
|
|
|
int m;
|
|
|
|
|
bool result;
|
|
|
|
|
struct menu_items items[] = {
|
|
|
|
|
{ str(LANG_RECORDING_QUALITY), recquality },
|
|
|
|
|
{ str(LANG_RECORDING_FREQUENCY), recfrequency },
|
|
|
|
|
{ str(LANG_RECORDING_SOURCE), recsource },
|
|
|
|
|
{ str(LANG_RECORDING_CHANNELS), recchannels },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
|
|
|
|
result = menu_run(m);
|
|
|
|
|
menu_exit(m);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
#endif
|