44 lines
No EOL
1.3 KiB
C++
44 lines
No EOL
1.3 KiB
C++
#pragma once
|
|
#include "Parser.h"
|
|
#include "Region.h"
|
|
#include "SfzHelpers.h"
|
|
#include <vector>
|
|
#include <optional>
|
|
#include <string_view>
|
|
|
|
namespace sfz
|
|
{
|
|
|
|
class Synth: public Parser
|
|
{
|
|
public:
|
|
bool loadSfzFile(const std::filesystem::path& file) override;
|
|
int getNumRegions() const noexcept { return regions.size(); }
|
|
int getNumGroups() const noexcept { return numGroups; }
|
|
int getNumMasters() const noexcept { return numMasters; }
|
|
int getNumCurves() const noexcept { return numCurves; }
|
|
const Region* getRegionView(int idx) { return idx < regions.size() ? ®ions[idx] : nullptr; }
|
|
protected:
|
|
void callback(std::string_view header, std::vector<Opcode> members) override;
|
|
private:
|
|
bool hasGlobal { false };
|
|
bool hasControl { false };
|
|
int numGroups { 0 };
|
|
int numMasters { 0 };
|
|
int numCurves { 0 };
|
|
void clear();
|
|
void handleGlobalOpcodes(const std::vector<Opcode>& members);
|
|
void handleControlOpcodes(const std::vector<Opcode>& members);
|
|
std::vector<Opcode> globalOpcodes;
|
|
std::vector<Opcode> masterOpcodes;
|
|
std::vector<Opcode> groupOpcodes;
|
|
|
|
CCValueArray ccState;
|
|
std::vector<CCNamePair> ccNames;
|
|
std::optional<uint8_t> defaultSwitch;
|
|
|
|
std::vector<Region> regions;
|
|
void buildRegion(const std::vector<Opcode>& regionOpcodes);
|
|
};
|
|
|
|
} |