|
|
|
//
|
|
|
|
// minidexed.h
|
|
|
|
//
|
|
|
|
// MiniDexed - Dexed FM synthesizer for bare metal Raspberry Pi
|
|
|
|
// Copyright (C) 2022 The MiniDexed Team
|
|
|
|
//
|
|
|
|
// 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 3 of the License, 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. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
#ifndef _minidexed_h
|
|
|
|
#define _minidexed_h
|
|
|
|
|
|
|
|
#include "dexedadapter.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "userinterface.h"
|
|
|
|
#include "sysexfileloader.h"
|
|
|
|
#include "performanceconfig.h"
|
|
|
|
#include "midikeyboard.h"
|
|
|
|
#include "pckeyboard.h"
|
|
|
|
#include "serialmididevice.h"
|
|
|
|
#include "perftimer.h"
|
|
|
|
#include <fatfs/ff.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
|
|
|
#include <circle/types.h>
|
|
|
|
#include <circle/interrupt.h>
|
|
|
|
#include <circle/gpiomanager.h>
|
|
|
|
#include <circle/i2cmaster.h>
|
|
|
|
#include <circle/multicore.h>
|
|
|
|
#include <circle/soundbasedevice.h>
|
Support hierarchic menus (#61)
* Support hierarchic menus
This introduces a new menu engine implemented in the class CUIMenu,
which can be configured with C-tables. This should make it easier to
extend the menus, without modifying the code too much. The UI provides
a main menu, which selects the TG to be edited and a TG sub-menu, which
presents the already known TG parameters (voice bank, voice, volume,
pan, detune and channel). A sub-menu is entered with single click and
left with double click. There are arrows displayed on the LCD, which
show the direction(s), to which the knob can be moved. All TG related
parameters are maintained in the class CMiniDexed now.
* uimenu: Make the tables const
* uimenu: Add sub-menu "Edit Voice"
Menu items can be re-sorted, if necessary.
* uimenu: Add "Reverb" sub-menu
* Map reverb float parameters to range 0 .. 99
* minidexed: Add global (non-TG) parameters
* minidexed: Protect reverb module with spin lock
3 years ago
|
|
|
#include <circle/spinlock.h>
|
|
|
|
#include "effect_platervbstereo.h"
|
|
|
|
|
|
|
|
class CMiniDexed
|
|
|
|
#ifdef ARM_ALLOW_MULTI_CORE
|
|
|
|
: public CMultiCoreSupport
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CMiniDexed (CConfig *pConfig, CInterruptSystem *pInterrupt,
|
|
|
|
CGPIOManager *pGPIOManager, CI2CMaster *pI2CMaster, FATFS *pFileSystem);
|
|
|
|
|
|
|
|
bool Initialize (void);
|
|
|
|
|
|
|
|
void Process (bool bPlugAndPlayUpdated);
|
|
|
|
|
|
|
|
#ifdef ARM_ALLOW_MULTI_CORE
|
|
|
|
void Run (unsigned nCore);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CSysExFileLoader *GetSysExFileLoader (void);
|
|
|
|
|
|
|
|
void BankSelectLSB (unsigned nBankLSB, unsigned nTG);
|
|
|
|
void ProgramChange (unsigned nProgram, unsigned nTG);
|
|
|
|
void SetVolume (unsigned nVolume, unsigned nTG);
|
|
|
|
void SetPan (unsigned nPan, unsigned nTG); // 0 .. 127
|
|
|
|
void SetMasterTune (int nMasterTune, unsigned nTG); // -99 .. 99
|
|
|
|
void SetMIDIChannel (uint8_t uchChannel, unsigned nTG);
|
|
|
|
|
|
|
|
void keyup (int16_t pitch, unsigned nTG);
|
|
|
|
void keydown (int16_t pitch, uint8_t velocity, unsigned nTG);
|
|
|
|
|
|
|
|
void setSustain (bool sustain, unsigned nTG);
|
|
|
|
void setModWheel (uint8_t value, unsigned nTG);
|
|
|
|
void setPitchbend (int16_t value, unsigned nTG);
|
|
|
|
void ControllersRefresh (unsigned nTG);
|
|
|
|
|
Support hierarchic menus (#61)
* Support hierarchic menus
This introduces a new menu engine implemented in the class CUIMenu,
which can be configured with C-tables. This should make it easier to
extend the menus, without modifying the code too much. The UI provides
a main menu, which selects the TG to be edited and a TG sub-menu, which
presents the already known TG parameters (voice bank, voice, volume,
pan, detune and channel). A sub-menu is entered with single click and
left with double click. There are arrows displayed on the LCD, which
show the direction(s), to which the knob can be moved. All TG related
parameters are maintained in the class CMiniDexed now.
* uimenu: Make the tables const
* uimenu: Add sub-menu "Edit Voice"
Menu items can be re-sorted, if necessary.
* uimenu: Add "Reverb" sub-menu
* Map reverb float parameters to range 0 .. 99
* minidexed: Add global (non-TG) parameters
* minidexed: Protect reverb module with spin lock
3 years ago
|
|
|
enum TParameter
|
|
|
|
{
|
|
|
|
ParameterCompressorEnable,
|
|
|
|
ParameterReverbEnable,
|
Support hierarchic menus (#61)
* Support hierarchic menus
This introduces a new menu engine implemented in the class CUIMenu,
which can be configured with C-tables. This should make it easier to
extend the menus, without modifying the code too much. The UI provides
a main menu, which selects the TG to be edited and a TG sub-menu, which
presents the already known TG parameters (voice bank, voice, volume,
pan, detune and channel). A sub-menu is entered with single click and
left with double click. There are arrows displayed on the LCD, which
show the direction(s), to which the knob can be moved. All TG related
parameters are maintained in the class CMiniDexed now.
* uimenu: Make the tables const
* uimenu: Add sub-menu "Edit Voice"
Menu items can be re-sorted, if necessary.
* uimenu: Add "Reverb" sub-menu
* Map reverb float parameters to range 0 .. 99
* minidexed: Add global (non-TG) parameters
* minidexed: Protect reverb module with spin lock
3 years ago
|
|
|
ParameterReverbSize,
|
|
|
|
ParameterReverbHighDamp,
|
|
|
|
ParameterReverbLowDamp,
|
|
|
|
ParameterReverbLowPass,
|
|
|
|
ParameterReverbDiffusion,
|
|
|
|
ParameterReverbSend,
|
|
|
|
ParameterUnknown
|
|
|
|
};
|
|
|
|
|
|
|
|
void SetParameter (TParameter Parameter, int nValue);
|
|
|
|
int GetParameter (TParameter Parameter);
|
|
|
|
|
|
|
|
enum TTGParameter
|
|
|
|
{
|
|
|
|
TGParameterVoiceBank,
|
|
|
|
TGParameterProgram,
|
|
|
|
TGParameterVolume,
|
|
|
|
TGParameterPan,
|
|
|
|
TGParameterMasterTune,
|
|
|
|
TGParameterMIDIChannel,
|
|
|
|
TGParameterUnknown
|
|
|
|
};
|
|
|
|
|
|
|
|
void SetTGParameter (TTGParameter Parameter, int nValue, unsigned nTG);
|
|
|
|
int GetTGParameter (TTGParameter Parameter, unsigned nTG);
|
|
|
|
|
|
|
|
// access (global or OP-related) parameter of the active voice of a TG
|
|
|
|
static const unsigned NoOP = 6; // for global parameters
|
|
|
|
void SetVoiceParameter (uint8_t uchOffset, uint8_t uchValue, unsigned nOP, unsigned nTG);
|
|
|
|
uint8_t GetVoiceParameter (uint8_t uchOffset, unsigned nOP, unsigned nTG);
|
|
|
|
|
|
|
|
std::string GetVoiceName (unsigned nTG);
|
|
|
|
|
|
|
|
bool SavePerformance (void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
int16_t ApplyNoteLimits (int16_t pitch, unsigned nTG); // returns < 0 to ignore note
|
|
|
|
|
|
|
|
void ProcessSound (void);
|
|
|
|
|
|
|
|
#ifdef ARM_ALLOW_MULTI_CORE
|
|
|
|
enum TCoreStatus
|
|
|
|
{
|
|
|
|
CoreStatusInit,
|
|
|
|
CoreStatusIdle,
|
|
|
|
CoreStatusBusy,
|
|
|
|
CoreStatusExit,
|
|
|
|
CoreStatusUnknown
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
CConfig *m_pConfig;
|
|
|
|
|
Support hierarchic menus (#61)
* Support hierarchic menus
This introduces a new menu engine implemented in the class CUIMenu,
which can be configured with C-tables. This should make it easier to
extend the menus, without modifying the code too much. The UI provides
a main menu, which selects the TG to be edited and a TG sub-menu, which
presents the already known TG parameters (voice bank, voice, volume,
pan, detune and channel). A sub-menu is entered with single click and
left with double click. There are arrows displayed on the LCD, which
show the direction(s), to which the knob can be moved. All TG related
parameters are maintained in the class CMiniDexed now.
* uimenu: Make the tables const
* uimenu: Add sub-menu "Edit Voice"
Menu items can be re-sorted, if necessary.
* uimenu: Add "Reverb" sub-menu
* Map reverb float parameters to range 0 .. 99
* minidexed: Add global (non-TG) parameters
* minidexed: Protect reverb module with spin lock
3 years ago
|
|
|
int m_nParameter[ParameterUnknown]; // global (non-TG) parameters
|
|
|
|
|
|
|
|
CDexedAdapter *m_pTG[CConfig::ToneGenerators];
|
Support hierarchic menus (#61)
* Support hierarchic menus
This introduces a new menu engine implemented in the class CUIMenu,
which can be configured with C-tables. This should make it easier to
extend the menus, without modifying the code too much. The UI provides
a main menu, which selects the TG to be edited and a TG sub-menu, which
presents the already known TG parameters (voice bank, voice, volume,
pan, detune and channel). A sub-menu is entered with single click and
left with double click. There are arrows displayed on the LCD, which
show the direction(s), to which the knob can be moved. All TG related
parameters are maintained in the class CMiniDexed now.
* uimenu: Make the tables const
* uimenu: Add sub-menu "Edit Voice"
Menu items can be re-sorted, if necessary.
* uimenu: Add "Reverb" sub-menu
* Map reverb float parameters to range 0 .. 99
* minidexed: Add global (non-TG) parameters
* minidexed: Protect reverb module with spin lock
3 years ago
|
|
|
|
|
|
|
unsigned m_nVoiceBankID[CConfig::ToneGenerators];
|
Support hierarchic menus (#61)
* Support hierarchic menus
This introduces a new menu engine implemented in the class CUIMenu,
which can be configured with C-tables. This should make it easier to
extend the menus, without modifying the code too much. The UI provides
a main menu, which selects the TG to be edited and a TG sub-menu, which
presents the already known TG parameters (voice bank, voice, volume,
pan, detune and channel). A sub-menu is entered with single click and
left with double click. There are arrows displayed on the LCD, which
show the direction(s), to which the knob can be moved. All TG related
parameters are maintained in the class CMiniDexed now.
* uimenu: Make the tables const
* uimenu: Add sub-menu "Edit Voice"
Menu items can be re-sorted, if necessary.
* uimenu: Add "Reverb" sub-menu
* Map reverb float parameters to range 0 .. 99
* minidexed: Add global (non-TG) parameters
* minidexed: Protect reverb module with spin lock
3 years ago
|
|
|
unsigned m_nProgram[CConfig::ToneGenerators];
|
|
|
|
unsigned m_nVolume[CConfig::ToneGenerators];
|
|
|
|
unsigned m_nPan[CConfig::ToneGenerators];
|
Support hierarchic menus (#61)
* Support hierarchic menus
This introduces a new menu engine implemented in the class CUIMenu,
which can be configured with C-tables. This should make it easier to
extend the menus, without modifying the code too much. The UI provides
a main menu, which selects the TG to be edited and a TG sub-menu, which
presents the already known TG parameters (voice bank, voice, volume,
pan, detune and channel). A sub-menu is entered with single click and
left with double click. There are arrows displayed on the LCD, which
show the direction(s), to which the knob can be moved. All TG related
parameters are maintained in the class CMiniDexed now.
* uimenu: Make the tables const
* uimenu: Add sub-menu "Edit Voice"
Menu items can be re-sorted, if necessary.
* uimenu: Add "Reverb" sub-menu
* Map reverb float parameters to range 0 .. 99
* minidexed: Add global (non-TG) parameters
* minidexed: Protect reverb module with spin lock
3 years ago
|
|
|
int m_nMasterTune[CConfig::ToneGenerators];
|
|
|
|
unsigned m_nMIDIChannel[CConfig::ToneGenerators];
|
|
|
|
|
|
|
|
unsigned m_nNoteLimitLow[CConfig::ToneGenerators];
|
|
|
|
unsigned m_nNoteLimitHigh[CConfig::ToneGenerators];
|
|
|
|
int m_nNoteShift[CConfig::ToneGenerators];
|
|
|
|
|
|
|
|
CUserInterface m_UI;
|
|
|
|
CSysExFileLoader m_SysExFileLoader;
|
|
|
|
CPerformanceConfig m_PerformanceConfig;
|
|
|
|
|
|
|
|
CMIDIKeyboard *m_pMIDIKeyboard[CConfig::MaxUSBMIDIDevices];
|
|
|
|
CPCKeyboard m_PCKeyboard;
|
|
|
|
CSerialMIDIDevice m_SerialMIDI;
|
|
|
|
bool m_bUseSerial;
|
|
|
|
|
|
|
|
CSoundBaseDevice *m_pSoundDevice;
|
|
|
|
bool m_bChannelsSwapped;
|
|
|
|
unsigned m_nQueueSizeFrames;
|
|
|
|
|
|
|
|
#ifdef ARM_ALLOW_MULTI_CORE
|
|
|
|
unsigned m_nActiveTGsLog2;
|
|
|
|
volatile TCoreStatus m_CoreStatus[CORES];
|
|
|
|
volatile unsigned m_nFramesToProcess;
|
|
|
|
int16_t m_OutputLevel[CConfig::ToneGenerators][CConfig::MaxChunkSize];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CPerformanceTimer m_GetChunkTimer;
|
|
|
|
bool m_bProfileEnabled;
|
|
|
|
|
|
|
|
AudioEffectPlateReverb* reverb;
|
Support hierarchic menus (#61)
* Support hierarchic menus
This introduces a new menu engine implemented in the class CUIMenu,
which can be configured with C-tables. This should make it easier to
extend the menus, without modifying the code too much. The UI provides
a main menu, which selects the TG to be edited and a TG sub-menu, which
presents the already known TG parameters (voice bank, voice, volume,
pan, detune and channel). A sub-menu is entered with single click and
left with double click. There are arrows displayed on the LCD, which
show the direction(s), to which the knob can be moved. All TG related
parameters are maintained in the class CMiniDexed now.
* uimenu: Make the tables const
* uimenu: Add sub-menu "Edit Voice"
Menu items can be re-sorted, if necessary.
* uimenu: Add "Reverb" sub-menu
* Map reverb float parameters to range 0 .. 99
* minidexed: Add global (non-TG) parameters
* minidexed: Protect reverb module with spin lock
3 years ago
|
|
|
CSpinLock m_ReverbSpinLock;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|