Add support for device-specific USB product IDs - the D2 is different to other devices.
[Rockbox.git] / apps / talk.h
bloba939c1f3d15eabb30990e69358b623c980a27cbd
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2004 Jörg Hohensohn
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.
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.
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
22 ****************************************************************************/
24 #ifndef __TALK_H__
25 #define __TALK_H__
27 #include <stdbool.h>
28 #include "time.h"
30 enum {
31 /* See array "unit_voiced" in talk.c function "talk_value" */
32 UNIT_INT = 1, /* plain number */
33 UNIT_SIGNED, /* number with mandatory sign (even if positive) */
34 UNIT_MS, /* milliseconds */
35 UNIT_SEC, /* seconds */
36 UNIT_MIN, /* minutes */
37 UNIT_HOUR, /* hours */
38 UNIT_KHZ, /* kHz */
39 UNIT_DB, /* dB, mandatory sign */
40 UNIT_PERCENT, /* % */
41 UNIT_MAH, /* milliAmp hours */
42 UNIT_PIXEL, /* pixels */
43 UNIT_PER_SEC, /* per second */
44 UNIT_HERTZ, /* hertz */
45 UNIT_MB, /* Megabytes */
46 UNIT_KBIT, /* kilobits per sec */
47 UNIT_PM_TICK, /* peak meter units per tick */
48 UNIT_LAST /* END MARKER */
51 #define UNIT_SHIFT (32-5) /* this many bits left from UNIT_xx enum */
53 /* make a "talkable" ID from number + unit
54 unit is upper 4 bits, number the remaining (in regular 2's complement) */
55 #define TALK_ID(n,u) (((long)(u))<<UNIT_SHIFT | ((n) & ~(-1L<<UNIT_SHIFT)))
57 /* convenience macro to have both virtual pointer and ID as arguments */
58 #define STR(id) ID2P(id), id
60 /* publish these strings, so they're stored only once (better than #define) */
61 extern const char* const dir_thumbnail_name; /* "_dirname.talk" */
62 extern const char* const file_thumbnail_ext; /* ".talk" for file voicing */
64 void talk_init(void);
65 #if CONFIG_CODEC == SWCODEC
66 bool talk_voice_required(void); /* returns true if voice codec required */
67 #endif
68 int talk_get_bufsize(void); /* get the loaded voice file size */
69 void talk_buffer_steal(void); /* claim the mp3 buffer e.g. for play/record */
70 bool is_voice_queued(void); /* Are there more voice clips to be spoken? */
71 int talk_id(long id, bool enqueue); /* play a voice ID from voicefont */
72 int talk_file(const char* filename, bool enqueue); /* play a thumbnail from file */
73 int talk_number(long n, bool enqueue); /* say a number */
74 int talk_value(long n, int unit, bool enqueue); /* say a numeric value */
75 int talk_spell(const char* spell, bool enqueue); /* spell a string */
76 void talk_disable(bool disable); /* temporarily disable (or re-enable) talking (temporarily, not persisted) */
77 void talk_force_shutup(void); /* kill voice unconditionally */
78 void talk_shutup(void); /* Interrupt voice, as when enqueue is false */
80 #if CONFIG_RTC
81 /* this is in talk.c which isnt compiled for hwcodec simulator */
82 #if !defined(SIMULATOR) || CONFIG_CODEC == SWCODEC
83 void talk_date_time(struct tm *time, bool speak_current_time_string);
84 #else
85 #define talk_date_time(t, s)
86 #endif
87 #endif /* CONFIG_RTC */
89 /* This (otherwise invalid) ID signals the end of the array. */
90 #define TALK_FINAL_ID LANG_LAST_INDEX_IN_ARRAY
92 /* We don't build talk.c for hwcodec sims so we need to define these as empty */
93 #if defined(SIMULATOR) && !(CONFIG_CODEC == SWCODEC)
94 #define talk_init(...)
95 #define talk_buffer_steal(...)
96 #define talk_shutup(...)
97 #define talk_force_enqueue_next(...)
98 #define talk_idarray(...)
99 #define talk_ids(...)
100 #define cond_talk_ids(...)
101 #define cond_talk_ids_fq(...)
102 #else
104 /* Enqueue next utterance even if enqueue parameter is false: don't
105 interrupt the current utterance. */
106 void talk_force_enqueue_next(void);
108 /* speaks one or more IDs (from an array)). */
109 int talk_idarray(long *idarray, bool enqueue);
110 /* This makes an initializer for the array of IDs and takes care to
111 put the final sentinel element at the end. */
112 #define TALK_IDARRAY(ids...) ((long[]){ids,TALK_FINAL_ID})
113 /* And this handy macro makes it look like a variadic function. */
114 #define talk_ids(enqueue, ids...) talk_idarray(TALK_IDARRAY(ids), enqueue)
115 /* This version talks only if talking menus are enabled, and does not
116 enqueue the initial id. */
117 #define cond_talk_ids(ids...) do { \
118 if (global_settings.talk_menu) \
119 talk_ids(false, ids); \
120 } while(0)
121 /* And a version that takes the array parameter... */
122 #define cond_talk_idarray(idarray) do { \
123 if (global_settings.talk_menu \
124 talk_idarray(idarray, false); \
125 } while(0)
126 /* Convenience macro to conditionally speak something and not have
127 it interrupted. */
128 #define cond_talk_ids_fq(ids...) do { \
129 if (global_settings.talk_menu) { \
130 talk_ids(false, ids); \
131 talk_force_enqueue_next(); \
133 }while(0)
134 #endif /*defined(SIMULATOR) && !(CONFIG_CODEC == SWCODEC)*/
135 #endif /* __TALK_H__ */