2020-03-03 13:11:31 +01:00
|
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
|
|
|
|
// This code is part of the sfizz library and is licensed under a BSD 2-clause
|
|
|
|
|
// license. You should have receive a LICENSE.md file along with the code.
|
|
|
|
|
// If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#include "absl/types/span.h"
|
|
|
|
|
#include <array>
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
namespace sfz
|
|
|
|
|
{
|
|
|
|
|
struct Opcode;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief A value-mapping controller curve, built-in or user-defined.
|
|
|
|
|
*/
|
|
|
|
|
class Curve {
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* @brief Compute the curve for integral x in domain [0:127]
|
|
|
|
|
*/
|
|
|
|
|
float evalCC7(int value7) const;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Compute the curve for real x in domain [0:127]
|
|
|
|
|
*/
|
|
|
|
|
float evalCC7(float value7) const;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Compute the curve for real x in domain [0:1]
|
|
|
|
|
*/
|
|
|
|
|
float evalNormalized(float value) const;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Kind of curve interpolator
|
|
|
|
|
*/
|
|
|
|
|
enum class Interpolator {
|
|
|
|
|
Linear,
|
|
|
|
|
Spline,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Build a curve based on contents of a <curve> header
|
|
|
|
|
*
|
|
|
|
|
* @param members contents of the <curve> header
|
|
|
|
|
* @param itp kind of interpolator to fill between values
|
|
|
|
|
* @param limit whether to force values in domain [-1:+1]
|
|
|
|
|
*/
|
|
|
|
|
static Curve buildCurveFromHeader(
|
|
|
|
|
absl::Span<const Opcode> members,
|
|
|
|
|
Interpolator itp = Interpolator::Linear, bool limit = false);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Number of predefined curves
|
|
|
|
|
*/
|
|
|
|
|
enum { NumPredefinedCurves = 7 };
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Build a predefined curve
|
|
|
|
|
*/
|
|
|
|
|
static Curve buildPredefinedCurve(int index);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Build a linear curve from v1 to v2
|
|
|
|
|
*/
|
|
|
|
|
static Curve buildBipolar(float v1, float v2);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get a linear curve from 0 to 1
|
|
|
|
|
*/
|
|
|
|
|
static const Curve& getDefault();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
enum { NumValues = 128 };
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void fill(Interpolator itp, const bool fillStatus[NumValues]);
|
|
|
|
|
void lerpFill(const bool fillStatus[NumValues]);
|
|
|
|
|
void splineFill(const bool fillStatus[NumValues]);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
std::array<float, NumValues> _points { };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief A collection of curves organized by index.
|
|
|
|
|
*/
|
|
|
|
|
class CurveSet {
|
|
|
|
|
public:
|
|
|
|
|
/*
|
|
|
|
|
* @brief Create a curve set initialized with the default curves.
|
|
|
|
|
*/
|
|
|
|
|
static CurveSet createPredefined();
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* @brief Add a curve.
|
|
|
|
|
*
|
|
|
|
|
* @param curve a curve to add
|
|
|
|
|
* @param explicitIndex if not -1, the explicit index of the curve
|
|
|
|
|
*/
|
|
|
|
|
void addCurve(const Curve& curve, int explicitIndex = -1);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Add a curve based on contents of a <curve> header
|
|
|
|
|
*
|
|
|
|
|
* @param members contents of the <curve> header
|
|
|
|
|
*/
|
|
|
|
|
void addCurveFromHeader(absl::Span<const Opcode> members);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get a curve given its index
|
|
|
|
|
*/
|
|
|
|
|
const Curve& getCurve(unsigned index) const;
|
|
|
|
|
|
2020-03-03 16:04:28 +01:00
|
|
|
/**
|
|
|
|
|
* @brief Get the number of slots.
|
|
|
|
|
*/
|
|
|
|
|
unsigned getNumCurves() const;
|
|
|
|
|
|
2020-03-03 13:11:31 +01:00
|
|
|
private:
|
|
|
|
|
std::vector<std::unique_ptr<Curve>> _curves;
|
|
|
|
|
bool _useExplicitIndexing = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace sfz
|
|
|
|
|
|
|
|
|
|
#include "Curve.hpp"
|