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
|
/* Copyright (C) 2007 Gabriel Maldonado
Csound 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 "csoundCore.h"
#include "interlocks.h"
/* (Shouldn't there be global decl's for these?) */
#define INCR (0.001f)
/* -------------------------------------------------------------------- */
typedef struct {
OPDS h;
MYFLT *xfn, *outargs[VARGMAX];
int32_t nargs;
int64_t pfn;
MYFLT *ftable;
} MTABLE1;
static int32_t mtable1_set(CSOUND *csound, MTABLE1 *p) /* mtab by G.Maldonado */
{
FUNC *ftp;
if (UNLIKELY((ftp = csound->FTnp2Find(csound, p->xfn)) == NULL))
return csound->InitError(csound, Str("vtable1: incorrect table number"));
p->ftable = ftp->ftable;
p->nargs = p->INOCOUNT-1;
p->pfn = (int64_t) *p->xfn;
return OK;
}
static int32_t mtable1_k(CSOUND *csound, MTABLE1 *p)
{
int32_t j, nargs = p->nargs;
MYFLT **out = p->outargs;
MYFLT *table;
if (p->pfn != (int64_t)*p->xfn) {
FUNC *ftp;
if (UNLIKELY( (ftp = csound->FTFindP(csound, p->xfn) ) == NULL))
return csound->PerfError(csound, &(p->h),
Str("vtable1: incorrect table number"));
p->pfn = (int64_t)*p->xfn;
p->ftable = ftp->ftable;
}
table= p->ftable;
for (j=0; j < nargs; j++)
*out[j] = table[j];
return OK;
}
/* -------------------------------------------------------------------- */
typedef struct {
OPDS h;
MYFLT *kstartChan, *argums[VARGMAX];
int32_t numChans, narg;
} INRANGE;
static int32_t inRange_i(CSOUND *csound, INRANGE *p)
{
p->narg = p->INOCOUNT-1;
if (UNLIKELY(!csound->oparms->sfread))
return csound->InitError(csound, Str("inrg: audio input is not enabled"));
p->numChans = csound->GetNchnls(csound);
return OK;
}
static int32_t inRange(CSOUND *csound, INRANGE *p)
{
uint32_t offset = p->h.insdshead->ksmps_offset;
uint32_t early = p->h.insdshead->ksmps_no_end;
uint32_t j, nsmps = CS_KSMPS;
int32_t i;
MYFLT *ara[VARGMAX];
int32_t startChan = (int32_t) *p->kstartChan -1;
MYFLT *sp = csound->spin + startChan;
int32_t narg = p->narg, numchans = p->numChans;
if (UNLIKELY(startChan < 0))
return csound->PerfError(csound, &(p->h),
Str("inrg: channel number cannot be < 1 "
"(1 is the first channel)"));
if (UNLIKELY(early)) nsmps -= early;
for (i = 0; i < narg; i++) {
ara[i] = p->argums[i];
if (UNLIKELY(offset)) memset(ara[i], '\0', offset*sizeof(MYFLT));
if (UNLIKELY(early)) memset(&ara[i][nsmps], '\0', early*sizeof(MYFLT));
ara[i] += offset;
}
for (j=offset; j<nsmps; j++) {
for (i=0; i<narg; i++) {
*ara[i]++ = sp[i];
}
sp += numchans;
}
return OK;
}
#include "Opcodes/uggab.h"
static int32_t lposc_set(CSOUND *csound, LPOSC *p)
{
FUNC *ftp;
MYFLT loop, end, looplength;
if ((ftp = csound->FTnp2Find(csound, p->ift)) == NULL)
return csound->InitError(csound, Str("invalid function"));
if (UNLIKELY(!(p->fsr=ftp->gen01args.sample_rate))){
csound->Message(csound,
Str("lposc: no sample rate stored in function;"
" assuming=sr\n"));
p->fsr=CS_ESR;
}
p->ftp = ftp;
p->tablen = ftp->flen;
/* changed from
p->phs = *p->iphs * p->tablen; */
if ((loop = *p->kloop) < 0) loop=FL(0.0);
if ((end = *p->kend) > p->tablen || end <=0 ) end = (MYFLT)p->tablen;
looplength = end - loop;
if (*p->iphs >= 0)
p->phs = *p->iphs;
while (p->phs >= end)
p->phs -= looplength;
return OK;
}
static int32_t lposca(CSOUND *csound, LPOSC *p)
{
double *phs= &p->phs;
double si= *p->freq * (p->fsr/CS_ESR);
MYFLT *out = p->out, *amp=p->amp;
MYFLT *ft = p->ftp->ftable, *curr_samp;
MYFLT fract;
uint32_t offset = p->h.insdshead->ksmps_offset;
uint32_t early = p->h.insdshead->ksmps_no_end;
uint32_t n, nsmps = CS_KSMPS;
int32 loop, end, looplength /* = p->looplength */ ;
if ((loop = (int64_t) *p->kloop) < 0) loop=0;/* gab */
else if (loop > p->tablen-3) loop = p->tablen-3;
if ((end = (int64_t) *p->kend) > p->tablen-1 ) end = p->tablen - 1;
else if (end <= 2) end = 2;
if (end < loop+2) end = loop + 2;
looplength = end - loop;
if (UNLIKELY(offset)) memset(out, '\0', offset*sizeof(MYFLT));
if (UNLIKELY(early)) {
nsmps -= early;
memset(&out[nsmps], '\0', early*sizeof(MYFLT));
}
for (n=offset; n<nsmps; n++) {
curr_samp= ft + (int64_t)*phs;
fract= (MYFLT)(*phs - (int64_t)*phs);
out[n] = amp[n] * (*curr_samp +(*(curr_samp+1)-*curr_samp)*fract);
*phs += si;
while (*phs >= end) *phs -= looplength;
while (*phs < loop) *phs += looplength;
}
return OK;
}
/* -------------------------------------------------------------------- */
typedef struct {
OPDS h;
MYFLT *out1, *out2, *amp, *freq, *kloop, *kend, *ift, *iphs;
int64_t tablen;
MYFLT fsr;
MYFLT *ft; /*table */
double phs, fsrUPsr /* , looplength */;
int64_t phs_int;
} LPOSC_ST;
static int32_t lposc_stereo_set(CSOUND *csound, LPOSC_ST *p)
{
FUNC *ftp;
double loop, end, looplength, fsr;
if (UNLIKELY((ftp = csound->FTnp2Find(csound, p->ift)) == NULL))
return csound->InitError(csound, Str("invalid function"));
if (UNLIKELY(!(fsr = ftp->gen01args.sample_rate))) {
csound->Message(csound, Str("lposcil: no sample rate stored in function;"
" assuming=sr\n"));
p->fsr=CS_ESR;
}
p->fsrUPsr = fsr/CS_ESR;
p->ft = ftp->ftable;
p->tablen = ftp->flen/2;
/* changed from
p->phs = *p->iphs * p->tablen; */
if ((loop = *p->kloop) < 0) loop=0;/* gab */
else if (loop > p->tablen-3) loop = p->tablen-3;
if ((end = *p->kend) > p->tablen-1 ) end = p->tablen - 1;
else if (end <= 2) end = 2;
if (end < loop+2) end = loop + 2;
looplength = end - loop;
if (*p->iphs >= 0)
p->phs_int = (int64_t) (p->phs = *p->iphs);
while (p->phs >= end)
p->phs_int = (int64_t) (p->phs -= looplength);
return OK;
}
static int32_t lposca_stereo(CSOUND *csound, LPOSC_ST *p) /* stereo lposcinta */
{
IGN(csound);
double *phs= &p->phs, si= *p->freq * p->fsrUPsr;
MYFLT *out1 = p->out1, *out2 = p->out2, *amp=p->amp;
MYFLT *ft = p->ft;
uint32_t offset = p->h.insdshead->ksmps_offset;
uint32_t early = p->h.insdshead->ksmps_no_end;
uint32_t n, nsmps = CS_KSMPS;
int32 loop, end, looplength /* = p->looplength */ ;
if ((loop = (int64_t) *p->kloop) < 0) loop=0;/* gab */
else if (loop > p->tablen-3) loop = p->tablen-3;
if ((end = (int64_t) *p->kend) > p->tablen-1 ) end = p->tablen - 1;
else if (end <= 2) end = 2;
if (end < loop+2) end = loop + 2;
looplength = end - loop;
if (UNLIKELY(offset)) {
memset(out1, '\0', offset*sizeof(MYFLT));
memset(out2, '\0', offset*sizeof(MYFLT));
}
if (UNLIKELY(early)) {
nsmps -= early;
memset(&out1[nsmps], '\0', early*sizeof(MYFLT));
memset(&out2[nsmps], '\0', early*sizeof(MYFLT));
}
for (n=offset; n<nsmps; n++) {
double fract;
MYFLT *curr_samp1 = ft + (int64_t) *phs * 2;
MYFLT *curr_samp2 = curr_samp1 +1;
fract= *phs - (int64_t) *phs;
out1[n] = amp[n] * (MYFLT)(*curr_samp1 +(*(curr_samp1+2)-*curr_samp1)*fract);
out2[n] = amp[n] * (MYFLT)(*curr_samp2 +(*(curr_samp2+2)-*curr_samp2)*fract);
*phs += si;
while (*phs >= end) *phs -= looplength;
while (*phs < loop) *phs += looplength;
}
return OK;
}
static int32_t lposca_stereo_no_trasp(CSOUND *csound, LPOSC_ST *p)
{ /* transposition is allowed only */
/*in integer values (twice, three times etc.) so it is faster */
IGN(csound);
int64_t *phs = &p->phs_int, si = (int64_t) *p->freq;
MYFLT *out1 = p->out1, *out2 = p->out2, *amp=p->amp;
MYFLT *ft = p->ft;
uint32_t offset = p->h.insdshead->ksmps_offset;
uint32_t early = p->h.insdshead->ksmps_no_end;
uint32_t n, nsmps = CS_KSMPS;
int64_t loop, end, looplength /* = p->looplength */ ;
if ((loop = (int64_t) *p->kloop) < 0) loop=0;/* gab */
else if (loop > p->tablen-3) loop = p->tablen-3;
if ((end = (int64_t) *p->kend) > p->tablen-1 ) end = p->tablen - 1;
else if (end <= 2) end = 2;
if (end < loop+2) end = loop + 2;
looplength = end - loop;
if (UNLIKELY(offset)) {
memset(out1, '\0', offset*sizeof(MYFLT));
memset(out2, '\0', offset*sizeof(MYFLT));
}
if (UNLIKELY(early)) {
nsmps -= early;
memset(&out1[nsmps], '\0', early*sizeof(MYFLT));
memset(&out2[nsmps], '\0', early*sizeof(MYFLT));
}
for (n=offset; n<nsmps; n++) {
MYFLT *curr_samp1 = ft + *phs * 2;
out1[n] = amp[n] * (MYFLT) *curr_samp1 ;
out2[n] = amp[n] * (MYFLT) *(curr_samp1+1) ;
*phs += si;
while (*phs >= end) *phs -= looplength;
while (*phs < loop) *phs += looplength;
}
return OK;
}
/* -------------------------------------------------------------------- */
#include "vectorial.h"
typedef struct { /* gab d5*/
OPDS h;
MYFLT *out, *ktrig, *min, *max;
MYFLT lastvalue;
} TRANGERAND;
static int32_t trRangeRand(CSOUND *csound, TRANGERAND *p)
{ /* gab d5*/
if (*p->ktrig)
*p->out = p->lastvalue = randGab * (*p->max - *p->min) + *p->min;
else
*p->out = p->lastvalue;
return OK;
}
/* -------------------------------------------------------------------- */
/* Note: this opcode has been left out because it is undocumented */
#if 0
typedef struct
{
OPDS h;
MYFLT *rcar, *rmod;
MYFLT *kfreq_max, *kfreq_min, *kband_max, *kband_min;
} DSH;
static int32_t dashow(CSOUND *csound, DSH *p)
{
MYFLT range = *p->kband_max - *p->kband_min;
if (range != FL(0.0))
*p->rmod = (*p->kfreq_max - *p->kfreq_min) / range;
else
*p->rmod = FL(0.0);
*p->rcar = (*p->kfreq_max - (*p->kband_max * *p->rmod));
if (*p->rmod <= FL(0.0)) *p->rmod = FABS (*p->rmod);
if (*p->rcar <= FL(0.0)) *p->rcar = FABS (*p->rcar);
return OK;
}
#endif
/* -------------------------------------------------------------------- */
#define S(x) sizeof(x)
static OENTRY localops[] = {
{ "vtable1k", S(MTABLE1), TR, 3, "", "kz",
(SUBR)mtable1_set, (SUBR)mtable1_k, (SUBR) NULL },
{ "trandom", S(TRANGERAND), 0, 2, "k", "kkk",
NULL, (SUBR)trRangeRand },
{ "lposcila", S(LPOSC), TR, 3, "a", "akkkio",
(SUBR)lposc_set, (SUBR)lposca},
{ "lposcilsa", S(LPOSC_ST), TR, 3, "aa","akkkio",
(SUBR)lposc_stereo_set, (SUBR)lposca_stereo},
{ "lposcilsa2", S(LPOSC_ST), TR, 3, "aa","akkkio",
(SUBR)lposc_stereo_set, (SUBR)lposca_stereo_no_trasp},
{ "inrg", S(INRANGE), WI,3, "", "ky", (SUBR)inRange_i, (SUBR)inRange }
};
int32_t newgabopc_init_(CSOUND *csound) {
return csound->AppendOpcodes(csound, &(localops[0]),
(int32_t) (sizeof(localops) / sizeof(OENTRY)));
}
int32_t hvs_init_(CSOUND *csound);
int32_t slidertable_init_(CSOUND *csound);
int32_t tabmorph_init_(CSOUND *csound);
int32_t rbatonopc_init_(CSOUND *csound);
int32_t newgabopc_ModuleInit(CSOUND *csound)
{
int32_t err = 0;
err |= hvs_init_(csound);
err |= newgabopc_init_(csound);
err |= slidertable_init_(csound);
err |= tabmorph_init_(csound);
/* err |= rbatonopc_init_(csound); */
return (err ? CSOUND_ERROR : CSOUND_SUCCESS);
}
/*
PUBLIC int32_t csoundModuleDestroy(CSOUND *csound)
{
return 0;
}
*/
|