blob: 51504c1a7c0cf7323789e6bd624dc4b7980a252f [file] [log] [blame]
Jörg Hohensohnfa97f162004-03-19 22:15:53 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2004 Jörg Hohensohn
11 *
12 * This module collects the Talkbox and voice UI functions.
13 * (Talkbox reads directory names from mp3 clips called thumbnails,
14 * the voice UI lets menus and screens "talk" from a voicefont in memory.
15 *
16 * All files in this archive are subject to the GNU General Public License.
17 * See the file COPYING in the source tree root for full license agreement.
18 *
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
21 *
22 ****************************************************************************/
23
24#ifndef __TALK_H__
25#define __TALK_H__
26
27#include <stdbool.h>
28
29enum {
30 UNIT_INT = 1, /* plain number */
31 UNIT_SIGNED, /* number with mandatory sign (even if positive) */
32 UNIT_MS, /* milliseconds */
33 UNIT_SEC, /* seconds */
34 UNIT_MIN, /* minutes */
35 UNIT_HOUR, /* hours */
36 UNIT_KHZ, /* kHz */
37 UNIT_DB, /* dB, mandatory sign */
38 UNIT_PERCENT, /* % */
39 UNIT_MB, /* megabyte */
40 UNIT_GB, /* gigabyte */
Jörg Hohensohnbeec2e92004-03-20 16:49:58 +000041 UNIT_MAH, /* milliAmp hours */
42 UNIT_PIXEL, /* pixels */
43 UNIT_PER_SEC, /* per second */
44 UNIT_HERTZ, /* hertz */
Jörg Hohensohnfa97f162004-03-19 22:15:53 +000045 UNIT_LAST /* END MARKER */
46};
47
48#define UNIT_SHIFT (32-4) /* this many bits left from UNIT_xx enum */
49
50/* make a "talkable" ID from number + unit
51 unit is upper 4 bits, number the remaining (in regular 2's complement) */
52#define TALK_ID(n,u) ((u)<<UNIT_SHIFT | ((n) & ~(-1<<UNIT_SHIFT)))
53
54/* convenience macro to have both string and ID as arguments */
55#define STR(id) str(id), id
56
Jörg Hohensohn3aa99e12004-03-27 00:11:01 +000057/* publish this string, so it's stored only once (better than #define) */
58extern const char* dir_thumbnail_name;
59
Jörg Hohensohnfa97f162004-03-19 22:15:53 +000060
61void talk_init(void);
62int talk_buffer_steal(void); /* claim the mp3 buffer e.g. for play/record */
63int talk_id(int id, bool enqueue); /* play a voice ID from voicefont */
64int talk_file(char* filename, bool enqueue); /* play a thumbnail from file */
65int talk_number(int n, bool enqueue); /* say a number */
66int talk_value(int n, int unit, bool enqueue); /* say a numeric value */
Jörg Hohensohnc8592ba2004-04-04 19:08:44 +000067int talk_spell(char* spell, bool enqueue); /* spell a string */
Jörg Hohensohnfa97f162004-03-19 22:15:53 +000068
69#endif /* __TALK_H__ */