2002-09-24 17:22:12 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-05-05 10:32:46 +00:00
|
|
|
* Copyright (C) 2002 Björn Stenberg
|
2002-09-24 17:22:12 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2002-09-24 17:22:12 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2005-11-22 21:55:05 +00:00
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2018-10-30 13:45:26 +00:00
|
|
|
#include <stdlib.h>
|
2002-09-24 17:22:12 +00:00
|
|
|
#include "backlight.h"
|
2006-08-15 12:27:07 +00:00
|
|
|
#include "action.h"
|
2002-09-24 17:22:12 +00:00
|
|
|
#include "lcd.h"
|
|
|
|
#include "lang.h"
|
|
|
|
#include "icons.h"
|
|
|
|
#include "font.h"
|
2005-04-04 12:06:29 +00:00
|
|
|
#include "audio.h"
|
2009-10-19 21:28:18 +00:00
|
|
|
#include "usb.h"
|
2002-09-24 17:22:12 +00:00
|
|
|
#include "settings.h"
|
2002-10-11 08:56:23 +00:00
|
|
|
#include "status.h"
|
2002-09-24 17:22:12 +00:00
|
|
|
#include "playlist.h"
|
2003-06-29 16:33:04 +00:00
|
|
|
#include "kernel.h"
|
2003-07-17 20:29:51 +00:00
|
|
|
#include "power.h"
|
2003-07-18 22:01:13 +00:00
|
|
|
#include "system.h"
|
|
|
|
#include "powermgmt.h"
|
2004-04-21 06:49:12 +00:00
|
|
|
#include "talk.h"
|
2004-07-24 21:26:41 +00:00
|
|
|
#include "misc.h"
|
2004-10-12 00:02:51 +00:00
|
|
|
#include "screens.h"
|
2004-10-19 16:17:35 +00:00
|
|
|
#include "debug.h"
|
2005-02-19 16:23:30 +00:00
|
|
|
#include "led.h"
|
2005-04-01 13:41:03 +00:00
|
|
|
#include "sound.h"
|
2005-11-16 15:12:15 +00:00
|
|
|
#include "splash.h"
|
2005-11-20 01:02:14 +00:00
|
|
|
#include "statusbar.h"
|
2005-11-22 03:38:07 +00:00
|
|
|
#include "screen_access.h"
|
2006-07-02 12:28:27 +00:00
|
|
|
#include "list.h"
|
2006-12-19 12:26:03 +00:00
|
|
|
#include "yesno.h"
|
2008-03-29 01:14:10 +00:00
|
|
|
#include "backdrop.h"
|
2008-05-11 14:08:46 +00:00
|
|
|
#include "viewport.h"
|
2009-10-06 16:57:01 +00:00
|
|
|
#include "language.h"
|
2011-02-24 19:10:59 +00:00
|
|
|
#include "replaygain.h"
|
2005-11-20 01:02:14 +00:00
|
|
|
|
2018-10-30 13:45:26 +00:00
|
|
|
#include "ctype.h"
|
2004-10-12 00:02:51 +00:00
|
|
|
|
2007-08-12 19:49:03 +00:00
|
|
|
#if CONFIG_CHARGING
|
2003-12-04 00:08:25 +00:00
|
|
|
void charging_splash(void)
|
|
|
|
{
|
2008-08-15 08:27:39 +00:00
|
|
|
splash(2*HZ, str(LANG_BATTERY_CHARGE));
|
2005-01-26 22:48:25 +00:00
|
|
|
button_clear_queue();
|
2003-12-04 00:08:25 +00:00
|
|
|
}
|
2005-05-07 01:30:16 +00:00
|
|
|
#endif
|
2004-04-21 06:49:12 +00:00
|
|
|
|
|
|
|
|
2020-07-17 14:31:31 +00:00
|
|
|
#if (CONFIG_RTC != 0)
|
2004-04-21 06:49:12 +00:00
|
|
|
|
|
|
|
/* little helper function for voice output */
|
2004-08-18 01:09:31 +00:00
|
|
|
static void say_time(int cursorpos, const struct tm *tm)
|
2004-04-21 06:49:12 +00:00
|
|
|
{
|
|
|
|
int value = 0;
|
2007-10-24 10:29:45 +00:00
|
|
|
int unit = 0;
|
2004-04-21 06:49:12 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
if (!global_settings.talk_menu)
|
2004-04-21 06:49:12 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch(cursorpos)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
value = tm->tm_hour;
|
2007-10-24 10:29:45 +00:00
|
|
|
unit = UNIT_HOUR;
|
2004-04-21 06:49:12 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
value = tm->tm_min;
|
2007-10-24 10:29:45 +00:00
|
|
|
unit = UNIT_MIN;
|
2004-04-21 06:49:12 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
value = tm->tm_sec;
|
2007-10-24 10:29:45 +00:00
|
|
|
unit = UNIT_SEC;
|
2004-04-21 06:49:12 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
value = tm->tm_year + 1900;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
value = tm->tm_mday;
|
|
|
|
break;
|
|
|
|
}
|
2005-07-05 19:33:33 +00:00
|
|
|
|
2004-04-21 06:49:12 +00:00
|
|
|
if (cursorpos == 4) /* month */
|
2004-04-21 21:40:26 +00:00
|
|
|
talk_id(LANG_MONTH_JANUARY + tm->tm_mon, false);
|
2004-04-21 06:49:12 +00:00
|
|
|
else
|
2007-10-24 10:29:45 +00:00
|
|
|
talk_value(value, unit, false);
|
2004-04-21 06:49:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define INDEX_X 0
|
|
|
|
#define INDEX_Y 1
|
2007-07-01 12:08:45 +00:00
|
|
|
|
|
|
|
#define SEPARATOR ":"
|
2009-10-06 16:57:01 +00:00
|
|
|
|
|
|
|
#define IDX_HOURS 0
|
|
|
|
#define IDX_MINUTES 1
|
|
|
|
#define IDX_SECONDS 2
|
|
|
|
#define IDX_YEAR 3
|
|
|
|
#define IDX_MONTH 4
|
|
|
|
#define IDX_DAY 5
|
|
|
|
|
|
|
|
#define OFF_HOURS 0
|
|
|
|
#define OFF_MINUTES 3
|
|
|
|
#define OFF_SECONDS 6
|
|
|
|
#define OFF_YEAR 9
|
|
|
|
#define OFF_DAY 14
|
|
|
|
|
2022-03-30 12:53:40 +00:00
|
|
|
bool set_time_screen(const char* title, struct tm *tm, bool set_date)
|
2004-04-21 06:49:12 +00:00
|
|
|
{
|
2010-02-11 10:41:06 +00:00
|
|
|
struct viewport viewports[NB_SCREENS];
|
|
|
|
bool done = false, usb = false;
|
2007-11-22 19:46:27 +00:00
|
|
|
int cursorpos = 0;
|
2009-10-06 16:57:01 +00:00
|
|
|
unsigned char offsets_ptr[] =
|
|
|
|
{ OFF_HOURS, OFF_MINUTES, OFF_SECONDS, OFF_YEAR, 0, OFF_DAY };
|
2004-04-21 06:49:12 +00:00
|
|
|
|
2009-10-06 16:57:01 +00:00
|
|
|
if (lang_is_rtl())
|
|
|
|
{
|
|
|
|
offsets_ptr[IDX_HOURS] = OFF_SECONDS;
|
|
|
|
offsets_ptr[IDX_SECONDS] = OFF_HOURS;
|
|
|
|
offsets_ptr[IDX_YEAR] = OFF_DAY;
|
|
|
|
offsets_ptr[IDX_DAY] = OFF_YEAR;
|
|
|
|
}
|
2007-07-01 12:08:45 +00:00
|
|
|
|
2022-03-30 12:53:40 +00:00
|
|
|
int last_item = IDX_DAY; /*time & date*/
|
|
|
|
if (!set_date)
|
|
|
|
last_item = IDX_SECONDS; /*time*/
|
|
|
|
|
2007-11-22 19:46:27 +00:00
|
|
|
/* speak selection when screen is entered */
|
|
|
|
say_time(cursorpos, tm);
|
|
|
|
|
2010-02-11 10:41:06 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
enum touchscreen_mode old_mode = touchscreen_get_mode();
|
|
|
|
touchscreen_set_mode(TOUCHSCREEN_BUTTON);
|
|
|
|
#endif
|
2007-11-22 19:46:27 +00:00
|
|
|
while (!done) {
|
2009-10-06 16:57:01 +00:00
|
|
|
int button;
|
2010-02-11 10:41:06 +00:00
|
|
|
unsigned int i, realyear, min, max;
|
2009-10-06 16:57:01 +00:00
|
|
|
unsigned char *ptr[6];
|
2019-07-20 15:11:32 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_HOSTED)
|
|
|
|
/* The format strings in the snprintf can in theory need 60 characters
|
|
|
|
This will not happen in practice (because seconds are 0..60 and not
|
|
|
|
full-range integers etc.), but -D_FORTIFY_SOURCE will still warn
|
|
|
|
about it, so we use 60 characters for HOSTED to make the compiler
|
|
|
|
happy. Native builds still use 20, which is enough in practice. */
|
|
|
|
unsigned char buffer[60];
|
|
|
|
#else
|
2009-10-06 16:57:01 +00:00
|
|
|
unsigned char buffer[20];
|
2019-07-20 15:11:32 +00:00
|
|
|
#endif
|
2009-10-06 16:57:01 +00:00
|
|
|
int *valptr = NULL;
|
2022-03-30 12:53:40 +00:00
|
|
|
|
2009-10-06 16:57:01 +00:00
|
|
|
static unsigned char daysinmonth[] =
|
|
|
|
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
|
|
|
|
|
2007-07-21 08:28:48 +00:00
|
|
|
/* for easy acess in the drawing loop */
|
2009-10-06 16:57:01 +00:00
|
|
|
for (i = 0; i < 6; i++)
|
|
|
|
ptr[i] = buffer + offsets_ptr[i];
|
|
|
|
ptr[IDX_MONTH] = str(LANG_MONTH_JANUARY + tm->tm_mon); /* month name */
|
2007-07-21 08:28:48 +00:00
|
|
|
|
2004-04-21 06:49:12 +00:00
|
|
|
/* calculate the number of days in febuary */
|
|
|
|
realyear = tm->tm_year + 1900;
|
|
|
|
if((realyear % 4 == 0 && !(realyear % 100 == 0)) || realyear % 400 == 0)
|
|
|
|
daysinmonth[1] = 29;
|
|
|
|
else
|
|
|
|
daysinmonth[1] = 28;
|
|
|
|
|
|
|
|
/* fix day if month or year changed */
|
|
|
|
if (tm->tm_mday > daysinmonth[tm->tm_mon])
|
|
|
|
tm->tm_mday = daysinmonth[tm->tm_mon];
|
|
|
|
|
|
|
|
/* calculate day of week */
|
2009-08-11 19:30:19 +00:00
|
|
|
set_day_of_week(tm);
|
2004-04-21 06:49:12 +00:00
|
|
|
|
2007-07-21 08:28:48 +00:00
|
|
|
/* put all the numbers we want from the tm struct into
|
|
|
|
an easily printable buffer */
|
2007-07-02 19:52:19 +00:00
|
|
|
snprintf(buffer, sizeof(buffer),
|
2007-07-21 08:28:48 +00:00
|
|
|
"%02d " "%02d " "%02d " "%04d " "%02d",
|
2007-07-01 12:08:45 +00:00
|
|
|
tm->tm_hour, tm->tm_min, tm->tm_sec,
|
2007-07-21 08:28:48 +00:00
|
|
|
tm->tm_year+1900, tm->tm_mday);
|
2007-07-01 12:08:45 +00:00
|
|
|
|
2007-07-21 08:28:48 +00:00
|
|
|
/* convert spaces in the buffer to '\0' to make it possible to work
|
2007-07-01 12:08:45 +00:00
|
|
|
directly on the buffer */
|
2007-07-21 08:28:48 +00:00
|
|
|
for(i=0; i < sizeof(buffer); i++)
|
|
|
|
{
|
|
|
|
if(buffer[i] == ' ')
|
|
|
|
buffer[i] = '\0';
|
|
|
|
}
|
|
|
|
|
2007-07-15 10:30:11 +00:00
|
|
|
FOR_NB_SCREENS(s)
|
2007-07-01 12:08:45 +00:00
|
|
|
{
|
2009-10-06 16:57:01 +00:00
|
|
|
int pos, nb_lines;
|
|
|
|
unsigned int separator_width, weekday_width;
|
|
|
|
unsigned int j, width, prev_line_height;
|
|
|
|
/* 6 possible cursor possitions, 2 values stored for each: x, y */
|
|
|
|
unsigned int cursor[6][2];
|
2009-10-06 08:20:12 +00:00
|
|
|
struct viewport *vp = &viewports[s];
|
2020-10-07 06:01:35 +00:00
|
|
|
struct viewport *last_vp;
|
2009-10-06 08:32:37 +00:00
|
|
|
struct screen *screen = &screens[s];
|
2009-10-06 16:57:01 +00:00
|
|
|
static unsigned char rtl_idx[] =
|
|
|
|
{ IDX_SECONDS, IDX_MINUTES, IDX_HOURS, IDX_DAY, IDX_MONTH, IDX_YEAR };
|
2009-10-06 08:20:12 +00:00
|
|
|
|
|
|
|
viewport_set_defaults(vp, s);
|
2020-10-07 06:01:35 +00:00
|
|
|
last_vp = screen->set_viewport(vp);
|
2009-10-06 08:20:12 +00:00
|
|
|
nb_lines = viewport_get_nb_lines(vp);
|
|
|
|
|
2007-07-15 10:30:11 +00:00
|
|
|
/* minimum lines needed is 2 + title line */
|
2008-05-11 13:59:27 +00:00
|
|
|
if (nb_lines < 4)
|
2007-07-15 10:30:11 +00:00
|
|
|
{
|
2009-10-06 08:20:12 +00:00
|
|
|
vp->font = FONT_SYSFIXED;
|
|
|
|
nb_lines = viewport_get_nb_lines(vp);
|
2007-07-15 10:30:11 +00:00
|
|
|
}
|
2009-10-06 08:20:12 +00:00
|
|
|
|
2007-07-15 10:30:11 +00:00
|
|
|
/* recalculate the positions and offsets */
|
2008-05-11 13:59:27 +00:00
|
|
|
if (nb_lines >= 3)
|
2009-10-06 08:32:37 +00:00
|
|
|
screen->getstringsize(title, NULL, &prev_line_height);
|
2007-07-01 12:08:45 +00:00
|
|
|
else
|
2007-07-15 10:30:11 +00:00
|
|
|
prev_line_height = 0;
|
|
|
|
|
|
|
|
/* weekday */
|
2022-11-04 15:42:24 +00:00
|
|
|
weekday_width = screen->getstringsize(str(LANG_WEEKDAY_SUNDAY + tm->tm_wday),
|
|
|
|
NULL, NULL);
|
|
|
|
separator_width = screen->getstringsize(SEPARATOR, NULL, NULL);
|
2007-07-21 08:28:48 +00:00
|
|
|
|
2007-11-22 19:46:27 +00:00
|
|
|
for(i=0, j=0; i < 6; i++)
|
|
|
|
{
|
|
|
|
if(i==3) /* second row */
|
|
|
|
{
|
2009-03-04 18:15:06 +00:00
|
|
|
j = weekday_width + separator_width;
|
2007-11-22 19:46:27 +00:00
|
|
|
prev_line_height *= 2;
|
|
|
|
}
|
2022-11-04 15:42:24 +00:00
|
|
|
width = screen->getstringsize(ptr[i], NULL, NULL);
|
2010-02-11 10:41:06 +00:00
|
|
|
cursor[i][INDEX_Y] = prev_line_height;
|
2007-11-22 19:46:27 +00:00
|
|
|
cursor[i][INDEX_X] = j;
|
|
|
|
j += width + separator_width;
|
|
|
|
}
|
2007-07-21 08:28:48 +00:00
|
|
|
|
2007-07-15 10:30:11 +00:00
|
|
|
/* draw the screen */
|
2009-10-06 08:32:37 +00:00
|
|
|
screen->set_viewport(vp);
|
|
|
|
screen->clear_viewport();
|
2007-07-15 10:30:11 +00:00
|
|
|
/* display the screen title */
|
2009-10-06 08:32:37 +00:00
|
|
|
screen->puts_scroll(0, 0, title);
|
2007-07-21 08:28:48 +00:00
|
|
|
|
2007-07-15 10:30:11 +00:00
|
|
|
/* these are not selectable, so we draw them outside the loop */
|
2008-05-23 21:43:40 +00:00
|
|
|
/* name of the week day */
|
2009-10-06 08:32:37 +00:00
|
|
|
screen->putsxy(0, cursor[3][INDEX_Y],
|
2008-05-23 21:43:40 +00:00
|
|
|
str(LANG_WEEKDAY_SUNDAY + tm->tm_wday));
|
2007-07-15 10:30:11 +00:00
|
|
|
|
2009-10-06 16:57:01 +00:00
|
|
|
pos = lang_is_rtl() ? rtl_idx[cursorpos] : cursorpos;
|
2007-07-15 10:30:11 +00:00
|
|
|
/* draw the selected item with drawmode set to
|
|
|
|
DRMODE_SOLID|DRMODE_INVERSEVID, all other selectable
|
|
|
|
items with drawmode DRMODE_SOLID */
|
|
|
|
for(i=0; i<6; i++)
|
|
|
|
{
|
2009-10-06 16:57:01 +00:00
|
|
|
if (pos == (int)i)
|
2009-10-06 08:20:12 +00:00
|
|
|
vp->drawmode = (DRMODE_SOLID|DRMODE_INVERSEVID);
|
2008-05-23 21:43:40 +00:00
|
|
|
|
2009-10-06 08:32:37 +00:00
|
|
|
screen->putsxy(cursor[i][INDEX_X],
|
2007-07-15 10:30:11 +00:00
|
|
|
cursor[i][INDEX_Y], ptr[i]);
|
2007-11-22 19:46:27 +00:00
|
|
|
|
2009-10-06 08:20:12 +00:00
|
|
|
vp->drawmode = DRMODE_SOLID;
|
2007-11-22 19:46:27 +00:00
|
|
|
|
2009-10-06 08:32:37 +00:00
|
|
|
screen->putsxy(cursor[i/4 +1][INDEX_X] - separator_width,
|
2007-11-22 19:46:27 +00:00
|
|
|
cursor[0][INDEX_Y], SEPARATOR);
|
2007-07-15 10:30:11 +00:00
|
|
|
}
|
2004-04-21 06:49:12 +00:00
|
|
|
|
2007-07-15 10:30:11 +00:00
|
|
|
/* print help text */
|
2008-05-11 13:59:27 +00:00
|
|
|
if (nb_lines > 4)
|
2009-10-06 08:32:37 +00:00
|
|
|
screen->puts(0, 4, str(LANG_TIME_SET_BUTTON));
|
2008-05-11 13:59:27 +00:00
|
|
|
if (nb_lines > 5)
|
2009-10-06 08:32:37 +00:00
|
|
|
screen->puts(0, 5, str(LANG_TIME_REVERT));
|
|
|
|
screen->update_viewport();
|
2020-10-07 06:01:35 +00:00
|
|
|
screen->set_viewport(last_vp);
|
2007-07-01 12:08:45 +00:00
|
|
|
}
|
2007-07-08 15:32:56 +00:00
|
|
|
|
2007-11-22 19:46:27 +00:00
|
|
|
/* set the most common numbers */
|
|
|
|
min = 0;
|
|
|
|
max = 59;
|
2004-04-21 06:49:12 +00:00
|
|
|
/* calculate the minimum and maximum for the number under cursor */
|
2007-11-22 19:46:27 +00:00
|
|
|
switch(cursorpos) {
|
|
|
|
case 0: /* hour */
|
|
|
|
max = 23;
|
|
|
|
valptr = &tm->tm_hour;
|
|
|
|
break;
|
|
|
|
case 1: /* minute */
|
|
|
|
valptr = &tm->tm_min;
|
|
|
|
break;
|
|
|
|
case 2: /* second */
|
|
|
|
valptr = &tm->tm_sec;
|
|
|
|
break;
|
|
|
|
case 3: /* year */
|
|
|
|
min = 1;
|
|
|
|
max = 200;
|
|
|
|
valptr = &tm->tm_year;
|
|
|
|
break;
|
|
|
|
case 4: /* month */
|
|
|
|
max = 11;
|
|
|
|
valptr = &tm->tm_mon;
|
|
|
|
break;
|
|
|
|
case 5: /* day */
|
|
|
|
min = 1;
|
|
|
|
max = daysinmonth[tm->tm_mon];
|
|
|
|
valptr = &tm->tm_mday;
|
|
|
|
break;
|
2004-04-21 06:49:12 +00:00
|
|
|
}
|
|
|
|
|
2007-07-15 10:30:11 +00:00
|
|
|
button = get_action(CONTEXT_SETTINGS_TIME, TIMEOUT_BLOCK);
|
2004-04-21 06:49:12 +00:00
|
|
|
switch ( button ) {
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_STD_PREV:
|
2022-03-30 12:53:40 +00:00
|
|
|
cursorpos = clamp_value_wrap(--cursorpos, last_item, 0);
|
2007-11-22 19:46:27 +00:00
|
|
|
say_time(cursorpos, tm);
|
2004-04-21 06:49:12 +00:00
|
|
|
break;
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_STD_NEXT:
|
2022-03-30 12:53:40 +00:00
|
|
|
cursorpos = clamp_value_wrap(++cursorpos, last_item, 0);
|
2007-11-22 19:46:27 +00:00
|
|
|
say_time(cursorpos, tm);
|
2004-04-21 06:49:12 +00:00
|
|
|
break;
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_SETTINGS_INC:
|
2006-08-21 07:03:15 +00:00
|
|
|
case ACTION_SETTINGS_INCREPEAT:
|
2007-11-22 19:46:27 +00:00
|
|
|
*valptr = clamp_value_wrap(++(*valptr), max, min);
|
2004-04-21 06:49:12 +00:00
|
|
|
say_time(cursorpos, tm);
|
|
|
|
break;
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_SETTINGS_DEC:
|
2006-08-21 07:03:15 +00:00
|
|
|
case ACTION_SETTINGS_DECREPEAT:
|
2007-11-22 19:46:27 +00:00
|
|
|
*valptr = clamp_value_wrap(--(*valptr), max, min);
|
2004-04-21 06:49:12 +00:00
|
|
|
say_time(cursorpos, tm);
|
|
|
|
break;
|
2004-09-19 21:58:37 +00:00
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_STD_OK:
|
2004-04-21 06:49:12 +00:00
|
|
|
done = true;
|
|
|
|
break;
|
2004-09-19 21:58:37 +00:00
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_STD_CANCEL:
|
2004-04-21 06:49:12 +00:00
|
|
|
done = true;
|
|
|
|
tm->tm_year = -1;
|
|
|
|
break;
|
|
|
|
|
2004-07-26 16:06:59 +00:00
|
|
|
default:
|
|
|
|
if (default_event_handler(button) == SYS_USB_CONNECTED)
|
2010-02-11 10:41:06 +00:00
|
|
|
done = usb = true;
|
2004-07-26 16:06:59 +00:00
|
|
|
break;
|
2004-04-21 06:49:12 +00:00
|
|
|
}
|
|
|
|
}
|
2010-02-11 10:41:06 +00:00
|
|
|
FOR_NB_SCREENS(s)
|
2013-04-03 14:33:23 +00:00
|
|
|
screens[s].scroll_stop_viewport(&viewports[s]);
|
2010-02-11 10:41:06 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
touchscreen_set_mode(old_mode);
|
|
|
|
#endif
|
|
|
|
return usb;
|
2004-04-21 06:49:12 +00:00
|
|
|
}
|
2020-07-17 14:31:31 +00:00
|
|
|
#endif /* (CONFIG_RTC != 0) */
|
2004-07-24 21:26:41 +00:00
|
|
|
|
2007-02-11 08:06:24 +00:00
|
|
|
static const int id3_headers[]=
|
|
|
|
{
|
|
|
|
LANG_ID3_TITLE,
|
|
|
|
LANG_ID3_ARTIST,
|
2020-10-26 16:38:22 +00:00
|
|
|
LANG_ID3_COMPOSER,
|
2007-02-11 08:06:24 +00:00
|
|
|
LANG_ID3_ALBUM,
|
|
|
|
LANG_ID3_ALBUMARTIST,
|
2007-08-08 10:19:56 +00:00
|
|
|
LANG_ID3_GROUPING,
|
2007-08-03 10:00:42 +00:00
|
|
|
LANG_ID3_DISCNUM,
|
2007-02-11 08:06:24 +00:00
|
|
|
LANG_ID3_TRACKNUM,
|
|
|
|
LANG_ID3_COMMENT,
|
|
|
|
LANG_ID3_GENRE,
|
|
|
|
LANG_ID3_YEAR,
|
|
|
|
LANG_ID3_LENGTH,
|
|
|
|
LANG_ID3_PLAYLIST,
|
2022-04-17 16:20:43 +00:00
|
|
|
LANG_FORMAT,
|
2007-02-11 08:06:24 +00:00
|
|
|
LANG_ID3_BITRATE,
|
2007-07-28 16:32:24 +00:00
|
|
|
LANG_ID3_FREQUENCY,
|
2007-02-11 08:06:24 +00:00
|
|
|
LANG_ID3_TRACK_GAIN,
|
|
|
|
LANG_ID3_ALBUM_GAIN,
|
2010-12-24 03:31:40 +00:00
|
|
|
LANG_FILESIZE,
|
2007-02-11 08:06:24 +00:00
|
|
|
LANG_ID3_PATH,
|
|
|
|
};
|
2009-08-20 16:47:44 +00:00
|
|
|
|
2008-10-19 03:58:33 +00:00
|
|
|
struct id3view_info {
|
|
|
|
struct mp3entry* id3;
|
|
|
|
int count;
|
2021-12-28 07:56:16 +00:00
|
|
|
int playlist_display_index;
|
|
|
|
int playlist_amount;
|
2009-08-20 16:47:44 +00:00
|
|
|
int info_id[ARRAYLEN(id3_headers)];
|
2008-10-19 03:58:33 +00:00
|
|
|
};
|
2009-08-20 16:47:44 +00:00
|
|
|
|
2018-10-30 13:45:26 +00:00
|
|
|
/* Spell out a buffer, but when successive digits are encountered, say
|
|
|
|
the whole number. Useful for some ID3 tags that usually contain a
|
|
|
|
number but are in fact free-form. */
|
|
|
|
static void say_number_and_spell(char *buf, bool year_style)
|
|
|
|
{
|
|
|
|
char *ptr = buf;
|
|
|
|
while(*ptr) {
|
|
|
|
if(isdigit(*ptr)) {
|
|
|
|
/* parse the number */
|
|
|
|
int n = atoi(ptr);
|
|
|
|
/* skip over digits to rest of string */
|
|
|
|
while(isdigit(*++ptr));
|
|
|
|
/* say the number */
|
|
|
|
if(year_style)
|
|
|
|
talk_value(n, UNIT_DATEYEAR, true);
|
|
|
|
else talk_number(n, true);
|
|
|
|
}else{
|
|
|
|
/* Spell a sequence of non-digits */
|
|
|
|
char tmp, *start = ptr;
|
|
|
|
while(*++ptr && !isdigit(*ptr));
|
|
|
|
/* temporarily truncate the string here */
|
|
|
|
tmp = *ptr;
|
|
|
|
*ptr = '\0';
|
|
|
|
talk_spell(start, true);
|
|
|
|
*ptr = tmp; /* restore string */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Say a replaygain ID3 value from its text form */
|
|
|
|
static void say_gain(char *buf)
|
|
|
|
{
|
|
|
|
/* Expected form is "-5.74 dB". We'll try to parse out the number
|
|
|
|
until the dot, say it (forcing the + sign), then say dot and
|
|
|
|
spell the following numbers, and then say the decibel unit. */
|
|
|
|
char *ptr = buf;
|
|
|
|
if(*ptr == '-' || *ptr == '+')
|
|
|
|
/* skip sign */
|
|
|
|
++ptr;
|
|
|
|
/* See if we can parse out a number. */
|
|
|
|
if(isdigit(*ptr)) {
|
|
|
|
char tmp;
|
|
|
|
/* skip successive digits */
|
|
|
|
while(isdigit(*++ptr));
|
|
|
|
/* temporarily truncate the string here */
|
|
|
|
tmp = *ptr;
|
|
|
|
*ptr = '\0';
|
|
|
|
/* parse out the number we just skipped */
|
|
|
|
talk_value(atoi(buf), UNIT_SIGNED, true); /* say the number with sign */
|
|
|
|
*ptr = tmp; /* restore the string */
|
|
|
|
if(*ptr == '.') {
|
|
|
|
/* found the dot, get fractional part */
|
|
|
|
buf = ptr;
|
|
|
|
while (isdigit(*++ptr));
|
|
|
|
while (*--ptr == '0');
|
|
|
|
if (ptr > buf) {
|
|
|
|
tmp = *++ptr;
|
|
|
|
*ptr = '\0';
|
|
|
|
talk_id(LANG_POINT, true);
|
|
|
|
while (*++buf == '0')
|
|
|
|
talk_id(VOICE_ZERO, true);
|
|
|
|
talk_number(atoi(buf), true);
|
|
|
|
*ptr = tmp;
|
|
|
|
}
|
|
|
|
ptr = buf;
|
|
|
|
while (isdigit(*++ptr));
|
|
|
|
}
|
|
|
|
buf = ptr;
|
|
|
|
if(strlen(buf) >2 && !strcmp(buf+strlen(buf)-2, "dB")) {
|
|
|
|
/* String does end with "dB" */
|
|
|
|
/* point to that "dB" */
|
|
|
|
ptr = buf+strlen(buf)-2;
|
|
|
|
/* backup any spaces */
|
|
|
|
while (ptr >buf && ptr[-1] == ' ')
|
|
|
|
--ptr;
|
|
|
|
if (ptr > buf)
|
|
|
|
talk_spell(buf, true);
|
|
|
|
else talk_id(VOICE_DB, true); /* say the dB unit */
|
|
|
|
}else /* doesn't end with dB, just spell everything after the
|
|
|
|
number of dot. */
|
|
|
|
talk_spell(buf, true);
|
|
|
|
}else /* we didn't find a number, just spell everything */
|
|
|
|
talk_spell(buf, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * id3_get_or_speak_info(int selected_item, void* data,
|
|
|
|
char *buffer, size_t buffer_len,
|
|
|
|
bool say_it)
|
2005-08-11 18:21:14 +00:00
|
|
|
{
|
2008-10-19 03:58:33 +00:00
|
|
|
struct id3view_info *info = (struct id3view_info*)data;
|
|
|
|
struct mp3entry* id3 =info->id3;
|
2006-07-02 12:28:27 +00:00
|
|
|
int info_no=selected_item/2;
|
|
|
|
if(!(selected_item%2))
|
|
|
|
{/* header */
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
talk_id(id3_headers[info->info_id[info_no]], false);
|
2009-10-31 12:40:20 +00:00
|
|
|
snprintf(buffer, buffer_len,
|
|
|
|
"[%s]", str(id3_headers[info->info_id[info_no]]));
|
|
|
|
return buffer;
|
2006-07-02 12:28:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{/* data */
|
2005-08-11 18:21:14 +00:00
|
|
|
|
2008-10-19 03:58:33 +00:00
|
|
|
char * val=NULL;
|
2010-05-30 15:25:15 +00:00
|
|
|
switch(id3_headers[info->info_id[info_no]])
|
2004-09-19 21:58:37 +00:00
|
|
|
{
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_TITLE:
|
2008-10-19 03:58:33 +00:00
|
|
|
val=id3->title;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_spell(val, true);
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_ARTIST:
|
2008-10-19 03:58:33 +00:00
|
|
|
val=id3->artist;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_spell(val, true);
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_ALBUM:
|
2008-10-19 03:58:33 +00:00
|
|
|
val=id3->album;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_spell(val, true);
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_ALBUMARTIST:
|
2008-10-19 03:58:33 +00:00
|
|
|
val=id3->albumartist;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_spell(val, true);
|
2007-02-10 12:09:28 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_GROUPING:
|
2008-10-19 03:58:33 +00:00
|
|
|
val=id3->grouping;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_spell(val, true);
|
2007-08-08 10:19:56 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_DISCNUM:
|
2007-08-03 10:00:42 +00:00
|
|
|
if (id3->disc_string)
|
2018-10-30 13:45:26 +00:00
|
|
|
{
|
2008-10-19 03:58:33 +00:00
|
|
|
val = id3->disc_string;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
say_number_and_spell(val, true);
|
|
|
|
}
|
2007-08-03 10:00:42 +00:00
|
|
|
else if (id3->discnum)
|
2007-10-28 12:47:49 +00:00
|
|
|
{
|
2008-04-09 15:25:17 +00:00
|
|
|
snprintf(buffer, buffer_len, "%d", id3->discnum);
|
2008-10-19 03:58:33 +00:00
|
|
|
val = buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
talk_number(id3->discnum, true);
|
2007-08-03 10:00:42 +00:00
|
|
|
}
|
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_TRACKNUM:
|
2006-07-02 12:28:27 +00:00
|
|
|
if (id3->track_string)
|
2018-10-30 13:45:26 +00:00
|
|
|
{
|
2008-10-19 03:58:33 +00:00
|
|
|
val = id3->track_string;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
say_number_and_spell(val, true);
|
|
|
|
}
|
2006-07-02 12:28:27 +00:00
|
|
|
else if (id3->tracknum)
|
2005-08-11 18:21:14 +00:00
|
|
|
{
|
2008-04-09 15:25:17 +00:00
|
|
|
snprintf(buffer, buffer_len, "%d", id3->tracknum);
|
2008-10-19 03:58:33 +00:00
|
|
|
val = buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
talk_number(id3->tracknum, true);
|
2005-08-11 18:21:14 +00:00
|
|
|
}
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_COMMENT:
|
2010-02-18 05:50:44 +00:00
|
|
|
if (!id3->comment)
|
|
|
|
return NULL;
|
2010-02-18 05:43:51 +00:00
|
|
|
snprintf(buffer, buffer_len, "%s", id3->comment);
|
|
|
|
val=buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_spell(val, true);
|
2007-02-10 12:09:28 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_GENRE:
|
2008-10-19 03:58:33 +00:00
|
|
|
val = id3->genre_string;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_spell(val, true);
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_YEAR:
|
2006-07-02 12:28:27 +00:00
|
|
|
if (id3->year_string)
|
2018-10-30 13:45:26 +00:00
|
|
|
{
|
2008-10-19 03:58:33 +00:00
|
|
|
val = id3->year_string;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
say_number_and_spell(val, true);
|
|
|
|
}
|
2006-07-02 12:28:27 +00:00
|
|
|
else if (id3->year)
|
2005-08-11 18:21:14 +00:00
|
|
|
{
|
2008-04-09 15:25:17 +00:00
|
|
|
snprintf(buffer, buffer_len, "%d", id3->year);
|
2008-10-19 03:58:33 +00:00
|
|
|
val = buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
talk_value(id3->year, UNIT_DATEYEAR, true);
|
2005-08-11 18:21:14 +00:00
|
|
|
}
|
2004-09-19 21:58:37 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_LENGTH:
|
2008-04-09 15:25:17 +00:00
|
|
|
format_time(buffer, buffer_len, id3->length);
|
2008-10-19 03:58:33 +00:00
|
|
|
val=buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
talk_value(id3->length /1000, UNIT_TIME, true);
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_PLAYLIST:
|
2022-04-10 04:29:01 +00:00
|
|
|
if (info->playlist_display_index == 0 || info->playlist_amount == 0 )
|
|
|
|
return NULL;
|
2008-05-23 21:43:40 +00:00
|
|
|
snprintf(buffer, buffer_len, "%d/%d",
|
2021-12-28 07:56:16 +00:00
|
|
|
info->playlist_display_index, info->playlist_amount);
|
2008-10-19 03:58:33 +00:00
|
|
|
val=buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
{
|
2021-12-28 07:56:16 +00:00
|
|
|
talk_number(info->playlist_display_index, true);
|
2018-10-30 13:45:26 +00:00
|
|
|
talk_id(VOICE_OF, true);
|
2021-12-28 07:56:16 +00:00
|
|
|
talk_number(info->playlist_amount, true);
|
2018-10-30 13:45:26 +00:00
|
|
|
}
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2022-04-17 16:20:43 +00:00
|
|
|
case LANG_FORMAT:
|
2022-04-10 00:26:02 +00:00
|
|
|
if (id3->codectype >= AFMT_NUM_CODECS)
|
|
|
|
return NULL;
|
|
|
|
snprintf(buffer, buffer_len, "%s", audio_formats[id3->codectype].label);
|
|
|
|
val=buffer;
|
|
|
|
if(say_it)
|
|
|
|
talk_spell(val, true);
|
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_BITRATE:
|
2008-04-09 15:25:17 +00:00
|
|
|
snprintf(buffer, buffer_len, "%d kbps%s", id3->bitrate,
|
2006-07-02 12:28:27 +00:00
|
|
|
id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) "");
|
2008-10-19 03:58:33 +00:00
|
|
|
val=buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
{
|
|
|
|
talk_value(id3->bitrate, UNIT_KBIT, true);
|
|
|
|
if(id3->vbr)
|
|
|
|
talk_id(LANG_ID3_VBR, true);
|
|
|
|
}
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_FREQUENCY:
|
2008-04-09 15:25:17 +00:00
|
|
|
snprintf(buffer, buffer_len, "%ld Hz", id3->frequency);
|
2008-10-19 03:58:33 +00:00
|
|
|
val=buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it)
|
|
|
|
talk_value(id3->frequency, UNIT_HERTZ, true);
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_TRACK_GAIN:
|
2011-04-04 15:21:44 +00:00
|
|
|
replaygain_itoa(buffer, buffer_len, id3->track_level);
|
|
|
|
val=(id3->track_level) ? buffer : NULL; /* only show level!=0 */
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
say_gain(val);
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_ALBUM_GAIN:
|
2011-04-04 15:21:44 +00:00
|
|
|
replaygain_itoa(buffer, buffer_len, id3->album_level);
|
|
|
|
val=(id3->album_level) ? buffer : NULL; /* only show level!=0 */
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
say_gain(val);
|
2006-07-02 12:28:27 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_PATH:
|
2008-10-19 03:58:33 +00:00
|
|
|
val=id3->path;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_fullpath(val, true);
|
2020-07-17 04:01:32 +00:00
|
|
|
break;
|
2010-05-30 15:25:15 +00:00
|
|
|
case LANG_ID3_COMPOSER:
|
|
|
|
val=id3->composer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
|
|
|
talk_spell(val, true);
|
2004-09-19 21:58:37 +00:00
|
|
|
break;
|
2010-12-24 03:31:40 +00:00
|
|
|
case LANG_FILESIZE: /* not LANG_ID3_FILESIZE because the string is shared */
|
2018-12-09 18:09:40 +00:00
|
|
|
output_dyn_value(buffer, buffer_len, id3->filesize, byte_units, 4, true);
|
2010-12-24 03:31:40 +00:00
|
|
|
val=buffer;
|
2018-10-30 13:45:26 +00:00
|
|
|
if(say_it && val)
|
2018-12-15 17:10:36 +00:00
|
|
|
output_dyn_value(NULL, 0, id3->filesize, byte_units, 4, true);
|
2010-12-24 03:31:40 +00:00
|
|
|
break;
|
2006-07-02 12:28:27 +00:00
|
|
|
}
|
2018-10-30 13:45:26 +00:00
|
|
|
if((!val || !*val) && say_it)
|
|
|
|
talk_id(LANG_ID3_NO_INFO, true);
|
2008-10-19 03:58:33 +00:00
|
|
|
return val && *val ? val : NULL;
|
2006-07-02 12:28:27 +00:00
|
|
|
}
|
|
|
|
}
|
2005-06-23 02:20:40 +00:00
|
|
|
|
2018-10-30 13:45:26 +00:00
|
|
|
/* gui_synclist callback */
|
|
|
|
static const char* id3_get_info(int selected_item, void* data,
|
|
|
|
char *buffer, size_t buffer_len)
|
|
|
|
{
|
|
|
|
return id3_get_or_speak_info(selected_item, data, buffer,
|
|
|
|
buffer_len, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int id3_speak_item(int selected_item, void* data)
|
|
|
|
{
|
|
|
|
char buffer[MAX_PATH];
|
|
|
|
selected_item &= ~1; /* Make sure it's even, to indicate the header */
|
|
|
|
/* say field name */
|
|
|
|
id3_get_or_speak_info(selected_item, data, buffer, MAX_PATH, true);
|
|
|
|
/* and field value */
|
|
|
|
id3_get_or_speak_info(selected_item+1, data, buffer, MAX_PATH, true);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-12-28 07:56:16 +00:00
|
|
|
bool browse_id3(struct mp3entry *id3, int playlist_display_index, int playlist_amount)
|
2006-07-02 12:28:27 +00:00
|
|
|
{
|
|
|
|
struct gui_synclist id3_lists;
|
|
|
|
int key;
|
2008-10-19 03:58:33 +00:00
|
|
|
unsigned int i;
|
|
|
|
struct id3view_info info;
|
|
|
|
info.count = 0;
|
|
|
|
info.id3 = id3;
|
2021-12-28 07:56:16 +00:00
|
|
|
info.playlist_display_index = playlist_display_index;
|
|
|
|
info.playlist_amount = playlist_amount;
|
2012-03-03 04:30:07 +00:00
|
|
|
bool ret = false;
|
|
|
|
push_current_activity(ACTIVITY_ID3SCREEN);
|
2009-08-20 16:47:44 +00:00
|
|
|
for (i = 0; i < ARRAYLEN(id3_headers); i++)
|
2008-10-19 03:58:33 +00:00
|
|
|
{
|
|
|
|
char temp[8];
|
|
|
|
info.info_id[i] = i;
|
|
|
|
if (id3_get_info((i*2)+1, &info, temp, 8) != NULL)
|
|
|
|
info.info_id[info.count++] = i;
|
|
|
|
}
|
2006-07-02 12:28:27 +00:00
|
|
|
|
2008-10-19 03:58:33 +00:00
|
|
|
gui_synclist_init(&id3_lists, &id3_get_info, &info, true, 2, NULL);
|
2018-10-30 13:45:26 +00:00
|
|
|
if(global_settings.talk_menu)
|
|
|
|
gui_synclist_set_voice_callback(&id3_lists, id3_speak_item);
|
2008-10-19 03:58:33 +00:00
|
|
|
gui_synclist_set_nb_items(&id3_lists, info.count*2);
|
2022-04-10 04:29:01 +00:00
|
|
|
gui_synclist_set_title(&id3_lists, str(LANG_TRACK_INFO), NOICON);
|
2006-07-02 12:28:27 +00:00
|
|
|
gui_synclist_draw(&id3_lists);
|
2018-10-30 13:45:26 +00:00
|
|
|
gui_synclist_speak_item(&id3_lists);
|
2006-07-02 12:28:27 +00:00
|
|
|
while (true) {
|
2022-09-19 11:48:15 +00:00
|
|
|
if(!list_do_action(CONTEXT_LIST,HZ/2, &id3_lists, &key)
|
2018-10-30 13:45:26 +00:00
|
|
|
&& key!=ACTION_NONE && key!=ACTION_UNKNOWN)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2011-10-07 22:59:06 +00:00
|
|
|
if (key == ACTION_STD_OK || key == ACTION_STD_CANCEL)
|
2012-03-03 04:30:07 +00:00
|
|
|
{
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
2011-10-07 22:59:06 +00:00
|
|
|
else if (key == ACTION_STD_MENU ||
|
|
|
|
default_event_handler(key) == SYS_USB_CONNECTED)
|
2012-03-03 04:30:07 +00:00
|
|
|
{
|
|
|
|
ret = true;
|
|
|
|
break;
|
|
|
|
}
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
2004-09-19 21:58:37 +00:00
|
|
|
}
|
2012-03-03 04:30:07 +00:00
|
|
|
|
|
|
|
pop_current_activity();
|
|
|
|
return ret;
|
2004-09-19 21:58:37 +00:00
|
|
|
}
|
|
|
|
|
2009-08-20 16:47:44 +00:00
|
|
|
static const char* runtime_get_data(int selected_item, void* data,
|
|
|
|
char* buffer, size_t buffer_len)
|
2007-04-10 20:56:15 +00:00
|
|
|
{
|
2009-08-20 15:04:47 +00:00
|
|
|
(void)data;
|
Auto-Ranging Time Formatting For Menus (hh:mm:ss:mss)
Unifies time formatting in settings_list.c allows time format to
display as HH:MM:SS.MSS or any consecutive combination thereof
(hh:mm:ss, mm:ss, mm:ss.mss, ss.mss, hh, mm, ss ,mss)
works in INT and TABLE settings with the addition of flag 'F_TIME_SETTING'
Time is auto-ranged dependent on value
Adds talk_time_intervals to allow time values to be spoken similar to
display format: x Hours, x Minutes, x Seconds, x Milliseconds
Table lookups merged or removed from recording, clip meter and lcd timeout
-String_Choice replaced with TABLE_SETTING or INT_SETTING for these
functions as well, cleaned-up cfg_vals that get saved to cfgfile
RTL Languages ARE supported
Negative values ARE supported
Backlight on/off are now Always and Never to share formatter with LCD
Timeout
Added flag to allow ranged units to be locked to a minimum index
Added flag to allow leading zero to be supressed from the largest unit
merged talk_time_unit() and talk_time_intervals()
optimized time_split()
optimized format_time_auto()
Backlight time-out list same as original
Change-Id: I59027c62d3f2956bd16fdcc1a48b2ac32c084abd
2018-12-18 04:27:55 +00:00
|
|
|
long t;
|
2008-08-02 21:32:48 +00:00
|
|
|
switch (selected_item)
|
|
|
|
{
|
|
|
|
case 0: return str(LANG_RUNNING_TIME);
|
|
|
|
case 1: t = global_status.runtime; break;
|
|
|
|
case 2: return str(LANG_TOP_TIME);
|
|
|
|
case 3: t = global_status.topruntime; break;
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
2007-04-10 20:56:15 +00:00
|
|
|
|
Auto-Ranging Time Formatting For Menus (hh:mm:ss:mss)
Unifies time formatting in settings_list.c allows time format to
display as HH:MM:SS.MSS or any consecutive combination thereof
(hh:mm:ss, mm:ss, mm:ss.mss, ss.mss, hh, mm, ss ,mss)
works in INT and TABLE settings with the addition of flag 'F_TIME_SETTING'
Time is auto-ranged dependent on value
Adds talk_time_intervals to allow time values to be spoken similar to
display format: x Hours, x Minutes, x Seconds, x Milliseconds
Table lookups merged or removed from recording, clip meter and lcd timeout
-String_Choice replaced with TABLE_SETTING or INT_SETTING for these
functions as well, cleaned-up cfg_vals that get saved to cfgfile
RTL Languages ARE supported
Negative values ARE supported
Backlight on/off are now Always and Never to share formatter with LCD
Timeout
Added flag to allow ranged units to be locked to a minimum index
Added flag to allow leading zero to be supressed from the largest unit
merged talk_time_unit() and talk_time_intervals()
optimized time_split()
optimized format_time_auto()
Backlight time-out list same as original
Change-Id: I59027c62d3f2956bd16fdcc1a48b2ac32c084abd
2018-12-18 04:27:55 +00:00
|
|
|
format_time_auto(buffer, buffer_len, t, UNIT_SEC, false);
|
|
|
|
|
2007-04-10 20:56:15 +00:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2007-11-07 03:58:13 +00:00
|
|
|
static int runtime_speak_data(int selected_item, void* data)
|
|
|
|
{
|
2007-11-07 09:28:07 +00:00
|
|
|
(void) data;
|
2007-11-07 03:58:13 +00:00
|
|
|
talk_ids(false,
|
2008-08-02 21:32:48 +00:00
|
|
|
(selected_item < 2) ? LANG_RUNNING_TIME : LANG_TOP_TIME,
|
|
|
|
TALK_ID((selected_item < 2) ? global_status.runtime
|
2011-02-20 15:23:18 +00:00
|
|
|
: global_status.topruntime, UNIT_TIME));
|
2007-11-07 03:58:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-10 20:56:15 +00:00
|
|
|
|
2018-10-16 03:04:04 +00:00
|
|
|
int view_runtime(void)
|
2006-12-19 12:26:03 +00:00
|
|
|
{
|
2008-04-26 09:30:24 +00:00
|
|
|
static const char *lines[]={ID2P(LANG_CLEAR_TIME)};
|
|
|
|
static const struct text_message message={lines, 1};
|
2019-08-06 02:05:32 +00:00
|
|
|
bool say_runtime = true;
|
2006-12-19 12:26:03 +00:00
|
|
|
|
2007-04-10 20:56:15 +00:00
|
|
|
struct gui_synclist lists;
|
|
|
|
int action;
|
2008-03-26 03:35:24 +00:00
|
|
|
gui_synclist_init(&lists, runtime_get_data, NULL, false, 2, NULL);
|
2007-04-10 20:56:15 +00:00
|
|
|
gui_synclist_set_title(&lists, str(LANG_RUNNING_TIME), NOICON);
|
2007-11-07 03:58:13 +00:00
|
|
|
if(global_settings.talk_menu)
|
|
|
|
gui_synclist_set_voice_callback(&lists, runtime_speak_data);
|
2007-04-10 20:56:15 +00:00
|
|
|
gui_synclist_set_icon_callback(&lists, NULL);
|
|
|
|
gui_synclist_set_nb_items(&lists, 4);
|
2019-08-06 02:05:32 +00:00
|
|
|
|
2007-04-10 20:56:15 +00:00
|
|
|
while(1)
|
2006-12-19 12:26:03 +00:00
|
|
|
{
|
2010-02-27 22:47:49 +00:00
|
|
|
global_status.runtime += ((current_tick - lasttime) / HZ);
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2007-04-10 20:56:15 +00:00
|
|
|
lasttime = current_tick;
|
2019-08-06 02:05:32 +00:00
|
|
|
if (say_runtime)
|
|
|
|
{
|
|
|
|
gui_synclist_speak_item(&lists);
|
|
|
|
say_runtime = false;
|
|
|
|
}
|
2007-04-10 20:56:15 +00:00
|
|
|
gui_synclist_draw(&lists);
|
2022-09-19 11:48:15 +00:00
|
|
|
list_do_action(CONTEXT_STD, HZ, &lists, &action);
|
2007-04-10 20:56:15 +00:00
|
|
|
if(action == ACTION_STD_CANCEL)
|
|
|
|
break;
|
|
|
|
if(action == ACTION_STD_OK) {
|
|
|
|
if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES)
|
|
|
|
{
|
|
|
|
if (!(gui_synclist_get_sel_pos(&lists)/2))
|
|
|
|
global_status.runtime = 0;
|
|
|
|
else
|
|
|
|
global_status.topruntime = 0;
|
2019-08-06 02:05:32 +00:00
|
|
|
say_runtime = true;
|
2007-04-10 20:56:15 +00:00
|
|
|
}
|
2006-12-19 12:26:03 +00:00
|
|
|
}
|
2007-04-10 21:40:44 +00:00
|
|
|
if(default_event_handler(action) == SYS_USB_CONNECTED)
|
2018-10-16 03:04:04 +00:00
|
|
|
return 1;
|
2006-12-19 12:26:03 +00:00
|
|
|
}
|
2018-10-16 03:04:04 +00:00
|
|
|
return 0;
|
2006-12-19 12:26:03 +00:00
|
|
|
}
|
2009-06-16 17:04:47 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
static int get_sample(struct touchscreen_calibration *cal, int x, int y, int i,
|
|
|
|
struct screen* screen)
|
|
|
|
{
|
|
|
|
int action;
|
|
|
|
short ts_x, ts_y;
|
|
|
|
|
|
|
|
/* Draw a cross */
|
|
|
|
screen->drawline(x - 10, y, x - 2, y);
|
|
|
|
screen->drawline(x + 2, y, x + 10, y);
|
|
|
|
screen->drawline(x, y - 10, x, y - 2);
|
|
|
|
screen->drawline(x, y + 2, x, y + 10);
|
|
|
|
screen->update();
|
|
|
|
|
|
|
|
/* Wait for a touchscreen press */
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
action = get_action(CONTEXT_STD, TIMEOUT_BLOCK);
|
|
|
|
if(action == ACTION_TOUCHSCREEN)
|
|
|
|
{
|
|
|
|
if(action_get_touchscreen_press(&ts_x, &ts_y) == BUTTON_REL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if(action == ACTION_STD_CANCEL)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cal->x[i][0] = ts_x;
|
|
|
|
cal->y[i][0] = ts_y;
|
|
|
|
cal->x[i][1] = x;
|
|
|
|
cal->y[i][1] = y;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int calibrate(void)
|
|
|
|
{
|
|
|
|
short points[3][2] = {
|
|
|
|
{LCD_WIDTH/10, LCD_HEIGHT/10},
|
|
|
|
{7*LCD_WIDTH/8, LCD_HEIGHT/2},
|
|
|
|
{LCD_WIDTH/2, 7*LCD_HEIGHT/8}
|
|
|
|
};
|
|
|
|
struct screen* screen = &screens[SCREEN_MAIN];
|
|
|
|
enum touchscreen_mode old_mode = touchscreen_get_mode();
|
|
|
|
struct touchscreen_calibration cal;
|
|
|
|
int i, ret = 0;
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-11-04 23:57:37 +00:00
|
|
|
/* hide the statusbar */
|
2009-12-09 07:25:46 +00:00
|
|
|
viewportmanager_theme_enable(SCREEN_MAIN, false, NULL);
|
2009-06-16 17:04:47 +00:00
|
|
|
|
|
|
|
touchscreen_disable_mapping(); /* set raw mode */
|
|
|
|
touchscreen_set_mode(TOUCHSCREEN_POINT);
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-06-16 17:04:47 +00:00
|
|
|
for(i=0; i<3; i++)
|
|
|
|
{
|
|
|
|
screen->clear_display();
|
|
|
|
|
|
|
|
if(get_sample(&cal, points[i][0], points[i][1], i, screen))
|
|
|
|
{
|
|
|
|
ret = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ret == 0)
|
|
|
|
touchscreen_calibrate(&cal);
|
|
|
|
else
|
|
|
|
touchscreen_reset_mapping();
|
2009-11-04 23:44:27 +00:00
|
|
|
|
|
|
|
memcpy(&global_settings.ts_calibration_data, &calibration_parameters,
|
|
|
|
sizeof(struct touchscreen_parameter));
|
|
|
|
|
2009-06-16 17:04:47 +00:00
|
|
|
touchscreen_set_mode(old_mode);
|
2009-12-21 05:19:12 +00:00
|
|
|
viewportmanager_theme_undo(SCREEN_MAIN, false);
|
2009-06-16 17:04:47 +00:00
|
|
|
|
2009-11-04 23:44:27 +00:00
|
|
|
settings_save();
|
2009-06-16 17:04:47 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int reset_mapping(void)
|
|
|
|
{
|
|
|
|
touchscreen_reset_mapping();
|
2009-11-04 23:44:27 +00:00
|
|
|
|
|
|
|
memcpy(&global_settings.ts_calibration_data, &calibration_parameters,
|
|
|
|
sizeof(struct touchscreen_parameter));
|
|
|
|
|
|
|
|
settings_save();
|
2009-06-16 17:04:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|