tts_linux.h 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. #ifndef TTS_LINUX_H
  31. #define TTS_LINUX_H
  32. #include "core/os/thread.h"
  33. #include "core/os/thread_safe.h"
  34. #include "core/string/ustring.h"
  35. #include "core/templates/hash_map.h"
  36. #include "core/templates/list.h"
  37. #include "core/variant/array.h"
  38. #include "servers/display_server.h"
  39. #ifdef SOWRAP_ENABLED
  40. #include "speechd-so_wrap.h"
  41. #else
  42. #include <libspeechd.h>
  43. #endif
  44. class TTS_Linux : public Object {
  45. _THREAD_SAFE_CLASS_
  46. List<DisplayServer::TTSUtterance> queue;
  47. SPDConnection *synth = nullptr;
  48. bool speaking = false;
  49. bool paused = false;
  50. int last_msg_id = -1;
  51. HashMap<int, int> ids;
  52. struct VoiceInfo {
  53. String language;
  54. String variant;
  55. };
  56. bool voices_loaded = false;
  57. HashMap<String, VoiceInfo> voices;
  58. Thread init_thread;
  59. static void speech_init_thread_func(void *p_userdata);
  60. static void speech_event_callback(size_t p_msg_id, size_t p_client_id, SPDNotificationType p_type);
  61. static void speech_event_index_mark(size_t p_msg_id, size_t p_client_id, SPDNotificationType p_type, char *p_index_mark);
  62. static TTS_Linux *singleton;
  63. protected:
  64. void _load_voices();
  65. void _speech_event(int p_msg_id, int p_type);
  66. void _speech_index_mark(int p_msg_id, int p_type, const String &p_index_mark);
  67. public:
  68. static TTS_Linux *get_singleton();
  69. bool is_speaking() const;
  70. bool is_paused() const;
  71. Array get_voices() const;
  72. 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);
  73. void pause();
  74. void resume();
  75. void stop();
  76. TTS_Linux();
  77. ~TTS_Linux();
  78. };
  79. #endif // TTS_LINUX_H