-
Notifications
You must be signed in to change notification settings - Fork 3
/
QtSpeech_unx.cpp
163 lines (136 loc) · 4.25 KB
/
QtSpeech_unx.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
/* 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 <QtSpeech_unx.h>
#include <festival.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) {\
int ok = x;\
if (!ok) {\
QString msg = #e;\
msg += ":"+QString(__FILE__);\
msg += ":"+QString::number(__LINE__)+":"+#x;\
throw e(msg);\
}\
}
// qobject for speech thread
bool QtSpeech_th::init = false;
void QtSpeech_th::say(QString text) {
try {
if (!init) {
int heap_size = FESTIVAL_HEAP_SIZE;
festival_initialize(true,heap_size);
init = true;
}
has_error = false;
EST_String est_text(text.toUtf8());
SysCall(festival_say_text(est_text), QtSpeech::LogicError);
}
catch(QtSpeech::LogicError e) {
has_error = true;
err = e;
}
emit finished();
}
// internal data
class QtSpeech::Private {
public:
Private()
:onFinishSlot(0L) {}
VoiceName name;
static const QString VoiceId;
const char * onFinishSlot;
QPointer<QObject> onFinishObj;
static QPointer<QThread> speechThread;
};
QPointer<QThread> QtSpeech::Private::speechThread = 0L;
const QString QtSpeech::Private::VoiceId = QString("festival:%1");
// implementation
QtSpeech::QtSpeech(QObject * parent)
:QObject(parent), d(new Private)
{
VoiceName n = {Private::VoiceId.arg("english"), "English"};
if (n.id.isEmpty())
throw InitError(Where+"No default voice in system");
d->name = n;
}
QtSpeech::QtSpeech(VoiceName n, QObject * parent)
:QObject(parent), d(new Private)
{
if (n.id.isEmpty()) {
VoiceName def = {Private::VoiceId.arg("english"), "English"};
n = def;
}
if (n.id.isEmpty())
throw InitError(Where+"No default voice in system");
d->name = n;
}
QtSpeech::~QtSpeech()
{
//if ()
delete d;
}
const QtSpeech::VoiceName & QtSpeech::name() const {
return d->name;
}
QtSpeech::VoiceNames QtSpeech::voices()
{
VoiceNames vs;
VoiceName n = {Private::VoiceId.arg("english"), "English"};
vs << n;
return vs;
}
void QtSpeech::tell(QString text) const {
tell(text, 0L,0L);
}
void QtSpeech::tell(QString text, QObject * obj, const char * slot) const
{
if (!d->speechThread) {
d->speechThread = new QThread;
d->speechThread->start();
}
d->onFinishObj = obj;
d->onFinishSlot = slot;
if (obj && slot)
connect(const_cast<QtSpeech *>(this), SIGNAL(finished()), obj, slot);
QtSpeech_th * th = new QtSpeech_th;
th->moveToThread(d->speechThread);
connect(th, SIGNAL(finished()), this, SIGNAL(finished()), Qt::QueuedConnection);
connect(th, SIGNAL(finished()), th, SLOT(deleteLater()), Qt::QueuedConnection);
QMetaObject::invokeMethod(th, "say", Qt::QueuedConnection, Q_ARG(QString,text));
}
void QtSpeech::say(QString text) const
{
if (!d->speechThread) {
d->speechThread = new QThread;
d->speechThread->start();
}
QEventLoop el;
QtSpeech_th th;
th.moveToThread(d->speechThread);
connect(&th, SIGNAL(finished()), &el, SLOT(quit()), Qt::QueuedConnection);
QMetaObject::invokeMethod(&th, "say", Qt::QueuedConnection, Q_ARG(QString,text));
el.exec();
if (th.has_error)
throw th.err;
}
void QtSpeech::timerEvent(QTimerEvent * te)
{
QObject::timerEvent(te);
}
} // namespace QtSpeech_v1