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
use crate::internal_prelude::*;
#[derive(Clone, Debug, Eq, Ord, PartialEq, PartialOrd, Hash)]
pub struct FastSineBankGenerator(pub(crate) Handle);
#[derive(Debug, Copy, Clone)]
#[repr(transparent)]
pub struct SineBankWave(syz_SineBankWave);
impl SineBankWave {
pub fn new(frequency_mul: f64, phase: f64, gain: f64) -> SineBankWave {
SineBankWave(syz_SineBankWave {
frequency_mul,
phase,
gain,
})
}
}
impl FastSineBankGenerator {
pub fn new(
context: &Context,
initial_frequency: f64,
waves: &[SineBankWave],
) -> Result<FastSineBankGenerator> {
if waves.is_empty() {
return Err(Error::rust_error(
"Cannot build FastSineBankGenerator with no waves",
));
}
wrap_constructor(|ud, cb| {
let mut h = 0;
check_error(unsafe {
let cfg = syz_SineBankConfig {
initial_frequency,
wave_count: waves.len() as u64,
waves: waves.get_unchecked(0) as *const SineBankWave as *const syz_SineBankWave,
};
syz_createFastSineBankGenerator(
&mut h as *mut u64,
context.to_syz_handle(),
&cfg as *const syz_SineBankConfig,
null_mut(),
ud,
Some(cb),
)
})?;
Ok(FastSineBankGenerator(Handle::new(h)))
})
}
pub fn new_sine(context: &Context, initial_frequency: f64) -> Result<FastSineBankGenerator> {
wrap_constructor(|ud, cb| {
let mut h = 0;
check_error(unsafe {
syz_createFastSineBankGeneratorSine(
&mut h as *mut u64,
context.to_syz_handle(),
initial_frequency,
null_mut(),
ud,
Some(cb),
)
})?;
Ok(FastSineBankGenerator(Handle::new(h)))
})
}
pub fn new_square(
context: &Context,
initial_frequency: f64,
partials: u32,
) -> Result<FastSineBankGenerator> {
wrap_constructor(|ud, cb| {
let mut h = 0;
check_error(unsafe {
syz_createFastSineBankGeneratorSquare(
&mut h as *mut u64,
context.to_syz_handle(),
initial_frequency,
partials,
null_mut(),
ud,
Some(cb),
)
})?;
Ok(FastSineBankGenerator(Handle::new(h)))
})
}
pub fn new_triangle(
context: &Context,
initial_frequency: f64,
partials: u32,
) -> Result<FastSineBankGenerator> {
wrap_constructor(|ud, cb| {
let mut h = 0;
check_error(unsafe {
syz_createFastSineBankGeneratorTriangle(
&mut h as *mut u64,
context.to_syz_handle(),
initial_frequency,
partials,
null_mut(),
ud,
Some(cb),
)
})?;
Ok(FastSineBankGenerator(Handle::new(h)))
})
}
pub fn new_saw(
context: &Context,
initial_frequency: f64,
partials: u32,
) -> Result<FastSineBankGenerator> {
wrap_constructor(|ud, cb| {
let mut h = 0;
check_error(unsafe {
syz_createFastSineBankGeneratorSaw(
&mut h as *mut u64,
context.to_syz_handle(),
initial_frequency,
partials,
null_mut(),
ud,
Some(cb),
)
})?;
Ok(FastSineBankGenerator(Handle::new(h)))
})
}
generator_properties!();
double_p!(SYZ_P_FREQUENCY, frequency);
object_common!();
pausable_common!();
}
handle_traits!(FastSineBankGenerator);