Changed the way we parse and set the engine type from the config file following @diyelectromusic suggestions

pull/443/head
donluca 2 years ago
parent f2d85b6bdb
commit be06ff0a28
  1. 13
      src/config.cpp
  2. 4
      src/config.h
  3. 1
      src/minidexed.cpp
  4. 4
      src/minidexed.ini

@ -21,6 +21,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>. // along with this program. If not, see <http://www.gnu.org/licenses/>.
// //
#include "config.h" #include "config.h"
#include "../Synth_Dexed/src/dexed.h"
CConfig::CConfig (FATFS *pFileSystem) CConfig::CConfig (FATFS *pFileSystem)
: m_Properties ("minidexed.ini", pFileSystem) : m_Properties ("minidexed.ini", pFileSystem)
@ -122,7 +123,15 @@ void CConfig::Load (void)
m_bMIDIDumpEnabled = m_Properties.GetNumber ("MIDIDumpEnabled", 0) != 0; m_bMIDIDumpEnabled = m_Properties.GetNumber ("MIDIDumpEnabled", 0) != 0;
m_bProfileEnabled = m_Properties.GetNumber ("ProfileEnabled", 0) != 0; m_bProfileEnabled = m_Properties.GetNumber ("ProfileEnabled", 0) != 0;
m_bPerformanceSelectToLoad = m_Properties.GetNumber ("PerformanceSelectToLoad", 1) != 0; m_bPerformanceSelectToLoad = m_Properties.GetNumber ("PerformanceSelectToLoad", 1) != 0;
m_EngineType = (unsigned char)*m_Properties.GetString ("EngineType", "MSFA");
unsigned newEngineType = m_Properties.GetNumber ("EngineType", 1);
if (newEngineType == 2) {
m_EngineType = MKI;
} else if (newEngineType = 3) {
m_EngineType = OPL;
} else {
m_EngineType = MSFA;
}
} }
const char *CConfig::GetSoundDevice (void) const const char *CConfig::GetSoundDevice (void) const
@ -390,7 +399,7 @@ bool CConfig::GetPerformanceSelectToLoad (void) const
return m_bPerformanceSelectToLoad; return m_bPerformanceSelectToLoad;
} }
uint8_t CConfig::GetEngineType (void) const unsigned CConfig::GetEngineType (void) const
{ {
return m_EngineType; return m_EngineType;
} }

@ -141,7 +141,7 @@ public:
// Load performance mode. 0 for load just rotating encoder, 1 load just when Select is pushed // Load performance mode. 0 for load just rotating encoder, 1 load just when Select is pushed
bool GetPerformanceSelectToLoad (void) const; bool GetPerformanceSelectToLoad (void) const;
uint8_t GetEngineType (void) const; unsigned GetEngineType (void) const;
private: private:
@ -210,7 +210,7 @@ private:
bool m_bMIDIDumpEnabled; bool m_bMIDIDumpEnabled;
bool m_bProfileEnabled; bool m_bProfileEnabled;
bool m_bPerformanceSelectToLoad; bool m_bPerformanceSelectToLoad;
uint8_t m_EngineType; unsigned m_EngineType;
}; };

@ -92,6 +92,7 @@ CMiniDexed::CMiniDexed (CConfig *pConfig, CInterruptSystem *pInterrupt,
m_pTG[i] = new CDexedAdapter (CConfig::MaxNotes, pConfig->GetSampleRate ()); m_pTG[i] = new CDexedAdapter (CConfig::MaxNotes, pConfig->GetSampleRate ());
assert (m_pTG[i]); assert (m_pTG[i]);
m_pTG[i]->setEngineType(pConfig->GetEngineType ()); m_pTG[i]->setEngineType(pConfig->GetEngineType ());
m_pTG[i]->activate (); m_pTG[i]->activate ();
} }

@ -88,5 +88,5 @@ ProfileEnabled=0
# Performance # Performance
PerformanceSelectToLoad=1 PerformanceSelectToLoad=1
# Engine Type # Engine Type ( 1=Modern ; 2=Mark I ; 3=OPL )
EngineType=MSFA EngineType=1

Loading…
Cancel
Save