2019-10-09 21:10:14 +00:00
|
|
|
tool
|
2019-09-24 19:21:05 +00:00
|
|
|
extends Node
|
2019-09-17 15:12:17 +00:00
|
|
|
|
|
|
|
const TTS = preload("godot-tts.gdns")
|
|
|
|
|
2019-10-12 22:03:26 +00:00
|
|
|
var tts = null
|
|
|
|
|
|
|
|
func _ready():
|
|
|
|
# Only initialize TTS if it's available or if we're in the editor.
|
|
|
|
if TTS.can_instance() or Engine.editor_hint:
|
|
|
|
print("Attempting to load TTS.")
|
|
|
|
tts = TTS.new()
|
|
|
|
else:
|
|
|
|
print("TTS not available!")
|
2019-09-17 15:12:17 +00:00
|
|
|
|
2019-09-27 18:07:35 +00:00
|
|
|
func set_rate(rate):
|
2019-10-12 22:03:26 +00:00
|
|
|
if tts != null:
|
|
|
|
tts.rate = rate
|
2019-09-27 18:07:35 +00:00
|
|
|
|
|
|
|
func get_rate():
|
2019-10-12 22:03:26 +00:00
|
|
|
if tts != null:
|
|
|
|
return tts.rate
|
|
|
|
else:
|
|
|
|
return 0
|
2019-09-27 18:07:35 +00:00
|
|
|
|
|
|
|
var rate setget set_rate, get_rate
|
2019-10-09 21:10:14 +00:00
|
|
|
|
2019-09-17 15:12:17 +00:00
|
|
|
func speak(text, interrupt := true):
|
2019-10-12 22:03:26 +00:00
|
|
|
if tts != null:
|
|
|
|
tts.speak(text, interrupt)
|
2019-09-17 15:12:17 +00:00
|
|
|
|
|
|
|
func stop():
|
2019-10-12 22:03:26 +00:00
|
|
|
if tts != null:
|
|
|
|
tts.stop()
|
2019-09-24 23:06:57 +00:00
|
|
|
|
2019-10-09 21:10:14 +00:00
|
|
|
func get_is_rate_supported():
|
2019-10-12 22:03:26 +00:00
|
|
|
if tts != null:
|
|
|
|
return tts.is_rate_supported()
|
|
|
|
else:
|
|
|
|
return false
|
2019-10-09 21:10:14 +00:00
|
|
|
|
|
|
|
var is_rate_supported setget , get_is_rate_supported
|
|
|
|
|
2019-09-24 23:06:57 +00:00
|
|
|
func singular_or_plural(count, singular, plural):
|
|
|
|
if count == 1:
|
|
|
|
return singular
|
|
|
|
else:
|
|
|
|
return plural
|