|
|
|
@ -56,6 +56,7 @@ |
|
|
|
|
|
|
|
|
|
extern bool check_sd_performance_exists(uint8_t number); |
|
|
|
|
extern bool midi_learn_mode; |
|
|
|
|
extern uint8_t active_sample; |
|
|
|
|
|
|
|
|
|
extern config_t configuration; |
|
|
|
|
extern void set_volume(uint8_t v, uint8_t m); |
|
|
|
@ -294,7 +295,6 @@ void UI_func_information(uint8_t param); |
|
|
|
|
void UI_func_set_performance_name(uint8_t param); |
|
|
|
|
void UI_func_volume(uint8_t param); |
|
|
|
|
void UI_func_smart_filter(uint8_t param); |
|
|
|
|
void UI_func_drum_midi_channel(uint8_t param); |
|
|
|
|
void UI_func_load_performance(uint8_t param); |
|
|
|
|
void UI_func_save_performance(uint8_t param); |
|
|
|
|
void UI_func_save_voice(uint8_t param); |
|
|
|
@ -338,6 +338,7 @@ void UI_func_epiano_chorus_frequency(uint8_t param); |
|
|
|
|
void UI_func_epiano_chorus_waveform(uint8_t param); |
|
|
|
|
void UI_func_epiano_chorus_depth(uint8_t param); |
|
|
|
|
void UI_func_epiano_chorus_level(uint8_t param); |
|
|
|
|
void UI_func_drum_midi_channel(uint8_t param); |
|
|
|
|
void UI_func_drums_main_volume(uint8_t param); |
|
|
|
|
void UI_func_drum_volume(uint8_t param); |
|
|
|
|
void UI_func_drum_pan(uint8_t param); |
|
|
|
@ -3980,6 +3981,27 @@ void UI_handle_OP(uint8_t param) { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void _check_display_name(bool display_name, uint8_t digits) { |
|
|
|
|
if (display_name == true) { |
|
|
|
|
display.setCursor(0, 1); |
|
|
|
|
display.print(F("[")); |
|
|
|
|
display.setCursor(9, 1); |
|
|
|
|
display.print(F("]")); |
|
|
|
|
display.setCursor(LCD_cols - digits - 2, 1); |
|
|
|
|
display.print(F(" ")); |
|
|
|
|
display.setCursor(LCD_cols - 1, 1); |
|
|
|
|
display.print(F(" ")); |
|
|
|
|
} else { |
|
|
|
|
display.setCursor(0, 1); |
|
|
|
|
display.print(F(" ")); |
|
|
|
|
display.setCursor(9, 1); |
|
|
|
|
display.print(F(" ")); |
|
|
|
|
display.setCursor(LCD_cols - digits - 2, 1); |
|
|
|
|
display.print(F("[")); |
|
|
|
|
display.setCursor(LCD_cols - 1, 1); |
|
|
|
|
display.print(F("]")); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
void UI_func_drum_midi_channel(uint8_t param) { |
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
|
{ |
|
|
|
@ -3991,16 +4013,18 @@ void UI_func_drum_midi_channel(uint8_t param) { |
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
|
{ |
|
|
|
|
if (LCDML.BT_checkDown() && encoderDir[ENC_R].Down()) |
|
|
|
|
configuration.drums.midi_channel = constrain(configuration.drums.midi_channel + ENCODER[ENC_R].speed(), MIDI_CHANNEL_MIN, MIDI_CHANNEL_MAX); |
|
|
|
|
else if (LCDML.BT_checkUp() && encoderDir[ENC_R].Up()) |
|
|
|
|
configuration.drums.midi_channel = constrain(configuration.drums.midi_channel - ENCODER[ENC_R].speed(), MIDI_CHANNEL_MIN, MIDI_CHANNEL_MAX); |
|
|
|
|
if ((LCDML.BT_checkDown() && encoderDir[ENC_R].Down()) || (LCDML.BT_checkUp() && encoderDir[ENC_R].Up())) { |
|
|
|
|
if (LCDML.BT_checkDown() && encoderDir[ENC_R].Down()) |
|
|
|
|
configuration.drums.midi_channel = constrain(configuration.drums.midi_channel + ENCODER[ENC_R].speed(), MIDI_CHANNEL_MIN, MIDI_CHANNEL_MAX); |
|
|
|
|
else if (LCDML.BT_checkUp() && encoderDir[ENC_R].Up()) |
|
|
|
|
configuration.drums.midi_channel = constrain(configuration.drums.midi_channel - ENCODER[ENC_R].speed(), MIDI_CHANNEL_MIN, MIDI_CHANNEL_MAX); |
|
|
|
|
|
|
|
|
|
display.setCursor(0, 1); |
|
|
|
|
if (configuration.drums.midi_channel == 0) { |
|
|
|
|
display.print(F("[OMNI]")); |
|
|
|
|
} else { |
|
|
|
|
display_int(configuration.drums.midi_channel, 4, false, true, false); |
|
|
|
|
display.setCursor(0, 1); |
|
|
|
|
if (configuration.drums.midi_channel == 0) { |
|
|
|
|
display.print(F("[OMNI]")); |
|
|
|
|
} else { |
|
|
|
|
display_int(configuration.drums.midi_channel, 4, false, true, false); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -4012,34 +4036,103 @@ void UI_func_drum_midi_channel(uint8_t param) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void UI_func_drums_main_volume(uint8_t param) { |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
char tmp[6]; |
|
|
|
|
|
|
|
|
|
void _UI_func_drum_pitch_display(bool mode) { |
|
|
|
|
; |
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
|
{ |
|
|
|
|
lcd_special_chars(BLOCKBAR); |
|
|
|
|
display_bar_int("DRM Main Vol", configuration.drums.main_vol, 1.0, VOLUME_MIN, VOLUME_MAX, 3, false, false, true); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
|
{ |
|
|
|
|
if ((LCDML.BT_checkDown() && encoderDir[ENC_R].Down()) || (LCDML.BT_checkUp() && encoderDir[ENC_R].Up())) { |
|
|
|
|
if (LCDML.BT_checkDown()) { |
|
|
|
|
configuration.drums.main_vol = constrain(configuration.drums.main_vol + ENCODER[ENC_L].speed(), DRUMS_MAIN_VOL_MIN, DRUMS_MAIN_VOL_MAX); |
|
|
|
|
} else if (LCDML.BT_checkUp()) { |
|
|
|
|
configuration.drums.main_vol = constrain(configuration.drums.main_vol - ENCODER[ENC_L].speed(), DRUMS_MAIN_VOL_MIN, DRUMS_MAIN_VOL_MAX); |
|
|
|
|
} |
|
|
|
|
display_bar_int("DRM Main Vol", configuration.drums.main_vol, 1.0, DRUMS_MAIN_VOL_MIN, DRUMS_MAIN_VOL_MAX, 3, false, false, false); |
|
|
|
|
master_mixer_r.gain(MASTER_MIX_CH_DRUMS, configuration.drums.main_vol); |
|
|
|
|
master_mixer_l.gain(MASTER_MIX_CH_DRUMS, configuration.drums.main_vol); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
|
{ |
|
|
|
|
lcd_special_chars(SCROLLBAR); |
|
|
|
|
encoderDir[ENC_L].reset(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void UI_func_drum_pitch(uint8_t param) { |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
static bool display_name; |
|
|
|
|
char tmp_val[5]; |
|
|
|
|
|
|
|
|
|
void _UI_func_drum_volume_display(bool mode) { |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
|
{ |
|
|
|
|
midi_learn_mode = true; |
|
|
|
|
|
|
|
|
|
void UI_func_drum_volume(uint8_t param) { |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
display.setCursor(0, 0); |
|
|
|
|
display.print(F("Drums Pitch")); |
|
|
|
|
display.setCursor(1, 1); |
|
|
|
|
display.print(drum_config[active_sample].name); |
|
|
|
|
display.setCursor(LCD_cols - 5, 1); |
|
|
|
|
snprintf_P(tmp_val, sizeof(tmp_val), PSTR("%4.1f"), configuration.drums.pitch[active_sample] / 10.0); |
|
|
|
|
display.print(tmp_val); |
|
|
|
|
_check_display_name(display_name, 4); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void _UI_func_drum_pan_display(bool mode) { |
|
|
|
|
; |
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
|
{ |
|
|
|
|
if ((LCDML.BT_checkDown() && encoderDir[ENC_R].Down()) || (LCDML.BT_checkUp() && encoderDir[ENC_R].Up()) || (LCDML.BT_checkEnter() && encoderDir[ENC_R].ButtonShort())) { |
|
|
|
|
if (LCDML.BT_checkDown()) { |
|
|
|
|
if (display_name == true) { |
|
|
|
|
active_sample = constrain(++active_sample, 0, NUM_DRUMSET_CONFIG - 1); |
|
|
|
|
display.setCursor(LCD_cols - 5, 1); |
|
|
|
|
snprintf_P(tmp_val, sizeof(tmp_val), PSTR("%4.1f"), configuration.drums.pitch[active_sample] / 10.0); |
|
|
|
|
display.print(tmp_val); |
|
|
|
|
} else { |
|
|
|
|
configuration.drums.pitch[active_sample] = constrain(configuration.drums.pitch[active_sample] + ENCODER[ENC_L].speed(), DRUMS_PITCH_MIN, DRUMS_PITCH_MAX); |
|
|
|
|
} |
|
|
|
|
} else if (LCDML.BT_checkUp()) { |
|
|
|
|
if (display_name == true) { |
|
|
|
|
active_sample = constrain(--active_sample, 0, NUM_DRUMSET_CONFIG - 1); |
|
|
|
|
display.setCursor(LCD_cols - 5, 1); |
|
|
|
|
snprintf_P(tmp_val, sizeof(tmp_val), PSTR("%4.1f"), configuration.drums.pitch[active_sample] / 10.0); |
|
|
|
|
display.print(tmp_val); |
|
|
|
|
} else { |
|
|
|
|
configuration.drums.pitch[active_sample] = constrain(configuration.drums.pitch[active_sample] - ENCODER[ENC_L].speed(), DRUMS_PITCH_MIN, DRUMS_PITCH_MAX); |
|
|
|
|
} |
|
|
|
|
} else if (LCDML.BT_checkEnter()) { |
|
|
|
|
display_name = !display_name; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (display_name == true) { |
|
|
|
|
display.setCursor(1, 1); |
|
|
|
|
display.print(drum_config[active_sample].name); |
|
|
|
|
} else { |
|
|
|
|
display.setCursor(LCD_cols - 5, 1); |
|
|
|
|
snprintf_P(tmp_val, sizeof(tmp_val), PSTR("%4.1f"), configuration.drums.pitch[active_sample] / 10.0); |
|
|
|
|
display.print(tmp_val); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_check_display_name(display_name, 4); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
|
{ |
|
|
|
|
encoderDir[ENC_L].reset(); |
|
|
|
|
midi_learn_mode = false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void UI_func_drum_pan(uint8_t param) { |
|
|
|
|
void UI_func_drum_volume(uint8_t param) { |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void _UI_func_drum_reverb_send_display(bool mode) { |
|
|
|
|
void UI_func_drum_pan(uint8_t param) { |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|