13#ifndef __pluginCore_h__
14#define __pluginCore_h__
196 hostMessageInfo.hostMessage = sendRAFXStatusWndText;
197 hostMessageInfo.rafxStatusWndText.assign(messageString);
Double buffered queue for MIDI messages.
Definition: pluginstructures.h:1628
virtual void sendHostMessage(const HostMessageInfo &hostMessageInfo)=0
The PluginBase object is the base class for the Plugin Core object.
Definition: pluginbase.h:42
IPluginHostConnector * pluginHostConnector
created and destroyed on host
Definition: pluginbase.h:450
The PluginCore object is the default PluginBase derived object for ASPiK projects....
Definition: plugincore.h:44
virtual bool initialize(PluginInfo &_pluginInfo)
one-time initialize function called after object creation and before the first reset( ) call
Definition: plugincore.cpp:82
bool renderSynthSilence(ProcessBlockInfo &blockInfo)
renders a block of silence (all 0.0 values) as an example your synth code would render the synth usin...
Definition: plugincore.cpp:343
bool initPluginParameters()
create all of your plugin parameters here
Definition: plugincore.cpp:643
virtual bool guiParameterChanged(int32_t controlID, double actualValue)
has nothing to do with actual variable or updated variable (binding)
Definition: plugincore.cpp:517
void sendHostTextMessage(std::string messageString)
Definition: plugincore.h:193
static pluginType getPluginType()
Definition: plugincore.cpp:747
virtual bool processMIDIEvent(midiEvent &event)
process a MIDI event
Definition: plugincore.cpp:606
virtual bool setVectorJoystickParameters(const VectorJoystickData &vectorJoysickData)
(for future use)
Definition: plugincore.cpp:633
virtual bool updatePluginParameterNormalized(int32_t controlID, double normalizedValue, ParameterUpdateInfo ¶mInfo)
update the PluginParameter's value based on normlaized GUI control, preset, or data smoothing (thread...
Definition: plugincore.cpp:457
static const char * getVendorURL()
Definition: plugincore.cpp:744
virtual bool updatePluginParameter(int32_t controlID, double controlValue, ParameterUpdateInfo ¶mInfo)
update the PluginParameter's value based on GUI control, preset, or data smoothing (thread-safe)
Definition: plugincore.cpp:433
static const char * getPluginName()
Definition: plugincore.cpp:741
static const char * getVendorName()
Definition: plugincore.cpp:743
virtual bool processAudioBlock(ProcessBlockInfo &processBlockInfo)
block or buffer-processing method
Definition: plugincore.cpp:315
virtual bool preProcessAudioBuffers(ProcessBufferInfo &processInfo)
do anything needed prior to arrival of audio buffers
Definition: plugincore.cpp:103
static const char * getVSTFUID()
Definition: plugincore.cpp:748
static const char * getPluginBundleName()
Definition: plugincore.cpp:740
virtual bool preProcessAudioBlock(IMidiEventQueue *midiEventQueue=nullptr)
pre-process the audio block
Definition: plugincore.cpp:234
static const char * getShortPluginName()
Definition: plugincore.cpp:742
virtual bool reset(ResetInfo &resetInfo)
initialize object for a new run of audio; called just before audio streams
Definition: plugincore.cpp:66
PluginCore()
PluginCore constructor is launching pad for object initialization.
Definition: plugincore.cpp:25
bool renderFXPassThrough(ProcessBlockInfo &blockInfo)
Renders pass-through code as an example; replace with meaningful DSP for audio goodness.
Definition: plugincore.cpp:383
bool initPluginDescriptors()
setup the plugin description strings, flags and codes; this is ordinarily done through the ASPiKreato...
Definition: plugincore.cpp:690
virtual bool postProcessAudioBuffers(ProcessBufferInfo &processInfo)
do anything needed prior to arrival of audio buffers
Definition: plugincore.cpp:411
virtual bool postUpdatePluginParameter(int32_t controlID, double controlValue, ParameterUpdateInfo ¶mInfo)
perform any operations after the plugin parameter has been updated; this is one paradigm for transfer...
Definition: plugincore.cpp:481
static const char * getVendorEmail()
Definition: plugincore.cpp:745
virtual bool processMessage(MessageInfo &messageInfo)
For Custom View and Custom Sub-Controller Operations.
Definition: plugincore.cpp:546
static int32_t getFourCharCode()
Definition: plugincore.cpp:749
virtual ~PluginCore()
Definition: plugincore.h:49
virtual bool processAudioFrame(ProcessFrameInfo &processFrameInfo)
frame-processing method
Definition: plugincore.cpp:151
static const char * getAUCocoaViewFactoryName()
Definition: plugincore.cpp:746
bool initPluginPresets()
use this method to add new presets to the list
Definition: plugincore.cpp:676
pluginType
Use this enum to identify the plugin category.
Definition: pluginstructures.h:62
base class interface file for ASPiK pluginbase object
Definition: pluginstructures.h:486
Information that includes the message code as well as the message data.
Definition: pluginstructures.h:706
Information about a paraemeter being updated. Used when bound variables are updated....
Definition: pluginstructures.h:835
Structure that is used during the base class initilize( ) funciton call, after object instantiation i...
Definition: pluginstructures.h:754
Structure for setting up block processing.
Definition: pluginstructures.h:1063
Information package that arrives with each new audio buffer process cycle. Contains everything needed...
Definition: pluginstructures.h:1123
Information package that arrives with each new audio frame; called internally from the buffer process...
Definition: pluginstructures.h:1177
Sample rate and bit-depth information that is passed during the reset( ) function.
Definition: pluginstructures.h:181
Incoming data from a vector joystick.
Definition: pluginstructures.h:277
Information about a MIDI event.
Definition: pluginstructures.h:562