2004-03-19 22:15:53 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-05-05 10:32:46 +00:00
|
|
|
* Copyright (C) 2004 Jörg Hohensohn
|
2004-03-19 22:15:53 +00:00
|
|
|
*
|
|
|
|
* This module collects the Talkbox and voice UI functions.
|
|
|
|
* (Talkbox reads directory names from mp3 clips called thumbnails,
|
2004-05-09 09:41:23 +00:00
|
|
|
* the voice UI lets menus and screens "talk" from a voicefile in memory.
|
2004-03-19 22:15:53 +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.
|
2004-03-19 22:15:53 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stddef.h>
|
2006-02-23 21:29:29 +00:00
|
|
|
#include <string.h>
|
2004-03-19 22:15:53 +00:00
|
|
|
#include "file.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "system.h"
|
2007-03-09 09:21:11 +00:00
|
|
|
#include "kernel.h"
|
2004-04-06 07:06:59 +00:00
|
|
|
#include "settings.h"
|
2008-03-25 15:24:03 +00:00
|
|
|
#include "settings_list.h"
|
2004-03-19 22:15:53 +00:00
|
|
|
#include "mp3_playback.h"
|
2005-04-04 12:06:29 +00:00
|
|
|
#include "audio.h"
|
2004-03-19 22:15:53 +00:00
|
|
|
#include "lang.h"
|
|
|
|
#include "talk.h"
|
2004-03-27 00:11:01 +00:00
|
|
|
#include "id3.h"
|
2005-08-20 11:13:19 +00:00
|
|
|
#include "logf.h"
|
2004-09-26 09:25:59 +00:00
|
|
|
#include "bitswap.h"
|
2007-02-14 19:20:13 +00:00
|
|
|
#include "structec.h"
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2005-08-20 11:13:19 +00:00
|
|
|
#include "playback.h"
|
|
|
|
#endif
|
2006-08-23 08:21:15 +00:00
|
|
|
#include "debug.h"
|
2008-07-15 14:06:11 +00:00
|
|
|
#include "kernel.h"
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2006-08-01 22:02:47 +00:00
|
|
|
|
|
|
|
/* Memory layout varies between targets because the
|
|
|
|
Archos (MASCODEC) devices cannot mix voice and audio playback
|
|
|
|
|
|
|
|
MASCODEC | MASCODEC | SWCODEC
|
|
|
|
(playing) | (stopped) |
|
2006-11-06 18:07:30 +00:00
|
|
|
audiobuf-----------+-----------+------------
|
2006-08-01 22:02:47 +00:00
|
|
|
audio | voice | thumbnail
|
2006-11-06 18:07:30 +00:00
|
|
|
|-----------|------------
|
2006-08-01 22:02:47 +00:00
|
|
|
| thumbnail | voice
|
2006-11-06 18:07:30 +00:00
|
|
|
| |------------
|
|
|
|
| | filebuf
|
|
|
|
| |------------
|
2006-08-01 22:02:47 +00:00
|
|
|
| | audio
|
2006-11-06 18:07:30 +00:00
|
|
|
audiobufend----------+-----------+------------
|
2006-08-01 22:02:47 +00:00
|
|
|
|
|
|
|
SWCODEC allocates dedicated buffers, MASCODEC reuses audiobuf. */
|
|
|
|
|
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
/***************** Constants *****************/
|
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
#define QUEUE_SIZE 64 /* must be a power of two */
|
|
|
|
#define QUEUE_MASK (QUEUE_SIZE-1)
|
2004-08-01 23:34:44 +00:00
|
|
|
const char* const dir_thumbnail_name = "_dirname.talk";
|
2004-10-21 18:34:48 +00:00
|
|
|
const char* const file_thumbnail_ext = ".talk";
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
/***************** Functional Macros *****************/
|
|
|
|
|
|
|
|
#define QUEUE_LEVEL ((queue_write - queue_read) & QUEUE_MASK)
|
|
|
|
|
2004-10-12 16:43:22 +00:00
|
|
|
#define LOADED_MASK 0x80000000 /* MSB */
|
|
|
|
|
2006-08-01 22:02:47 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-10-05 08:14:09 +00:00
|
|
|
#define MAX_THUMBNAIL_BUFSIZE 0x10000
|
2006-08-01 22:02:47 +00:00
|
|
|
#endif
|
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
/***************** Data types *****************/
|
|
|
|
|
|
|
|
struct clip_entry /* one entry of the index table */
|
|
|
|
{
|
2004-05-09 09:41:23 +00:00
|
|
|
int offset; /* offset from start of voicefile file */
|
2004-03-19 22:15:53 +00:00
|
|
|
int size; /* size of the clip */
|
|
|
|
};
|
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
struct voicefile /* file format of our voice file */
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2004-05-09 09:41:23 +00:00
|
|
|
int version; /* version of the voicefile */
|
2007-08-05 19:19:39 +00:00
|
|
|
int target_id; /* the rockbox target the file was made for */
|
2004-04-03 20:52:24 +00:00
|
|
|
int table; /* offset to index table, (=header size) */
|
|
|
|
int id1_max; /* number of "normal" clips contained in above index */
|
|
|
|
int id2_max; /* number of "voice only" clips contained in above index */
|
|
|
|
struct clip_entry index[]; /* followed by the index tables */
|
2007-08-08 21:12:43 +00:00
|
|
|
/* and finally the mp3 clips, not visible here, bitswapped
|
|
|
|
for SH based players */
|
2004-03-19 22:15:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct queue_entry /* one entry of the internal queue */
|
|
|
|
{
|
|
|
|
unsigned char* buf;
|
2005-02-12 11:26:36 +00:00
|
|
|
long len;
|
2004-03-19 22:15:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/***************** Globals *****************/
|
|
|
|
|
2008-07-15 14:06:11 +00:00
|
|
|
static unsigned char* p_thumbnail = NULL; /* buffer for thumbnails */
|
|
|
|
/* Multiple thumbnails can be loaded back-to-back in this buffer. */
|
|
|
|
static volatile int thumbnail_buf_used SHAREDBSS_ATTR; /* length of data in
|
|
|
|
thumbnail buffer */
|
|
|
|
static long size_for_thumbnail; /* total thumbnail buffer size */
|
2004-05-09 09:41:23 +00:00
|
|
|
static struct voicefile* p_voicefile; /* loaded voicefile */
|
|
|
|
static bool has_voicefile; /* a voicefile file is present */
|
2008-07-15 14:06:11 +00:00
|
|
|
static bool need_shutup; /* is there possibly any voice playing to be shutup */
|
2004-03-19 22:15:53 +00:00
|
|
|
static struct queue_entry queue[QUEUE_SIZE]; /* queue of scheduled clips */
|
2007-10-19 15:31:42 +00:00
|
|
|
static bool force_enqueue_next; /* enqueue next utterance even if enqueue is false */
|
2004-03-19 22:15:53 +00:00
|
|
|
static int queue_write; /* write index of queue, by application */
|
|
|
|
static int queue_read; /* read index of queue, by ISR context */
|
2008-07-15 14:06:11 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
struct mutex queue_mutex SHAREDBSS_ATTR; /* protects queue_read, queue_write
|
|
|
|
and thumbnail_buf_used */
|
|
|
|
#define talk_queue_lock() ({ mutex_lock(&queue_mutex); })
|
|
|
|
#define talk_queue_unlock() ({ mutex_unlock(&queue_mutex); })
|
|
|
|
#else
|
|
|
|
#define talk_queue_lock() ({ })
|
|
|
|
#define talk_queue_unlock() ({ })
|
|
|
|
#endif /* CONFIG_CODEC */
|
2004-05-09 09:41:23 +00:00
|
|
|
static int sent; /* how many bytes handed over to playback, owned by ISR */
|
2004-04-20 21:47:07 +00:00
|
|
|
static unsigned char curr_hd[3]; /* current frame header, for re-sync */
|
2006-05-15 21:00:58 +00:00
|
|
|
static int filehandle = -1; /* global, so the MMC variant can keep the file open */
|
2004-11-17 22:30:38 +00:00
|
|
|
static unsigned char* p_silence; /* VOICE_PAUSE clip, used for termination */
|
2005-02-12 11:26:36 +00:00
|
|
|
static long silence_len; /* length of the VOICE_PAUSE clip */
|
2004-11-17 22:30:38 +00:00
|
|
|
static unsigned char* p_lastclip; /* address of latest clip, for silence add */
|
2005-08-20 11:13:19 +00:00
|
|
|
static unsigned long voicefile_size = 0; /* size of the loaded voice file */
|
2006-02-23 21:29:29 +00:00
|
|
|
static unsigned char last_lang[MAX_FILENAME+1]; /* name of last used lang file (in talk_init) */
|
2006-02-26 16:07:34 +00:00
|
|
|
static bool talk_initialized; /* true if talk_init has been called */
|
2007-10-19 15:31:42 +00:00
|
|
|
static int talk_temp_disable_count; /* if positive, temporarily disable voice UI (not saved) */
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
/***************** Private implementation *****************/
|
|
|
|
|
2004-04-06 07:06:59 +00:00
|
|
|
static int open_voicefile(void)
|
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
char* p_lang = "english"; /* default */
|
|
|
|
|
|
|
|
if ( global_settings.lang_file[0] &&
|
|
|
|
global_settings.lang_file[0] != 0xff )
|
|
|
|
{ /* try to open the voice file of the selected language */
|
2005-12-05 22:44:42 +00:00
|
|
|
p_lang = (char *)global_settings.lang_file;
|
2004-04-06 07:06:59 +00:00
|
|
|
}
|
|
|
|
|
2006-10-03 10:38:27 +00:00
|
|
|
snprintf(buf, sizeof(buf), LANG_DIR "/%s.voice", p_lang);
|
2005-08-20 11:13:19 +00:00
|
|
|
|
2004-04-06 07:06:59 +00:00
|
|
|
return open(buf, O_RDONLY);
|
|
|
|
}
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
/* fetch a clip from the voice file */
|
|
|
|
static unsigned char* get_clip(long id, long* p_size)
|
|
|
|
{
|
|
|
|
long clipsize;
|
|
|
|
unsigned char* clipbuf;
|
|
|
|
|
|
|
|
if (id > VOICEONLY_DELIMITER)
|
|
|
|
{ /* voice-only entries use the second part of the table */
|
|
|
|
id -= VOICEONLY_DELIMITER + 1;
|
|
|
|
if (id >= p_voicefile->id2_max)
|
|
|
|
return NULL; /* must be newer than we have */
|
|
|
|
id += p_voicefile->id1_max; /* table 2 is behind table 1 */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ /* normal use of the first table */
|
|
|
|
if (id >= p_voicefile->id1_max)
|
|
|
|
return NULL; /* must be newer than we have */
|
|
|
|
}
|
|
|
|
|
|
|
|
clipsize = p_voicefile->index[id].size;
|
|
|
|
if (clipsize == 0) /* clip not included in voicefile */
|
|
|
|
return NULL;
|
|
|
|
clipbuf = (unsigned char *) p_voicefile + p_voicefile->index[id].offset;
|
|
|
|
|
|
|
|
#ifdef HAVE_MMC /* dynamic loading, on demand */
|
|
|
|
if (!(clipsize & LOADED_MASK))
|
|
|
|
{ /* clip used for the first time, needs loading */
|
|
|
|
lseek(filehandle, p_voicefile->index[id].offset, SEEK_SET);
|
|
|
|
if (read(filehandle, clipbuf, clipsize) != clipsize)
|
|
|
|
return NULL; /* read error */
|
|
|
|
|
|
|
|
p_voicefile->index[id].size |= LOADED_MASK; /* mark as loaded */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ /* clip is in memory already */
|
|
|
|
clipsize &= ~LOADED_MASK; /* without the extra bit gives true size */
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*p_size = clipsize;
|
|
|
|
return clipbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
/* load the voice file into the mp3 buffer */
|
2004-10-12 16:43:22 +00:00
|
|
|
static void load_voicefile(void)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2004-10-12 16:43:22 +00:00
|
|
|
int load_size;
|
|
|
|
int got_size;
|
|
|
|
int file_size;
|
2007-08-06 18:52:37 +00:00
|
|
|
#ifdef ROCKBOX_LITTLE_ENDIAN
|
|
|
|
int i;
|
2005-08-20 11:13:19 +00:00
|
|
|
#endif
|
2004-10-12 16:43:22 +00:00
|
|
|
|
|
|
|
filehandle = open_voicefile();
|
|
|
|
if (filehandle < 0) /* failed to open */
|
|
|
|
goto load_err;
|
|
|
|
|
|
|
|
file_size = filesize(filehandle);
|
2005-04-05 11:33:58 +00:00
|
|
|
if (file_size > audiobufend - audiobuf) /* won't fit? */
|
2007-11-15 19:32:15 +00:00
|
|
|
goto load_err;
|
2004-10-12 16:43:22 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_MMC /* load only the header for now */
|
|
|
|
load_size = offsetof(struct voicefile, index);
|
|
|
|
#else /* load the full file */
|
|
|
|
load_size = file_size;
|
|
|
|
#endif
|
|
|
|
|
2005-04-05 11:33:58 +00:00
|
|
|
got_size = read(filehandle, audiobuf, load_size);
|
2005-08-20 11:13:19 +00:00
|
|
|
if (got_size != load_size /* failure */)
|
|
|
|
goto load_err;
|
2007-08-08 21:12:43 +00:00
|
|
|
|
2006-03-19 16:09:41 +00:00
|
|
|
#ifdef ROCKBOX_LITTLE_ENDIAN
|
2005-08-20 11:13:19 +00:00
|
|
|
logf("Byte swapping voice file");
|
2007-08-08 21:12:43 +00:00
|
|
|
structec_convert(audiobuf, "lllll", 1, true);
|
2005-08-20 11:13:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (((struct voicefile*)audiobuf)->table /* format check */
|
2004-05-09 09:41:23 +00:00
|
|
|
== offsetof(struct voicefile, index))
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2005-04-05 11:33:58 +00:00
|
|
|
p_voicefile = (struct voicefile*)audiobuf;
|
2006-08-23 08:21:15 +00:00
|
|
|
|
2007-11-15 19:32:15 +00:00
|
|
|
if (p_voicefile->version != VOICE_VERSION ||
|
|
|
|
p_voicefile->target_id != TARGET_ID)
|
2007-08-05 19:19:39 +00:00
|
|
|
{
|
2007-11-15 19:32:15 +00:00
|
|
|
logf("Incompatible voice file");
|
2007-08-05 19:19:39 +00:00
|
|
|
goto load_err;
|
|
|
|
}
|
2006-08-23 08:21:15 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
|
|
|
/* MASCODEC: now use audiobuf for voice then thumbnail */
|
2005-04-05 11:33:58 +00:00
|
|
|
p_thumbnail = audiobuf + file_size;
|
2005-02-12 11:26:36 +00:00
|
|
|
p_thumbnail += (long)p_thumbnail % 2; /* 16-bit align */
|
2005-04-05 11:33:58 +00:00
|
|
|
size_for_thumbnail = audiobufend - p_thumbnail;
|
2006-08-01 22:02:47 +00:00
|
|
|
#endif
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
else
|
2007-11-15 19:32:15 +00:00
|
|
|
goto load_err;
|
2004-10-12 16:43:22 +00:00
|
|
|
|
2006-03-19 16:09:41 +00:00
|
|
|
#ifdef ROCKBOX_LITTLE_ENDIAN
|
2005-08-20 11:13:19 +00:00
|
|
|
for (i = 0; i < p_voicefile->id1_max + p_voicefile->id2_max; i++)
|
2007-02-14 19:20:13 +00:00
|
|
|
structec_convert(&p_voicefile->index[i], "ll", 1, true);
|
2005-08-20 11:13:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_MMC
|
2004-10-12 16:43:22 +00:00
|
|
|
/* load the index table, now that we know its size from the header */
|
|
|
|
load_size = (p_voicefile->id1_max + p_voicefile->id2_max)
|
|
|
|
* sizeof(struct clip_entry);
|
|
|
|
got_size = read(filehandle,
|
2006-08-01 22:02:47 +00:00
|
|
|
(unsigned char *) p_voicefile + offsetof(struct voicefile, index), load_size);
|
2004-10-12 16:43:22 +00:00
|
|
|
if (got_size != load_size) /* read error */
|
2007-11-15 19:32:15 +00:00
|
|
|
goto load_err;
|
2004-10-12 16:43:22 +00:00
|
|
|
#else
|
|
|
|
close(filehandle); /* only the MMC variant leaves it open */
|
|
|
|
filehandle = -1;
|
|
|
|
#endif
|
|
|
|
|
2004-11-17 22:30:38 +00:00
|
|
|
/* make sure to have the silence clip, if available */
|
|
|
|
p_silence = get_clip(VOICE_PAUSE, &silence_len);
|
|
|
|
|
2004-10-12 16:43:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
load_err:
|
2007-11-15 19:32:15 +00:00
|
|
|
p_voicefile = NULL;
|
2004-10-12 16:43:22 +00:00
|
|
|
has_voicefile = false; /* don't try again */
|
|
|
|
if (filehandle >= 0)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2004-10-12 16:43:22 +00:00
|
|
|
close(filehandle);
|
|
|
|
filehandle = -1;
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
2004-10-12 16:43:22 +00:00
|
|
|
return;
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* called in ISR context if mp3 data got consumed */
|
2007-06-13 15:35:07 +00:00
|
|
|
static void mp3_callback(unsigned char** start, size_t* size)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2004-05-09 09:41:23 +00:00
|
|
|
queue[queue_read].len -= sent; /* we completed this */
|
|
|
|
queue[queue_read].buf += sent;
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
|
|
if (queue[queue_read].len > 0) /* current clip not finished? */
|
|
|
|
{ /* feed the next 64K-1 chunk */
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2004-05-09 09:41:23 +00:00
|
|
|
sent = MIN(queue[queue_read].len, 0xFFFF);
|
2005-08-20 11:13:19 +00:00
|
|
|
#else
|
|
|
|
sent = queue[queue_read].len;
|
|
|
|
#endif
|
2004-03-19 22:15:53 +00:00
|
|
|
*start = queue[queue_read].buf;
|
2004-05-09 09:41:23 +00:00
|
|
|
*size = sent;
|
2004-03-19 22:15:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-07-15 14:06:11 +00:00
|
|
|
talk_queue_lock();
|
|
|
|
if(p_thumbnail
|
|
|
|
&& queue[queue_read].buf == p_thumbnail +thumbnail_buf_used)
|
|
|
|
thumbnail_buf_used = 0;
|
|
|
|
if (sent > 0) /* go to next entry */
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2004-11-18 22:59:20 +00:00
|
|
|
queue_read = (queue_read + 1) & QUEUE_MASK;
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
2004-11-18 22:59:20 +00:00
|
|
|
re_check:
|
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
if (QUEUE_LEVEL != 0) /* queue is not empty? */
|
2004-03-19 22:15:53 +00:00
|
|
|
{ /* start next clip */
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2004-05-09 09:41:23 +00:00
|
|
|
sent = MIN(queue[queue_read].len, 0xFFFF);
|
2005-08-20 11:13:19 +00:00
|
|
|
#else
|
|
|
|
sent = queue[queue_read].len;
|
|
|
|
#endif
|
2004-11-17 22:30:38 +00:00
|
|
|
*start = p_lastclip = queue[queue_read].buf;
|
2004-05-09 09:41:23 +00:00
|
|
|
*size = sent;
|
2004-11-18 22:59:20 +00:00
|
|
|
curr_hd[0] = p_lastclip[1];
|
|
|
|
curr_hd[1] = p_lastclip[2];
|
|
|
|
curr_hd[2] = p_lastclip[3];
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
2006-08-01 22:02:47 +00:00
|
|
|
else if (p_silence != NULL /* silence clip available */
|
|
|
|
&& p_lastclip != p_silence /* previous clip wasn't silence */
|
2008-07-15 14:06:11 +00:00
|
|
|
&& !(p_lastclip >= p_thumbnail /* ..or thumbnail */
|
|
|
|
&& p_lastclip < p_thumbnail +size_for_thumbnail))
|
2004-11-17 22:30:38 +00:00
|
|
|
{ /* add silence clip when queue runs empty playing a voice clip */
|
2004-11-18 22:59:20 +00:00
|
|
|
queue[queue_write].buf = p_silence;
|
|
|
|
queue[queue_write].len = silence_len;
|
|
|
|
queue_write = (queue_write + 1) & QUEUE_MASK;
|
|
|
|
|
|
|
|
goto re_check;
|
2004-11-17 22:30:38 +00:00
|
|
|
}
|
2004-03-19 22:15:53 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
*size = 0; /* end of data */
|
|
|
|
}
|
2008-07-15 14:06:11 +00:00
|
|
|
talk_queue_unlock();
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
/***************** Public routines *****************/
|
|
|
|
|
2006-10-25 08:54:25 +00:00
|
|
|
/* stop the playback and the pending clips */
|
2007-10-19 15:31:42 +00:00
|
|
|
void talk_force_shutup(void)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2007-10-19 15:31:42 +00:00
|
|
|
/* Most of this is MAS only */
|
2006-10-25 06:19:27 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2007-11-07 09:28:07 +00:00
|
|
|
#ifdef SIMULATOR
|
|
|
|
return;
|
|
|
|
#endif
|
2004-03-21 17:45:45 +00:00
|
|
|
unsigned char* pos;
|
|
|
|
unsigned char* search;
|
|
|
|
unsigned char* end;
|
2004-05-09 09:41:23 +00:00
|
|
|
if (QUEUE_LEVEL == 0) /* has ended anyway */
|
2007-10-19 15:31:42 +00:00
|
|
|
return;
|
|
|
|
|
2005-02-02 21:50:24 +00:00
|
|
|
#if CONFIG_CPU == SH7034
|
2004-05-09 09:41:23 +00:00
|
|
|
CHCR3 &= ~0x0001; /* disable the DMA (and therefore the interrupt also) */
|
2007-10-19 15:31:42 +00:00
|
|
|
#endif /* CONFIG_CPU == SH7034 */
|
2004-03-21 17:45:45 +00:00
|
|
|
/* search next frame boundary and continue up to there */
|
|
|
|
pos = search = mp3_get_pos();
|
|
|
|
end = queue[queue_read].buf + queue[queue_read].len;
|
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
if (pos >= queue[queue_read].buf
|
|
|
|
&& pos <= end) /* really our clip? */
|
|
|
|
{ /* (for strange reasons this isn't nesessarily the case) */
|
|
|
|
/* find the next frame boundary */
|
|
|
|
while (search < end) /* search the remaining data */
|
2004-03-21 17:45:45 +00:00
|
|
|
{
|
2004-05-09 09:41:23 +00:00
|
|
|
if (*search++ != 0xFF) /* quick search for frame sync byte */
|
|
|
|
continue; /* (this does the majority of the job) */
|
|
|
|
|
|
|
|
/* look at the (bitswapped) rest of header candidate */
|
|
|
|
if (search[0] == curr_hd[0] /* do the quicker checks first */
|
|
|
|
&& search[2] == curr_hd[2]
|
|
|
|
&& (search[1] & 0x30) == (curr_hd[1] & 0x30)) /* sample rate */
|
|
|
|
{
|
|
|
|
search--; /* back to the sync byte */
|
|
|
|
break; /* From looking at it, this is our header. */
|
|
|
|
}
|
2004-03-21 17:45:45 +00:00
|
|
|
}
|
2004-04-20 22:11:20 +00:00
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
if (search-pos)
|
|
|
|
{ /* play old data until the frame end, to keep the MAS in sync */
|
|
|
|
sent = search-pos;
|
|
|
|
|
2004-11-18 22:59:20 +00:00
|
|
|
queue_write = (queue_read + 1) & QUEUE_MASK; /* will be empty after next callback */
|
2004-05-09 09:41:23 +00:00
|
|
|
queue[queue_read].len = sent; /* current one ends after this */
|
|
|
|
|
2005-02-02 21:50:24 +00:00
|
|
|
#if CONFIG_CPU == SH7034
|
2004-05-09 09:41:23 +00:00
|
|
|
DTCR3 = sent; /* let the DMA finish this frame */
|
|
|
|
CHCR3 |= 0x0001; /* re-enable DMA */
|
2007-10-19 15:31:42 +00:00
|
|
|
#endif /* CONFIG_CPU == SH7034 */
|
2008-07-15 14:06:11 +00:00
|
|
|
thumbnail_buf_used = 0;
|
2007-10-19 15:31:42 +00:00
|
|
|
return;
|
2004-05-09 09:41:23 +00:00
|
|
|
}
|
2004-04-20 22:11:20 +00:00
|
|
|
}
|
2007-10-19 15:31:42 +00:00
|
|
|
#endif /* CONFIG_CODEC != SWCODEC */
|
2004-03-21 17:45:45 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
/* Either SWCODEC, or MAS had nothing to do (was frame boundary or not our clip) */
|
2006-10-25 07:08:00 +00:00
|
|
|
mp3_play_stop();
|
2008-07-15 14:06:11 +00:00
|
|
|
talk_queue_lock();
|
2004-05-09 09:41:23 +00:00
|
|
|
queue_write = queue_read = 0; /* reset the queue */
|
2008-07-15 14:06:11 +00:00
|
|
|
thumbnail_buf_used = 0;
|
|
|
|
talk_queue_unlock();
|
|
|
|
need_shutup = false;
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
2007-08-06 13:08:36 +00:00
|
|
|
/* Shutup the voice, except if force_enqueue_next is set. */
|
2007-10-19 15:31:42 +00:00
|
|
|
void talk_shutup(void)
|
2007-08-06 13:08:36 +00:00
|
|
|
{
|
2008-07-15 14:06:11 +00:00
|
|
|
if (need_shutup && !force_enqueue_next)
|
2007-10-19 15:31:42 +00:00
|
|
|
talk_force_shutup();
|
2007-08-06 13:08:36 +00:00
|
|
|
}
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
|
|
/* schedule a clip, at the end or discard the existing queue */
|
2007-10-19 15:31:42 +00:00
|
|
|
static void queue_clip(unsigned char* buf, long size, bool enqueue)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2004-05-09 09:41:23 +00:00
|
|
|
int queue_level;
|
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
if (!enqueue)
|
2007-10-19 15:31:42 +00:00
|
|
|
talk_shutup(); /* cut off all the pending stuff */
|
2007-08-06 13:08:36 +00:00
|
|
|
/* Something is being enqueued, force_enqueue_next override is no
|
|
|
|
longer in effect. */
|
|
|
|
force_enqueue_next = false;
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
if (!size)
|
2007-10-19 15:31:42 +00:00
|
|
|
return; /* safety check */
|
2005-02-02 21:50:24 +00:00
|
|
|
#if CONFIG_CPU == SH7034
|
2004-05-09 09:41:23 +00:00
|
|
|
/* disable the DMA temporarily, to be safe of race condition */
|
|
|
|
CHCR3 &= ~0x0001;
|
2005-02-02 21:50:24 +00:00
|
|
|
#endif
|
2008-07-15 14:06:11 +00:00
|
|
|
talk_queue_lock();
|
2004-05-09 09:41:23 +00:00
|
|
|
queue_level = QUEUE_LEVEL; /* check old level */
|
|
|
|
|
|
|
|
if (queue_level < QUEUE_SIZE - 1) /* space left? */
|
|
|
|
{
|
|
|
|
queue[queue_write].buf = buf; /* populate an entry */
|
|
|
|
queue[queue_write].len = size;
|
2004-11-18 22:59:20 +00:00
|
|
|
queue_write = (queue_write + 1) & QUEUE_MASK;
|
2004-05-09 09:41:23 +00:00
|
|
|
}
|
2008-07-15 14:06:11 +00:00
|
|
|
talk_queue_unlock();
|
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
if (queue_level == 0)
|
|
|
|
{ /* queue was empty, we have to do the initial start */
|
2004-11-17 22:30:38 +00:00
|
|
|
p_lastclip = buf;
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2004-05-09 09:41:23 +00:00
|
|
|
sent = MIN(size, 0xFFFF); /* DMA can do no more */
|
2005-08-20 11:13:19 +00:00
|
|
|
#else
|
|
|
|
sent = size;
|
|
|
|
#endif
|
2004-05-09 09:41:23 +00:00
|
|
|
mp3_play_data(buf, sent, mp3_callback);
|
2004-04-20 21:47:07 +00:00
|
|
|
curr_hd[0] = buf[1];
|
|
|
|
curr_hd[1] = buf[2];
|
|
|
|
curr_hd[2] = buf[3];
|
2004-03-19 22:15:53 +00:00
|
|
|
mp3_play_pause(true); /* kickoff audio */
|
|
|
|
}
|
2004-05-09 09:41:23 +00:00
|
|
|
else
|
|
|
|
{
|
2005-02-02 21:50:24 +00:00
|
|
|
#if CONFIG_CPU == SH7034
|
2004-05-09 09:41:23 +00:00
|
|
|
CHCR3 |= 0x0001; /* re-enable DMA */
|
2005-02-02 21:50:24 +00:00
|
|
|
#endif
|
2004-05-09 09:41:23 +00:00
|
|
|
}
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2008-07-15 14:06:11 +00:00
|
|
|
need_shutup = true;
|
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
return;
|
2004-11-17 22:30:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-12 16:43:22 +00:00
|
|
|
/* common code for talk_init() and talk_buffer_steal() */
|
2004-08-31 22:13:20 +00:00
|
|
|
static void reset_state(void)
|
|
|
|
{
|
|
|
|
queue_write = queue_read = 0; /* reset the queue */
|
|
|
|
p_voicefile = NULL; /* indicate no voicefile (trashed) */
|
2006-08-01 22:02:47 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2006-11-06 18:07:30 +00:00
|
|
|
/* Allocate a dedicated thumbnail buffer - once */
|
|
|
|
if (p_thumbnail == NULL)
|
|
|
|
{
|
|
|
|
size_for_thumbnail = audiobufend - audiobuf;
|
|
|
|
if (size_for_thumbnail > MAX_THUMBNAIL_BUFSIZE)
|
|
|
|
size_for_thumbnail = MAX_THUMBNAIL_BUFSIZE;
|
|
|
|
p_thumbnail = buffer_alloc(size_for_thumbnail);
|
|
|
|
}
|
2006-08-01 22:02:47 +00:00
|
|
|
#else
|
|
|
|
/* Just use the audiobuf, without allocating anything */
|
|
|
|
p_thumbnail = audiobuf;
|
2005-04-05 11:33:58 +00:00
|
|
|
size_for_thumbnail = audiobufend - audiobuf;
|
2006-08-01 22:02:47 +00:00
|
|
|
#endif
|
2008-07-15 14:06:11 +00:00
|
|
|
thumbnail_buf_used = 0;
|
2004-11-17 22:30:38 +00:00
|
|
|
p_silence = NULL; /* pause clip not accessible */
|
2004-08-31 22:13:20 +00:00
|
|
|
}
|
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
/***************** Public implementation *****************/
|
|
|
|
|
|
|
|
void talk_init(void)
|
|
|
|
{
|
2007-10-19 15:31:42 +00:00
|
|
|
talk_temp_disable_count = 0;
|
2006-02-26 16:07:34 +00:00
|
|
|
if (talk_initialized && !strcasecmp(last_lang, global_settings.lang_file))
|
2006-02-23 21:29:29 +00:00
|
|
|
{
|
|
|
|
/* not a new file, nothing to do */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-05-15 21:00:58 +00:00
|
|
|
#ifdef HAVE_MMC
|
|
|
|
if (filehandle >= 0) /* MMC: An old voice file might still be open */
|
|
|
|
{
|
|
|
|
close(filehandle);
|
|
|
|
filehandle = -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-07-15 14:06:11 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
if(!talk_initialized)
|
|
|
|
mutex_init(&queue_mutex);
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
|
|
|
|
2006-02-26 16:07:34 +00:00
|
|
|
talk_initialized = true;
|
2006-02-23 21:29:29 +00:00
|
|
|
strncpy((char *) last_lang, (char *)global_settings.lang_file,
|
|
|
|
MAX_FILENAME);
|
|
|
|
|
2005-09-14 16:07:07 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2006-11-18 02:18:29 +00:00
|
|
|
audio_get_buffer(false, NULL); /* Must tell audio to reinitialize */
|
2005-09-14 16:07:07 +00:00
|
|
|
#endif
|
2004-10-12 16:43:22 +00:00
|
|
|
reset_state(); /* use this for most of our inits */
|
2004-03-20 16:49:58 +00:00
|
|
|
|
2004-10-12 16:43:22 +00:00
|
|
|
filehandle = open_voicefile();
|
|
|
|
has_voicefile = (filehandle >= 0); /* test if we can open it */
|
2005-08-20 11:13:19 +00:00
|
|
|
voicefile_size = 0;
|
2006-05-15 21:00:58 +00:00
|
|
|
|
2004-10-12 16:43:22 +00:00
|
|
|
if (has_voicefile)
|
2004-03-20 16:49:58 +00:00
|
|
|
{
|
2005-08-20 11:13:19 +00:00
|
|
|
voicefile_size = filesize(filehandle);
|
2004-10-12 16:43:22 +00:00
|
|
|
close(filehandle); /* close again, this was just to detect presence */
|
|
|
|
filehandle = -1;
|
2004-03-20 16:49:58 +00:00
|
|
|
}
|
2006-08-23 08:21:15 +00:00
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2006-08-15 18:01:42 +00:00
|
|
|
/* return if a voice codec is required or not */
|
|
|
|
bool talk_voice_required(void)
|
|
|
|
{
|
2006-08-23 08:21:15 +00:00
|
|
|
return (voicefile_size != 0) /* Voice file is available */
|
2007-06-07 09:24:53 +00:00
|
|
|
|| (global_settings.talk_dir_clip) /* Thumbnail clips are required */
|
|
|
|
|| (global_settings.talk_file_clip);
|
2006-08-15 18:01:42 +00:00
|
|
|
}
|
2006-12-25 14:01:47 +00:00
|
|
|
#endif
|
2006-08-15 18:01:42 +00:00
|
|
|
|
|
|
|
/* return size of voice file */
|
|
|
|
int talk_get_bufsize(void)
|
|
|
|
{
|
|
|
|
return voicefile_size;
|
|
|
|
}
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
|
|
/* somebody else claims the mp3 buffer, e.g. for regular play/record */
|
2007-10-19 15:31:42 +00:00
|
|
|
void talk_buffer_steal(void)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2006-11-28 15:00:56 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2004-05-09 09:41:23 +00:00
|
|
|
mp3_play_stop();
|
2006-11-28 15:00:56 +00:00
|
|
|
#endif
|
2004-10-12 16:43:22 +00:00
|
|
|
#ifdef HAVE_MMC
|
|
|
|
if (filehandle >= 0) /* only relevant for MMC */
|
|
|
|
{
|
|
|
|
close(filehandle);
|
|
|
|
filehandle = -1;
|
|
|
|
}
|
|
|
|
#endif
|
2007-11-15 19:32:15 +00:00
|
|
|
reset_state();
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
/* play a voice ID from voicefile */
|
2007-11-20 19:50:52 +00:00
|
|
|
int talk_id(int32_t id, bool enqueue)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2005-02-12 11:26:36 +00:00
|
|
|
long clipsize;
|
2004-03-19 22:15:53 +00:00
|
|
|
unsigned char* clipbuf;
|
2007-11-20 19:50:52 +00:00
|
|
|
int32_t unit;
|
2008-04-19 13:19:04 +00:00
|
|
|
int decimals;
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
if (talk_temp_disable_count > 0)
|
|
|
|
return -1; /* talking has been disabled */
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2005-04-04 12:06:29 +00:00
|
|
|
if (audio_status()) /* busy, buffer in use */
|
2007-11-20 19:50:52 +00:00
|
|
|
return -1;
|
2005-08-20 11:13:19 +00:00
|
|
|
#endif
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
if (p_voicefile == NULL && has_voicefile)
|
|
|
|
load_voicefile(); /* reload needed */
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2004-05-09 09:41:23 +00:00
|
|
|
if (p_voicefile == NULL) /* still no voices? */
|
2004-03-19 22:15:53 +00:00
|
|
|
return -1;
|
|
|
|
|
2004-04-03 20:52:24 +00:00
|
|
|
if (id == -1) /* -1 is an indication for silence */
|
|
|
|
return -1;
|
|
|
|
|
2008-04-19 13:19:04 +00:00
|
|
|
decimals = (((uint32_t)id) >> DECIMAL_SHIFT) & 0x7;
|
2008-04-19 13:35:23 +00:00
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
/* check if this is a special ID, with a value */
|
2007-11-20 19:50:52 +00:00
|
|
|
unit = ((uint32_t)id) >> UNIT_SHIFT;
|
2008-04-19 13:19:04 +00:00
|
|
|
if (unit || decimals)
|
2004-03-19 22:15:53 +00:00
|
|
|
{ /* sign-extend the value */
|
2008-04-19 13:19:04 +00:00
|
|
|
id = (uint32_t)id << (32-DECIMAL_SHIFT);
|
|
|
|
id >>= (32-DECIMAL_SHIFT);
|
|
|
|
|
|
|
|
talk_value_decimal(id, unit, decimals, enqueue); /* speak it */
|
2004-03-19 22:15:53 +00:00
|
|
|
return 0; /* and stop, end of special case */
|
|
|
|
}
|
|
|
|
|
2004-11-17 22:30:38 +00:00
|
|
|
clipbuf = get_clip(id, &clipsize);
|
|
|
|
if (clipbuf == NULL)
|
|
|
|
return -1; /* not present */
|
2004-10-12 16:43:22 +00:00
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
queue_clip(clipbuf, clipsize, enqueue);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2007-08-06 13:08:36 +00:00
|
|
|
/* Speaks zero or more IDs (from an array). */
|
|
|
|
int talk_idarray(long *ids, bool enqueue)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
if(!ids)
|
|
|
|
return 0;
|
|
|
|
while(*ids != TALK_FINAL_ID)
|
|
|
|
{
|
|
|
|
if((r = talk_id(*ids++, enqueue)) <0)
|
|
|
|
return r;
|
|
|
|
enqueue = true;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure the current utterance is not interrupted by the next one. */
|
|
|
|
void talk_force_enqueue_next(void)
|
|
|
|
{
|
|
|
|
force_enqueue_next = true;
|
|
|
|
}
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
|
|
/* play a thumbnail from file */
|
2008-07-15 14:55:31 +00:00
|
|
|
/* Returns size of spoken thumbnail, so >0 means something is spoken,
|
|
|
|
<=0 means something went wrong. */
|
|
|
|
static int _talk_file(const char* filename, long *prefix_ids, bool enqueue)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int size;
|
2008-07-15 14:06:11 +00:00
|
|
|
int thumb_used;
|
2007-11-18 17:12:19 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2004-03-27 00:11:01 +00:00
|
|
|
struct mp3entry info;
|
2007-11-18 17:12:19 +00:00
|
|
|
#endif
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
if (talk_temp_disable_count > 0)
|
|
|
|
return -1; /* talking has been disabled */
|
2006-08-01 22:02:47 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2005-04-04 12:06:29 +00:00
|
|
|
if (audio_status()) /* busy, buffer in use */
|
2004-03-19 22:15:53 +00:00
|
|
|
return -1;
|
2006-08-01 22:02:47 +00:00
|
|
|
#endif
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
|
|
if (p_thumbnail == NULL || size_for_thumbnail <= 0)
|
|
|
|
return -1;
|
|
|
|
|
2007-11-18 17:12:19 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2007-09-19 10:40:55 +00:00
|
|
|
if(mp3info(&info, filename)) /* use this to find real start */
|
2004-03-27 00:11:01 +00:00
|
|
|
{
|
|
|
|
return 0; /* failed to open, or invalid */
|
|
|
|
}
|
2007-11-18 17:12:19 +00:00
|
|
|
#endif
|
2004-03-27 00:11:01 +00:00
|
|
|
|
2008-07-15 14:06:11 +00:00
|
|
|
if (!enqueue)
|
|
|
|
/* shutup now to free the thumbnail buffer */
|
|
|
|
talk_shutup();
|
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
fd = open(filename, O_RDONLY);
|
|
|
|
if (fd < 0) /* failed to open */
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-15 14:06:11 +00:00
|
|
|
thumb_used = thumbnail_buf_used;
|
|
|
|
if(filesize(fd) > size_for_thumbnail -thumb_used)
|
|
|
|
{ /* Don't play truncated clips */
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-11-18 17:12:19 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2004-03-27 00:11:01 +00:00
|
|
|
lseek(fd, info.first_frame_offset, SEEK_SET); /* behind ID data */
|
2007-11-18 17:12:19 +00:00
|
|
|
#endif
|
2004-03-27 00:11:01 +00:00
|
|
|
|
2008-07-15 14:06:11 +00:00
|
|
|
size = read(fd, p_thumbnail +thumb_used,
|
|
|
|
size_for_thumbnail -thumb_used);
|
2004-03-19 22:15:53 +00:00
|
|
|
close(fd);
|
|
|
|
|
|
|
|
/* ToDo: find audio, skip ID headers and trailers */
|
|
|
|
|
2008-07-15 14:06:11 +00:00
|
|
|
if (size > 0) /* Don't play missing clips */
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2007-11-07 09:28:07 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC && !defined(SIMULATOR)
|
2004-03-19 22:15:53 +00:00
|
|
|
bitswap(p_thumbnail, size);
|
2005-06-06 00:34:07 +00:00
|
|
|
#endif
|
2008-07-15 14:55:31 +00:00
|
|
|
if(prefix_ids)
|
|
|
|
/* prefix thumbnail by speaking these ids, but only now
|
|
|
|
that we know there's actually a thumbnail to be
|
|
|
|
spoken. */
|
|
|
|
talk_idarray(prefix_ids, true);
|
2008-07-15 14:06:11 +00:00
|
|
|
talk_queue_lock();
|
|
|
|
thumbnail_buf_used = thumb_used +size;
|
|
|
|
talk_queue_unlock();
|
|
|
|
queue_clip(p_thumbnail +thumb_used, size, true);
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2008-07-15 14:55:31 +00:00
|
|
|
int
|
|
|
|
talk_file(const char *root, const char *dir, const char *file,
|
|
|
|
const char *ext, long *prefix_ids, bool enqueue)
|
|
|
|
/* Play a thumbnail file */
|
|
|
|
{
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
/* Does root end with a slash */
|
|
|
|
char *slash = (root && root[0]
|
|
|
|
&& root[strlen(root)-1] != '/') ? "/" : "";
|
|
|
|
snprintf(buf, MAX_PATH, "%s%s%s%s%s%s",
|
|
|
|
root ? root : "", slash,
|
|
|
|
dir ? dir : "", dir ? "/" : "",
|
|
|
|
file ? file : "",
|
|
|
|
ext ? ext : "");
|
|
|
|
return _talk_file(buf, prefix_ids, enqueue);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
talk_spell_basename(const char *path,
|
|
|
|
long *prefix_ids, bool enqueue)
|
|
|
|
{
|
|
|
|
if(prefix_ids)
|
|
|
|
{
|
|
|
|
talk_idarray(prefix_ids, enqueue);
|
|
|
|
enqueue = true;
|
|
|
|
}
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
/* Spell only the path component after the last slash */
|
|
|
|
strncpy(buf, path, MAX_PATH);
|
|
|
|
if(strlen(buf) >1 && buf[strlen(buf)-1] == '/')
|
|
|
|
/* strip trailing slash */
|
|
|
|
buf[strlen(buf)-1] = '\0';
|
|
|
|
char *ptr = strrchr(buf, '/');
|
|
|
|
if(ptr && strlen(buf) >1)
|
|
|
|
++ptr;
|
|
|
|
else ptr = buf;
|
|
|
|
return talk_spell(ptr, enqueue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Play a file's .talk thumbnail, fallback to spelling the filename, or
|
|
|
|
go straight to spelling depending on settings. */
|
|
|
|
int talk_file_or_spell(const char *dirname, const char *filename,
|
|
|
|
long *prefix_ids, bool enqueue)
|
|
|
|
{
|
|
|
|
if (global_settings.talk_file_clip)
|
|
|
|
{ /* .talk clips enabled */
|
|
|
|
if(talk_file(dirname, NULL, filename, file_thumbnail_ext,
|
|
|
|
prefix_ids, enqueue) >0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (global_settings.talk_file == 2)
|
|
|
|
/* Either .talk clips are disabled, or as a fallback */
|
|
|
|
return talk_spell_basename(filename, prefix_ids, enqueue);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Play a directory's .talk thumbnail, fallback to spelling the filename, or
|
|
|
|
go straight to spelling depending on settings. */
|
|
|
|
int talk_dir_or_spell(const char* dirname,
|
|
|
|
long *prefix_ids, bool enqueue)
|
|
|
|
{
|
|
|
|
if (global_settings.talk_dir_clip)
|
|
|
|
{ /* .talk clips enabled */
|
|
|
|
if(talk_file(dirname, NULL, dir_thumbnail_name, NULL,
|
|
|
|
prefix_ids, enqueue) >0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (global_settings.talk_dir == 2)
|
|
|
|
/* Either .talk clips disabled or as a fallback */
|
|
|
|
return talk_spell_basename(dirname, prefix_ids, enqueue);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Speak thumbnail for each component of a full path, again falling
|
|
|
|
back or going straight to spelling depending on settings. */
|
|
|
|
int talk_fullpath(const char* path, bool enqueue)
|
|
|
|
{
|
|
|
|
if (!enqueue)
|
|
|
|
talk_shutup();
|
|
|
|
if(path[0] != '/')
|
|
|
|
/* path ought to start with /... */
|
|
|
|
return talk_spell(path, true);
|
|
|
|
talk_id(VOICE_CHAR_SLASH, true);
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
strncpy(buf, path, MAX_PATH);
|
|
|
|
char *start = buf+1; /* start of current component */
|
|
|
|
char *ptr = strchr(start, '/'); /* end of current component */
|
|
|
|
while(ptr) { /* There are more slashes ahead */
|
|
|
|
/* temporarily poke a NULL at end of component to truncate string */
|
|
|
|
*ptr = '\0';
|
|
|
|
talk_dir_or_spell(buf, NULL, true);
|
|
|
|
*ptr = '/'; /* restore string */
|
|
|
|
talk_id(VOICE_CHAR_SLASH, true);
|
|
|
|
start = ptr+1; /* setup for next component */
|
|
|
|
ptr = strchr(start, '/');
|
|
|
|
}
|
|
|
|
/* no more slashes, final component is a filename */
|
|
|
|
return talk_file_or_spell(NULL, buf, NULL, true);
|
|
|
|
}
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2004-03-20 16:49:58 +00:00
|
|
|
/* say a numeric value, this word ordering works for english,
|
|
|
|
but not necessarily for other languages (e.g. german) */
|
2005-02-12 11:26:36 +00:00
|
|
|
int talk_number(long n, bool enqueue)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
2006-05-25 12:45:57 +00:00
|
|
|
int level = 2; /* mille count */
|
2005-02-12 11:26:36 +00:00
|
|
|
long mil = 1000000000; /* highest possible "-illion" */
|
2004-03-19 22:15:53 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
if (talk_temp_disable_count > 0)
|
|
|
|
return -1; /* talking has been disabled */
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2005-04-04 12:06:29 +00:00
|
|
|
if (audio_status()) /* busy, buffer in use */
|
2004-03-22 12:34:06 +00:00
|
|
|
return -1;
|
2005-08-20 11:13:19 +00:00
|
|
|
#endif
|
2004-03-22 12:34:06 +00:00
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
if (!enqueue)
|
2007-10-19 15:31:42 +00:00
|
|
|
talk_shutup(); /* cut off all the pending stuff */
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
|
|
if (n==0)
|
2004-03-20 16:49:58 +00:00
|
|
|
{ /* special case */
|
2004-03-19 22:15:53 +00:00
|
|
|
talk_id(VOICE_ZERO, true);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n<0)
|
|
|
|
{
|
|
|
|
talk_id(VOICE_MINUS, true);
|
|
|
|
n = -n;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (n)
|
|
|
|
{
|
2004-03-20 16:49:58 +00:00
|
|
|
int segment = n / mil; /* extract in groups of 3 digits */
|
|
|
|
n -= segment * mil; /* remove the used digits from number */
|
|
|
|
mil /= 1000; /* digit place for next round */
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
|
|
if (segment)
|
|
|
|
{
|
|
|
|
int hundreds = segment / 100;
|
|
|
|
int ones = segment % 100;
|
|
|
|
|
|
|
|
if (hundreds)
|
|
|
|
{
|
|
|
|
talk_id(VOICE_ZERO + hundreds, true);
|
|
|
|
talk_id(VOICE_HUNDRED, true);
|
|
|
|
}
|
|
|
|
|
2004-03-20 16:49:58 +00:00
|
|
|
/* combination indexing */
|
2004-03-19 22:15:53 +00:00
|
|
|
if (ones > 20)
|
|
|
|
{
|
|
|
|
int tens = ones/10 + 18;
|
|
|
|
talk_id(VOICE_ZERO + tens, true);
|
|
|
|
ones %= 10;
|
|
|
|
}
|
|
|
|
|
2004-03-20 16:49:58 +00:00
|
|
|
/* direct indexing */
|
2004-03-19 22:15:53 +00:00
|
|
|
if (ones)
|
|
|
|
talk_id(VOICE_ZERO + ones, true);
|
|
|
|
|
2004-03-20 16:49:58 +00:00
|
|
|
/* add billion, million, thousand */
|
2004-03-19 22:15:53 +00:00
|
|
|
if (mil)
|
2006-05-25 12:45:57 +00:00
|
|
|
talk_id(VOICE_THOUSAND + level, true);
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
2006-05-25 12:45:57 +00:00
|
|
|
level--;
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-11-03 03:43:12 +00:00
|
|
|
/* Say time duration/interval. Input is time in seconds,
|
|
|
|
say hours,minutes,seconds. */
|
|
|
|
static int talk_time_unit(long secs, bool exact, bool enqueue)
|
|
|
|
{
|
|
|
|
int hours, mins;
|
|
|
|
if (!enqueue)
|
|
|
|
talk_shutup();
|
|
|
|
if((hours = secs/3600)) {
|
|
|
|
secs %= 3600;
|
|
|
|
talk_value(hours, UNIT_HOUR, true);
|
|
|
|
}
|
|
|
|
if((mins = secs/60)) {
|
|
|
|
secs %= 60;
|
|
|
|
if(exact || !hours)
|
|
|
|
talk_value(mins, UNIT_MIN, true);
|
|
|
|
else talk_number(mins, true); /* don't say "minutes" */
|
|
|
|
}
|
|
|
|
if((exact && secs) || (!hours && !mins))
|
|
|
|
talk_value(secs, UNIT_SEC, true);
|
|
|
|
else if(!hours && secs)
|
|
|
|
talk_number(secs, true);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-20 11:02:42 +00:00
|
|
|
void talk_fractional(char *tbuf, int value, int unit)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
/* strip trailing zeros from the fraction */
|
|
|
|
for (i = strlen(tbuf) - 1; (i >= 0) && (tbuf[i] == '0'); i--)
|
|
|
|
tbuf[i] = '\0';
|
|
|
|
|
|
|
|
talk_number(value, true);
|
|
|
|
if (tbuf[0] != 0)
|
|
|
|
{
|
|
|
|
talk_id(LANG_POINT, true);
|
|
|
|
talk_spell(tbuf, true);
|
|
|
|
}
|
|
|
|
talk_id(unit, true);
|
|
|
|
}
|
|
|
|
|
2005-02-12 11:26:36 +00:00
|
|
|
int talk_value(long n, int unit, bool enqueue)
|
2008-04-19 13:19:04 +00:00
|
|
|
{
|
|
|
|
return talk_value_decimal(n, unit, 0, enqueue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* singular/plural aware saying of a value */
|
|
|
|
int talk_value_decimal(long n, int unit, int decimals, bool enqueue)
|
2004-03-19 22:15:53 +00:00
|
|
|
{
|
|
|
|
int unit_id;
|
2004-08-26 20:30:22 +00:00
|
|
|
static const int unit_voiced[] =
|
2004-03-19 22:15:53 +00:00
|
|
|
{ /* lookup table for the voice ID of the units */
|
2006-09-26 17:44:43 +00:00
|
|
|
[0 ... UNIT_LAST-1] = -1, /* regular ID, int, signed */
|
|
|
|
[UNIT_MS]
|
|
|
|
= VOICE_MILLISECONDS, /* here come the "real" units */
|
|
|
|
[UNIT_SEC]
|
|
|
|
= VOICE_SECONDS,
|
|
|
|
[UNIT_MIN]
|
|
|
|
= VOICE_MINUTES,
|
|
|
|
[UNIT_HOUR]
|
|
|
|
= VOICE_HOURS,
|
|
|
|
[UNIT_KHZ]
|
|
|
|
= VOICE_KHZ,
|
|
|
|
[UNIT_DB]
|
|
|
|
= VOICE_DB,
|
|
|
|
[UNIT_PERCENT]
|
|
|
|
= VOICE_PERCENT,
|
|
|
|
[UNIT_MAH]
|
|
|
|
= VOICE_MILLIAMPHOURS,
|
|
|
|
[UNIT_PIXEL]
|
|
|
|
= VOICE_PIXEL,
|
|
|
|
[UNIT_PER_SEC]
|
|
|
|
= VOICE_PER_SEC,
|
|
|
|
[UNIT_HERTZ]
|
|
|
|
= VOICE_HERTZ,
|
|
|
|
[UNIT_MB]
|
|
|
|
= LANG_MEGABYTE,
|
|
|
|
[UNIT_KBIT]
|
|
|
|
= VOICE_KBIT_PER_SEC,
|
2007-08-18 23:03:03 +00:00
|
|
|
[UNIT_PM_TICK]
|
|
|
|
= VOICE_PM_UNITS_PER_TICK,
|
2004-03-19 22:15:53 +00:00
|
|
|
};
|
|
|
|
|
2008-04-20 11:02:42 +00:00
|
|
|
static const int pow10[] = { /* 10^0 - 10^7 */
|
|
|
|
1, 10, 100, 1000, 10000, 100000, 1000000, 10000000
|
|
|
|
};
|
|
|
|
|
|
|
|
char tbuf[8];
|
2008-04-20 14:07:21 +00:00
|
|
|
char fmt[] = "%0nd";
|
2008-04-20 11:02:42 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
if (talk_temp_disable_count > 0)
|
|
|
|
return -1; /* talking has been disabled */
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2005-04-04 12:06:29 +00:00
|
|
|
if (audio_status()) /* busy, buffer in use */
|
2004-03-22 12:34:06 +00:00
|
|
|
return -1;
|
2005-08-20 11:13:19 +00:00
|
|
|
#endif
|
2004-03-22 12:34:06 +00:00
|
|
|
|
2007-11-03 03:43:12 +00:00
|
|
|
/* special case for time duration */
|
|
|
|
if (unit == UNIT_TIME || unit == UNIT_TIME_EXACT)
|
|
|
|
return talk_time_unit(n, unit == UNIT_TIME_EXACT, enqueue);
|
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
if (unit < 0 || unit >= UNIT_LAST)
|
|
|
|
unit_id = -1;
|
|
|
|
else
|
|
|
|
unit_id = unit_voiced[unit];
|
|
|
|
|
2004-03-20 16:49:58 +00:00
|
|
|
if ((n==1 || n==-1) /* singular? */
|
2004-03-19 22:15:53 +00:00
|
|
|
&& unit_id >= VOICE_SECONDS && unit_id <= VOICE_HOURS)
|
|
|
|
{
|
|
|
|
unit_id--; /* use the singular for those units which have */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* special case with a "plus" before */
|
|
|
|
if (n > 0 && (unit == UNIT_SIGNED || unit == UNIT_DB))
|
|
|
|
{
|
|
|
|
talk_id(VOICE_PLUS, enqueue);
|
|
|
|
enqueue = true;
|
2008-04-19 13:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (decimals)
|
|
|
|
{
|
|
|
|
/* needed for the "-0.5" corner case */
|
|
|
|
if (n < 0)
|
|
|
|
{
|
|
|
|
talk_id(VOICE_MINUS, enqueue);
|
|
|
|
n = -n;
|
|
|
|
}
|
|
|
|
|
2008-04-20 14:07:21 +00:00
|
|
|
fmt[2] = '0' + decimals;
|
|
|
|
|
|
|
|
snprintf(tbuf, sizeof(tbuf), fmt, n % pow10[decimals]);
|
2008-04-20 11:02:42 +00:00
|
|
|
talk_fractional(tbuf, n / pow10[decimals], unit_id);
|
|
|
|
|
|
|
|
return 0;
|
2004-03-19 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
talk_number(n, enqueue); /* say the number */
|
|
|
|
talk_id(unit_id, true); /* say the unit, if any */
|
2008-04-20 11:02:42 +00:00
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-04-04 19:08:44 +00:00
|
|
|
/* spell a string */
|
2004-08-26 20:30:22 +00:00
|
|
|
int talk_spell(const char* spell, bool enqueue)
|
2004-04-04 19:08:44 +00:00
|
|
|
{
|
|
|
|
char c; /* currently processed char */
|
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
if (talk_temp_disable_count > 0)
|
|
|
|
return -1; /* talking has been disabled */
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2005-04-04 12:06:29 +00:00
|
|
|
if (audio_status()) /* busy, buffer in use */
|
2004-04-04 19:08:44 +00:00
|
|
|
return -1;
|
2005-08-20 11:13:19 +00:00
|
|
|
#endif
|
2004-04-04 19:08:44 +00:00
|
|
|
|
|
|
|
if (!enqueue)
|
2007-10-19 15:31:42 +00:00
|
|
|
talk_shutup(); /* cut off all the pending stuff */
|
2004-04-04 19:08:44 +00:00
|
|
|
|
|
|
|
while ((c = *spell++) != '\0')
|
|
|
|
{
|
|
|
|
/* if this grows into too many cases, I should use a table */
|
|
|
|
if (c >= 'A' && c <= 'Z')
|
|
|
|
talk_id(VOICE_CHAR_A + c - 'A', true);
|
|
|
|
else if (c >= 'a' && c <= 'z')
|
|
|
|
talk_id(VOICE_CHAR_A + c - 'a', true);
|
|
|
|
else if (c >= '0' && c <= '9')
|
|
|
|
talk_id(VOICE_ZERO + c - '0', true);
|
|
|
|
else if (c == '-')
|
|
|
|
talk_id(VOICE_MINUS, true);
|
|
|
|
else if (c == '+')
|
|
|
|
talk_id(VOICE_PLUS, true);
|
|
|
|
else if (c == '.')
|
2004-10-25 20:44:37 +00:00
|
|
|
talk_id(VOICE_DOT, true);
|
2004-10-23 17:58:38 +00:00
|
|
|
else if (c == ' ')
|
|
|
|
talk_id(VOICE_PAUSE, true);
|
2008-07-15 14:55:31 +00:00
|
|
|
else if (c == '/')
|
|
|
|
talk_id(VOICE_CHAR_SLASH, true);
|
2004-04-04 19:08:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2007-06-11 08:28:38 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
void talk_disable(bool disable)
|
2007-06-11 08:28:38 +00:00
|
|
|
{
|
2007-10-19 15:31:42 +00:00
|
|
|
if (disable)
|
|
|
|
talk_temp_disable_count++;
|
|
|
|
else
|
|
|
|
talk_temp_disable_count--;
|
2007-06-11 08:28:38 +00:00
|
|
|
}
|
2007-10-07 08:12:01 +00:00
|
|
|
|
2008-03-25 15:24:03 +00:00
|
|
|
void talk_setting(const void *global_settings_variable)
|
|
|
|
{
|
|
|
|
const struct settings_list *setting;
|
|
|
|
if (!global_settings.talk_menu)
|
|
|
|
return;
|
|
|
|
setting = find_setting(global_settings_variable, NULL);
|
|
|
|
if (setting == NULL)
|
|
|
|
return;
|
|
|
|
if (setting->lang_id)
|
|
|
|
talk_id(setting->lang_id,false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 08:12:01 +00:00
|
|
|
#if CONFIG_RTC
|
2007-10-24 12:32:12 +00:00
|
|
|
void talk_date(struct tm *tm, bool enqueue)
|
2007-10-07 08:12:01 +00:00
|
|
|
{
|
2007-10-24 12:32:12 +00:00
|
|
|
talk_id(LANG_MONTH_JANUARY + tm->tm_mon, enqueue);
|
|
|
|
talk_number(tm->tm_mday, true);
|
|
|
|
talk_number(1900 + tm->tm_year, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void talk_time(struct tm *tm, bool enqueue)
|
|
|
|
{
|
|
|
|
if (global_settings.timeformat == 1)
|
2007-10-07 08:12:01 +00:00
|
|
|
{
|
2007-10-24 12:32:12 +00:00
|
|
|
/* Voice the hour */
|
|
|
|
long am_pm_id = VOICE_AM;
|
|
|
|
int hour = tm->tm_hour;
|
|
|
|
if (hour >= 12)
|
2007-10-07 08:12:01 +00:00
|
|
|
{
|
2007-10-24 12:32:12 +00:00
|
|
|
am_pm_id = VOICE_PM;
|
|
|
|
hour -= 12;
|
|
|
|
}
|
|
|
|
if (hour == 0)
|
|
|
|
hour = 12;
|
|
|
|
talk_number(hour, enqueue);
|
2007-10-07 08:12:01 +00:00
|
|
|
|
2007-10-24 12:32:12 +00:00
|
|
|
/* Voice the minutes */
|
|
|
|
if (tm->tm_min == 0)
|
|
|
|
{
|
|
|
|
/* Say o'clock if the minute is 0. */
|
|
|
|
talk_id(VOICE_OCLOCK, true);
|
2007-10-07 08:12:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-24 12:32:12 +00:00
|
|
|
/* Pronounce the leading 0 */
|
|
|
|
if(tm->tm_min < 10)
|
|
|
|
talk_id(VOICE_OH, true);
|
|
|
|
talk_number(tm->tm_min, true);
|
|
|
|
}
|
|
|
|
talk_id(am_pm_id, true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Voice the time in 24 hour format */
|
|
|
|
talk_number(tm->tm_hour, enqueue);
|
|
|
|
if (tm->tm_min == 0)
|
|
|
|
{
|
|
|
|
talk_id(VOICE_HUNDRED, true);
|
|
|
|
talk_id(VOICE_HOUR, true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Pronounce the leading 0 */
|
|
|
|
if(tm->tm_min < 10)
|
|
|
|
talk_id(VOICE_OH, true);
|
|
|
|
talk_number(tm->tm_min, true);
|
2007-10-07 08:12:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-10-24 12:32:12 +00:00
|
|
|
|
2007-10-07 08:12:01 +00:00
|
|
|
#endif
|