2004-03-14 21:33:53 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2004 J<EFBFBD>rg Hohensohn
|
|
|
|
|
*
|
|
|
|
|
* This module collects the Talkbox and voice UI functions.
|
|
|
|
|
* (Talkbox reads directory names from mp3 clips called thumbnails,
|
|
|
|
|
* the voice UI lets menus and screens "talk" from a voicefont in memory.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef __TALK_H__
|
|
|
|
|
#define __TALK_H__
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
2004-03-19 22:15:53 +00:00
|
|
|
|
enum {
|
|
|
|
|
UNIT_INT = 1, /* plain number */
|
|
|
|
|
UNIT_SIGNED, /* number with mandatory sign (even if positive) */
|
|
|
|
|
UNIT_MS, /* milliseconds */
|
|
|
|
|
UNIT_SEC, /* seconds */
|
|
|
|
|
UNIT_MIN, /* minutes */
|
|
|
|
|
UNIT_HOUR, /* hours */
|
|
|
|
|
UNIT_KHZ, /* kHz */
|
|
|
|
|
UNIT_DB, /* dB, mandatory sign */
|
|
|
|
|
UNIT_PERCENT, /* % */
|
2004-03-20 16:49:58 +00:00
|
|
|
|
UNIT_MAH, /* milliAmp hours */
|
|
|
|
|
UNIT_PIXEL, /* pixels */
|
|
|
|
|
UNIT_PER_SEC, /* per second */
|
|
|
|
|
UNIT_HERTZ, /* hertz */
|
2004-03-19 22:15:53 +00:00
|
|
|
|
UNIT_LAST /* END MARKER */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define UNIT_SHIFT (32-4) /* this many bits left from UNIT_xx enum */
|
|
|
|
|
|
|
|
|
|
/* make a "talkable" ID from number + unit
|
|
|
|
|
unit is upper 4 bits, number the remaining (in regular 2's complement) */
|
2005-02-12 11:26:36 +00:00
|
|
|
|
#define TALK_ID(n,u) (((long)(u))<<UNIT_SHIFT | ((n) & ~(-1L<<UNIT_SHIFT)))
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
2004-07-23 23:01:20 +00:00
|
|
|
|
/* convenience macro to have both virtual pointer and ID as arguments */
|
|
|
|
|
#define STR(id) ID2P(id), id
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
2004-10-21 18:34:48 +00:00
|
|
|
|
/* publish these strings, so they're stored only once (better than #define) */
|
2004-10-06 21:37:46 +00:00
|
|
|
|
extern const char* const dir_thumbnail_name; /* "_dirname.talk" */
|
2004-10-21 18:34:48 +00:00
|
|
|
|
extern const char* const file_thumbnail_ext; /* ".talk" for file voicing */
|
2004-03-19 22:15:53 +00:00
|
|
|
|
|
2004-03-14 21:33:53 +00:00
|
|
|
|
void talk_init(void);
|
2005-08-20 11:13:19 +00:00
|
|
|
|
int talk_get_bufsize(void); /* get the loaded voice file size */
|
2004-03-14 21:33:53 +00:00
|
|
|
|
int talk_buffer_steal(void); /* claim the mp3 buffer e.g. for play/record */
|
2005-02-12 11:26:36 +00:00
|
|
|
|
int talk_id(long id, bool enqueue); /* play a voice ID from voicefont */
|
2004-08-18 01:09:31 +00:00
|
|
|
|
int talk_file(const char* filename, bool enqueue); /* play a thumbnail from file */
|
2005-02-12 11:26:36 +00:00
|
|
|
|
int talk_number(long n, bool enqueue); /* say a number */
|
|
|
|
|
int talk_value(long n, int unit, bool enqueue); /* say a numeric value */
|
2004-08-18 01:09:31 +00:00
|
|
|
|
int talk_spell(const char* spell, bool enqueue); /* spell a string */
|
2004-03-14 21:33:53 +00:00
|
|
|
|
|
|
|
|
|
#endif /* __TALK_H__ */
|