Colour targets: Revert an optimisation from almost 18 months ago that actually turned...
[Rockbox.git] / apps / talk.h
blobe73164486d13ea326c0983819032bb8bd86adc63
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 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
21 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22 * KIND, either express or implied.
24 ****************************************************************************/
26 #ifndef __TALK_H__
27 #define __TALK_H__
29 #include <stdbool.h>
30 #include <inttypes.h>
31 #include "time.h"
33 #define VOICE_VERSION 400 /* 4.00 - if you change this, change it in voicefont too */
35 enum {
36 /* See array "unit_voiced" in talk.c function "talk_value" */
37 UNIT_INT = 1, /* plain number */
38 UNIT_SIGNED, /* number with mandatory sign (even if positive) */
39 UNIT_MS, /* milliseconds */
40 UNIT_SEC, /* seconds */
41 UNIT_MIN, /* minutes */
42 UNIT_HOUR, /* hours */
43 UNIT_KHZ, /* kHz */
44 UNIT_DB, /* dB, mandatory sign */
45 UNIT_PERCENT, /* % */
46 UNIT_MAH, /* milliAmp hours */
47 UNIT_PIXEL, /* pixels */
48 UNIT_PER_SEC, /* per second */
49 UNIT_HERTZ, /* hertz */
50 UNIT_MB, /* Megabytes */
51 UNIT_KBIT, /* kilobits per sec */
52 UNIT_PM_TICK, /* peak meter units per tick */
53 UNIT_TIME_EXACT,/* time duration/interval in seconds, says hours,mins,secs*/
54 UNIT_TIME, /* as above but less verbose */
55 UNIT_LAST /* END MARKER */
58 #define UNIT_SHIFT (32-5) /* this many bits left from UNIT_xx enum */
60 #define DECIMAL_SHIFT (32 - 8)
62 /* make a "talkable" ID from number + unit
63 unit is upper 4 bits, number the remaining (in regular 2's complement) */
64 #define TALK_ID(n,u) (((long)(u))<<UNIT_SHIFT | ((n) & ~(-1L<<UNIT_SHIFT)))
66 /* make a "talkable" ID from a decimal number + unit, the decimal number
67 is represented like x*10^d where d is the number of decimal digits */
68 #define TALK_ID_DECIMAL(n,d,u) (((long)(u))<<UNIT_SHIFT |\
69 ((long)(d))<<DECIMAL_SHIFT |\
70 ((n) & ~(-1L<<DECIMAL_SHIFT)))
72 /* convenience macro to have both virtual pointer and ID as arguments */
73 #define STR(id) ID2P(id), id
75 /* publish these strings, so they're stored only once (better than #define) */
76 extern const char* const dir_thumbnail_name; /* "_dirname.talk" */
77 extern const char* const file_thumbnail_ext; /* ".talk" for file voicing */
79 void talk_init(void);
80 #if CONFIG_CODEC == SWCODEC
81 bool talk_voice_required(void); /* returns true if voice codec required */
82 #endif
83 int talk_get_bufsize(void); /* get the loaded voice file size */
84 void talk_buffer_steal(void); /* claim the mp3 buffer e.g. for play/record */
85 bool is_voice_queued(void); /* Are there more voice clips to be spoken? */
86 int talk_id(int32_t id, bool enqueue); /* play a voice ID from voicefont */
87 int talk_file(const char* filename, bool enqueue); /* play a thumbnail from file */
88 int talk_number(long n, bool enqueue); /* say a number */
89 int talk_value(long n, int unit, bool enqueue); /* say a numeric value */
90 int talk_value_decimal(long n, int unit, int decimals, bool enqueue);
91 int talk_spell(const char* spell, bool enqueue); /* spell a string */
92 void talk_setting(const void *global_settings_variable); /* read a setting */
93 void talk_disable(bool disable); /* temporarily disable (or re-enable) talking (temporarily, not persisted) */
94 void talk_force_shutup(void); /* kill voice unconditionally */
95 void talk_shutup(void); /* Interrupt voice, as when enqueue is false */
97 /* helper function for speaking fractional numbers */
98 void talk_fractional(char *tbuf, int value, int unit);
100 #if CONFIG_RTC
101 void talk_time(struct tm *tm, bool enqueue);
102 void talk_date(struct tm *tm, bool enqueue);
103 #endif /* CONFIG_RTC */
105 /* This (otherwise invalid) ID signals the end of the array. */
106 #define TALK_FINAL_ID LANG_LAST_INDEX_IN_ARRAY
108 /* Enqueue next utterance even if enqueue parameter is false: don't
109 interrupt the current utterance. */
110 void talk_force_enqueue_next(void);
112 /* speaks one or more IDs (from an array)). */
113 int talk_idarray(long *idarray, bool enqueue);
114 /* This makes an initializer for the array of IDs and takes care to
115 put the final sentinel element at the end. */
116 #define TALK_IDARRAY(ids...) ((long[]){ids,TALK_FINAL_ID})
117 /* And this handy macro makes it look like a variadic function. */
118 #define talk_ids(enqueue, ids...) talk_idarray(TALK_IDARRAY(ids), enqueue)
119 /* This version talks only if talking menus are enabled, and does not
120 enqueue the initial id. */
121 #define cond_talk_ids(ids...) do { \
122 if (global_settings.talk_menu) \
123 talk_ids(false, ids); \
124 } while(0)
125 /* And a version that takes the array parameter... */
126 #define cond_talk_idarray(idarray) do { \
127 if (global_settings.talk_menu \
128 talk_idarray(idarray, false); \
129 } while(0)
130 /* Convenience macro to conditionally speak something and not have
131 it interrupted. */
132 #define cond_talk_ids_fq(ids...) do { \
133 if (global_settings.talk_menu) { \
134 talk_ids(false, ids); \
135 talk_force_enqueue_next(); \
137 }while(0)
139 #endif /* __TALK_H__ */