mirror of
https://github.com/lightsoutgames/godot-tts
synced 2024-11-25 06:25:57 +00:00
We do, in fact, seem to need 0.9.0-preview.0.
This resolves the previously-noticed bindgen issue, where gdnative and speech-dispatcher require conflicting versions. The early iOS build failures appear due to attempting to link AppKit on iOS, where it doesn't exist. This seemed to work on Rust 1.45, but now fails on 1.46. Hopefully, this plus tts-rs changes get this building under iOS again.
This commit is contained in:
parent
2222e3eda7
commit
ddfc262278
|
@ -9,7 +9,7 @@ crate-type = ["staticlib", "cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
env_logger = "0.7"
|
env_logger = "0.7"
|
||||||
gdnative = "0.8"
|
gdnative = "0.9.0-preview.0"
|
||||||
tts = "0.6"
|
tts = "0.6"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
|
|
13
src/lib.rs
13
src/lib.rs
|
@ -1,5 +1,4 @@
|
||||||
use gdnative::init::*;
|
use gdnative::prelude::*;
|
||||||
use gdnative::*;
|
|
||||||
use tts::{Features, TTS as Tts};
|
use tts::{Features, TTS as Tts};
|
||||||
|
|
||||||
#[derive(NativeClass)]
|
#[derive(NativeClass)]
|
||||||
|
@ -9,7 +8,7 @@ struct TTS(Tts);
|
||||||
|
|
||||||
#[methods]
|
#[methods]
|
||||||
impl TTS {
|
impl TTS {
|
||||||
fn _init(_owner: gdnative::Node) -> Self {
|
fn new(_owner: &Node) -> Self {
|
||||||
let tts = Tts::default().unwrap();
|
let tts = Tts::default().unwrap();
|
||||||
Self(tts)
|
Self(tts)
|
||||||
}
|
}
|
||||||
|
@ -122,18 +121,18 @@ impl TTS {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[export]
|
#[export]
|
||||||
fn speak(&mut self, _owner: Node, message: GodotString, interrupt: bool) {
|
fn speak(&mut self, _owner: &Node, message: GodotString, interrupt: bool) {
|
||||||
let message = message.to_string();
|
let message = message.to_string();
|
||||||
self.0.speak(message, interrupt).unwrap();
|
self.0.speak(message, interrupt).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[export]
|
#[export]
|
||||||
fn stop(&mut self, _owner: Node) {
|
fn stop(&mut self, _owner: &Node) {
|
||||||
self.0.stop().unwrap();
|
self.0.stop().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[export]
|
#[export]
|
||||||
fn is_rate_supported(&mut self, _owner: Node) -> bool {
|
fn is_rate_supported(&mut self, _owner: &Node) -> bool {
|
||||||
let Features {
|
let Features {
|
||||||
rate: rate_supported,
|
rate: rate_supported,
|
||||||
..
|
..
|
||||||
|
@ -142,7 +141,7 @@ impl TTS {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn init(handle: gdnative::init::InitHandle) {
|
fn init(handle: InitHandle) {
|
||||||
env_logger::init();
|
env_logger::init();
|
||||||
handle.add_class::<TTS>();
|
handle.add_class::<TTS>();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user