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
|
/* sqosc.c Martin Peach 20060613 based on d_osc.c */
/* 20060707 using x-x^3/3 to smooth the ramp */
/* 20070328 added call to finite() to eliminate possible NaNs */
/* d_osc.c is: */
/* Copyright (c) 1997-1999 Miller Puckette.
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
/* sinusoidal oscillator and table lookup; see also tabosc4~ in d_array.c. */
#include "m_pd.h"
#include <math.h>
#define UNITBIT32 1572864. /* 3*2^19; bit 32 has place value 1 */
/* machine-dependent definitions. These ifdefs really
* should have been by CPU type and not by operating system! */
#ifdef IRIX
/* big-endian. Most significant byte is at low address in memory */
#define HIOFFSET 0 /* word offset to find MSB */
#define LOWOFFSET 1 /* word offset to find LSB */
#define int32 long /* a data type that has 32 bits */
#endif /* IRIX */
#ifdef _WIN32
/* little-endian; most significant byte is at highest address */
#define HIOFFSET 1
#define LOWOFFSET 0
#define int32 long
#include <float.h> /* for _finite */
#define finite _finite
#endif // _WIN32
#if defined(__FreeBSD__) || defined(__APPLE__)
#include <machine/endian.h>
#endif
#ifdef __APPLE__
#define __BYTE_ORDER BYTE_ORDER
#define __LITTLE_ENDIAN LITTLE_ENDIAN
#endif
#ifdef __linux__
#include <endian.h>
#endif
#if defined(__unix__) || defined(__APPLE__)
#if !defined(__BYTE_ORDER) || !defined(__LITTLE_ENDIAN)
#error No byte order defined
#endif
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define HIOFFSET 1
#define LOWOFFSET 0
#else
#define HIOFFSET 0 /* word offset to find MSB */
#define LOWOFFSET 1 /* word offset to find LSB */
#endif /* __BYTE_ORDER */
#include <sys/types.h>
#define int32 int32_t
#endif /* __unix__ or __APPLE__*/
union tabfudge
{
double tf_d;
int32 tf_i[2];
};
static t_class *sqosc_class;
/* COSTABSIZE is 512 in m_pd.h, we start with that... */
#define LOGSQOSCTABSIZE 9
#define SQOSCTABSIZE 512
#define HALFSQOSCTABSIZE 256
typedef struct _sqosc
{
t_object x_obj;
double x_phase;
t_float x_conv;
t_float x_f; /* frequency if scalar */
t_float x_pw; /* pulse width 0-1, default 0.5 */
t_float x_bw; /* bandwidth */
t_float x_slew; /* slew time in samples */
double x_dpw; /* pulse width in this pulse */
int x_pulse_ended; /* nonzero if pulse has finished */
} t_sqosc;
void sqosc_tilde_setup(void);
static void sqosc_ft1(t_sqosc *x, t_float f);
static void sqosc_pw(t_sqosc *x, t_float pw);
static void sqosc_dsp(t_sqosc *x, t_signal **sp);
static t_int *sqosc_perform(t_int *w);
static void *sqosc_new(t_floatarg f, t_floatarg pw, t_float bw);
static void *sqosc_new(t_floatarg f, t_floatarg pw, t_floatarg bw)
{
t_sqosc *x = (t_sqosc *)pd_new(sqosc_class);
x->x_f = f; /* the initial frequency in Hz */
outlet_new(&x->x_obj, gensym("signal"));
inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("ft1"));
inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("pw"));
post("sqosc_new frequency %f, pulsewidth %f bandwidth %f", f, pw, bw);
x->x_phase = 0;
x->x_conv = 0;
if ((pw <= 0)||(pw >= 1))
{
post("sqosc: second argument (pulse width) must be greater than 0 and less than 1, using 0.5");
x->x_pw = 0.5 * SQOSCTABSIZE;
}
else x->x_pw = pw * SQOSCTABSIZE;
if (bw < 0)
{
post("sqosc: third argument (bandwidth) must be greater than 0, using 10000");
x->x_bw = 10000;
}
else x->x_bw = bw;
x->x_slew = HALFSQOSCTABSIZE/x->x_bw;/* slew = time of half bandwidth cycle */
x->x_dpw = x->x_pw; /* pulse width in this pulse */
x->x_pulse_ended = 1; /* nonzero if pulse has finished */
return (x);
}
/*
This is corrected from Chun Lee's explanation in an email at:
http://music.columbia.edu/pipermail/music-dsp/2004-November/028814.html
1-> a double variable UNITBIT32 is assigned to 1572864. This is what it
looks like in memory in a little endian machine:
byte 7 byte 6 byte 5 byte 4 byte 3 byte 2 byte 1 byte 0
00000000 00000000 00000000 00000000 00000000 00000000 0001 1100 1000001 0
|<------fraction------------------>|<----1572864--------->|exponent |sign|
The reason for 1572864 (1.5 X 2^20) is that its representation in IEEE754 format (double)
has 51 zeros to the right of a placeholding 1 bit, which can then be used as
a wide fixed-point register with the binary point at bit 32, so the lower 32 bits
can be used as a fractional accumulator with 32-bit precision.
Adding 1 to INITBIT32 adds a 1 at bit 32, with no change in exponent,
so the lower 32 bits act as a fraction of one. The 31 zero bits in the integer part
can be set as high as 2147483647 (31 1s) without affecting the precision.
The upper 32 bits are 1094189056, or 01000001 00111000 00000000 00000000 in binary.
The sign bit is zero, or positive. The upper bit of the exponent is one, meaning
the number is normalized, or full precision.The exponent is 1043 minus the bias
of 1023, or 20.
This is the representation of the number 1.5 X 2^20 = 1572864:
IEEE Standard 754 Double Precision Storage Format (double):
63 62 52 51 32 31 0
+--------+----------------+-------------------+------------------------------+
| s 1bit | e[62:52] 11bit | f[51:32] 20bit | f[31:0] 32bit |
+--------+----------------+-------------------+------------------------------+
B0-------------->B1---------->B2----->B3----->B4----->B5----->B6----->B7----->
0 10000010011 1000000000000000000000000000000000000000000000000000
2-> there is the tabfudge like:
Union tabfudge
{
double tf_d;
int32 tf_i[2];
}
In dsp_perfrom:
Union tabfudge tf;
tf.tf_d = UNITBIT32;
3-> the phase is accumulated into tf_d plus the UNITBIT32
Double dphase = x_phase + UNITBIT32;
4-> byte 0 to byte 3 is stored as a separate variable as:
int normhipart = tf.tf_I[HIOFFSET]; //where HIOFFSET is used to find MSB
5-> in the actual dsp block, although the phase is accumulated into
tf.tf_d, bytes 0 to 3 of tf.tf_d are constantly forced to be a
constant by:
tf.tf_i[HIOFFSET] = normhipart;
6-> because of this, to get the fraction part out of the tf.tf_d, simply do:
tf.tf_d - UNITBIT32;
7-> mission accomplished!!!!!
*/
static t_int *sqosc_perform(t_int *w)
{
t_sqosc *x = (t_sqosc *)(w[1]);
t_float *in = (t_float *)(w[2]);
t_float *out = (t_float *)(w[3]);
t_float sample;
int n = (int)(w[4]);
t_float f1, f2, frac;
int index;
double dphase = x->x_phase + UNITBIT32;
int normhipart;
union tabfudge tf;
t_float conv = x->x_conv;
double lastin, slewindex;
static double twothirds = 2.0/3.0;
static double onethird = 1.0/3.0;
tf.tf_d = UNITBIT32; /* set the phase accumulator to (1.5 X 2^20) making it effectively fixed-point */
normhipart = tf.tf_i[HIOFFSET]; /* save the sign, exponent, and integer part of a fixed accumulator */
tf.tf_d = dphase; /* the current phase plus the "frame" */
lastin = *in++; /* latest frequency */
if (lastin < 0) lastin = -lastin;/* negative frequency is the same as positive here */
if (lastin > x->x_bw) lastin = x->x_bw;/* limit frequency to bandwidth */
slewindex = x->x_slew*lastin;
dphase += lastin * conv; /* new phase is old phase + (frequency * table period) */
index = tf.tf_i[HIOFFSET] & (SQOSCTABSIZE-1);
tf.tf_i[HIOFFSET] = normhipart; /* zero the non-fractional part of the phase */
frac = tf.tf_d - UNITBIT32; /* extract the fractional part of the phase */
while (--n)
{
tf.tf_d = dphase;
if (index <= slewindex)
{ /* rising phase */
if(x->x_pulse_ended)
{/* set pw for this pulse once only*/
if(x->x_pw < slewindex)x->x_dpw = slewindex;
else if (x->x_pw > SQOSCTABSIZE-slewindex)x->x_dpw = SQOSCTABSIZE-slewindex;
else x->x_dpw = x->x_pw;
x->x_pulse_ended = 0;
}
f1 = 1.0-2.0*(slewindex-index)/slewindex;/* a ramp from -1 to +1 */
f1 = f1 - pow(f1, 3.0)*onethird;/* smooth the ramp */
}
else if (index < x->x_dpw) f1 = twothirds; /* risen */
else if (index <= slewindex+x->x_dpw)
{ /* falling phase */
f1 = -1.0+2.0*(slewindex-index+x->x_dpw)/slewindex;/* a ramp from +1 to -1 */
f1 = f1 - pow(f1, 3.0)*onethird;/* smooth the ramp */
x->x_pulse_ended = 1;
}
else
{ /* fallen */
f1 = -twothirds;
}
lastin = *in++;
if (lastin < 0) lastin = -lastin;/* negative frequency is the same as positive here */
if (lastin > x->x_bw) lastin = x->x_bw;/* limit frequency to bandwidth */
slewindex = x->x_slew*lastin;
dphase += lastin * conv; /* next phase */
if (index+1 <= slewindex)
{
f2 = 1.0-2.0*(slewindex-index-1)/slewindex;
f2 = f2 - pow(f2, 3.0)*onethird;
}
else if (index+1 < x->x_dpw) f2 = twothirds;
else if (index+1 <= slewindex+x->x_dpw)
{
f2 = -1.0+2.0*(slewindex-index-1+x->x_dpw)/slewindex;
f2 = f2 - pow(f2, 3.0)*onethird;
}
else f2 = -twothirds;
sample = f1 + frac * (f2 - f1); /* output first sample plus fraction of second sample (linear interpolation) */
*out++ = sample;
index = tf.tf_i[HIOFFSET] & (SQOSCTABSIZE-1);
tf.tf_i[HIOFFSET] = normhipart; /* zero the non-fractional part */
frac = tf.tf_d - UNITBIT32; /* get next fractional part */
}
if (index <= slewindex)
{
if(x->x_pulse_ended)
{/* set pw for this pulse once only*/
if(x->x_pw < slewindex)x->x_dpw = slewindex;
else if (x->x_pw > SQOSCTABSIZE-slewindex)x->x_dpw = SQOSCTABSIZE-slewindex;
else x->x_dpw = x->x_pw;
x->x_pulse_ended = 0;
}
f1 = 1.0-2.0*(slewindex-index)/slewindex;
f1 = f1 - pow(f1, 3.0)*onethird;
}
else if (index < x->x_dpw) f1 = twothirds; /* risen */
else if (index <= slewindex+x->x_dpw)
{ /* falling phase */
f1 = -1.0+2.0*(slewindex-index+x->x_dpw)/slewindex;
f1 = f1 - pow(f1, 3.0)*onethird;
x->x_pulse_ended = 1;
}
else
{ /* fallen */
f1 = -twothirds;
}
if (index+1 <= slewindex)
{
f2 = 1.0-2.0*(slewindex-index-1)/slewindex;
f2 = f2 - pow(f2, 3.0)*onethird;
}
else if (index+1 < x->x_dpw) f2 = twothirds;
else if (index+1 <= slewindex+x->x_dpw)
{
f2 = -1.0+2.0*(slewindex-index-1+x->x_dpw)/slewindex;
f2 = f2 - pow(f2, 3.0)*onethird;
}
else f2 = -twothirds;
sample = f1 + frac * (f2 - f1); /* the final sample */
if (finite(sample))*out++ = sample;
else *out++ = 0.0;
tf.tf_d = UNITBIT32 * SQOSCTABSIZE; /* this just changes the exponent if the table size is a power of 2 */
normhipart = tf.tf_i[HIOFFSET]; /* ...so we get more integer digits but fewer fractional ones */
tf.tf_d = dphase + (UNITBIT32 * SQOSCTABSIZE - UNITBIT32); /* subtract one UNITBIT32 we added at the beginning */
tf.tf_i[HIOFFSET] = normhipart; /* wrap any overflow to the table size */
x->x_phase = tf.tf_d - UNITBIT32 * SQOSCTABSIZE; /* extract just the phase */
return (w+5);
}
static void sqosc_dsp(t_sqosc *x, t_signal **sp)
{
x->x_conv = SQOSCTABSIZE/sp[0]->s_sr;
/* conv = table period = (samples/cycle)/(samples/sec) = sec/cycle = 0.011610sec for 512/44100 */
dsp_add(sqosc_perform, 4, x, sp[0]->s_vec, sp[1]->s_vec, sp[0]->s_n);
}
static void sqosc_ft1(t_sqosc *x, t_float f)
{
x->x_phase = SQOSCTABSIZE * f;
}
static void sqosc_pw(t_sqosc *x, t_float pw)
{
if ((pw <= 0)||(pw >= 1)) return;
x->x_pw = pw * SQOSCTABSIZE;
}
void sqosc_tilde_setup(void)
{
sqosc_class = class_new(gensym("sqosc~"), (t_newmethod)sqosc_new, 0,
sizeof(t_sqosc), 0, A_DEFFLOAT, A_DEFFLOAT, A_DEFFLOAT, 0);
CLASS_MAINSIGNALIN(sqosc_class, t_sqosc, x_f);/* x_f is used when no signal is input */
class_addmethod(sqosc_class, (t_method)sqosc_dsp, gensym("dsp"), 0);
class_addmethod(sqosc_class, (t_method)sqosc_ft1, gensym("ft1"), A_FLOAT, 0);
class_addmethod(sqosc_class, (t_method)sqosc_pw, gensym("pw"), A_FLOAT, 0);
}
/* end of sqosc.c */
|