Second try with more functionality plugged in and compiling...

pull/365/head
diyelectromusic 3 years ago
parent 242455b104
commit db808d4cfc
  1. 7
      src/mididevice.cpp
  2. 4
      src/midikeyboard.cpp
  3. 2
      src/midikeyboard.h
  4. 4
      src/pckeyboard.cpp
  5. 2
      src/pckeyboard.h
  6. 4
      src/serialmididevice.cpp
  7. 2
      src/serialmididevice.h
  8. 24
      src/uibuttons.cpp
  9. 5
      src/uibuttons.h
  10. 11
      src/userinterface.cpp
  11. 4
      src/userinterface.h

@ -60,9 +60,10 @@ LOGMODULE ("mididevice");
CMIDIDevice::TDeviceMap CMIDIDevice::s_DeviceMap; CMIDIDevice::TDeviceMap CMIDIDevice::s_DeviceMap;
CMIDIDevice::CMIDIDevice (CMiniDexed *pSynthesizer, CConfig *pConfig) CMIDIDevice::CMIDIDevice (CMiniDexed *pSynthesizer, CConfig *pConfig, CUserInterface *pUI)
: m_pSynthesizer (pSynthesizer), : m_pSynthesizer (pSynthesizer),
m_pConfig (pConfig) m_pConfig (pConfig),
m_pUI (pUI)
{ {
for (unsigned nTG = 0; nTG < CConfig::ToneGenerators; nTG++) for (unsigned nTG = 0; nTG < CConfig::ToneGenerators; nTG++)
{ {
@ -190,7 +191,7 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign
{ {
break; break;
} }
CUserInterface::UIMIDICCHandler (ucChannel, pMessage[1], pMessage[2]); m_pUI->UIMIDICCHandler (ucChannel, pMessage[1], pMessage[2]);
break; break;
} }

@ -35,8 +35,8 @@ TMIDIPacketHandler * const CMIDIKeyboard::s_pMIDIPacketHandler[MaxInstances] =
MIDIPacketHandler3 MIDIPacketHandler3
}; };
CMIDIKeyboard::CMIDIKeyboard (CMiniDexed *pSynthesizer, CConfig *pConfig, unsigned nInstance) CMIDIKeyboard::CMIDIKeyboard (CMiniDexed *pSynthesizer, CConfig *pConfig, CUserInterface *pUI, unsigned nInstance)
: CMIDIDevice (pSynthesizer, pConfig), : CMIDIDevice (pSynthesizer, pConfig, pUI),
m_nInstance (nInstance), m_nInstance (nInstance),
m_pMIDIDevice (0) m_pMIDIDevice (0)
{ {

@ -39,7 +39,7 @@ public:
static const unsigned MaxInstances = 4; static const unsigned MaxInstances = 4;
public: public:
CMIDIKeyboard (CMiniDexed *pSynthesizer, CConfig *pConfig, unsigned nInstance = 0); CMIDIKeyboard (CMiniDexed *pSynthesizer, CConfig *pConfig, CUserInterface *pUI, unsigned nInstance = 0);
~CMIDIKeyboard (void); ~CMIDIKeyboard (void);
void Process (boolean bPlugAndPlayUpdated); void Process (boolean bPlugAndPlayUpdated);

@ -60,8 +60,8 @@ static TKeyInfo KeyTable[] =
CPCKeyboard *CPCKeyboard::s_pThis = 0; CPCKeyboard *CPCKeyboard::s_pThis = 0;
CPCKeyboard::CPCKeyboard (CMiniDexed *pSynthesizer, CConfig *pConfig) CPCKeyboard::CPCKeyboard (CMiniDexed *pSynthesizer, CConfig *pConfig, CUserInterface *pUI)
: CMIDIDevice (pSynthesizer, pConfig), : CMIDIDevice (pSynthesizer, pConfig, pUI),
m_pKeyboard (0) m_pKeyboard (0)
{ {
s_pThis = this; s_pThis = this;

@ -31,7 +31,7 @@ class CMiniDexed;
class CPCKeyboard : public CMIDIDevice class CPCKeyboard : public CMIDIDevice
{ {
public: public:
CPCKeyboard (CMiniDexed *pSynthesizer, CConfig *pConfig); CPCKeyboard (CMiniDexed *pSynthesizer, CConfig *pConfig, CUserInterface *pUI);
~CPCKeyboard (void); ~CPCKeyboard (void);
void Process (boolean bPlugAndPlayUpdated); void Process (boolean bPlugAndPlayUpdated);

@ -29,8 +29,8 @@
LOGMODULE("serialmididevice"); LOGMODULE("serialmididevice");
CSerialMIDIDevice::CSerialMIDIDevice (CMiniDexed *pSynthesizer, CInterruptSystem *pInterrupt, CSerialMIDIDevice::CSerialMIDIDevice (CMiniDexed *pSynthesizer, CInterruptSystem *pInterrupt,
CConfig *pConfig) CConfig *pConfig, CUserInterface *pUI)
: CMIDIDevice (pSynthesizer, pConfig), : CMIDIDevice (pSynthesizer, pConfig, pUI),
m_pConfig (pConfig), m_pConfig (pConfig),
m_Serial (pInterrupt, TRUE), m_Serial (pInterrupt, TRUE),
m_nSerialState (0), m_nSerialState (0),

@ -38,7 +38,7 @@ class CMiniDexed;
class CSerialMIDIDevice : public CMIDIDevice class CSerialMIDIDevice : public CMIDIDevice
{ {
public: public:
CSerialMIDIDevice (CMiniDexed *pSynthesizer, CInterruptSystem *pInterrupt, CConfig *pConfig); CSerialMIDIDevice (CMiniDexed *pSynthesizer, CInterruptSystem *pInterrupt, CConfig *pConfig, CUserInterface *pUI);
~CSerialMIDIDevice (void); ~CSerialMIDIDevice (void);
boolean Initialize (void); boolean Initialize (void);

@ -190,6 +190,19 @@ CUIButton::BtnTrigger CUIButton::ReadTrigger (void)
return BtnTriggerNone; return BtnTriggerNone;
} }
void CUIButton::Write (unsigned nValue) {
// This only makes sense for MIDI buttons.
unsigned pin = getPinNumber();
if (isMidiPin(pin))
{
if (m_pin)
{
// Update the "MIDI Pin"
m_pin->Write(nValue);
}
}
}
CUIButton::BtnEvent CUIButton::Read (void) { CUIButton::BtnEvent CUIButton::Read (void) {
BtnTrigger trigger = ReadTrigger(); BtnTrigger trigger = ReadTrigger();
@ -423,3 +436,14 @@ void CUIButtons::ResetButton (unsigned pinNumber)
} }
} }
} }
void CUIButtons::BtnMIDICCHandler (unsigned nMidiCC, unsigned nMidiData)
{
unsigned midiPin = ccToMidiPin(nMidiCC);
for (unsigned i=0; i<MAX_BUTTONS; i++) {
if (m_buttons[i].getPinNumber() == midiPin) {
m_buttons[i].Write (nMidiData);
}
}
}

@ -69,9 +69,10 @@ public:
BtnTrigger ReadTrigger (void); BtnTrigger ReadTrigger (void);
BtnEvent Read (void); BtnEvent Read (void);
void Write (unsigned nValue); // MIDI buttons only!
static BtnTrigger triggerTypeFromString(const char* triggerString); static BtnTrigger triggerTypeFromString(const char* triggerString);
private: private:
// Pin number // Pin number
unsigned m_pinNumber; unsigned m_pinNumber;
@ -122,6 +123,8 @@ public:
void Update (void); void Update (void);
void ResetButton (unsigned pinNumber); void ResetButton (unsigned pinNumber);
void BtnMIDICCHandler (unsigned nMidiCC, unsigned nMidiData);
private: private:
// Array of normal GPIO buttons and "MIDI buttons" // Array of normal GPIO buttons and "MIDI buttons"

@ -27,8 +27,6 @@
LOGMODULE ("ui"); LOGMODULE ("ui");
unsigned CUserInterface::nMIDIButtonCh = 255;
CUserInterface::CUserInterface (CMiniDexed *pMiniDexed, CGPIOManager *pGPIOManager, CI2CMaster *pI2CMaster, CConfig *pConfig) CUserInterface::CUserInterface (CMiniDexed *pMiniDexed, CGPIOManager *pGPIOManager, CI2CMaster *pI2CMaster, CConfig *pConfig)
: m_pMiniDexed (pMiniDexed), : m_pMiniDexed (pMiniDexed),
m_pGPIOManager (pGPIOManager), m_pGPIOManager (pGPIOManager),
@ -131,7 +129,7 @@ bool CUserInterface::Initialize (void)
} }
m_pUIButtons->RegisterEventHandler (UIButtonsEventStub, this); m_pUIButtons->RegisterEventHandler (UIButtonsEventStub, this);
nMIDIButtonCh = m_pConfig->GetMIDIButtonCh (); m_nMIDIButtonCh = m_pConfig->GetMIDIButtonCh ();
LOGDBG ("Button User Interface initialized"); LOGDBG ("Button User Interface initialized");
@ -334,9 +332,14 @@ void CUserInterface::UIButtonsEventStub (CUIButton::BtnEvent Event, void *pParam
void CUserInterface::UIMIDICCHandler (unsigned nMidiCh, unsigned nMidiCC, unsigned nMidiData) void CUserInterface::UIMIDICCHandler (unsigned nMidiCh, unsigned nMidiCC, unsigned nMidiData)
{ {
if ((nMIDIButtonCh != nMidiCh) && (nMIDIButtonCh != 0)) if ((m_nMIDIButtonCh != nMidiCh) && (m_nMIDIButtonCh != 0))
{ {
// Message not on the MIDI Button channel and MIDI buttons not in OMNI mode // Message not on the MIDI Button channel and MIDI buttons not in OMNI mode
return; return;
} }
if (m_pUIButtons)
{
m_pUIButtons->BtnMIDICCHandler (nMidiCC, nMidiData);
}
} }

@ -53,7 +53,7 @@ public:
bool bArrowDown, bool bArrowUp); bool bArrowDown, bool bArrowUp);
// To be called from the MIDI device on reception of a MIDI CC message // To be called from the MIDI device on reception of a MIDI CC message
static void UIMIDICCHandler (unsigned nMidiCh, unsigned nMidiCC, unsigned nMidiData); void UIMIDICCHandler (unsigned nMidiCh, unsigned nMidiCC, unsigned nMidiData);
private: private:
void LCDWrite (const char *pString); // Print to optional HD44780 display void LCDWrite (const char *pString); // Print to optional HD44780 display
@ -76,7 +76,7 @@ private:
CUIButtons *m_pUIButtons; CUIButtons *m_pUIButtons;
static unsigned nMIDIButtonCh; unsigned m_nMIDIButtonCh;
CKY040 *m_pRotaryEncoder; CKY040 *m_pRotaryEncoder;
bool m_bSwitchPressed; bool m_bSwitchPressed;

Loading…
Cancel
Save