use super::{ButtplugDeviceResultFuture, ButtplugProtocol, ButtplugProtocolCommandHandler};
use crate::{
core::messages::{self, ButtplugDeviceCommandMessageUnion, DeviceMessageAttributesMap},
device::{
protocol::{generic_command_manager::GenericCommandManager, ButtplugProtocolProperties},
DeviceImpl,
DeviceWriteCmd,
Endpoint,
},
};
use std::sync::Arc;
#[derive(ButtplugProtocolProperties)]
pub struct Maxpro {
name: String,
message_attributes: DeviceMessageAttributesMap,
stop_commands: Vec<ButtplugDeviceCommandMessageUnion>,
}
impl ButtplugProtocol for Maxpro {
fn new_protocol(
name: &str,
message_attributes: DeviceMessageAttributesMap,
) -> Box<dyn ButtplugProtocol> {
let manager = GenericCommandManager::new(&message_attributes);
Box::new(Self {
name: name.to_owned(),
message_attributes,
stop_commands: manager.get_stop_commands(),
})
}
}
impl ButtplugProtocolCommandHandler for Maxpro {
fn handle_vibrate_cmd(
&self,
device: Arc<DeviceImpl>,
msg: messages::VibrateCmd,
) -> ButtplugDeviceResultFuture {
let max_value: f64 = 100.0;
let speed: u8 = (msg.speeds()[0].speed() * max_value) as u8;
let mut data = vec![0x55, 0x04, 0x07, 0xff, 0xff, 0x3f, speed, 0x5f, speed, 0x00];
let mut crc: u8 = 0;
for b in data.clone() {
crc = crc.wrapping_add(b);
}
data[9] = crc;
let msg = DeviceWriteCmd::new(Endpoint::Tx, data, false);
let fut = device.write_value(msg);
Box::pin(async move {
fut.await?;
Ok(messages::Ok::default().into())
})
}
}