-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathspeech_android.cpp
More file actions
296 lines (244 loc) · 7.99 KB
/
speech_android.cpp
File metadata and controls
296 lines (244 loc) · 7.99 KB
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
#ifdef FS2_SPEECH
#ifdef __ANDROID__
#include "globalincs/pstypes.h"
#include "utils/unicode.h"
#include "speech.h"
#include <jni.h>
#include "SDL.h"
#include "SDL_system.h"
bool Speech_init = false;
static jclass j_game_class = nullptr;
static jmethodID tts_speak = nullptr;
static jmethodID tts_stop = nullptr;
static jmethodID tts_pause = nullptr;
static jmethodID tts_resume = nullptr;
static jmethodID tts_isSpeaking = nullptr;
static jmethodID tts_shutdown = nullptr;
static jmethodID tts_setRate = nullptr;
static jmethodID tts_setVoice = nullptr;
static jmethodID tts_getVoices = nullptr;
// Helper to get a static method from a java class and clear the exception
// if the method is not found. This is needed to avoid crashing on the next JNI request.
static jmethodID get_static_method(JNIEnv* e, jclass cls, const char* name, const char* sig)
{
jmethodID m = e->GetStaticMethodID(cls, name, sig);
if (e->ExceptionCheck()) {
e->ExceptionClear();
m = nullptr;
mprintf(("Speech : Method: %s. Not found on GameActivity! Signature: %s. \n", name, sig));
}
return m;
}
// Ask SDL for the JNI Environment and hook to
// the external TTSManager on the android side of things.
// Then assign all method IDs for later use.
bool speech_init()
{
Speech_init = false;
mprintf(("Speech : Try to init TTSManager on GameActivity...\n"));
// Get the JNI Environment pointer and current Activity instance via SDL
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
jobject activity = (jobject)SDL_AndroidGetActivity();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return false;
}
if (activity == nullptr) {
mprintf(("Speech : Unable to get SDL Android activity!\n"));
return false;
}
// GetObjectClass returns a local ref — promote to global so it survives
// across JNI calls made from different scopes/threads.
jclass local_class = env->GetObjectClass(activity);
env->DeleteLocalRef(activity);
if (local_class == nullptr) {
mprintf(("Speech : Unable to find the GameActivity class!\n"));
return false;
}
j_game_class = (jclass)env->NewGlobalRef(local_class);
env->DeleteLocalRef(local_class);
// Map all static methods from TTSManager
tts_speak = get_static_method (env, j_game_class, "tts_speak", "(Ljava/lang/String;)Z");
tts_stop = get_static_method (env, j_game_class, "tts_stop", "()Z");
tts_pause = get_static_method (env, j_game_class, "tts_pause", "()Z");
tts_resume = get_static_method (env, j_game_class, "tts_resume", "()Z");
tts_isSpeaking = get_static_method (env, j_game_class, "tts_isSpeaking", "()Z");
tts_shutdown = get_static_method (env, j_game_class, "tts_shutdown", "()V");
tts_setRate = get_static_method (env, j_game_class, "tts_setRate", "(F)V");
tts_setVoice = get_static_method (env, j_game_class, "tts_setLanguageTag", "(Ljava/lang/String;)V");
tts_getVoices = get_static_method (env, j_game_class, "tts_getAvailableLanguageTags", "()[Ljava/lang/String;");
if (!tts_speak || !tts_stop || !tts_pause || !tts_resume || !tts_isSpeaking || !tts_shutdown || !tts_setRate || !tts_setVoice || !tts_getVoices) {
mprintf(("Speech : Unable to map at least one core TTS method to GameActivity!\n"));
env->DeleteGlobalRef(j_game_class);
j_game_class = nullptr;
return false;
}
mprintf(("Speech : Init Completed!\n"));
Speech_init = true;
return true;
}
bool speech_play(const SCP_string& text)
{
if (!Speech_init)
return false;
if (text.empty()) {
nprintf(("Speech", "Not playing speech because passed text is empty.\n"));
return false;
}
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return false;
}
jstring j_txt = env->NewStringUTF(text.c_str());
jboolean ok = env->CallStaticBooleanMethod(j_game_class, tts_speak, j_txt);
env->DeleteLocalRef(j_txt);
if (ok != JNI_TRUE) {
mprintf(("Speech : Error playing TTS string!\n"));
return false;
}
return true;
}
bool speech_stop()
{
if (!Speech_init)
return false;
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return false;
}
return env->CallStaticBooleanMethod(j_game_class, tts_stop) == JNI_TRUE;
}
bool speech_pause()
{
if (!Speech_init)
return false;
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return false;
}
return env->CallStaticBooleanMethod(j_game_class, tts_pause) == JNI_TRUE;
}
bool speech_resume()
{
if (!Speech_init)
return false;
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return false;
}
return env->CallStaticBooleanMethod(j_game_class, tts_resume) == JNI_TRUE;
}
bool speech_is_speaking()
{
if (!Speech_init)
return false;
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return false;
}
return env->CallStaticBooleanMethod(j_game_class, tts_isSpeaking) == JNI_TRUE;
}
void speech_deinit()
{
if (!Speech_init)
return;
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env != nullptr) {
env->CallStaticVoidMethod(j_game_class, tts_shutdown);
env->DeleteGlobalRef(j_game_class);
}
j_game_class = nullptr;
tts_speak = nullptr;
tts_stop = nullptr;
tts_pause = nullptr;
tts_resume = nullptr;
tts_isSpeaking = nullptr;
tts_shutdown = nullptr;
tts_setRate = nullptr;
tts_setVoice = nullptr;
tts_getVoices = nullptr;
Speech_init = false;
}
// Android TTS does not expose a direct volume API.
// Volume is controlled by the STREAM_MUSIC channel at the OS level.
bool speech_set_volume(unsigned short /*volume*/)
{
if (!Speech_init)
return false;
return true;
}
bool speech_set_rate(float rate_percent)
{
if (!Speech_init)
return false;
if(rate_percent > 150.0)
rate_percent = 150.0;
else if(rate_percent < 50.0)
rate_percent = 50.0;
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return false;
}
float android_rate = rate_percent / 100.0f; // 0.5 .. 1.0 .. 1.5
env->CallStaticVoidMethod(j_game_class, tts_setRate, (jfloat)android_rate);
return true;
}
bool speech_set_voice(int voice)
{
if (!Speech_init)
return false;
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return false;
}
jobjectArray tags = (jobjectArray)env->CallStaticObjectMethod(j_game_class, tts_getVoices);
if (tags == nullptr)
return false;
jsize count = env->GetArrayLength(tags);
if (voice < 0 || voice >= (int)count) {
env->DeleteLocalRef(tags);
return false;
}
jstring tag = (jstring)env->GetObjectArrayElement(tags, (jsize)voice);
env->CallStaticVoidMethod(j_game_class, tts_setVoice, tag);
env->DeleteLocalRef(tag);
env->DeleteLocalRef(tags);
return true;
}
SCP_vector<std::pair<int, SCP_string>> speech_enumerate_voices()
{
SCP_vector<std::pair<int, SCP_string>> voices;
if (!Speech_init)
return voices;
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
if (env == nullptr) {
mprintf(("Speech : Unable to get JNI environment!\n"));
return voices;
}
jobjectArray tags = (jobjectArray)env->CallStaticObjectMethod(j_game_class, tts_getVoices);
if (tags == nullptr)
return voices;
jsize count = env->GetArrayLength(tags);
for (jsize i = 0; i < count; ++i) {
jstring tag = (jstring)env->GetObjectArrayElement(tags, i);
if (tag == nullptr)
continue;
const char* raw = env->GetStringUTFChars(tag, nullptr);
if (raw) {
voices.emplace_back((int)i, SCP_string(raw));
env->ReleaseStringUTFChars(tag, raw);
}
env->DeleteLocalRef(tag);
}
env->DeleteLocalRef(tags);
return voices;
}
#endif // __ANDROID__
#endif // FS2_SPEECH