2019-08-30 00:49:58 +02:00
|
|
|
// Copyright (c) 2019, Paul Ferrand
|
|
|
|
|
// All rights reserved.
|
|
|
|
|
|
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
|
// list of conditions and the following disclaimer.
|
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
|
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
|
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
|
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
|
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
2019-08-30 15:28:30 +02:00
|
|
|
#include "ADSREnvelope.h"
|
2019-08-25 14:01:03 +02:00
|
|
|
#include "catch2/catch.hpp"
|
|
|
|
|
#include <absl/algorithm/container.h>
|
|
|
|
|
#include <absl/types/span.h>
|
2019-08-22 17:18:09 +02:00
|
|
|
#include <algorithm>
|
2019-08-25 14:01:03 +02:00
|
|
|
#include <array>
|
2019-08-22 17:18:09 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
using namespace Catch::literals;
|
|
|
|
|
|
2019-08-25 14:01:03 +02:00
|
|
|
template <class Type>
|
|
|
|
|
inline bool approxEqual(absl::Span<const Type> lhs, absl::Span<const Type> rhs, Type eps = 1e-3)
|
2019-08-22 17:18:09 +02:00
|
|
|
{
|
|
|
|
|
if (lhs.size() != rhs.size())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < rhs.size(); ++i)
|
2019-08-25 14:01:03 +02:00
|
|
|
if (rhs[i] != Approx(lhs[i]).epsilon(eps)) {
|
2019-08-22 17:18:09 +02:00
|
|
|
std::cerr << lhs[i] << " != " << rhs[i] << " at index " << i << '\n';
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Basic state")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
std::array<float, 5> output;
|
|
|
|
|
std::array<float, 5> expected { 0.0, 0.0, 0.0, 0.0, 0.0 };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Attack")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(2, 0);
|
|
|
|
|
std::array<float, 5> output;
|
|
|
|
|
std::array<float, 5> expected { 0.5, 1.0, 1.0, 1.0, 1.0 };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
|
|
|
|
|
envelope.reset(2, 0);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Attack again")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(3, 0);
|
|
|
|
|
std::array<float, 5> output;
|
|
|
|
|
std::array<float, 5> expected { 0.33333, 0.66667, 1.0, 1.0, 1.0 };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
|
|
|
|
|
envelope.reset(3, 0);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Release")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(2, 4);
|
|
|
|
|
envelope.startRelease(2);
|
|
|
|
|
std::array<float, 8> output;
|
|
|
|
|
std::array<float, 8> expected { 0.5, 1.0, 0.08409f, 0.00707f, 0.000594604f, 0.00005f, 0.0f, 0.0f };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
|
|
|
|
|
2019-08-22 17:18:09 +02:00
|
|
|
envelope.reset(2, 4);
|
|
|
|
|
envelope.startRelease(2);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Delay")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(2, 4, 1.0f, 2);
|
|
|
|
|
std::array<float, 10> output;
|
|
|
|
|
envelope.startRelease(4);
|
|
|
|
|
std::array<float, 10> expected { 0.0, 0.0, 0.5, 1.0, 0.08409f, 0.00707f, 0.000594604f, 0.00005f, 0.0f, 0.0f };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
|
|
|
|
|
2019-08-22 17:18:09 +02:00
|
|
|
envelope.reset(2, 4, 1.0f, 2);
|
|
|
|
|
envelope.startRelease(4);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Lower sustain")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(2, 4, 0.5, 2);
|
|
|
|
|
std::array<float, 10> output;
|
|
|
|
|
std::array<float, 10> expected { 0.0, 0.0, 0.5, 1.0, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
|
|
|
|
|
envelope.reset(2, 4, 0.5, 2);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Decay")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(2, 4, 0.5, 2, 2);
|
|
|
|
|
std::array<float, 10> output;
|
|
|
|
|
std::array<float, 10> expected { 0.0, 0.0, 0.5, 1.0, 0.707107, 0.5, 0.5, 0.5, 0.5, 0.5 };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
|
|
|
|
|
envelope.reset(2, 4, 0.5, 2, 2);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Hold")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(2, 4, 0.5, 2, 2, 2);
|
|
|
|
|
std::array<float, 12> output;
|
|
|
|
|
std::array<float, 12> expected { 0.0, 0.0, 0.5, 1.0, 1.0, 1.0, 0.707107, 0.5, 0.5, 0.5, 0.5, 0.5 };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
|
|
|
|
|
envelope.reset(2, 4, 0.5, 2, 2, 2);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Hold with release")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(2, 4, 0.5, 2, 2, 2);
|
|
|
|
|
envelope.startRelease(8);
|
|
|
|
|
std::array<float, 14> output;
|
2019-08-25 14:01:03 +02:00
|
|
|
std::array<float, 14> expected { 0.0, 0.0, 0.5, 1.0, 1.0, 1.0, 0.707107, 0.5, 0.05, 0.005, 0.0005, 0.00005, 0.0, 0.0 };
|
|
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
|
|
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
envelope.reset(2, 4, 0.5, 2, 2, 2);
|
|
|
|
|
envelope.startRelease(8);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("[ADSREnvelope] Hold with release 2")
|
|
|
|
|
{
|
|
|
|
|
sfz::ADSREnvelope<float> envelope;
|
|
|
|
|
envelope.reset(2, 4, 0.5, 2, 2, 2);
|
|
|
|
|
envelope.startRelease(4);
|
|
|
|
|
std::array<float, 14> output;
|
|
|
|
|
std::array<float, 14> expected { 0.0, 0.0, 0.5, 1.0, 0.08409, 0.00707, 0.000594604, 0.00005, 0.0, 0.0, 0.0, 0.0 };
|
2019-08-25 14:01:03 +02:00
|
|
|
for (auto& out : output)
|
2019-08-22 17:18:09 +02:00
|
|
|
out = envelope.getNextValue();
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
envelope.reset(2, 4, 0.5, 2, 2, 2);
|
|
|
|
|
envelope.startRelease(4);
|
|
|
|
|
absl::c_fill(output, -1.0);
|
|
|
|
|
envelope.getBlock(absl::MakeSpan(output));
|
2019-08-25 14:01:03 +02:00
|
|
|
REQUIRE(approxEqual<float>(output, expected));
|
2019-08-22 17:18:09 +02:00
|
|
|
}
|