2016-01-03 01:24:30 -05:00
|
|
|
/*
|
2016-01-05 14:17:55 -05:00
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
2016-01-05 05:47:46 -05:00
|
|
|
* Copyright (C) 2016 Furrtek
|
2016-01-05 14:17:55 -05:00
|
|
|
*
|
2016-01-03 01:24:30 -05:00
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "proc_xylos.hpp"
|
2016-02-04 04:27:53 -05:00
|
|
|
|
|
|
|
#include "dsp_iir_config.hpp"
|
2016-05-09 14:42:20 -04:00
|
|
|
#include "audio_output.hpp"
|
2016-02-04 04:27:53 -05:00
|
|
|
|
2016-01-03 01:24:30 -05:00
|
|
|
#include "portapack_shared_memory.hpp"
|
|
|
|
#include "sine_table.hpp"
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
2016-02-04 04:27:53 -05:00
|
|
|
void XylosProcessor::execute(const buffer_c8_t& buffer) {
|
2016-01-03 01:24:30 -05:00
|
|
|
|
2016-01-05 05:47:46 -05:00
|
|
|
// This is called at 1536000/2048 = 750Hz
|
|
|
|
|
2016-05-12 19:18:04 -04:00
|
|
|
// ai = 0;
|
2016-01-05 05:47:46 -05:00
|
|
|
|
2016-01-03 01:24:30 -05:00
|
|
|
for (size_t i = 0; i<buffer.count; i++) {
|
2016-01-05 05:47:46 -05:00
|
|
|
|
|
|
|
// Sample generation rate: 1536000/10 = 153kHz
|
2016-07-25 10:21:27 -04:00
|
|
|
if (s >= (5-1)) {
|
2016-01-03 01:24:30 -05:00
|
|
|
s = 0;
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
if (silence) {
|
|
|
|
if (sample_count >= SILENCE) {
|
|
|
|
silence = false;
|
|
|
|
sample_count = CCIR_TONELENGTH;
|
|
|
|
} else {
|
|
|
|
sample_count++;
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
2016-05-27 00:48:04 -04:00
|
|
|
} else {
|
|
|
|
if (sample_count >= CCIR_TONELENGTH) {
|
|
|
|
if (shared_memory.transmit_done == false) {
|
|
|
|
message.n = byte_pos; // Inform UI about progress (just as eye candy)
|
|
|
|
shared_memory.application_queue.push(message);
|
|
|
|
digit = shared_memory.xylosdata[byte_pos++];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (digit == 0xFF) {
|
|
|
|
message.n = 25; // End of message code
|
|
|
|
shared_memory.transmit_done = true;
|
|
|
|
shared_memory.application_queue.push(message);
|
|
|
|
}
|
2016-01-03 01:24:30 -05:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
sample_count = 0;
|
|
|
|
} else {
|
|
|
|
sample_count++;
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
aphase += ccir_phases[digit];
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
if (silence) {
|
|
|
|
re = 0;
|
|
|
|
im = 0;
|
2016-01-05 05:47:46 -05:00
|
|
|
} else {
|
2016-07-25 10:21:27 -04:00
|
|
|
sample = (sine_table_f32[(aphase & 0x03FF0000)>>18]*127); // 255 here before :D
|
2016-05-27 00:48:04 -04:00
|
|
|
|
|
|
|
// Audio preview sample generation: 1536000/48000 = 32
|
|
|
|
/*if (as >= 31) {
|
|
|
|
as = 0;
|
|
|
|
audio[ai++] = sample * 128;
|
|
|
|
} else {
|
|
|
|
as++;
|
|
|
|
}*/
|
2016-07-25 10:21:27 -04:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
//FM
|
2016-07-25 10:21:27 -04:00
|
|
|
frq = sample * 1000; // 500 was here
|
2016-05-27 00:48:04 -04:00
|
|
|
|
|
|
|
phase = (phase + frq);
|
|
|
|
sphase = phase + (256<<16);
|
2016-01-03 01:24:30 -05:00
|
|
|
|
2016-07-25 10:21:27 -04:00
|
|
|
re = (sine_table_f32[(sphase & 0x03FF0000)>>18]*15);
|
|
|
|
im = (sine_table_f32[(phase & 0x03FF0000)>>18]*15);
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
2016-01-03 01:24:30 -05:00
|
|
|
|
|
|
|
buffer.p[i] = {(int8_t)re,(int8_t)im};
|
|
|
|
}
|
2016-01-05 05:47:46 -05:00
|
|
|
|
2016-05-09 14:42:20 -04:00
|
|
|
//audio_output.write(audio_buffer);
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|