mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
146 lines
6.2 KiB
C++
146 lines
6.2 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE framework.
|
|
Copyright (c) Raw Material Software Limited
|
|
|
|
JUCE is an open source framework subject to commercial or open source
|
|
licensing.
|
|
|
|
By downloading, installing, or using the JUCE framework, or combining the
|
|
JUCE framework with any other source code, object code, content or any other
|
|
copyrightable work, you agree to the terms of the JUCE End User Licence
|
|
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
|
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
|
do not agree to the terms of these agreements, we will not license the JUCE
|
|
framework to you, and you must discontinue the installation or download
|
|
process and cease use of the JUCE framework.
|
|
|
|
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
|
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
|
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
|
|
|
Or:
|
|
|
|
You may also use this code under the terms of the AGPLv3:
|
|
https://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
|
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
|
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
namespace juce
|
|
{
|
|
|
|
AudioParameterInt::AudioParameterInt (const ParameterID& idToUse, const String& nameToUse,
|
|
int minValue, int maxValue, int def,
|
|
const AudioParameterIntAttributes& attributes)
|
|
: RangedAudioParameter (idToUse, nameToUse, attributes.getAudioProcessorParameterWithIDAttributes()),
|
|
range ([minValue, maxValue]
|
|
{
|
|
NormalisableRange<float> rangeWithInterval { (float) minValue, (float) maxValue,
|
|
[] (float start, float end, float v) { return jlimit (start, end, v * (end - start) + start); },
|
|
[] (float start, float end, float v) { return jlimit (0.0f, 1.0f, (v - start) / (end - start)); },
|
|
[] (float start, float end, float v) { return (float) roundToInt (juce::jlimit (start, end, v)); } };
|
|
rangeWithInterval.interval = 1.0f;
|
|
return rangeWithInterval;
|
|
}()),
|
|
value ((float) def),
|
|
defaultValue (convertTo0to1 ((float) def)),
|
|
stringFromIntFunction (attributes.getStringFromValueFunction() != nullptr
|
|
? attributes.getStringFromValueFunction()
|
|
: [] (int v, int) { return String (v); }),
|
|
intFromStringFunction (attributes.getValueFromStringFunction() != nullptr
|
|
? attributes.getValueFromStringFunction()
|
|
: [] (const String& text) { return text.getIntValue(); })
|
|
{
|
|
jassert (minValue < maxValue); // must have a non-zero range of values!
|
|
}
|
|
|
|
AudioParameterInt::~AudioParameterInt()
|
|
{
|
|
#if __cpp_lib_atomic_is_always_lock_free
|
|
static_assert (std::atomic<float>::is_always_lock_free,
|
|
"AudioParameterInt requires a lock-free std::atomic<float>");
|
|
#endif
|
|
}
|
|
|
|
float AudioParameterInt::getValue() const { return convertTo0to1 (value); }
|
|
void AudioParameterInt::setValue (float newValue) { value = convertFrom0to1 (newValue); valueChanged (get()); }
|
|
float AudioParameterInt::getDefaultValue() const { return defaultValue; }
|
|
int AudioParameterInt::getNumSteps() const { return ((int) getNormalisableRange().getRange().getLength()) + 1; }
|
|
float AudioParameterInt::getValueForText (const String& text) const { return convertTo0to1 ((float) intFromStringFunction (text)); }
|
|
String AudioParameterInt::getText (float v, int length) const { return stringFromIntFunction ((int) convertFrom0to1 (v), length); }
|
|
void AudioParameterInt::valueChanged (int) {}
|
|
|
|
AudioParameterInt& AudioParameterInt::operator= (int newValue)
|
|
{
|
|
if (get() != newValue)
|
|
setValueNotifyingHost (convertTo0to1 ((float) newValue));
|
|
|
|
return *this;
|
|
}
|
|
|
|
|
|
//==============================================================================
|
|
//==============================================================================
|
|
#if JUCE_UNIT_TESTS
|
|
|
|
struct AudioParameterIntTests final : public UnitTest
|
|
{
|
|
AudioParameterIntTests()
|
|
: UnitTest ("AudioParameterInt", UnitTestCategories::audioProcessorParameters)
|
|
{}
|
|
|
|
void runTest() override
|
|
{
|
|
beginTest ("Three options switches at the correct points");
|
|
{
|
|
AudioParameterInt intParam ({}, {}, 1, 3, 1);
|
|
|
|
intParam.setValueNotifyingHost (0.0f);
|
|
expectEquals (intParam.get(), 1);
|
|
|
|
intParam.setValueNotifyingHost (0.2f);
|
|
expectEquals (intParam.get(), 1);
|
|
|
|
intParam.setValueNotifyingHost (0.3f);
|
|
expectEquals (intParam.get(), 2);
|
|
|
|
intParam.setValueNotifyingHost (0.7f);
|
|
expectEquals (intParam.get(), 2);
|
|
|
|
intParam.setValueNotifyingHost (0.8f);
|
|
expectEquals (intParam.get(), 3);
|
|
|
|
intParam.setValueNotifyingHost (1.0f);
|
|
expectEquals (intParam.get(), 3);
|
|
}
|
|
|
|
beginTest ("Out-of-bounds input");
|
|
{
|
|
AudioParameterInt intParam ({}, {}, -1, 2, 0);
|
|
|
|
intParam.setValueNotifyingHost (-0.5f);
|
|
expectEquals (intParam.get(), -1);
|
|
|
|
intParam.setValueNotifyingHost (1.5f);
|
|
expectEquals (intParam.get(), 2);
|
|
|
|
intParam = -5;
|
|
expectEquals (intParam.get(), -1);
|
|
|
|
intParam = 5;
|
|
expectEquals (intParam.get(), 2);
|
|
}
|
|
}
|
|
};
|
|
|
|
static AudioParameterIntTests audioParameterIntTests;
|
|
|
|
#endif
|
|
|
|
} // namespace juce
|