restructures audio, begins voicing
This commit is contained in:
parent
2e60054951
commit
73228f5e5d
9 changed files with 91 additions and 23 deletions
|
@ -299,27 +299,6 @@ float vibrato(float average_freq) {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
float envelope(float f) {
|
|
||||||
uint16_t compensated_index = (uint16_t)((float)envelope_index * (880.0 / f));
|
|
||||||
switch (compensated_index) {
|
|
||||||
case 0 ... 9:
|
|
||||||
f = f / 4;
|
|
||||||
note_timbre = TIMBRE_12;
|
|
||||||
break;
|
|
||||||
case 10 ... 19:
|
|
||||||
f = f / 2;
|
|
||||||
note_timbre = TIMBRE_12;
|
|
||||||
break;
|
|
||||||
case 20 ... 200:
|
|
||||||
note_timbre = .125 - pow(((float)compensated_index - 20) / (200 - 20), 2)*.125;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
note_timbre = 0;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return f;
|
|
||||||
}
|
|
||||||
|
|
||||||
ISR(TIMER3_COMPA_vect) {
|
ISR(TIMER3_COMPA_vect) {
|
||||||
if (note) {
|
if (note) {
|
||||||
#ifdef PWM_AUDIO
|
#ifdef PWM_AUDIO
|
||||||
|
@ -413,7 +392,7 @@ ISR(TIMER3_COMPA_vect) {
|
||||||
if (envelope_index < 65535) {
|
if (envelope_index < 65535) {
|
||||||
envelope_index++;
|
envelope_index++;
|
||||||
}
|
}
|
||||||
freq = envelope(freq);
|
freq = voice_envelope(freq);
|
||||||
|
|
||||||
if (freq < 30.517578125)
|
if (freq < 30.517578125)
|
||||||
freq = 30.52;
|
freq = 30.52;
|
||||||
|
@ -456,6 +435,11 @@ ISR(TIMER3_COMPA_vect) {
|
||||||
freq = note_frequency;
|
freq = note_frequency;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (envelope_index < 65535) {
|
||||||
|
envelope_index++;
|
||||||
|
}
|
||||||
|
freq = voice_envelope(freq);
|
||||||
|
|
||||||
ICR3 = (int)(((double)F_CPU) / (freq * CPU_PRESCALER)); // Set max to the period
|
ICR3 = (int)(((double)F_CPU) / (freq * CPU_PRESCALER)); // Set max to the period
|
||||||
OCR3A = (int)((((double)F_CPU) / (freq * CPU_PRESCALER)) * note_timbre); // Set compare to half the period
|
OCR3A = (int)((((double)F_CPU) / (freq * CPU_PRESCALER)) * note_timbre); // Set compare to half the period
|
||||||
} else {
|
} else {
|
||||||
|
@ -498,6 +482,7 @@ ISR(TIMER3_COMPA_vect) {
|
||||||
note_frequency = (*notes_pointer)[current_note][0] / SAMPLE_RATE;
|
note_frequency = (*notes_pointer)[current_note][0] / SAMPLE_RATE;
|
||||||
note_length = (*notes_pointer)[current_note][1] * (note_tempo / 100);
|
note_length = (*notes_pointer)[current_note][1] * (note_tempo / 100);
|
||||||
#else
|
#else
|
||||||
|
envelope_index = 0;
|
||||||
note_frequency = (*notes_pointer)[current_note][0];
|
note_frequency = (*notes_pointer)[current_note][0];
|
||||||
note_length = ((*notes_pointer)[current_note][1] / 4) * (note_tempo / 100);
|
note_length = ((*notes_pointer)[current_note][1] / 4) * (note_tempo / 100);
|
||||||
#endif
|
#endif
|
|
@ -4,6 +4,7 @@
|
||||||
#include <util/delay.h>
|
#include <util/delay.h>
|
||||||
#include "musical_notes.h"
|
#include "musical_notes.h"
|
||||||
#include "song_list.h"
|
#include "song_list.h"
|
||||||
|
#include "voices.h"
|
||||||
|
|
||||||
#ifndef AUDIO_H
|
#ifndef AUDIO_H
|
||||||
#define AUDIO_H
|
#define AUDIO_H
|
60
quantum/audio/voices.c
Normal file
60
quantum/audio/voices.c
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
#include "voices.h"
|
||||||
|
|
||||||
|
extern uint16_t envelope_index;
|
||||||
|
extern float note_timbre;
|
||||||
|
|
||||||
|
voice_type voice = default_voice;
|
||||||
|
|
||||||
|
void set_voice(voice_type v) {
|
||||||
|
voice = v;
|
||||||
|
}
|
||||||
|
|
||||||
|
float voice_envelope(float frequency) {
|
||||||
|
// envelope_index ranges from 0 to 0xFFFF, which is preserved at 880.0 Hz
|
||||||
|
uint16_t compensated_index = (uint16_t)((float)envelope_index * (880.0 / frequency));
|
||||||
|
|
||||||
|
switch (voice) {
|
||||||
|
case default_voice:
|
||||||
|
// nothing here on purpose
|
||||||
|
break;
|
||||||
|
case butts_fader:
|
||||||
|
switch (compensated_index) {
|
||||||
|
case 0 ... 9:
|
||||||
|
frequency = frequency / 4;
|
||||||
|
note_timbre = TIMBRE_12;
|
||||||
|
break;
|
||||||
|
case 10 ... 19:
|
||||||
|
frequency = frequency / 2;
|
||||||
|
note_timbre = TIMBRE_12;
|
||||||
|
break;
|
||||||
|
case 20 ... 200:
|
||||||
|
note_timbre = .125 - pow(((float)compensated_index - 20) / (200 - 20), 2)*.125;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
note_timbre = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case octave_crunch:
|
||||||
|
switch (compensated_index) {
|
||||||
|
case 0 ... 9:
|
||||||
|
case 20 ... 24:
|
||||||
|
case 30 ... 32:
|
||||||
|
frequency = frequency / 2;
|
||||||
|
note_timbre = TIMBRE_12;
|
||||||
|
break;
|
||||||
|
case 10 ... 19:
|
||||||
|
case 25 ... 29:
|
||||||
|
case 33 ... 35:
|
||||||
|
frequency = frequency * 2;
|
||||||
|
note_timbre = TIMBRE_12;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
note_timbre = TIMBRE_12;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return frequency;
|
||||||
|
}
|
21
quantum/audio/voices.h
Normal file
21
quantum/audio/voices.h
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <util/delay.h>
|
||||||
|
#include "musical_notes.h"
|
||||||
|
#include "song_list.h"
|
||||||
|
|
||||||
|
#ifndef VOICES_H
|
||||||
|
#define VOICES_H
|
||||||
|
|
||||||
|
float voice_envelope(float frequency);
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
default_voice,
|
||||||
|
butts_fader,
|
||||||
|
octave_crunch
|
||||||
|
} voice_type;
|
||||||
|
|
||||||
|
void set_voice(voice_type v);
|
||||||
|
|
||||||
|
#endif
|
|
@ -28,7 +28,7 @@ ifeq ($(strip $(MIDI_ENABLE)), yes)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(AUDIO_ENABLE)), yes)
|
ifeq ($(strip $(AUDIO_ENABLE)), yes)
|
||||||
SRC += $(QUANTUM_DIR)/audio.c
|
SRC += $(QUANTUM_DIR)/audio/audio.c $(QUANTUM_DIR)/audio/voices.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(UNICODE_ENABLE)), yes)
|
ifeq ($(strip $(UNICODE_ENABLE)), yes)
|
||||||
|
@ -47,6 +47,7 @@ endif
|
||||||
# Search Path
|
# Search Path
|
||||||
VPATH += $(TOP_DIR)/$(QUANTUM_DIR)
|
VPATH += $(TOP_DIR)/$(QUANTUM_DIR)
|
||||||
VPATH += $(TOP_DIR)/$(QUANTUM_DIR)/keymap_extras
|
VPATH += $(TOP_DIR)/$(QUANTUM_DIR)/keymap_extras
|
||||||
|
VPATH += $(TOP_DIR)/$(QUANTUM_DIR)/audio
|
||||||
|
|
||||||
include $(TMK_DIR)/protocol/lufa.mk
|
include $(TMK_DIR)/protocol/lufa.mk
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue