diff --git a/src/performanceconfig.h b/src/performanceconfig.h index 44057d4..dc74831 100644 --- a/src/performanceconfig.h +++ b/src/performanceconfig.h @@ -27,6 +27,7 @@ #include #include #define NUM_VOICE_PARAM 156 +#define PERFORMANCE_DIR "performance" class CPerformanceConfig // Performance configuration { @@ -96,6 +97,19 @@ public: void SetReverbDiffusion (unsigned nValue); void SetReverbLevel (unsigned nValue); + bool VoiceDataFilled(unsigned nTG); + void ListPerformances(); + //std::string m_DirName; + void SetNewPerformance (unsigned nID); + std::string GetPerformanceFileName(unsigned nID); + std::string GetPerformanceName(unsigned nID); + unsigned GetLastPerformance(); + void SetActualPerformanceID(unsigned nID); + unsigned GetActualPerformanceID(); + void SetMenuSelectedPerformanceID(unsigned nID); + unsigned GetMenuSelectedPerformanceID(); + bool CreateNewPerformanceFile(std::string sPerformanceName); + private: CPropertiesFatFsFile m_Properties; @@ -118,6 +132,13 @@ private: unsigned m_nPortamentoTime[CConfig::ToneGenerators]; std::string m_nVoiceDataTxt[CConfig::ToneGenerators]; + unsigned nLastPerformance; + unsigned nLastFileIndex; + unsigned nActualPerformance = 0; + unsigned nMenuSelectedPerformance = 0; + std::string m_nPerformanceFileName[40]; + FATFS *m_pFileSystem; + bool m_bCompressorEnable; bool m_bReverbEnable; unsigned m_nReverbSize;