You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

422 line
18KB

  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2017, TeensyAudio PSU Team
  3. *
  4. * Development of this audio library was sponsored by PJRC.COM, LLC.
  5. * Please support PJRC's efforts to develop open source
  6. * software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include <Arduino.h>
  27. #include "synth_wavetable.h"
  28. #include <dspinst.h>
  29. #include <SerialFlash.h>
  30. //#define TIME_TEST_ON
  31. //#define ENVELOPE_DEBUG
  32. // Performance testing macro generally unrelated to the wavetable object, but was used to
  33. // fine tune the performance of specific blocks of code in update(); usage is to specify a
  34. // display interval in ms, then place the code block to be tracked *IN* the macro parens as
  35. // the second argument
  36. #ifdef TIME_TEST_ON
  37. #define TIME_TEST(INTERVAL, CODE_BLOCK_TO_TEST) \
  38. static float MICROS_AVG = 0.0; \
  39. static int TEST_CUR_CNT = 0; \
  40. static int TEST_LST_CNT = 0; \
  41. static int NEXT_DISPLAY = 0; \
  42. static int TEST_TIME_ACC = 0; \
  43. int micros_start = micros(); \
  44. CODE_BLOCK_TO_TEST \
  45. int micros_end = micros(); \
  46. TEST_TIME_ACC += micros_end - micros_start; \
  47. ++TEST_CUR_CNT; \
  48. if (NEXT_DISPLAY < micros_end) { \
  49. MICROS_AVG += (TEST_TIME_ACC - TEST_CUR_CNT * MICROS_AVG) / (TEST_LST_CNT + TEST_CUR_CNT); \
  50. NEXT_DISPLAY = micros_end + INTERVAL*1000; \
  51. TEST_LST_CNT += TEST_CUR_CNT; \
  52. TEST_TIME_ACC = TEST_CUR_CNT = 0; \
  53. Serial.printf("avg: %f, n: %i\n", MICROS_AVG, TEST_LST_CNT); \
  54. }
  55. #else
  56. #define TIME_TEST(INTERVAL, CODE_BLOCK_TO_TEST) do { } while(0); \
  57. CODE_BLOCK_TO_TEST
  58. #endif
  59. // Debug code to track state variables for the volume envelope
  60. #ifdef ENVELOPE_DEBUG
  61. #define PRINT_ENV(NAME) Serial.printf("%14s-- env_mult:%06.4f%% of UNITY_GAIN env_incr:%06.4f%% of UNITY_GAIN env_count:%i\n", #NAME, float(env_mult)/float(UNITY_GAIN), float(env_incr)/float(UNITY_GAIN), env_count);
  62. #else
  63. #define PRINT_ENV(NAME) do { } while(0);
  64. #endif
  65. /**
  66. * @brief Stop playing waveform.
  67. *
  68. * Waveform does not immediately stop,
  69. * but fades out based on release time.
  70. *
  71. */
  72. void AudioSynthWavetable::stop(void) {
  73. cli();
  74. env_state = STATE_RELEASE;
  75. env_count = current_sample->RELEASE_COUNT;
  76. if (env_count == 0) env_count = 1;
  77. env_incr = -(env_mult) / (env_count * ENVELOPE_PERIOD);
  78. PRINT_ENV(STATE_RELEASE);
  79. sei();
  80. }
  81. /**
  82. * @brief Play waveform at defined frequency, amplitude.
  83. *
  84. * @param freq Frequency of note to playback, value between 1.0 and half of AUDIO_SAMPLE_RATE_EXACT
  85. * @param amp Amplitude scaling of note, value between 0-127, with 127 being base volume
  86. */
  87. void AudioSynthWavetable::playFrequency(float freq, int amp) {
  88. setState(freqToNote(freq), amp, freq);
  89. }
  90. /**
  91. * @brief Play sample at specified note, amplitude.
  92. *
  93. * @param note Midi note number to playback, value between 0-127
  94. * @param amp Amplitude scaling of playback, value between 0-127, with 127 being base volume
  95. */
  96. void AudioSynthWavetable::playNote(int note, int amp) {
  97. setState(note, amp, noteToFreq(note));
  98. }
  99. /**
  100. * @brief Initializes object state variables, sets freq/amp, and chooses appropriate sample
  101. *
  102. * @param note Midi note number to play, value between 0-127
  103. * @param amp the amplitude level at which playback should occur
  104. * @param freq exact frequency of the note to be played played
  105. */
  106. void AudioSynthWavetable::setState(int note, int amp, float freq) {
  107. cli();
  108. int i;
  109. env_state = STATE_IDLE;
  110. // note ranges calculated by sound font decoder
  111. for (i = 0; note > instrument->sample_note_ranges[i]; i++);
  112. current_sample = &instrument->samples[i];
  113. if (current_sample == NULL) {
  114. sei();
  115. return;
  116. }
  117. setFrequency(freq);
  118. vib_count = mod_count = tone_phase = env_incr = env_mult = 0;
  119. vib_phase = mod_phase = TRIANGLE_INITIAL_PHASE;
  120. env_count = current_sample->DELAY_COUNT;
  121. // linear scalar for amp with UINT16_MAX being no attenuation
  122. tone_amp = amp * (UINT16_MAX / 127);
  123. // scale relative to initial attenuation defined by soundfont file
  124. tone_amp = current_sample->INITIAL_ATTENUATION_SCALAR * tone_amp >> 16;
  125. env_state = STATE_DELAY;
  126. PRINT_ENV(STATE_DELAY);
  127. state_change = true;
  128. sei();
  129. }
  130. /**
  131. * @brief Set various integer offsets to values that will produce intended frequencies
  132. * @details the main integer offset, tone_incr, is used to step through the current sample's 16-bit PCM audio sample.
  133. * Specifically, the tone_incr is the rate at which the interpolation code in update() steps through uint32_t space.
  134. * The remaining offset variables represent a minimum and maximum offset allowed for tone_incr, which allows for low-frequency
  135. * variation in playback frequency (aka vibrato). Further details on implementation in update() and in sample_data.h.
  136. *
  137. * @param freq frequency of the generated output (between 0 and the board-specific sample rate)
  138. */
  139. void AudioSynthWavetable::setFrequency(float freq) {
  140. float tone_incr_temp = freq * current_sample->PER_HERTZ_PHASE_INCREMENT;
  141. tone_incr = tone_incr_temp;
  142. vib_pitch_offset_init = tone_incr_temp * current_sample->VIBRATO_PITCH_COEFFICIENT_INITIAL;
  143. vib_pitch_offset_scnd = tone_incr_temp * current_sample->VIBRATO_PITCH_COEFFICIENT_SECOND;
  144. mod_pitch_offset_init = tone_incr_temp * current_sample->MODULATION_PITCH_COEFFICIENT_INITIAL;
  145. mod_pitch_offset_scnd = tone_incr_temp * current_sample->MODULATION_PITCH_COEFFICIENT_SECOND;
  146. }
  147. /**
  148. * @brief Called by the AudioStream library to fill the audio output buffer.
  149. * The major parts are the interpoalation stage, and the volume envelope stage.
  150. * Further details on implementation included inline.
  151. *
  152. */
  153. void AudioSynthWavetable::update(void) {
  154. // exit if nothing to do
  155. if (env_state == STATE_IDLE || (current_sample->LOOP == false && tone_phase >= current_sample->MAX_PHASE)) {
  156. env_state = STATE_IDLE;
  157. return;
  158. }
  159. // else locally copy object state and continue
  160. this->state_change = false;
  161. const sample_data* s = (const sample_data*)current_sample;
  162. uint32_t tone_phase = this->tone_phase;
  163. uint32_t tone_incr = this->tone_incr;
  164. uint16_t tone_amp = this->tone_amp;
  165. envelopeStateEnum env_state = this->env_state;
  166. int32_t env_count = this->env_count;
  167. int32_t env_mult = this->env_mult;
  168. int32_t env_incr = this->env_incr;
  169. uint32_t vib_count = this->vib_count;
  170. uint32_t vib_phase = this->vib_phase;
  171. int32_t vib_pitch_offset_init = this->vib_pitch_offset_init;
  172. int32_t vib_pitch_offset_scnd = this->vib_pitch_offset_scnd;
  173. uint32_t mod_count = this->mod_count;
  174. int32_t mod_phase = this->mod_phase;
  175. int32_t mod_pitch_offset_init = this->mod_pitch_offset_init;
  176. int32_t mod_pitch_offset_scnd = this->mod_pitch_offset_scnd;
  177. audio_block_t* block;
  178. block = allocate();
  179. if (block == NULL) return;
  180. uint32_t* p, *end;
  181. uint32_t index, phase_scale;
  182. int32_t s1, s2;
  183. uint32_t tmp1, tmp2;
  184. // filling audio_block two samples at a time
  185. p = (uint32_t*)block->data;
  186. end = p + AUDIO_BLOCK_SAMPLES / 2;
  187. // Main loop to handle interpolation, vibrato (vibrato LFO and modulation LFO), and tremolo (modulation LFO only)
  188. // Virbrato and modulation offsets/multipliers are updated depending on the LFO_SMOOTHNESS, with max smoothness (7) being one
  189. // update per loop interation, and minimum smoothness (1) being once per loop. Hence there is a configurable trade-off
  190. // between performance and the smoothness of LFO changes to pitch/amplitude as well as the vibrato/modulation delay granularity
  191. // also note that the vibrato/tremolo for the two LFO are defined in the SoundFont spec to be a cents (vibrato) or centibel (tremolo)
  192. // diviation oscillating with a triangle wave at a given frequency; the following implementation gets the critical points of those
  193. // oscillations correct, but linearly interpolates the *frequency* and *amplitude* range between those points, which technically results
  194. // in a "bowing" of the triangle wave curve relative to what it should be (although this typically isn't audible)
  195. while (p < end) {
  196. // TODO: more elegant support of non-looping samples
  197. if (s->LOOP == false && tone_phase >= s->MAX_PHASE) break;
  198. // variable to accumulate LFO pitch offsets; stays 0 if still in vibrato/modulation delay
  199. int32_t tone_incr_offset = 0;
  200. if (vib_count++ > s->VIBRATO_DELAY) {
  201. vib_phase += s->VIBRATO_INCREMENT;
  202. // convert uint32_t phase value to int32_t triangle wave value
  203. // TRIANGLE_INITIAL_PHASE (0xC0000000) and 0x40000000 -> 0, 0 -> INT32_MAX/2, 0x80000000 -> INT32_MIN/2
  204. int32_t vib_scale = vib_phase & 0x80000000 ? 0x40000000 + vib_phase : 0x3FFFFFFF - vib_phase;
  205. // select a vibrato pitch offset based on sign of scale; note that the values "init" and "scnd" values
  206. // produced by the decoder script will either both be negative, or both be positive; this allows the
  207. // scalar to either start with either a downward (negative offset) or upward (positive) pitch oscillation
  208. int32_t vib_pitch_offset = vib_scale >= 0 ? vib_pitch_offset_init : vib_pitch_offset_scnd;
  209. // scale the offset and accumulate into offset
  210. // note the offset value is already preshifted by << 2 to account for this func shifting >> 32
  211. tone_incr_offset = multiply_accumulate_32x32_rshift32_rounded(tone_incr_offset, vib_scale, vib_pitch_offset);
  212. }
  213. // variable to hold an adjusted amplitude attenuation value; stays at tone_amp if modulation in delay
  214. int32_t mod_amp = tone_amp;
  215. if (mod_count++ > s->MODULATION_DELAY) {
  216. // pitch LFO component is same as above, but we'll also use the scale value for tremolo below
  217. mod_phase += s->MODULATION_INCREMENT;
  218. int32_t mod_scale = mod_phase & 0x80000000 ? 0x40000000 + mod_phase : 0x3FFFFFFF - mod_phase;
  219. int32_t mod_pitch_offset = mod_scale >= 0 ? mod_pitch_offset_init : mod_pitch_offset_scnd;
  220. tone_incr_offset = multiply_accumulate_32x32_rshift32_rounded(tone_incr_offset, mod_scale, mod_pitch_offset);
  221. // similar to pitch, sign of init and scnd are either both + or - to allow correct triangle direction
  222. int32_t mod_amp_offset = (mod_scale >= 0 ? s->MODULATION_AMPLITUDE_INITIAL_GAIN : s->MODULATION_AMPLITUDE_SECOND_GAIN);
  223. // here we scale the amp offset which, similar to the pitch offset, is already pre-shifted by << 2
  224. mod_scale = multiply_32x32_rshift32(mod_scale, mod_amp_offset);
  225. // the resulting scalar is then used to scale mod_map (possibly resulting in a negative) and add that back into mod_amp
  226. mod_amp = signed_multiply_accumulate_32x16b(mod_amp, mod_scale, mod_amp);
  227. }
  228. // producing 2 output values per iteration; repeat more depending on the LFO_SMOOTHNESS
  229. // this segment linearly interpolates, calculates how far we step through the sample data, and scales amplitude
  230. for (int i = LFO_PERIOD / 2; i; --i, ++p) {
  231. // INDEX_BITS representing the higher order bits we use to index into the sample data
  232. index = tone_phase >> (32 - s->INDEX_BITS);
  233. // recast as uint32_t to load in packed variable; initially int16_t* since we may need to read accross a word boundry
  234. // note we are assuming a little-endian cpu (i.e. the first sample is loaded into the lower half-word)
  235. tmp1 = *((uint32_t*)(s->sample + index));
  236. // phase_scale here being the next 16-bits after the first INDEX_BITS, representing the distince between the samples to interpolate at
  237. // 0x0000 gives us all of the first sample point, 0xFFFF all of the second, anything inbetween a sliding mix
  238. phase_scale = (tone_phase << s->INDEX_BITS) >> 16;
  239. // scaling of second sample point
  240. s1 = signed_multiply_32x16t(phase_scale, tmp1);
  241. // then add in scaling of first point
  242. s1 = signed_multiply_accumulate_32x16b(s1, 0xFFFF - phase_scale, tmp1);
  243. // apply amplitude scaling
  244. s1 = signed_multiply_32x16b(mod_amp, s1);
  245. // iterate tone_phase, giving us our desired frequency playback, and apply the offset, giving us our pitch LFOs
  246. tone_phase += tone_incr + tone_incr_offset;
  247. // break if no loop and we've gone past the end of the sample
  248. if (s->LOOP == false && tone_phase >= s->MAX_PHASE) break;
  249. // move phase back if a looped sample has overstepped its loop
  250. tone_phase = s->LOOP && tone_phase >= s->LOOP_PHASE_END ? tone_phase - s->LOOP_PHASE_LENGTH : tone_phase;
  251. //repeat as above
  252. index = tone_phase >> (32 - s->INDEX_BITS);
  253. tmp1 = *((uint32_t*)(s->sample + index));
  254. phase_scale = (tone_phase << s->INDEX_BITS) >> 16;
  255. s2 = signed_multiply_32x16t(phase_scale, tmp1);
  256. s2 = signed_multiply_accumulate_32x16b(s2, 0xFFFF - phase_scale, tmp1);
  257. s2 = signed_multiply_32x16b(mod_amp, s2);
  258. tone_phase += tone_incr + tone_incr_offset;
  259. if (s->LOOP == false && tone_phase >= s->MAX_PHASE) break;
  260. tone_phase = s->LOOP && tone_phase >= s->LOOP_PHASE_END ? tone_phase - s->LOOP_PHASE_LENGTH : tone_phase;
  261. // pack the two output samples into the audio_block
  262. *p = pack_16b_16b(s2, s1);
  263. }
  264. }
  265. // fill with 0s if non-looping sample that ended prematurely
  266. if (p < end) {
  267. env_state = STATE_IDLE;
  268. env_count = 0;
  269. while (p < end) *p++ = 0;
  270. }
  271. // filling audio_block two samples at a time
  272. p = (uint32_t *)block->data;
  273. end = p + AUDIO_BLOCK_SAMPLES / 2;
  274. // the following code handles the volume envelope with the following state transitions controlled here:
  275. // STATE_DELAY -> STATE_ATTACK -> STATE_HOLD -> STATE_DECAY -> STATE_SUSTAIN or STATE_IDLE
  276. // STATE_RELEASE -> STATE_IDLE
  277. // When STATE_SUSTAIN is reached, it is held indefinitely.
  278. // Outside of this code, playNote() and playFrequency() will initially set STATE_DELAY, and stop()
  279. // is responsible for setting STATE_RELEASE which can occur during any state, except STATE_IDLE
  280. // State defintions:
  281. // idle - not playing (generally should never arrive here)
  282. // delay - full attenuation
  283. // attack - linear ramp from full attenuation to no attenuation
  284. // hold - no attenuation
  285. // decay - linear ramp down to a given level of attenuation (SUSTAIN_MULT)
  286. // sustain - constant attenuation at a given level (SUSTAIN_MULT)
  287. // release - linear ramp down from current attenuation level to full attenuation
  288. // Definitions of the states generally follow the SoundFont spec, with a major exception being that all
  289. // volume scaling is linear realtive to amplitude; this is correct with respect to the attack, but not
  290. // the correct implementation relative to the decay and release which should be scaling linearly relative
  291. // to centibels. Practically this means the decay and release happen too slowing intially, and too quick
  292. // near the end
  293. // other points of note are that one env_count corresponds to 1 second * ENVELOPE_PERIOD / AUDIO_SAMPLE_RATE_EXACT;
  294. // the ENVELOPE_PERIOD is the number of samples processed per iteration of the following loop
  295. while (p < end) {
  296. // note env_count == 0 is used as a trigger for state transition
  297. if (env_count <= 0) switch (env_state) {
  298. case STATE_DELAY:
  299. env_state = STATE_ATTACK;
  300. env_count = s->ATTACK_COUNT;
  301. env_incr = UNITY_GAIN / (env_count * ENVELOPE_PERIOD);
  302. PRINT_ENV(STATE_ATTACK);
  303. continue;
  304. case STATE_ATTACK:
  305. env_mult = UNITY_GAIN;
  306. env_state = STATE_HOLD;
  307. env_count = s->HOLD_COUNT;
  308. env_incr = 0;
  309. PRINT_ENV(STATE_HOLD);
  310. continue;
  311. case STATE_HOLD:
  312. env_state = STATE_DECAY;
  313. env_count = s->DECAY_COUNT;
  314. env_incr = (-s->SUSTAIN_MULT) / (env_count * ENVELOPE_PERIOD);
  315. PRINT_ENV(STATE_DECAY);
  316. continue;
  317. case STATE_DECAY:
  318. env_mult = UNITY_GAIN - s->SUSTAIN_MULT;
  319. // UINT16_MAX is a value approximately corresponding to the -100 dBFS defined in the SoundFont spec as full attenuation
  320. // hence this comparison either sends the state to indefinite STATE_SUSTAIN, or immediately into STATE_RELEASE -> STATE_IDLE
  321. env_state = env_mult < UNITY_GAIN / UINT16_MAX ? STATE_RELEASE : STATE_SUSTAIN;
  322. env_incr = 0;
  323. continue;
  324. case STATE_SUSTAIN:
  325. env_count = INT32_MAX;
  326. PRINT_ENV(STATE_SUSTAIN);
  327. continue;
  328. case STATE_RELEASE:
  329. env_state = STATE_IDLE;
  330. for (; p < end; ++p) *p = 0;
  331. PRINT_ENV(STATE_IDLE);
  332. continue;
  333. default:
  334. p = end;
  335. PRINT_ENV(DEFAULT);
  336. continue;
  337. }
  338. env_mult += env_incr;
  339. // env_mult is INT32_MAX at max (i.e. 31-bits), so shift << 1 so result is aligned with high halfword of tmp1/tmp2
  340. tmp1 = signed_multiply_32x16b(env_mult, p[0]) << 1;
  341. env_mult += env_incr;
  342. tmp2 = signed_multiply_32x16t(env_mult, p[0]) << 1;
  343. // pack from high halfword of tmp1, tmp2
  344. p[0] = pack_16t_16t(tmp2, tmp1);
  345. env_mult += env_incr;
  346. tmp1 = signed_multiply_32x16b(env_mult, p[1]) << 1;
  347. env_mult += env_incr;
  348. tmp2 = signed_multiply_32x16t(env_mult, p[1]) << 1;
  349. p[1] = pack_16t_16t(tmp2, tmp1);
  350. env_mult += env_incr;
  351. tmp1 = signed_multiply_32x16b(env_mult, p[2]) << 1;
  352. env_mult += env_incr;
  353. tmp2 = signed_multiply_32x16t(env_mult, p[2]) << 1;
  354. p[2] = pack_16t_16t(tmp2, tmp1);
  355. env_mult += env_incr;
  356. tmp1 = signed_multiply_32x16b(env_mult, p[3]) << 1;
  357. env_mult += env_incr;
  358. tmp2 = signed_multiply_32x16t(env_mult, p[3]) << 1;
  359. p[3] = pack_16t_16t(tmp2, tmp1);
  360. p += ENVELOPE_PERIOD / 2;
  361. env_count--;
  362. }
  363. // copy state back, unless there was a state change
  364. if (this->state_change == false) {
  365. this->tone_phase = tone_phase;
  366. this->env_state = env_state;
  367. this->env_count = env_count;
  368. this->env_mult = env_mult;
  369. this->env_incr = env_incr;
  370. if (this->env_state != STATE_IDLE) {
  371. this->vib_count = vib_count;
  372. this->vib_phase = vib_phase;
  373. this->mod_count = mod_count;
  374. this->mod_phase = mod_phase;
  375. }
  376. else {
  377. this->vib_count = this->mod_count = 0;
  378. this->vib_phase = this->mod_phase = TRIANGLE_INITIAL_PHASE;
  379. }
  380. }
  381. transmit(block);
  382. release(block);
  383. }