plottery_server_lib 0.7.0

library for the communication with the pen-plotter server of Plottery, a creative coding framework for generative vector graphics and pen plotting.
Documentation
use plottery_lib::*;

use crate::{plot_setting::PlotSettings, Axis, HOST_NAME, HOST_PORT};

use reqwest::Client;
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub enum Task {
    PlotShape {
        shape: Shape,
        sample_settings: SampleSettings,
        plot_settings: PlotSettings,
    },
    Plot {
        layer: Layer,
        sample_settings: SampleSettings,
        plot_settings: PlotSettings,
    },
    Abort,
    SetEnabled(bool),
    SetHead(bool),
    MoveTo(V2, PlotSettings),
    Move(V2, PlotSettings),
    SetOrigin(),
    NoteFreq {
        axis: Axis,
        frequency: f32,
        duration_s: f32,
    },
    Note {
        axis: Axis,
        midi: f32,
        duration_s: f32,
    },
}

impl Task {
    pub fn from_binary(data: &[u8]) -> anyhow::Result<Self> {
        Ok(bincode::deserialize(data)?)
    }
    pub fn to_binary(&self) -> anyhow::Result<Vec<u8>> {
        Ok(bincode::serialize(self)?)
    }
}

pub async fn send_task(task: Task) -> anyhow::Result<()> {
    let client = Client::new();
    let body = task.to_binary().unwrap();
    client
        .post(format!("http://{}:{}/task", HOST_NAME, HOST_PORT))
        .body(body)
        .send()
        .await?;
    Ok(())
}