-
Notifications
You must be signed in to change notification settings - Fork 3
/
QtSpeech_mac.cpp
233 lines (197 loc) · 6.84 KB
/
QtSpeech_mac.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/* QtSpeech -- a small cross-platform library to use TTS
Copyright (C) 2010-2011 LynxLine.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library; if not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301 USA */
#include <QtCore>
#include <QtSpeech>
#include <ApplicationServices/ApplicationServices.h>
namespace QtSpeech_v1 { // API v1.0
// some defines for throwing exceptions
#define Where QString("%1:%2:").arg(__FILE__).arg(__LINE__)
#define SysCall(x,e) {\
OSErr ok = x;\
if (ok != noErr) {\
QString msg = #e;\
msg += ":"+QString(__FILE__);\
msg += ":"+QString::number(__LINE__)+":"+#x;\
throw e(msg);\
}\
}
#ifdef Q_OS_MAC64
#define SpeechDoneUPP_ARG2 void *
#else
#define SpeechDoneUPP_ARG2 long
#endif
// internal data
class QtSpeech::Private {
public:
Private()
:isWaitingInLoop(false),
onFinishSlot(0L) {}
VoiceName name;
SpeechChannel channel;
static const QString VoiceId;
typedef QPointer<QtSpeech> Ptr;
static QList<Ptr> ptrs;
bool isWaitingInLoop;
QPointer<QEventLoop> waitEventLoop;
SpeechDoneUPP doneCall;
const char * onFinishSlot;
QPointer<QObject> onFinishObj;
static void speechFinished(SpeechChannel, SpeechDoneUPP_ARG2 refCon);
};
const QString QtSpeech::Private::VoiceId = QString("macosx:%1");
QList<QtSpeech::Private::Ptr> QtSpeech::Private::ptrs = QList<QtSpeech::Private::Ptr>();
// implementation
QtSpeech::QtSpeech(QObject * parent)
:QObject(parent), d(new Private)
{
VoiceName n;
VoiceDescription info;
SysCall( GetVoiceDescription(NULL, &info, sizeof(VoiceDescription)), InitError);
n.name = QString::fromAscii((const char *)(info.name+1), int(info.name[0]));
n.id = d->VoiceId.arg(info.voice.id);
if (n.id.isEmpty())
throw InitError(Where+"No default voice in system");
SInt16 count;
VoiceSpec voice;
VoiceSpec * voice_ptr(0L);
SysCall( CountVoices(&count), InitError);
for (int i=1; i<= count; i++) {
SysCall( GetIndVoice(i, &voice), InitError);
QString id = d->VoiceId.arg(voice.id);
if (id == n.id) {
voice_ptr = &voice;
break;
}
}
d->doneCall = NewSpeechDoneUPP(&Private::speechFinished);
SysCall( NewSpeechChannel(voice_ptr, &d->channel), InitError);
SysCall( SetSpeechInfo(d->channel, soSpeechDoneCallBack,
(void *)d->doneCall), InitError);
d->name = n;
d->ptrs << this;
}
QtSpeech::QtSpeech(VoiceName n, QObject * parent)
:QObject(parent), d(new Private)
{
if (n.id.isEmpty()) {
VoiceDescription info;
SysCall( GetVoiceDescription(NULL, &info, sizeof(VoiceDescription)), InitError);
n.name = QString::fromAscii((const char *)(info.name+1), int(info.name[0]));
n.id = d->VoiceId.arg(info.voice.id);
}
if (n.id.isEmpty())
throw InitError(Where+"No default voice in system");
SInt16 count;
VoiceSpec voice;
VoiceSpec * voice_ptr(0L);
SysCall( CountVoices(&count), InitError);
for (int i=1; i<= count; i++) {
SysCall( GetIndVoice(i, &voice), InitError);
QString id = d->VoiceId.arg(voice.id);
if (id == n.id) {
voice_ptr = &voice;
break;
}
}
d->doneCall = NewSpeechDoneUPP(&Private::speechFinished);
SysCall( NewSpeechChannel(voice_ptr, &d->channel), InitError);
SysCall( SetSpeechInfo(d->channel, soSpeechDoneCallBack,
(void *)d->doneCall), InitError);
d->name = n;
d->ptrs << this;
}
QtSpeech::~QtSpeech()
{
if (!d->channel)
throw CloseError(Where+"No speech channel to close");
SysCall( StopSpeech(d->channel), CloseError);
SysCall( DisposeSpeechChannel(d->channel), CloseError);
DisposeSpeechDoneUPP(d->doneCall);
d->ptrs.removeAll(this);
delete d;
}
const QtSpeech::VoiceName & QtSpeech::name() const {
return d->name;
}
QtSpeech::VoiceNames QtSpeech::voices()
{
SInt16 count;
VoiceNames vs;
VoiceDescription desc;
SysCall( CountVoices(&count), LogicError);
SysCall( GetVoiceDescription(NULL, &desc, sizeof(VoiceDescription)), LogicError);
for (int i=1; i<= count; i++) {
VoiceSpec voice;
VoiceDescription info;
SysCall( GetIndVoice(i, &voice), LogicError);
SysCall( GetVoiceDescription(&voice, &info, sizeof(VoiceDescription)), LogicError);
QString name = QString::fromAscii((const char *)(info.name+1), int(info.name[0]));
VoiceName vname = { Private::VoiceId.arg(voice.id), name };
vs << vname;
}
return vs;
}
void QtSpeech::tell(QString text) const {
tell(text, 0L,0L);
}
void QtSpeech::tell(QString text, QObject * obj, const char * slot) const
{
d->onFinishObj = obj;
d->onFinishSlot = slot;
if (obj && slot)
connect(const_cast<QtSpeech *>(this), SIGNAL(finished()), obj, slot);
CFStringRef cf_text = CFStringCreateWithCharacters(0,
reinterpret_cast<const UniChar *>(
text.unicode()), text.length());
OSErr ok = SpeakCFString(d->channel, cf_text, NULL);
CFRelease(cf_text);
if (ok != noErr) throw LogicError(Where+"SpeakCFString()");
}
void QtSpeech::say(QString text) const
{
if (d->isWaitingInLoop)
throw LogicError(Where+"Already in process of saying something");
d->isWaitingInLoop = true;
tell(text);
QEventLoop el;
d->waitEventLoop = ⪙
el.exec();
}
void QtSpeech::Private::speechFinished(SpeechChannel chan, SpeechDoneUPP_ARG2 refCon)
{
Q_UNUSED(refCon);
foreach(QtSpeech * c, ptrs) {
if (c && c->d->channel == chan) {
c->finished();
if (c->d->onFinishObj && c->d->onFinishSlot) {
disconnect(c, SIGNAL(finished()),
c->d->onFinishObj, c->d->onFinishSlot);
c->d->onFinishSlot = 0L;
c->d->onFinishObj = 0L;
}
if (c->d->isWaitingInLoop) {
c->d->isWaitingInLoop = false;
if (c->d->waitEventLoop)
c->d->waitEventLoop->quit();
}
break;
}
}
}
void QtSpeech::timerEvent(QTimerEvent * te)
{
QObject::timerEvent(te);
}
} // namespace QtSpeech_v1