tts-rs/src/backends/tolk.rs

124 lines
2.5 KiB
Rust
Raw Normal View History

#[cfg(all(windows, feature = "tolk"))]
2021-05-20 18:59:02 +00:00
use std::sync::Arc;
2019-03-25 19:15:08 +00:00
use log::{info, trace};
use tolk::Tolk as TolkPtr;
2022-03-31 01:22:37 +00:00
use crate::{Backend, BackendId, Error, Features, UtteranceId, Voice};
2019-03-25 19:15:08 +00:00
2020-11-03 03:44:47 +00:00
#[derive(Clone, Debug)]
2021-05-20 18:59:02 +00:00
pub(crate) struct Tolk(Arc<TolkPtr>);
2019-03-25 19:15:08 +00:00
impl Tolk {
2020-09-23 17:23:46 +00:00
pub(crate) fn new() -> Option<Self> {
2019-03-25 19:15:08 +00:00
info!("Initializing Tolk backend");
let tolk = TolkPtr::new();
if tolk.detect_screen_reader().is_some() {
Some(Tolk(tolk))
} else {
None
}
2019-03-25 19:15:08 +00:00
}
}
impl Backend for Tolk {
fn id(&self) -> Option<BackendId> {
None
}
2019-03-25 19:15:08 +00:00
fn supported_features(&self) -> Features {
Features {
stop: true,
2020-08-24 21:46:57 +00:00
..Default::default()
2019-03-25 19:15:08 +00:00
}
}
fn speak(&mut self, text: &str, interrupt: bool) -> Result<Option<UtteranceId>, Error> {
2019-03-25 19:15:08 +00:00
trace!("speak({}, {})", text, interrupt);
self.0.speak(text, interrupt);
Ok(None)
2019-03-25 19:15:08 +00:00
}
fn stop(&mut self) -> Result<(), Error> {
2019-03-25 19:15:08 +00:00
trace!("stop()");
self.0.silence();
Ok(())
2019-03-25 19:15:08 +00:00
}
fn min_rate(&self) -> f32 {
unimplemented!()
}
fn max_rate(&self) -> f32 {
unimplemented!()
}
fn normal_rate(&self) -> f32 {
unimplemented!()
}
fn get_rate(&self) -> Result<f32, Error> {
2019-03-25 19:15:08 +00:00
unimplemented!();
}
fn set_rate(&mut self, _rate: f32) -> Result<(), Error> {
2019-03-25 19:15:08 +00:00
unimplemented!();
}
fn min_pitch(&self) -> f32 {
unimplemented!()
}
fn max_pitch(&self) -> f32 {
unimplemented!()
}
fn normal_pitch(&self) -> f32 {
unimplemented!()
}
fn get_pitch(&self) -> Result<f32, Error> {
2019-03-25 19:15:08 +00:00
unimplemented!();
}
fn set_pitch(&mut self, _pitch: f32) -> Result<(), Error> {
2019-03-25 19:15:08 +00:00
unimplemented!();
}
fn min_volume(&self) -> f32 {
unimplemented!()
}
fn max_volume(&self) -> f32 {
unimplemented!()
}
fn normal_volume(&self) -> f32 {
unimplemented!()
}
fn get_volume(&self) -> Result<f32, Error> {
2019-03-25 19:15:08 +00:00
unimplemented!();
}
fn set_volume(&mut self, _volume: f32) -> Result<(), Error> {
2019-03-25 19:15:08 +00:00
unimplemented!();
}
fn is_speaking(&self) -> Result<bool, Error> {
unimplemented!()
}
2022-03-31 18:38:39 +00:00
fn voice(&self) -> Result<Option<Voice>, Error> {
unimplemented!()
}
2022-03-31 01:22:37 +00:00
fn voices(&self) -> Result<Vec<Voice>, Error> {
unimplemented!()
}
2022-03-31 01:22:37 +00:00
fn set_voice(&mut self, _voice: &Voice) -> Result<(), Error> {
unimplemented!()
}
2019-03-25 19:15:08 +00:00
}