2012-08-06 02:52:03 +02:00
|
|
|
#include <inttypes.h>
|
2012-08-06 15:42:43 +02:00
|
|
|
#include "freq_table.h"
|
2012-08-06 02:52:03 +02:00
|
|
|
// sample rate is 8M / (3 * 64)
|
|
|
|
|
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
enum { WAVE_OFF, WAVE_PULSE, WAVE_SAW, WAVE_NOISE };
|
|
|
|
enum {
|
|
|
|
channel_count = 3,
|
|
|
|
tick_length = 600,
|
|
|
|
row_length = 4,
|
|
|
|
pattern_length = 16
|
|
|
|
};
|
2012-08-06 03:35:28 +02:00
|
|
|
|
2012-08-06 02:52:03 +02:00
|
|
|
typedef struct {
|
2012-08-06 15:42:43 +02:00
|
|
|
uint8_t note;
|
|
|
|
uint8_t inst_nr;
|
|
|
|
uint8_t pos;
|
2012-08-06 03:35:28 +02:00
|
|
|
|
2012-08-06 02:52:03 +02:00
|
|
|
uint16_t phase;
|
2012-08-06 15:42:43 +02:00
|
|
|
uint16_t pulse_width;
|
2012-08-06 03:35:28 +02:00
|
|
|
|
|
|
|
uint8_t level; // envelop level
|
|
|
|
|
2012-08-06 02:52:03 +02:00
|
|
|
} synth_channel_t;
|
|
|
|
|
2012-08-06 03:44:37 +02:00
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
typedef struct {
|
|
|
|
uint16_t pulse_width;
|
|
|
|
uint8_t pulse_sweep;
|
|
|
|
uint8_t wave_table_pos;
|
|
|
|
uint8_t decay;
|
2012-08-06 03:44:37 +02:00
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
} synth_instrument_t;
|
|
|
|
|
|
|
|
|
|
|
|
static const synth_instrument_t instruments[] = {
|
|
|
|
{ 1<<15, 255, 8 },
|
|
|
|
{ 0, 255, 8 },
|
|
|
|
{ 0, 0, 5 },
|
|
|
|
{ 1<<14, 0, 0, 3 },
|
|
|
|
{ 1<<14, 0, 10, 3 },
|
2012-08-06 03:44:37 +02:00
|
|
|
};
|
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
static const uint8_t wave_table[][2] = {
|
|
|
|
{ 0, WAVE_PULSE },
|
|
|
|
{ 3, WAVE_PULSE },
|
|
|
|
{ 7, WAVE_PULSE },
|
|
|
|
{ 12, WAVE_PULSE },
|
|
|
|
{ 256 - 4, 0xff },
|
2012-08-06 03:44:37 +02:00
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
{ 0, WAVE_NOISE },
|
|
|
|
{ 0, WAVE_SAW },
|
|
|
|
{ 0xff, 0xff },
|
2012-08-06 03:44:37 +02:00
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
{ 0, WAVE_PULSE },
|
|
|
|
{ 0xff, 0xff },
|
|
|
|
|
|
|
|
{ 0, WAVE_PULSE },
|
|
|
|
{ 2, WAVE_PULSE },
|
|
|
|
{ 7, WAVE_PULSE },
|
|
|
|
{ 10, WAVE_PULSE },
|
|
|
|
{ 256 - 4, 0xff },
|
|
|
|
};
|
2012-08-06 02:52:03 +02:00
|
|
|
|
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
static const uint8_t patterns[][pattern_length][2] = {
|
|
|
|
{
|
|
|
|
{ 33 - 12, 0 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 33 - 12, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 33, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 33, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 33, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 33 - 12, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 33 - 12, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 33, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 28 - 12, 0 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 28 - 12, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 28, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 28, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 28, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 28 - 12, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 28 - 12, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
{ 28, 1 },
|
|
|
|
{ 0xff, 1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 69, 2 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 57 - 24, 2 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0xff, 0 },
|
|
|
|
{ 45, 2 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0xff, 0 },
|
|
|
|
{ 45+3, 2 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 45+7, 2 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0xff, 0 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 57, 3 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 57, 4 },
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
static const uint8_t pattern_table[][channel_count] = {
|
|
|
|
{ 0, 2, 3 },
|
|
|
|
{ 0, 2, 3 },
|
|
|
|
{ 0, 2, 3 },
|
|
|
|
{ 0, 2, 3 },
|
|
|
|
{ 1, 2, 4 },
|
|
|
|
{ 1, 2, 4 },
|
|
|
|
{ 1, 2, 4 },
|
|
|
|
{ 1, 2, 4 },
|
|
|
|
};
|
|
|
|
enum {
|
|
|
|
pattern_table_length = sizeof(pattern_table) / sizeof(pattern_table[0])
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static synth_channel_t channels[channel_count];
|
|
|
|
static int16_t sample;
|
|
|
|
static int8_t tick;
|
|
|
|
static int8_t row;
|
|
|
|
static int8_t seq;
|
2012-08-06 02:52:03 +02:00
|
|
|
|
2012-08-06 03:35:28 +02:00
|
|
|
|
2012-08-06 02:52:03 +02:00
|
|
|
void synth_init(void)
|
|
|
|
{
|
2012-08-06 15:42:43 +02:00
|
|
|
sample = 0;
|
|
|
|
tick = 0;
|
|
|
|
row = 0;
|
|
|
|
seq = 0;
|
|
|
|
|
|
|
|
/*
|
2012-08-06 02:52:03 +02:00
|
|
|
// some test values
|
2012-08-06 15:42:43 +02:00
|
|
|
channels[0].wave = WAVE_PULSE;
|
|
|
|
channels[0].pulse_width = 1 << 15;
|
2012-08-06 02:52:03 +02:00
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
channels[1].wave = WAVE_SAW;
|
|
|
|
*/
|
2012-08-06 02:52:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t synth_mix(void)
|
|
|
|
{
|
2012-08-06 15:42:43 +02:00
|
|
|
if(sample == 0) { // new tick
|
|
|
|
for(int i = 0; i < channel_count; i++) {
|
|
|
|
synth_channel_t* chan = &channels[i];
|
|
|
|
|
|
|
|
const synth_instrument_t* inst = &instruments[chan->inst_nr];
|
|
|
|
|
|
|
|
if(chan->level > inst->decay) chan->level -= inst->decay;
|
|
|
|
else chan->level = 0;
|
|
|
|
|
|
|
|
chan->pulse_width += inst->pulse_sweep;
|
|
|
|
|
|
|
|
|
|
|
|
chan->pos++;
|
|
|
|
if(wave_table[chan->pos][1] == 0xff) chan->pos += wave_table[chan->pos][0];
|
|
|
|
|
|
|
|
|
|
|
|
// enter new row
|
|
|
|
if(tick == 0) {
|
|
|
|
uint8_t pattern_nr = pattern_table[seq][i];
|
|
|
|
uint8_t note = patterns[pattern_nr][row][0];
|
|
|
|
|
|
|
|
if(note) { // new note, maybe?
|
|
|
|
if(note == 0xff) {
|
|
|
|
chan->level = 0;
|
|
|
|
} else {
|
|
|
|
chan->level = 100;
|
|
|
|
chan->note = note;
|
|
|
|
chan->inst_nr = patterns[pattern_nr][row][1];
|
|
|
|
inst = &instruments[chan->inst_nr];
|
|
|
|
chan->pos = inst->wave_table_pos;
|
|
|
|
if(inst->pulse_width) chan->pulse_width = inst->pulse_width;
|
|
|
|
}
|
|
|
|
}
|
2012-08-06 03:44:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-06 15:42:43 +02:00
|
|
|
if(++sample == tick_length) {
|
|
|
|
sample = 0;
|
|
|
|
if(++tick == row_length) {
|
|
|
|
tick = 0;
|
|
|
|
if(++row == pattern_length) {
|
|
|
|
row = 0;
|
|
|
|
if(++seq == pattern_table_length) {
|
|
|
|
seq = 0;
|
|
|
|
}
|
2012-08-06 03:44:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-06 02:52:03 +02:00
|
|
|
|
2012-08-06 03:44:37 +02:00
|
|
|
|
|
|
|
uint16_t output = 0;
|
2012-08-06 15:42:43 +02:00
|
|
|
for(int i = 0; i < channel_count; i++) {
|
|
|
|
synth_channel_t* chan = &channels[i];
|
|
|
|
const synth_instrument_t* inst = &instruments[chan->inst_nr];
|
2012-08-06 03:35:28 +02:00
|
|
|
|
2012-08-06 15:51:12 +02:00
|
|
|
chan->phase += freq_table[(uint8_t)(chan->note + wave_table[chan->pos][0])];
|
2012-08-06 03:35:28 +02:00
|
|
|
|
|
|
|
uint8_t amp;
|
2012-08-06 15:42:43 +02:00
|
|
|
switch(wave_table[chan->pos][1]) {
|
2012-08-06 03:35:28 +02:00
|
|
|
case WAVE_PULSE:
|
2012-08-06 15:42:43 +02:00
|
|
|
amp = -(chan->phase < chan->pulse_width);
|
2012-08-06 03:35:28 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WAVE_SAW:
|
|
|
|
amp = (chan->phase >> 8);
|
|
|
|
break;
|
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
case WAVE_NOISE: // shitty noise
|
2012-08-06 04:05:19 +02:00
|
|
|
chan->phase = (chan->phase >> 1) ^ (-(chan->phase & 1) & 0xb400);
|
|
|
|
amp = (chan->phase >> 8);
|
|
|
|
break;
|
|
|
|
|
2012-08-06 03:35:28 +02:00
|
|
|
default:
|
|
|
|
amp = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-08-06 15:42:43 +02:00
|
|
|
output += ((amp & 0xff) * chan->level) >> 8;
|
2012-08-06 02:52:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|