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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
#include "MSPd.h"
#if __MSP__
void *expflam_class;
#endif
#if __PD__
static t_class *expflam_class;
#endif
#define OBJECT_NAME "expflam~"
#define MAXFLAMS (64)
#define MAXATTACKS (128)
#define STOPGAIN (.001)
typedef struct
{
int attack_count; // number of triggers per flam event
float *attack_times; // trigger times in seconds
int *attack_points; // trigger times in samples
int fdex; // current flam
float gainatten; // attenuation factor
float amp; // current amp
int atks;// number of attacks per flam
long counter; // internal clock
short active; // flag that flam is turned on
} t_flam;
typedef struct _expflam
{
#if __MSP__
t_pxobject x_obj;
#endif
#if __PD__
t_object x_obj;
float x_f;
#endif
t_flam *flams; // contain flams
float start_delay; // initial flam delay
float end_delay;// end delay
float atten; // attenuation factor
float slope;// slope of curve
int atks;// number of attacks per flam
float sr;
float *trigvec; // hold input vector (to protect from memory sharing)
float *bypvec; // ditto for flamgate vector
short flamall; // flag to put a flam on everything
short bypass; // flag to copy input to output without flam
short flamgate_connected; // flag that a flamgate logical signal is connected to inlet 2
} t_expflam;
void *expflam_new(void);
t_int *expflam_perform(t_int *w);
void expflam_dsp(t_expflam *x, t_signal **sp, short *count);
void expflam_setflam(t_expflam *x, t_symbol *msg, short argc, t_atom *argv);
void expflam_free(t_expflam *x);
void expflam_assist(t_expflam *x, void *b, long msg, long arg, char *dst);
void expflam_flamall(t_expflam *x, t_floatarg tog);
void expflam_bypass(t_expflam *x, t_floatarg tog);
#if __MSP__
void main(void)
{
setup((t_messlist **)&expflam_class, (method)expflam_new, (method)expflam_free, (short)sizeof(t_expflam), 0, 0);
addmess((method)expflam_dsp, "dsp", A_CANT, 0);
addmess((method)expflam_assist, "assist", A_CANT, 0);
addmess((method)expflam_setflam, "setflam", A_GIMME, 0);
addmess((method)expflam_flamall, "flamall", A_FLOAT, 0);
addmess((method)expflam_bypass, "bypass", A_FLOAT, 0)
post("%s %s",OBJECT_NAME, LYONPOTPOURRI_MSG);
dsp_initclass();
}
#endif
#if __PD__
void expflam_tilde_setup(void)
{
expflam_class = class_new(gensym("expflam~"),(t_newmethod)expflam_new,
(t_method)expflam_free, sizeof(t_expflam), 0, A_GIMME,0);
CLASS_MAINSIGNALIN(expflam_class,t_expflam, x_f );
class_addmethod(expflam_class,(t_method)expflam_dsp,gensym("dsp"),A_CANT,0);
class_addmethod(expflam_class,(t_method)expflam_assist,gensym("assist"),A_CANT,0);
class_addmethod(expflam_class,(t_method)expflam_setflam,gensym("setflam"),A_GIMME,0);
class_addmethod(expflam_class,(t_method)expflam_flamall,gensym("flamall"),A_FLOAT,0);
class_addmethod(expflam_class,(t_method)expflam_bypass,gensym("bypass"),A_FLOAT,0);
post("%s %s",OBJECT_NAME, LYONPOTPOURRI_MSG);
}
#endif
void expflam_flamall(t_expflam *x, t_floatarg tog)
{
x->flamall = (short) tog;
}
void expflam_bypass(t_expflam *x, t_floatarg tog)
{
x->bypass = (short) tog;
}
void expflam_assist(t_expflam *x, void *b, long msg, long arg, char *dst)
{
if (msg==1) {
switch (arg) {
case 0: sprintf(dst,"(signal) Trigger Click"); break;
case 1: sprintf(dst,"(signal) Flam Gate"); break;
}
} else if (msg==2) {
sprintf(dst,"(signal) Flam Clicks");
}
}
void *expflam_new(void)
{
int i;
#if __MSP__
t_expflam *x = (t_expflam *)newobject(expflam_class);
dsp_setup((t_pxobject *)x,2);
outlet_new((t_pxobject *)x, "signal");
#endif
#if __PD__
t_expflam *x = (t_expflam *)pd_new(expflam_class);
inlet_new(&x->x_obj, &x->x_obj.ob_pd,gensym("signal"), gensym("signal"));
outlet_new(&x->x_obj, gensym("signal"));
#endif
x->flams = (t_flam *) calloc(MAXFLAMS, sizeof(t_flam));
for(i = 0; i < MAXFLAMS; i++){
x->flams[i].attack_times = (float *) calloc(MAXATTACKS, sizeof(float));
x->flams[i].attack_points = (int *) calloc(MAXATTACKS, sizeof(int));
}
x->trigvec = malloc(8192 * sizeof(float)); // maximum vector size
x->bypvec = malloc(8192 * sizeof(float)); // maximum vector size
x->sr = sys_getsr();
x->start_delay = .025;
x->end_delay = 0.1;
x->slope = -3.0;
x->atks = 8;
x->atten = 0.8;
x->bypass = 0;
x->flamall = 0;
return (x);
}
void expflam_setflam(t_expflam *x, t_symbol *msg, short argc, t_atom *argv)
{
if( argc != 5 ){
error("%s: setflam format: startdelay enddelay attacks slope gainatten",OBJECT_NAME);
return;
}
x->start_delay = atom_getfloatarg(0,argc,argv) * 0.001;
x->end_delay = atom_getfloatarg(1,argc,argv) * 0.001;
x->atks = (int) atom_getfloatarg(2,argc,argv);
x->slope = atom_getfloatarg(3,argc,argv);
x->atten = atom_getfloatarg(4,argc,argv);
// x->flamgate = 0;
if(x->slope == 0)
x->slope = .0001;
if(x->start_delay <= 0)
x->start_delay = .00001;
if(x->end_delay <= 0)
x->end_delay = .00001;
if(x->atks < 2)
x->atks = 2;
if(x->atks > MAXATTACKS){
post("%s: exceeded maximum of %d attacks",OBJECT_NAME, MAXATTACKS);
x->atks = MAXATTACKS;
}
}
void expflam_free(t_expflam *x)
{
int i;
#if __MSP__
dsp_free((t_pxobject *) x);
#endif
free(x->trigvec);
free(x->bypvec);
for(i = 0; i < MAXFLAMS; i++){
free(x->flams[i].attack_times);
free(x->flams[i].attack_points);
}
free(x->flams);
}
t_int *expflam_perform(t_int *w)
{
int i,j,k;
t_expflam *x = (t_expflam *) (w[1]);
float *in_vec = (t_float *)(w[2]);
float *in2_vec = (t_float *)(w[3]);
float *out_vec = (t_float *)(w[4]);
int n = w[5];
float *trigvec = x->trigvec;
float *flamgate_vec = x->bypvec;
t_flam *flams = x->flams;
int atks = x->atks;
float atten = x->atten;
float slope = x->slope;
float start_delay = x->start_delay;
float end_delay = x->end_delay;
float sr = x->sr;
short flamgate_connected = x->flamgate_connected;
short flamall = x->flamall;
/* in flamgate mode copy input to output and return */
if(x->bypass){
memcpy( (void *)out_vec, (void *)in_vec, n * sizeof(float) );
return (w+6);
}
/* copy input vectors */
memcpy( (void *)flamgate_vec, (void *)in2_vec, n * sizeof(float) );// the order of these mcopies matters
memcpy( (void *)trigvec, (void *)in_vec, n * sizeof(float) );
memcpy( (void *)out_vec, (void *)in_vec, n * sizeof(float) );// copy triggers to output for a start
// memset( (void *)out_vec, 0, n * sizeof(float) ); // zero output vector
/* look for activation triggers */
for(i = 0; i < n; i++){
if(trigvec[i] && (flamgate_vec[i] || ! flamgate_connected || flamall ) ){
// post("triggered with t %f and flamgate %f",trigvec[i],flamgate_vec[i]);
j = 0;
while(flams[j].active && j < MAXFLAMS){
++j;
}
if(j >= MAXFLAMS){
post("too many flams");
}
else {
// post("inserting flam at location %d",j);
flams[j].active = 1;
flams[j].attack_times[0] = 0.0;
flams[j].attack_points[0] = i;
flams[j].gainatten = atten;
flams[j].amp = trigvec[i];
flams[j].counter = 0;
flams[j].fdex = 0;
flams[j].atks = atks;
for(k = 1; k < atks; k++){
flams[j].attack_times[k] = start_delay + (end_delay - start_delay) * ((1.0 - exp((float)k * slope/((float)atks-1.0)))/(1.0-exp(slope)));
flams[j].attack_times[k] += flams[j].attack_times[k - 1];
flams[j].attack_points[k] = flams[j].attack_times[k] * sr + i;
}
}
}
}
/* now iterate through active flams */
for( i = 0; i < n; i++){
for(j = 0; j < MAXFLAMS; j++){
if(flams[j].active){
if(flams[j].counter >= flams[j].attack_points[flams[j].fdex]){
out_vec[i] += flams[j].amp;
flams[j].amp *= flams[j].gainatten;
if( flams[j].amp <= STOPGAIN ){
flams[j].active = 0;
}
flams[j].fdex++;
if(flams[j].fdex >= flams[j].atks){
flams[j].active = 0;
}
}
flams[j].counter++;
}
}
}
return (w+6);
}
void expflam_dsp(t_expflam *x, t_signal **sp, short *count)
{
#if __MSP__
x->flamgate_connected = count[1];
#endif
#if __PD__
x->flamgate_connected = 1;
#endif
// post("flamgate connection status %d",x->flamgate_connected);
dsp_add(expflam_perform, 5, x,
sp[0]->s_vec,
sp[1]->s_vec,
sp[2]->s_vec,
sp[0]->s_n
);
}
|