7.0.1 framework update
This commit is contained in:
parent
443fa4cd18
commit
163213bb95
3 changed files with 50 additions and 52 deletions
|
@ -2,15 +2,15 @@
|
|||
==============================================================================
|
||||
|
||||
This file is part of the JUCE library.
|
||||
Copyright (c) 2020 - Raw Material Software Limited
|
||||
Copyright (c) 2022 - Raw Material Software Limited
|
||||
|
||||
JUCE is an open source library subject to commercial or open-source
|
||||
licensing.
|
||||
|
||||
By using JUCE, you agree to the terms of both the JUCE 6 End-User License
|
||||
Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
|
||||
By using JUCE, you agree to the terms of both the JUCE 7 End-User License
|
||||
Agreement and JUCE Privacy Policy.
|
||||
|
||||
End User License Agreement: www.juce.com/juce-6-licence
|
||||
End User License Agreement: www.juce.com/juce-7-licence
|
||||
Privacy Policy: www.juce.com/juce-privacy-policy
|
||||
|
||||
Or: You may also use this code under the terms of the GPL v3 (see
|
||||
|
@ -448,11 +448,12 @@ private:
|
|||
inner.audioDeviceAboutToStart (device);
|
||||
}
|
||||
|
||||
void audioDeviceIOCallback (const float** inputChannelData,
|
||||
void audioDeviceIOCallbackWithContext (const float** inputChannelData,
|
||||
int numInputChannels,
|
||||
float** outputChannelData,
|
||||
int numOutputChannels,
|
||||
int numSamples) override
|
||||
int numSamples,
|
||||
const AudioIODeviceCallbackContext& context) override
|
||||
{
|
||||
jassertquiet ((int) storedInputChannels.size() == numInputChannels);
|
||||
jassertquiet ((int) storedOutputChannels.size() == numOutputChannels);
|
||||
|
@ -466,11 +467,12 @@ private:
|
|||
initChannelPointers (inputChannelData, storedInputChannels, position);
|
||||
initChannelPointers (outputChannelData, storedOutputChannels, position);
|
||||
|
||||
inner.audioDeviceIOCallback (storedInputChannels.data(),
|
||||
inner.audioDeviceIOCallbackWithContext (storedInputChannels.data(),
|
||||
(int) storedInputChannels.size(),
|
||||
storedOutputChannels.data(),
|
||||
(int) storedOutputChannels.size(),
|
||||
blockLength);
|
||||
blockLength,
|
||||
context);
|
||||
|
||||
position += blockLength;
|
||||
}
|
||||
|
@ -598,11 +600,12 @@ private:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
void audioDeviceIOCallback (const float** inputChannelData,
|
||||
void audioDeviceIOCallbackWithContext (const float** inputChannelData,
|
||||
int numInputChannels,
|
||||
float** outputChannelData,
|
||||
int numOutputChannels,
|
||||
int numSamples) override
|
||||
int numSamples,
|
||||
const AudioIODeviceCallbackContext& context) override
|
||||
{
|
||||
if (muteInput)
|
||||
{
|
||||
|
@ -610,8 +613,12 @@ private:
|
|||
inputChannelData = emptyBuffer.getArrayOfReadPointers();
|
||||
}
|
||||
|
||||
player.audioDeviceIOCallback (inputChannelData, numInputChannels,
|
||||
outputChannelData, numOutputChannels, numSamples);
|
||||
player.audioDeviceIOCallbackWithContext (inputChannelData,
|
||||
numInputChannels,
|
||||
outputChannelData,
|
||||
numOutputChannels,
|
||||
numSamples,
|
||||
context);
|
||||
}
|
||||
|
||||
void audioDeviceAboutToStart (AudioIODevice* device) override
|
||||
|
@ -683,7 +690,6 @@ private:
|
|||
class StandaloneFilterWindow : public DocumentWindow,
|
||||
private Button::Listener,
|
||||
public MenuBarModel
|
||||
|
||||
{
|
||||
public:
|
||||
//==============================================================================
|
||||
|
@ -742,7 +748,6 @@ public:
|
|||
optionsButton.setTriggeredOnMouseDown(true);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
pluginHolder.reset (new StandalonePluginHolder (settingsToUse, takeOwnershipOfSettings,
|
||||
preferredDefaultDeviceName, preferredSetupOptions,
|
||||
constrainToConfiguration, autoOpenMidiDevices));
|
||||
|
@ -797,7 +802,6 @@ public:
|
|||
#if JUCE_MAC
|
||||
MenuBarModel::setMacMainMenu(nullptr);
|
||||
#endif
|
||||
|
||||
#if (! JUCE_IOS) && (! JUCE_ANDROID)
|
||||
if (auto* props = pluginHolder->settings.get())
|
||||
{
|
||||
|
@ -840,32 +844,20 @@ public:
|
|||
|
||||
StringArray getMenuBarNames() override
|
||||
{
|
||||
// StringArray menuBarNames;
|
||||
// menuBarNames.add("Options");
|
||||
// return menuBarNames;
|
||||
const char* menuNames[] = { 0 };
|
||||
|
||||
return StringArray(menuNames);
|
||||
}
|
||||
|
||||
PopupMenu getMenuForIndex(int topLevelMenuIndex, const String& menuName) override
|
||||
{
|
||||
PopupMenu m;
|
||||
// m.addItem (1, TRANS("Audio Settings..."));
|
||||
// m.addSeparator();
|
||||
|
||||
return m;
|
||||
}
|
||||
|
||||
void menuItemSelected(int menuItemID, int topLevelMenuIndex) override
|
||||
{
|
||||
handleMenuResult(menuItemID);
|
||||
}
|
||||
|
||||
void menuBarActivated(bool isActive) override {};
|
||||
|
||||
|
||||
|
||||
void handleMenuResult (int result)
|
||||
{
|
||||
switch (result)
|
||||
|
@ -987,11 +979,17 @@ private:
|
|||
|
||||
BorderSize<int> computeBorder() const
|
||||
{
|
||||
const auto outer = owner.getContentComponentBorder();
|
||||
return { outer.getTop() + (shouldShowNotification ? NotificationArea::height : 0),
|
||||
outer.getLeft(),
|
||||
outer.getBottom(),
|
||||
outer.getRight() };
|
||||
const auto nativeFrame = [&]() -> BorderSize<int>
|
||||
{
|
||||
if (auto* peer = owner.getPeer())
|
||||
if (const auto frameSize = peer->getFrameSizeIfPresent())
|
||||
return *frameSize;
|
||||
|
||||
return {};
|
||||
}();
|
||||
|
||||
return nativeFrame.addedTo (owner.getContentComponentBorder())
|
||||
.addedTo (BorderSize<int> { shouldShowNotification ? NotificationArea::height : 0, 0, 0, 0 });
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
14
OB-Xd.jucer
14
OB-Xd.jucer
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<JUCERPROJECT id="mxW328" name="OB-Xd" projectType="audioplug" version="2.8.0"
|
||||
<JUCERPROJECT id="mxW328" name="OB-Xd" projectType="audioplug" version="2.9.0"
|
||||
bundleIdentifier="com.discoDSP.Obxd" includeBinaryInAppConfig="1"
|
||||
pluginName="OB-Xd" pluginDesc="Emulation of famous OB-X, OB-Xa and OB-8 synths"
|
||||
pluginManufacturer="discoDSP" pluginManufacturerCode="DDSP" pluginCode="Obxd"
|
||||
|
@ -9,12 +9,12 @@
|
|||
pluginAUExportPrefix="" pluginRTASCategory="2048" aaxIdentifier="com.discodsp.obxd"
|
||||
companyName="discoDSP" companyWebsite="https://www.discodsp.com/"
|
||||
pluginIsMidiEffectPlugin="0" pluginCharacteristicsValue="pluginIsSynth,pluginWantsMidiIn"
|
||||
pluginFormats="buildAU,buildStandalone,buildVST,buildVST3" buildVST="1"
|
||||
buildVST3="1" buildAU="1" buildAUv3="0" buildRTAS="0" buildAAX="0"
|
||||
buildStandalone="1" enableIAA="0" jucerFormatVersion="1" companyCopyright="discoDSP"
|
||||
companyEmail="contactus@discodsp.com" pluginAAXCategory="2048"
|
||||
pluginVSTCategory="kPlugCategSynth" displaySplashScreen="0" pluginChannelConfigs="{0,2}"
|
||||
pluginAUMainType="'aumu'" pluginVST3Category="Synth">
|
||||
pluginFormats="buildAU,buildLV2,buildStandalone,buildVST,buildVST3"
|
||||
buildVST="1" buildVST3="1" buildAU="1" buildAUv3="0" buildRTAS="0"
|
||||
buildAAX="0" buildStandalone="1" enableIAA="0" jucerFormatVersion="1"
|
||||
pluginChannelConfigs="{0,2}" companyCopyright="discoDSP" companyEmail="contactus@discodsp.com"
|
||||
pluginAAXCategory="2048" pluginVSTCategory="kPlugCategSynth"
|
||||
displaySplashScreen="0">
|
||||
<MAINGROUP id="NZ3n4V" name="OB-Xd">
|
||||
<GROUP id="{90740217-84AB-FD0D-FBC4-CA9EA2C68D5E}" name="Source">
|
||||
<GROUP id="{E11C29DD-69D5-DA26-5CFF-B65751876DEE}" name="MTS">
|
||||
|
|
|
@ -40,7 +40,7 @@ AudioProcessorValueTreeState::ParameterLayout createParameterLayout()
|
|||
auto range = NormalisableRange<float> {0.0f, 1.0f};
|
||||
auto defaultValue = defaultParams.values[i];
|
||||
auto parameter = std::make_unique<AudioParameterFloat> (
|
||||
id, name, range, defaultValue, String{}, AudioProcessorParameter::genericParameter,
|
||||
ParameterID{ id, 1 }, name, range, defaultValue, String{}, AudioProcessorParameter::genericParameter,
|
||||
[=](float value, int /*maxStringLength*/)
|
||||
{
|
||||
return ObxdAudioProcessor::getTrueParameterValueFromNormalizedRange(i, value);
|
||||
|
|
Loading…
Reference in a new issue