mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-26 09:28:07 +02:00
This is a squash of 50 commits. This merges the capabilities of BatchCommands and Effects using a new AudacityCommand class. AudacityCommand provides one function to specify the parameters, and then we leverage that one function in automation, whether by chains, mod-script-pipe or (future) Nyquist. - Now have AudacityCommand which is using the same mechanism as Effect - Has configurable parameters - Has data-entry GUI (built using shuttle GUI) - Registers with PluginManager. - Menu commands now provided in chains, and to python batch. - Tested with Zoom Toggle. - ShuttleParams now can set, get, set defaults, validate and specify the parameters. - Bugfix: Don't overwrite values with defaults first time out. - Add DefineParams function for all built-in effects. - Extend CommandContext to carry output channels for results. We abuse EffectsManager. It handles both Effects and AudacityCommands now. In time an Effect should become a special case of AudacityCommand and we'll split and rename the EffectManager class. - Don't use 'default' as a parameter name. - Massive renaming for CommandDefinitionInterface - EffectIdentInterface becomes EffectDefinitionInterface - EffectAutomationParameters becomes CommandAutomationParameters - PluginType is now a bit field. This way we can search for related types at the same time. - Most old batch commands made into AudacityCommands. The ones that weren't are for a reason. They are used by mod-script-pipe to carry commands and responses across from a non-GUI thread to the GUI thread. - Major tidy up of ScreenshotCommand - Reworking of SelectCommand - GetPreferenceCommand and SetPreferenceCommand - GetTrackInfo and SetTrackInfo - GetInfoCommand - Help, Open, Save, Import and Export commands. - Removed obsolete commands ExecMenu, GetProjectInfo and SetProjectInfo which are now better handled by other commands. - JSONify "GetInfo: Commands" output, i.e. commas in the right places. - General work on better Doxygen. - Lyrics -> LyricsPanel - Meter -> MeterPanel - Updated Linux makefile. - Scripting commands added into Extra menu. - Distinct names for previously duplicated find-clipping parameters. - Fixed longstanding error with erroneous status field number which previously caused an ASSERT in debug. - Sensible formatting of numbers in Chains, 0.1 not 0.1000000000137
202 lines
4.3 KiB
C++
202 lines
4.3 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Echo.cpp
|
|
|
|
Dominic Mazzoni
|
|
Vaughan Johnson (dialog)
|
|
|
|
*******************************************************************//**
|
|
|
|
\class EffectEcho
|
|
\brief An Effect that causes an echo, variable delay and volume.
|
|
|
|
*//****************************************************************//**
|
|
|
|
\class EchoDialog
|
|
\brief EchoDialog used with EffectEcho
|
|
|
|
*//*******************************************************************/
|
|
|
|
#include "../Audacity.h"
|
|
#include "Echo.h"
|
|
|
|
#include <float.h>
|
|
|
|
#include <wx/intl.h>
|
|
|
|
#include "../ShuttleGui.h"
|
|
#include "../Shuttle.h"
|
|
#include "../widgets/ErrorDialog.h"
|
|
#include "../widgets/valnum.h"
|
|
#include "../SampleFormat.h"
|
|
|
|
// Define keys, defaults, minimums, and maximums for the effect parameters
|
|
//
|
|
// Name Type Key Def Min Max Scale
|
|
Param( Delay, float, wxT("Delay"), 1.0f, 0.001f, FLT_MAX, 1.0f );
|
|
Param( Decay, float, wxT("Decay"), 0.5f, 0.0f, FLT_MAX, 1.0f );
|
|
|
|
EffectEcho::EffectEcho()
|
|
{
|
|
delay = DEF_Delay;
|
|
decay = DEF_Decay;
|
|
|
|
SetLinearEffectFlag(true);
|
|
}
|
|
|
|
EffectEcho::~EffectEcho()
|
|
{
|
|
}
|
|
|
|
// IdentInterface implementation
|
|
|
|
wxString EffectEcho::GetSymbol()
|
|
{
|
|
return ECHO_PLUGIN_SYMBOL;
|
|
}
|
|
|
|
wxString EffectEcho::GetDescription()
|
|
{
|
|
return _("Repeats the selected audio again and again");
|
|
}
|
|
|
|
wxString EffectEcho::ManualPage()
|
|
{
|
|
return wxT("Echo");
|
|
}
|
|
|
|
// EffectDefinitionInterface implementation
|
|
|
|
EffectType EffectEcho::GetType()
|
|
{
|
|
return EffectTypeProcess;
|
|
}
|
|
|
|
// EffectClientInterface implementation
|
|
|
|
unsigned EffectEcho::GetAudioInCount()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
unsigned EffectEcho::GetAudioOutCount()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
bool EffectEcho::ProcessInitialize(sampleCount WXUNUSED(totalLen), ChannelNames WXUNUSED(chanMap))
|
|
{
|
|
if (delay == 0.0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
histPos = 0;
|
|
auto requestedHistLen = (sampleCount) (mSampleRate * delay);
|
|
|
|
// Guard against extreme delay values input by the user
|
|
try {
|
|
// Guard against huge delay values from the user.
|
|
// Don't violate the assertion in as_size_t
|
|
if (requestedHistLen !=
|
|
(histLen = static_cast<size_t>(requestedHistLen.as_long_long())))
|
|
throw std::bad_alloc{};
|
|
history.reinit(histLen, true);
|
|
}
|
|
catch ( const std::bad_alloc& ) {
|
|
Effect::MessageBox(_("Requested value exceeds memory capacity."));
|
|
return false;
|
|
}
|
|
|
|
return history != NULL;
|
|
}
|
|
|
|
bool EffectEcho::ProcessFinalize()
|
|
{
|
|
history.reset();
|
|
return true;
|
|
}
|
|
|
|
size_t EffectEcho::ProcessBlock(float **inBlock, float **outBlock, size_t blockLen)
|
|
{
|
|
float *ibuf = inBlock[0];
|
|
float *obuf = outBlock[0];
|
|
|
|
for (decltype(blockLen) i = 0; i < blockLen; i++, histPos++)
|
|
{
|
|
if (histPos == histLen)
|
|
{
|
|
histPos = 0;
|
|
}
|
|
history[histPos] = obuf[i] = ibuf[i] + history[histPos] * decay;
|
|
}
|
|
|
|
return blockLen;
|
|
}
|
|
|
|
bool EffectEcho::DefineParams( ShuttleParams & S ){
|
|
S.SHUTTLE_PARAM( delay, Delay );
|
|
S.SHUTTLE_PARAM( decay, Decay );
|
|
return true;
|
|
}
|
|
|
|
|
|
bool EffectEcho::GetAutomationParameters(CommandAutomationParameters & parms)
|
|
{
|
|
parms.WriteFloat(KEY_Delay, delay);
|
|
parms.WriteFloat(KEY_Decay, decay);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool EffectEcho::SetAutomationParameters(CommandAutomationParameters & parms)
|
|
{
|
|
ReadAndVerifyFloat(Delay);
|
|
ReadAndVerifyFloat(Decay);
|
|
|
|
delay = Delay;
|
|
decay = Decay;
|
|
|
|
return true;
|
|
}
|
|
|
|
void EffectEcho::PopulateOrExchange(ShuttleGui & S)
|
|
{
|
|
S.AddSpace(0, 5);
|
|
|
|
S.StartMultiColumn(2, wxALIGN_CENTER);
|
|
{
|
|
FloatingPointValidator<double> vldDelay(3, &delay, NumValidatorStyle::NO_TRAILING_ZEROES);
|
|
vldDelay.SetRange(MIN_Delay, MAX_Delay);
|
|
S.AddTextBox(_("Delay time (seconds):"), wxT(""), 10)->SetValidator(vldDelay);
|
|
|
|
FloatingPointValidator<double> vldDecay(3, &decay, NumValidatorStyle::NO_TRAILING_ZEROES);
|
|
vldDecay.SetRange(MIN_Decay, MAX_Decay);
|
|
S.AddTextBox(_("Decay factor:"), wxT(""), 10)->SetValidator(vldDecay);
|
|
}
|
|
S.EndMultiColumn();
|
|
}
|
|
|
|
bool EffectEcho::TransferDataToWindow()
|
|
{
|
|
if (!mUIParent->TransferDataToWindow())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool EffectEcho::TransferDataFromWindow()
|
|
{
|
|
if (!mUIParent->Validate() || !mUIParent->TransferDataFromWindow())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|