forked from grame-cncm/faust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminimal.rs
205 lines (165 loc) · 6.17 KB
/
minimal.rs
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/************************************************************************
************************************************************************
FAUST Architecture File
Copyright (C) 2017-2020 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This is sample code. This file is provided as an example of minimal
FAUST architecture file. Redistribution and use in source and binary
forms, with or without modification, in part or in full are permitted.
In particular you can create a derived work of this FAUST architecture
and distribute that work under terms of your choice.
This sample code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
************************************************************************
************************************************************************/
#![allow(unused_parens)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(dead_code)]
#![allow(unused_variables)]
#![allow(unused_mut)]
#![allow(non_upper_case_globals)]
extern crate libm;
extern crate num_traits;
use std::fs::File;
use std::io::Write;
use std::env;
use std::marker::PhantomData;
use num_traits::{cast::FromPrimitive, float::Float};
type F32 = f32;
type F64 = f64;
#[derive(Copy, Clone)]
pub struct ParamIndex(pub i32);
pub struct Soundfile<'a,T> {
fBuffers: &'a&'a T,
fLength: &'a i32,
fSR: &'a i32,
fOffset: &'a i32,
fChannels: i32
}
pub trait FaustDsp {
type T;
fn new() -> Self where Self: Sized;
fn metadata(&self, m: &mut dyn Meta);
fn get_sample_rate(&self) -> i32;
fn get_num_inputs(&self) -> i32;
fn get_num_outputs(&self) -> i32;
fn class_init(sample_rate: i32) where Self: Sized;
fn instance_reset_params(&mut self);
fn instance_clear(&mut self);
fn instance_constants(&mut self, sample_rate: i32);
fn instance_init(&mut self, sample_rate: i32);
fn init(&mut self, sample_rate: i32);
fn build_user_interface(&self, ui_interface: &mut dyn UI<Self::T>);
fn build_user_interface_static(ui_interface: &mut dyn UI<Self::T>) where Self: Sized;
fn get_param(&self, param: ParamIndex) -> Option<Self::T>;
fn set_param(&mut self, param: ParamIndex, value: Self::T);
fn compute(&mut self, count: i32, inputs: &[&[Self::T]], outputs: &mut[&mut[Self::T]]);
}
pub trait Meta {
// -- metadata declarations
fn declare(&mut self, key: &str, value: &str);
}
pub trait UI<T> {
// -- widget's layouts
fn open_tab_box(&mut self, label: &str);
fn open_horizontal_box(&mut self, label: &str);
fn open_vertical_box(&mut self, label: &str);
fn close_box(&mut self);
// -- active widgets
fn add_button(&mut self, label: &str, param: ParamIndex);
fn add_check_button(&mut self, label: &str, param: ParamIndex);
fn add_vertical_slider(&mut self, label: &str, param: ParamIndex, init: T, min: T, max: T, step: T);
fn add_horizontal_slider(&mut self, label: &str, param: ParamIndex , init: T, min: T, max: T, step: T);
fn add_num_entry(&mut self, label: &str, param: ParamIndex, init: T, min: T, max: T, step: T);
// -- passive widgets
fn add_horizontal_bargraph(&mut self, label: &str, param: ParamIndex, min: T, max: T);
fn add_vertical_bargraph(&mut self, label: &str, param: ParamIndex, min: T, max: T);
// -- metadata declarations
fn declare(&mut self, param: Option<ParamIndex>, key: &str, value: &str);
}
pub struct PrintMeta {}
impl Meta for PrintMeta {
fn declare(&mut self, key: &str, value: &str) -> ()
{
println!("declare: {} {}", key, value);
}
}
pub struct PrintUI<T>
{
phantom: PhantomData<T>
}
impl<T> UI<T> for PrintUI<T> {
// -- widget's layouts
fn open_tab_box(&mut self, label: &str) -> ()
{
println!("openTabBox: {}", label);
}
fn open_horizontal_box(&mut self, label: &str) -> ()
{
println!("openHorizontalBox: {}", label);
}
fn open_vertical_box(&mut self, label: &str) -> ()
{
println!("openVerticalBox: {}", label);
}
fn close_box(&mut self) -> ()
{
println!("closeBox:");
}
// -- active widgets
fn add_button(&mut self, label: &str, param: ParamIndex) -> ()
{
println!("addButton: {}", label);
}
fn add_check_button(&mut self, label: &str, param: ParamIndex) -> ()
{
println!("addCheckButton: {}", label);
}
fn add_vertical_slider(&mut self, label: &str, param: ParamIndex, init: T, min: T, max: T, step: T) -> ()
{
println!("addVerticalSlider: {}", label);
}
fn add_horizontal_slider(&mut self, label: &str, param: ParamIndex , init: T, min: T, max: T, step: T) -> ()
{
println!("addHorizontalSlider: {}", label);
}
fn add_num_entry(&mut self, label: &str, param: ParamIndex, init: T, min: T, max: T, step: T) -> ()
{
println!("addNumEntry: {}", label);
}
// -- passive widgets
fn add_horizontal_bargraph(&mut self, label: &str, param: ParamIndex, min: T, max: T) -> ()
{
println!("addHorizontalBargraph: {}", label);
}
fn add_vertical_bargraph(&mut self, label: &str, param: ParamIndex, min: T, max: T) -> ()
{
println!("addVerticalBargraph: {}", label);
}
// -- metadata declarations
fn declare(&mut self, param: Option<ParamIndex>, key: &str, value: &str) -> ()
{
println!("declare: {} {}", key, value);
}
}
<<includeIntrinsic>>
<<includeclass>>
fn main() {
println!("Faust Rust DSP");
let mut dsp = Box::new(mydsp::new());
println!("get_num_inputs: {}", dsp.get_num_inputs());
println!("get_num_outputs: {}", dsp.get_num_outputs());
// Init DSP with a given SR
dsp.init(44100);
// Print UI
let mut printer = PrintUI::<f32>{ phantom: PhantomData };
dsp.build_user_interface(&mut printer);
// Print Meta
let mut meta = PrintMeta{};
dsp.metadata(&mut meta);
println!("get_sample_rate: {}", dsp.get_sample_rate());
// Has to be done in the audio thread taking adapted "native" (JACK/PortAudio allocated...) audio buffers
// dsp.compute(512, inputs, outputs);
}