godot-tts/src/lib.rs

112 lines
3.0 KiB
Rust
Raw Normal View History

2019-09-27 18:03:19 +00:00
use gdnative::init::*;
2020-03-19 18:16:56 +00:00
use gdnative::*;
use tts::{Features, TTS as Tts};
2018-06-13 12:14:03 +00:00
2020-03-19 18:16:56 +00:00
#[derive(NativeClass)]
#[inherit(Node)]
#[register_with(Self::register_properties)]
2019-09-10 15:09:04 +00:00
struct TTS(Tts);
2020-03-19 18:16:56 +00:00
#[methods]
impl TTS {
fn _init(_owner: gdnative::Node) -> Self {
let tts = Tts::default().unwrap();
Self(tts)
2019-09-27 18:03:19 +00:00
}
fn register_properties(builder: &ClassBuilder<Self>) {
2020-03-19 18:16:56 +00:00
builder
.add_property("rate")
2020-03-19 18:16:56 +00:00
.with_getter(|this: &TTS, _| match this.0.get_rate() {
Ok(rate) => rate,
_ => 0.,
})
.with_setter(|this: &mut TTS, _, v: f32| {
let Features {
rate: rate_supported,
..
} = this.0.supported_features();
if rate_supported {
let mut v = v;
if v < this.0.min_rate() {
v = this.0.min_rate();
} else if v > this.0.max_rate() {
v = this.0.max_rate();
}
this.0.set_rate(v).unwrap();
}
})
.done();
builder
.add_property("min_rate")
.with_getter(|this: &TTS, _| {
let Features {
rate: rate_supported,
..
} = this.0.supported_features();
if rate_supported {
this.0.min_rate()
} else {
0.
}
2020-03-19 18:16:56 +00:00
})
.done();
builder
.add_property("max_rate")
.with_getter(|this: &TTS, _| {
let Features {
rate: rate_supported,
..
} = this.0.supported_features();
if rate_supported {
this.0.max_rate()
} else {
0.
}
})
.done();
builder
.add_property("normal_rate")
.with_getter(|this: &TTS, _| {
let Features {
2020-03-19 18:16:56 +00:00
rate: rate_supported,
..
} = this.0.supported_features();
if rate_supported {
this.0.normal_rate()
} else {
0.
}
2020-03-19 18:16:56 +00:00
})
.done();
}
2018-06-13 12:14:03 +00:00
#[export]
fn speak(&mut self, _owner: Node, message: GodotString, interrupt: bool) {
let message = message.to_string();
2019-09-10 15:09:04 +00:00
self.0.speak(message, interrupt).unwrap();
}
2018-06-13 12:14:03 +00:00
#[export]
fn stop(&mut self, _owner: Node) {
2019-09-10 15:09:04 +00:00
self.0.stop().unwrap();
2018-06-13 12:14:03 +00:00
}
#[export]
fn is_rate_supported(&mut self, _owner: Node) -> bool {
let Features {
2020-03-19 18:16:56 +00:00
rate: rate_supported,
..
} = self.0.supported_features();
rate_supported
}
2018-06-13 12:14:03 +00:00
}
fn init(handle: gdnative::init::InitHandle) {
handle.add_class::<TTS>();
2018-06-13 12:14:03 +00:00
}
godot_gdnative_init!();
godot_nativescript_init!(init);
godot_gdnative_terminate!();