Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/linuxbsd/tts_linux.h
10277 views
1
/**************************************************************************/
2
/* tts_linux.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/os/thread.h"
34
#include "core/os/thread_safe.h"
35
#include "core/string/ustring.h"
36
#include "core/templates/hash_map.h"
37
#include "core/templates/list.h"
38
#include "core/variant/array.h"
39
#include "servers/display_server.h"
40
41
#ifdef SOWRAP_ENABLED
42
#include "speechd-so_wrap.h"
43
#else
44
#include <libspeechd.h>
45
#endif
46
47
class TTS_Linux : public Object {
48
_THREAD_SAFE_CLASS_
49
50
List<DisplayServer::TTSUtterance> queue;
51
SPDConnection *synth = nullptr;
52
bool speaking = false;
53
bool paused = false;
54
int last_msg_id = -1;
55
HashMap<int, int> ids;
56
57
struct VoiceInfo {
58
String language;
59
String variant;
60
};
61
mutable bool voices_loaded = false;
62
mutable HashMap<String, VoiceInfo> voices;
63
64
Thread init_thread;
65
66
static void speech_init_thread_func(void *p_userdata);
67
static void speech_event_callback(size_t p_msg_id, size_t p_client_id, SPDNotificationType p_type);
68
static void speech_event_index_mark(size_t p_msg_id, size_t p_client_id, SPDNotificationType p_type, char *p_index_mark);
69
70
static TTS_Linux *singleton;
71
72
protected:
73
void _load_voices() const;
74
void _speech_event(int p_msg_id, int p_type);
75
void _speech_index_mark(int p_msg_id, int p_type, const String &p_index_mark);
76
77
public:
78
static TTS_Linux *get_singleton();
79
80
bool is_speaking() const;
81
bool is_paused() const;
82
Array get_voices() const;
83
84
void speak(const String &p_text, const String &p_voice, int p_volume = 50, float p_pitch = 1.f, float p_rate = 1.f, int p_utterance_id = 0, bool p_interrupt = false);
85
void pause();
86
void resume();
87
void stop();
88
89
TTS_Linux();
90
~TTS_Linux();
91
};
92
93