summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: e06d2b10898da46d5e42aa2a598d4aabbd307f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use std::io;
use std::io::*;
use std::net::*;

extern crate synfone;
use synfone::synth::*;
use synfone::lang::*;
use synfone::client::*;

const GEN: &'static str = "mul(sine(param('v_freq', 500)), ifelse(rel(param('v_frame'), '<', param('v_deadline')), param('v_amp'), 0.0))";

fn main() {
    let env = Environment::default();

    let gen = Parser::new(Tokenizer::new(GEN.chars())).expect("Failed to get first token").parse().expect("Failed to compile generator");
    let sock = UdpSocket::bind("0.0.0.0:13676").expect("Failed to bind socket");

    let mut client = Client::new(sock, vec![gen], env).expect("Failed to create client");
    let mut buf: Vec<u8> = Vec::new();
    let mut out = io::stdout();

    eprintln!("Starting.");

    while client.pump(&mut buf) {
        out.write_all(&buf).expect("Failed to write samples");
    }

    eprintln!("Exiting.");
}