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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
|
/*
fractalnoise.cpp:
Code generated with Faust 0.9.43
(c) Tito Latini, 2012
This file is part of Csound.
The Csound Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound 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. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
#include <OpcodeBase.hpp>
#define max(x, y) (((x) > (y)) ? (x) : (y))
#define min(x, y) (((x) < (y)) ? (x) : (y))
#define dv2_31 (FL(4.656612873077392578125e-10))
typedef struct opdata { OPDS h; } OPDATA;
inline int32_t lsr (int32_t x, int32_t n)
{
return int32_t(((uint32_t)x) >> n);
}
/* VECTOR INTRINSICS */
// inline void *aligned_calloc(size_t nmemb, size_t size)
//{
// return (void*)(((uint64_t)(calloc((nmemb*size)+15,
// (sizeof(char))))+15) & 0xfffffff0);
//}
/* ABSTRACT USER INTERFACE */
struct Meta {
void declare(const char *key, const char *value) {
IGN(key);
IGN(value);
}
};
class UserInterface {
bool fStopped;
public:
UserInterface() : fStopped(false) {}
virtual ~UserInterface() {}
virtual void addButton(char *label, MYFLT *zone) = 0;
virtual void addToggleButton(char *label, MYFLT *zone) = 0;
virtual void addCheckButton(char *label, MYFLT *zone) = 0;
virtual void addVerticalSlider(char *label, MYFLT *zone, MYFLT init,
MYFLT min, MYFLT max, MYFLT step) = 0;
virtual void addHorizontalSlider(char *label, MYFLT *zone, MYFLT init,
MYFLT min, MYFLT max, MYFLT step) = 0;
virtual void addNumEntry(char *label, MYFLT *zone, MYFLT init, MYFLT min,
MYFLT max, MYFLT step) = 0;
virtual void openFrameBox(char *label) = 0;
virtual void openTabBox(char *label) = 0;
virtual void openHorizontalBox(char *label) = 0;
virtual void openVerticalBox(char *label) = 0;
virtual void closeBox() = 0;
virtual void run() = 0;
void stop() { fStopped = true; }
bool stopped() { return fStopped; }
};
class csUI : public UserInterface {
private:
MYFLT *args[2];
int32_t ctrlCount;
void addZone(MYFLT *zone) { args[ctrlCount++] = zone; }
public:
csUI() : UserInterface(), ctrlCount(0) { args[0] = args[1] = NULL; };
virtual ~csUI(){};
virtual void addButton(char *label, MYFLT *zone) {
IGN(label);
addZone(zone);
;
}
virtual void addToggleButton(char *label, MYFLT *zone) {
IGN(label);
addZone(zone);
;
}
virtual void addCheckButton(char *label, MYFLT *zone) {
IGN(label);
addZone(zone);
;
}
virtual void addVerticalSlider(char *label, MYFLT *zone, MYFLT init,
MYFLT min, MYFLT max, MYFLT step) {
IGN(label);
IGN(init);
IGN(min);
IGN(max);
IGN(step);
addZone(zone);
;
}
virtual void addHorizontalSlider(char *label, MYFLT *zone, MYFLT init,
MYFLT min, MYFLT max, MYFLT step) {
IGN(label);
IGN(init);
IGN(min);
IGN(max);
IGN(step);
addZone(zone);
;
}
virtual void addNumEntry(char *label, MYFLT *zone, MYFLT init, MYFLT min,
MYFLT max, MYFLT step) {
IGN(label);
IGN(init);
IGN(min);
IGN(max);
IGN(step);
addZone(zone);
}
virtual void openFrameBox(char *) {}
virtual void openTabBox(char *) {}
virtual void openHorizontalBox(char *) {}
virtual void openVerticalBox(char *) {}
virtual void closeBox() {}
virtual void show() {}
virtual void run() {}
void updateCtrlZones(MYFLT *cs_amp, MYFLT *cs_beta) {
*args[0] = *cs_amp;
*args[1] = *cs_beta;
}
};
/* FAUST DSP */
/* abstract definition of a signal processor */
class dsp {
protected:
int32_t fSamplingFreq;
public:
dsp() { fSamplingFreq = -1; }
virtual ~dsp() {}
virtual int32_t getNumInputs() = 0;
virtual int32_t getNumOutputs() = 0;
virtual void buildUserInterface(UserInterface *userInterface) = 0;
virtual void init(int32_t samplingRate) = 0;
virtual void compute(CSOUND *csound, MYFLT *output, void *p) = 0;
};
/* FAUST generated code */
class mydsp : public dsp {
private:
int32_t iConst0;
MYFLT fConst1;
MYFLT fConst2;
int32_t iRec8[2];
MYFLT fConst3;
MYFLT fConst4;
MYFLT fConst5;
MYFLT fConst6;
MYFLT fConst7;
MYFLT fConst8;
MYFLT fRec7[3];
MYFLT fslider0;
MYFLT fConst9;
MYFLT fConst10;
MYFLT fConst11;
MYFLT fConst12;
MYFLT fConst13;
MYFLT fConst14;
MYFLT fRec6[3];
MYFLT fConst15;
MYFLT fConst16;
MYFLT fConst17;
MYFLT fConst18;
MYFLT fConst19;
MYFLT fConst20;
MYFLT fRec5[3];
MYFLT fConst21;
MYFLT fConst22;
MYFLT fConst23;
MYFLT fConst24;
MYFLT fConst25;
MYFLT fConst26;
MYFLT fRec4[3];
MYFLT fConst27;
MYFLT fConst28;
MYFLT fConst29;
MYFLT fConst30;
MYFLT fConst31;
MYFLT fConst32;
MYFLT fRec3[3];
MYFLT fConst33;
MYFLT fConst34;
MYFLT fConst35;
MYFLT fConst36;
MYFLT fConst37;
MYFLT fConst38;
MYFLT fRec2[3];
MYFLT fConst39;
MYFLT fConst40;
MYFLT fConst41;
MYFLT fConst42;
MYFLT fConst43;
MYFLT fConst44;
MYFLT fRec1[3];
MYFLT fRec0[2];
MYFLT fslider1;
public:
static void metadata(Meta *m) {
m->declare("name", "Fractal Noise");
m->declare("author", "Tito Latini");
m->declare("license", "GNU LGPL");
m->declare("copyright", "Tito Latini");
m->declare("version", "1.0");
m->declare("music.lib/name", "Music Library");
m->declare("music.lib/author", "GRAME");
m->declare("music.lib/copyright", "GRAME");
m->declare("music.lib/version", "1.0");
m->declare("music.lib/license", "LGPL");
m->declare("math.lib/name", "Math Library");
m->declare("math.lib/author", "GRAME");
m->declare("math.lib/copyright", "GRAME");
m->declare("math.lib/version", "1.0");
m->declare("math.lib/license", "LGPL");
}
virtual int32_t getNumInputs() { return 0; }
virtual int32_t getNumOutputs() { return 1; }
static void classInit(int32_t sr) { IGN(sr); }
virtual void instanceInit(int32_t samplingFreq) {
fSamplingFreq = samplingFreq;
iConst0 = min(192000, max(1, fSamplingFreq));
fConst1 = FL(67683.56194843161) / iConst0;
fConst2 = (-EXP(-fConst1));
for (int32_t i = 0; i < 2; i++)
iRec8[i] = 0;
fConst3 = FL(314.1592653589793) / iConst0;
fConst4 = EXP(-fConst3);
fConst5 = FL(461.1227396105972) / iConst0;
fConst6 = EXP(-fConst5);
fConst7 = -fConst6 - fConst4;
fConst8 = -fConst6 * -fConst4;
for (int32_t i = 0; i < 3; i++)
fRec7[i] = 0;
fslider0 = FL(1.75);
fConst9 = FL(676.8356194843168) / iConst0;
fConst10 = EXP(-fConst9);
fConst11 = FL(993.4588265796098) / iConst0;
fConst12 = EXP(-fConst11);
fConst13 = -fConst12 - fConst10;
fConst14 = -fConst12 * -fConst10;
for (int32_t i = 0; i < 3; i++)
fRec6[i] = 0;
fConst15 = FL(1458.1981380662319) / iConst0;
fConst16 = EXP(-fConst15);
fConst17 = FL(2140.3421591014803) / iConst0;
fConst18 = EXP(-fConst17);
fConst19 = -fConst18 - fConst16;
fConst20 = -fConst18 * -fConst16;
for (int32_t i = 0; i < 3; i++)
fRec5[i] = 0;
fConst21 = FL(3141.5926535897916) / iConst0;
fConst22 = EXP(-fConst21);
fConst23 = FL(4611.22739610597) / iConst0;
fConst24 = EXP(-fConst23);
fConst25 = -fConst24 - fConst22;
fConst26 = -fConst24 * -fConst22;
for (int32_t i = 0; i < 3; i++)
fRec4[i] = 0;
fConst27 = FL(6768.356194843165) / iConst0;
fConst28 = EXP(-fConst27);
fConst29 = FL(9934.588265796094) / iConst0;
fConst30 = EXP(-fConst29);
fConst31 = -fConst30 - fConst28;
fConst32 = -fConst30 * -fConst28;
for (int32_t i = 0; i < 3; i++)
fRec3[i] = 0;
fConst33 = FL(14581.981380662311) / iConst0;
fConst34 = EXP(-fConst33);
fConst35 = FL(21403.421591014794) / iConst0;
fConst36 = EXP(-fConst35);
fConst37 = -fConst36 - fConst34;
fConst38 = -fConst36 * -fConst34;
for (int32_t i = 0; i < 3; i++)
fRec2[i] = 0;
fConst39 = FL(31415.926535897903) / iConst0;
fConst40 = EXP(-fConst39);
fConst41 = FL(46112.27396105968f) / iConst0;
fConst42 = EXP(-fConst41);
fConst43 = -fConst42 - fConst40;
fConst44 = -fConst42 * -fConst40;
for (int32_t i = 0; i < 3; i++)
fRec1[i] = 0;
for (int32_t i = 0; i < 2; i++)
fRec0[i] = 0;
fslider1 = FL(1.0);
}
virtual void init(int32_t samplingFreq) {
classInit(samplingFreq);
instanceInit(samplingFreq);
}
virtual void buildUserInterface(UserInterface *userInterface) {
userInterface->openVerticalBox((char *)"fractalnoise");
userInterface->addVerticalSlider((char *)"amp", &fslider1, FL(1.0), FL(0.0),
FL(20.0), FL(0.01));
userInterface->addVerticalSlider((char *)"beta", &fslider0, FL(1.75),
FL(0.0), FL(10.0), FL(0.01));
userInterface->closeBox();
}
virtual void compute(CSOUND *csound, MYFLT *output, void *p) {
int32_t nn = ((OPDATA *)p)->h.insdshead->ksmps;
uint32_t offset = ((OPDATA *)p)->h.insdshead->ksmps_offset;
uint32_t early = ((OPDATA *)p)->h.insdshead->ksmps_no_end;
MYFLT fSlow0 = POWER(FL(10.0), (FL(0.08333333333333333) * fslider0));
MYFLT fSlow1 = EXP(-(fConst3 * fSlow0));
MYFLT fSlow2 = EXP(-(fConst5 * fSlow0));
MYFLT fSlow3 = -fSlow2 * -fSlow1;
MYFLT fSlow4 = -fSlow2 - fSlow1;
MYFLT fSlow5 = EXP(-(fConst9 * fSlow0));
MYFLT fSlow6 = EXP(-(fConst11 * fSlow0));
MYFLT fSlow7 = -fSlow6 * -fSlow5;
MYFLT fSlow8 = -fSlow6 - fSlow5;
MYFLT fSlow9 = EXP(-(fConst15 * fSlow0));
MYFLT fSlow10 = EXP(-(fConst17 * fSlow0));
MYFLT fSlow11 = -fSlow10 * -fSlow9;
MYFLT fSlow12 = -fSlow10 - fSlow9;
MYFLT fSlow13 = EXP(-(fConst21 * fSlow0));
MYFLT fSlow14 = EXP(-(fConst23 * fSlow0));
MYFLT fSlow15 = -fSlow14 * -fSlow13;
MYFLT fSlow16 = (FL(0.0) - (fSlow14 + fSlow13));
MYFLT fSlow17 = EXP(-(fConst27 * fSlow0));
MYFLT fSlow18 = EXP(-(fConst29 * fSlow0));
MYFLT fSlow19 = -fSlow18 * -fSlow17;
MYFLT fSlow20 = -fSlow18 - fSlow17;
MYFLT fSlow21 = EXP(-(fConst33 * fSlow0));
MYFLT fSlow22 = EXP(-(fConst35 * fSlow0));
MYFLT fSlow23 = -fSlow22 * -fSlow21;
MYFLT fSlow24 = -fSlow22 - fSlow21;
MYFLT fSlow25 = EXP(-(fConst39 * fSlow0));
MYFLT fSlow26 = EXP(-(fConst41 * fSlow0));
MYFLT fSlow27 = -fSlow26 * -fSlow25;
MYFLT fSlow28 = -fSlow26 - fSlow25;
MYFLT fSlow29 = (-EXP(-(fConst1 * fSlow0)));
MYFLT fSlow30 = fslider1;
MYFLT *output0 = output;
if (UNLIKELY(offset))
memset(output0, '\0', offset * sizeof(MYFLT));
if (UNLIKELY(early)) {
nn -= early;
memset(&output0[nn], '\0', early * sizeof(MYFLT));
}
for (int32_t i = offset; i < nn; i++) {
iRec8[0] = (csound->GetRandSeed(csound, 1) + (1103515245 * iRec8[1]));
fRec7[0] =
-((fConst8 * fRec7[2]) + (fConst7 * fRec7[1])) + (iRec8[0] * dv2_31);
fRec6[0] =
(0 - (((fConst14 * fRec6[2]) + (fConst13 * fRec6[1])) -
((fSlow4 * fRec7[1]) + (fRec7[0] + (fSlow3 * fRec7[2])))));
fRec5[0] =
(0 - (((fConst20 * fRec5[2]) + (fConst19 * fRec5[1])) -
((fSlow8 * fRec6[1]) + (fRec6[0] + (fSlow7 * fRec6[2])))));
fRec4[0] =
(0 - (((fConst26 * fRec4[2]) + (fConst25 * fRec4[1])) -
((fSlow12 * fRec5[1]) + (fRec5[0] + (fSlow11 * fRec5[2])))));
fRec3[0] =
(0 - (((fConst32 * fRec3[2]) + (fConst31 * fRec3[1])) -
((fSlow16 * fRec4[1]) + (fRec4[0] + (fSlow15 * fRec4[2])))));
fRec2[0] =
(0 - (((fConst38 * fRec2[2]) + (fConst37 * fRec2[1])) -
((fSlow20 * fRec3[1]) + (fRec3[0] + (fSlow19 * fRec3[2])))));
fRec1[0] =
(0 - (((fConst44 * fRec1[2]) + (fConst43 * fRec1[1])) -
((fSlow24 * fRec2[1]) + (fRec2[0] + (fSlow23 * fRec2[2])))));
fRec0[0] = (((fSlow28 * fRec1[1]) + (fRec1[0] + (fSlow27 * fRec1[2]))) -
(fConst2 * fRec0[1]));
output0[i] = (MYFLT)(fSlow30 * (fRec0[0] + (fSlow29 * fRec0[1])));
// post processing
fRec0[1] = fRec0[0];
fRec1[2] = fRec1[1];
fRec1[1] = fRec1[0];
fRec2[2] = fRec2[1];
fRec2[1] = fRec2[0];
fRec3[2] = fRec3[1];
fRec3[1] = fRec3[0];
fRec4[2] = fRec4[1];
fRec4[1] = fRec4[0];
fRec5[2] = fRec5[1];
fRec5[1] = fRec5[0];
fRec6[2] = fRec6[1];
fRec6[1] = fRec6[0];
fRec7[2] = fRec7[1];
fRec7[1] = fRec7[0];
iRec8[1] = iRec8[0];
}
}
};
// typedef struct mydsp FaustCode;
typedef struct {
OPDS h;
MYFLT *out, *kamp, *kbeta;
mydsp *faust;
csUI *cs_interface;
} FRACTALNOISE;
extern "C" {
int32_t fractalnoise_cleanup(CSOUND *csound, FRACTALNOISE *p) {
IGN(csound);
delete p->faust;
delete p->cs_interface;
p->faust = 0;
p->cs_interface = 0;
return OK;
}
int32_t fractalnoise_init(CSOUND *csound, FRACTALNOISE *p) {
p->faust = new mydsp;
p->cs_interface = new csUI;
p->faust->init((int32_t)csound->GetSr(csound));
p->faust->buildUserInterface(p->cs_interface);
csound->RegisterDeinitCallback(
csound, p, (int32_t (*)(CSOUND *, void *))fractalnoise_cleanup);
return OK;
}
int32_t fractalnoise_process(CSOUND *csound, FRACTALNOISE *p) {
p->cs_interface->updateCtrlZones(p->kamp, p->kbeta);
p->faust->compute(csound, p->out, p);
return OK;
}
static OENTRY localops[] = {{(char *)"fractalnoise", sizeof(FRACTALNOISE), 0, 3,
(char *)"a", (char *)"kk", (SUBR)fractalnoise_init,
(SUBR)fractalnoise_process},
{0, 0, 0, 0, 0, 0, 0, 0, 0}};
#ifndef INIT_STATIC_MODULES
PUBLIC int32_t csoundModuleCreate(CSOUND *csound) {
IGN(csound);
return OK;
}
#endif
PUBLIC int32_t csoundModuleInit_fractalnoise(CSOUND *csound) {
int32_t status = 0;
for (OENTRY *oentry = &localops[0]; oentry->opname; oentry++) {
status |= csound->AppendOpcode(csound, oentry->opname, oentry->dsblksiz,
oentry->flags, oentry->thread,
oentry->outypes, oentry->intypes,
(int32_t (*)(CSOUND *, void *))oentry->iopadr,
(int32_t (*)(CSOUND *, void *))oentry->kopadr,
(int32_t (*)(CSOUND *, void *))oentry->aopadr);
}
return status;
}
#ifndef INIT_STATIC_MODULES
PUBLIC int32_t csoundModuleInit(CSOUND *csound) {
return csoundModuleInit_fractalnoise(csound);
}
PUBLIC int32_t csoundModuleDestroy(CSOUND *csound) {
IGN(csound);
return OK;
}
#endif
}
|