mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
607e6c5bd4
Soundboard random mode now cares about loop option. Started documenting UI.
111 lines
2.8 KiB
C++
111 lines
2.8 KiB
C++
/*
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
|
* Copyright (C) 2016 Furrtek
|
|
*
|
|
* 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_jammer.hpp"
|
|
#include "portapack_shared_memory.hpp"
|
|
#include "sine_table_int8.hpp"
|
|
#include "event_m4.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
void JammerProcessor::execute(const buffer_c8_t& buffer) {
|
|
if (!configured) return;
|
|
|
|
for (size_t i = 0; i < buffer.count; i++) {
|
|
|
|
if (!jammer_duration) {
|
|
// Find next enabled range
|
|
do {
|
|
current_range++;
|
|
if (current_range == 24) current_range = 0; // Warning ! Should match JAMMER_MAX_CH
|
|
} while (!jammer_channels[current_range].enabled);
|
|
|
|
jammer_duration = jammer_channels[current_range].duration;
|
|
jammer_bw = jammer_channels[current_range].width / 5; // TODO: Exact value
|
|
|
|
// Ask for retune
|
|
message.freq = jammer_channels[current_range].center;
|
|
message.range = current_range;
|
|
shared_memory.application_queue.push(message);
|
|
} else {
|
|
jammer_duration--;
|
|
}
|
|
|
|
// Ramp
|
|
/*if (r >= 10) {
|
|
if (sample < 128)
|
|
sample++;
|
|
else
|
|
sample = -127;
|
|
r = 0;
|
|
} else {
|
|
r++;
|
|
}*/
|
|
|
|
// Phase noise
|
|
if (r >= 10) {
|
|
aphase += ((aphase >> 4) ^ 0x4573) << 20;
|
|
r = 0;
|
|
} else {
|
|
r++;
|
|
}
|
|
|
|
aphase += 8830;
|
|
sample = sine_table_i8[(aphase & 0xFF000000) >> 24];
|
|
|
|
// FM
|
|
delta = sample * jammer_bw;
|
|
|
|
phase += delta;
|
|
sphase = phase + (64 << 24);
|
|
|
|
re = (sine_table_i8[(sphase & 0xFF000000) >> 24]);
|
|
im = (sine_table_i8[(phase & 0xFF000000) >> 24]);
|
|
|
|
buffer.p[i] = {re, im};
|
|
}
|
|
};
|
|
|
|
void JammerProcessor::on_message(const Message* const msg) {
|
|
const auto message = *reinterpret_cast<const JammerConfigureMessage*>(msg);
|
|
|
|
if (message.id == Message::ID::JammerConfigure) {
|
|
if (message.run) {
|
|
jammer_channels = (JammerChannel*)shared_memory.bb_data.data;
|
|
noise_type = message.type;
|
|
noise_speed = message.speed;
|
|
jammer_duration = 0;
|
|
current_range = 0;
|
|
|
|
configured = true;
|
|
} else {
|
|
configured = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
int main() {
|
|
EventDispatcher event_dispatcher { std::make_unique<JammerProcessor>() };
|
|
event_dispatcher.run();
|
|
return 0;
|
|
}
|