Update performanceconfig.h

pull/228/head
arsamus 3 years ago committed by GitHub
parent 8692ebebfe
commit 6b9ff6fdf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      src/performanceconfig.h

@ -27,6 +27,7 @@
#include <fatfs/ff.h>
#include <Properties/propertiesfatfsfile.h>
#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;

Loading…
Cancel
Save