tts_linux.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*************************************************************************/
  2. /* tts_linux.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  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/list.h"
  36. #include "core/templates/rb_map.h"
  37. #include "core/variant/array.h"
  38. #include "servers/display_server.h"
  39. #include "speechd-so_wrap.h"
  40. class TTS_Linux {
  41. _THREAD_SAFE_CLASS_
  42. List<DisplayServer::TTSUtterance> queue;
  43. SPDConnection *synth = nullptr;
  44. bool speaking = false;
  45. bool paused = false;
  46. int last_msg_id = -1;
  47. HashMap<int, int> ids;
  48. Thread init_thread;
  49. static void speech_init_thread_func(void *p_userdata);
  50. static void speech_event_callback(size_t p_msg_id, size_t p_client_id, SPDNotificationType p_type);
  51. static void speech_event_index_mark(size_t p_msg_id, size_t p_client_id, SPDNotificationType p_type, char *p_index_mark);
  52. static TTS_Linux *singleton;
  53. public:
  54. static TTS_Linux *get_singleton();
  55. bool is_speaking() const;
  56. bool is_paused() const;
  57. Array get_voices() const;
  58. 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);
  59. void pause();
  60. void resume();
  61. void stop();
  62. TTS_Linux();
  63. ~TTS_Linux();
  64. };
  65. #endif // TTS_LINUX_H