|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960 |
- /*
- * Carla Plugin Host
- * Copyright (C) 2011-2014 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #ifndef CARLA_HOST_H_INCLUDED
- #define CARLA_HOST_H_INCLUDED
-
- #include "CarlaBackend.h"
-
- #ifdef __cplusplus
- using CarlaBackend::BinaryType;
- using CarlaBackend::PluginType;
- using CarlaBackend::PluginCategory;
- using CarlaBackend::InternalParameterIndex;
- using CarlaBackend::EngineCallbackOpcode;
- using CarlaBackend::EngineOption;
- using CarlaBackend::EngineProcessMode;
- using CarlaBackend::EngineTransportMode;
- using CarlaBackend::FileCallbackOpcode;
- using CarlaBackend::EngineCallbackFunc;
- using CarlaBackend::FileCallbackFunc;
- using CarlaBackend::ParameterData;
- using CarlaBackend::ParameterRanges;
- using CarlaBackend::MidiProgramData;
- using CarlaBackend::CustomData;
- using CarlaBackend::EngineDriverDeviceInfo;
- using CarlaBackend::CarlaEngine;
- using CarlaBackend::CarlaPlugin;
- #endif
-
- /*!
- * @defgroup CarlaHostAPI Carla Host API
- *
- * The Carla Host API.
- *
- * This API makes it possible to use the Carla Backend in a standalone host application..
- *
- * None of the returned values in this API calls need to be deleted or free'd.\n
- * When a function fails (returns false or NULL), use carla_get_last_error() to find out what went wrong.
- * @{
- */
-
- /* ------------------------------------------------------------------------------------------------------------
- * Carla Host API (C stuff) */
-
- /*!
- * Information about a loaded plugin.
- * @see carla_get_plugin_info()
- */
- typedef struct _CarlaPluginInfo {
- /*!
- * Plugin type.
- */
- PluginType type;
-
- /*!
- * Plugin category.
- */
- PluginCategory category;
-
- /*!
- * Plugin hints.
- * @see PluginHints
- */
- unsigned int hints;
-
- /*!
- * Plugin options available for the user to change.
- * @see PluginOptions
- */
- unsigned int optionsAvailable;
-
- /*!
- * Plugin options currently enabled.\n
- * Some options are enabled but not available, which means they will always be on.
- * @see PluginOptions
- */
- unsigned int optionsEnabled;
-
- /*!
- * Plugin filename.\n
- * This can be the plugin binary or resource file.
- */
- const char* filename;
-
- /*!
- * Plugin name.\n
- * This name is unique within a Carla instance.
- * @see carla_get_real_plugin_name()
- */
- const char* name;
-
- /*!
- * Plugin label or URI.
- */
- const char* label;
-
- /*!
- * Plugin author/maker.
- */
- const char* maker;
-
- /*!
- * Plugin copyright/license.
- */
- const char* copyright;
-
- /*!
- * Icon name for this plugin, in lowercase.\n
- * Default is "plugin".
- */
- const char* iconName;
-
- /*!
- * Plugin unique Id.\n
- * This Id is dependant on the plugin type and may sometimes be 0.
- */
- int64_t uniqueId;
-
- #ifdef __cplusplus
- /*!
- * C++ constructor.
- */
- _CarlaPluginInfo() noexcept;
- ~_CarlaPluginInfo() noexcept;
- #endif
-
- } CarlaPluginInfo;
-
- /*!
- * Information about an internal Carla plugin.
- * @see carla_get_internal_plugin_info()
- */
- typedef struct _CarlaNativePluginInfo {
- /*!
- * Plugin category.
- */
- PluginCategory category;
-
- /*!
- * Plugin hints.
- * @see PluginHints
- */
- unsigned int hints;
-
- /*!
- * Number of audio inputs.
- */
- uint32_t audioIns;
-
- /*!
- * Number of audio outputs.
- */
- uint32_t audioOuts;
-
- /*!
- * Number of MIDI inputs.
- */
- uint32_t midiIns;
-
- /*!
- * Number of MIDI outputs.
- */
- uint32_t midiOuts;
-
- /*!
- * Number of input parameters.
- */
- uint32_t parameterIns;
-
- /*!
- * Number of output parameters.
- */
- uint32_t parameterOuts;
-
- /*!
- * Plugin name.
- */
- const char* name;
-
- /*!
- * Plugin label.
- */
- const char* label;
-
- /*!
- * Plugin author/maker.
- */
- const char* maker;
-
- /*!
- * Plugin copyright/license.
- */
- const char* copyright;
-
- #ifdef __cplusplus
- /*!
- * C++ constructor.
- */
- _CarlaNativePluginInfo() noexcept;
- #endif
-
- } CarlaNativePluginInfo;
-
- /*!
- * Port count information, used for Audio and MIDI ports and parameters.
- * @see carla_get_audio_port_count_info()
- * @see carla_get_midi_port_count_info()
- * @see carla_get_parameter_count_info()
- */
- typedef struct _CarlaPortCountInfo {
- /*!
- * Number of inputs.
- */
- uint32_t ins;
-
- /*!
- * Number of outputs.
- */
- uint32_t outs;
-
- } CarlaPortCountInfo;
-
- /*!
- * Parameter information.
- * @see carla_get_parameter_info()
- */
- typedef struct _CarlaParameterInfo {
- /*!
- * Parameter name.
- */
- const char* name;
-
- /*!
- * Parameter symbol.
- */
- const char* symbol;
-
- /*!
- * Parameter unit.
- */
- const char* unit;
-
- /*!
- * Number of scale points.
- * @see CarlaScalePointInfo
- */
- uint32_t scalePointCount;
-
- #ifdef __cplusplus
- /*!
- * C++ constructor.
- */
- _CarlaParameterInfo() noexcept;
- ~_CarlaParameterInfo() noexcept;
- #endif
-
- } CarlaParameterInfo;
-
- /*!
- * Parameter scale point information.
- * @see carla_get_parameter_scalepoint_info()
- */
- typedef struct _CarlaScalePointInfo {
- /*!
- * Scale point value.
- */
- float value;
-
- /*!
- * Scale point label.
- */
- const char* label;
-
- #ifdef __cplusplus
- /*!
- * C++ constructor.
- */
- _CarlaScalePointInfo() noexcept;
- ~_CarlaScalePointInfo() noexcept;
- #endif
-
- } CarlaScalePointInfo;
-
- /*!
- * Transport information.
- * @see carla_get_transport_info()
- */
- typedef struct _CarlaTransportInfo {
- /*!
- * Wherever transport is playing.
- */
- bool playing;
-
- /*!
- * Current transport frame.
- */
- uint64_t frame;
-
- /*!
- * Bar.
- */
- int32_t bar;
-
- /*!
- * Beat.
- */
- int32_t beat;
-
- /*!
- * Tick.
- */
- int32_t tick;
-
- /*!
- * Beats per minute.
- */
- double bpm;
-
- #ifdef __cplusplus
- /*!
- * C++ constructor.
- */
- _CarlaTransportInfo() noexcept;
- #endif
-
- } CarlaTransportInfo;
-
- /* ------------------------------------------------------------------------------------------------------------
- * Carla Host API (C functions) */
-
- /*!
- * Get the complete license text of used third-party code and features.\n
- * Returned string is in basic html format.
- */
- CARLA_EXPORT const char* carla_get_complete_license_text();
-
- /*!
- * Get all the supported file extensions in carla_load_file().\n
- * Returned string uses this syntax:
- * @code
- * "*.ext1;*.ext2;*.ext3"
- * @endcode
- */
- CARLA_EXPORT const char* carla_get_supported_file_extensions();
-
- /*!
- * Get how many engine drivers are available.
- */
- CARLA_EXPORT unsigned int carla_get_engine_driver_count();
-
- /*!
- * Get an engine driver name.
- * @param index Driver index
- */
- CARLA_EXPORT const char* carla_get_engine_driver_name(unsigned int index);
-
- /*!
- * Get the device names of an engine driver.
- * @param index Driver index
- */
- CARLA_EXPORT const char* const* carla_get_engine_driver_device_names(unsigned int index);
-
- /*!
- * Get information about a device driver.
- * @param index Driver index
- * @param name Device name
- */
- CARLA_EXPORT const EngineDriverDeviceInfo* carla_get_engine_driver_device_info(unsigned int index, const char* name);
-
- /*!
- * Get how many internal plugins are available.
- */
- CARLA_EXPORT unsigned int carla_get_internal_plugin_count();
-
- /*!
- * Get information about an internal plugin.
- * @param index Internal plugin Id
- */
- CARLA_EXPORT const CarlaNativePluginInfo* carla_get_internal_plugin_info(unsigned int index);
-
- #ifdef __cplusplus
- /*!
- * Get the currently used engine, maybe be NULL.
- * @note C++ only
- */
- CARLA_EXPORT const CarlaEngine* carla_get_engine();
- #endif
-
- /*!
- * Initialize the engine.\n
- * Make sure to call carla_engine_idle() at regular intervals afterwards.
- * @param driverName Driver to use
- * @param clientName Engine master client name
- */
- CARLA_EXPORT bool carla_engine_init(const char* driverName, const char* clientName);
-
- #ifdef BUILD_BRIDGE
- /*!
- * Initialize the engine in bridged mode.
- * @param audioBaseName Shared memory key for audio pool
- * @param controlBaseName Shared memory key for control messages
- * @param timeBaseName Shared memory key for time info
- * @param clientName Engine master client name
- */
- CARLA_EXPORT bool carla_engine_init_bridge(const char audioBaseName[6+1], const char controlBaseName[6+1], const char timeBaseName[6+1], const char* clientName);
- #endif
-
- /*!
- * Close the engine.\n
- * This function always closes the engine even if it returns false.\n
- * In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
- */
- CARLA_EXPORT bool carla_engine_close();
-
- /*!
- * Idle the engine.\n
- * Do not call this if the engine is not running.
- */
- CARLA_EXPORT void carla_engine_idle();
-
- /*!
- * Check if the engine is running.
- */
- CARLA_EXPORT bool carla_is_engine_running();
-
- /*!
- * Tell the engine it's about to close.\n
- * This is used to prevent the engine thread(s) from reactivating.
- */
- CARLA_EXPORT void carla_set_engine_about_to_close();
-
- /*!
- * Set the engine callback function.
- * @param func Callback function
- * @param ptr Callback pointer
- */
- CARLA_EXPORT void carla_set_engine_callback(EngineCallbackFunc func, void* ptr);
-
- #ifndef BUILD_BRIDGE
- /*!
- * Set an engine option.
- * @param option Option
- * @param value Value as number
- * @param valueStr Value as string
- */
- CARLA_EXPORT void carla_set_engine_option(EngineOption option, int value, const char* valueStr);
- #endif
-
- /*!
- * Set the file callback function.
- * @param func Callback function
- * @param ptr Callback pointer
- */
- CARLA_EXPORT void carla_set_file_callback(FileCallbackFunc func, void* ptr);
-
- /*!
- * Load a file of any type.\n
- * This will try to load a generic file as a plugin,
- * either by direct handling (Csound, GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
- * @param Filename Filename
- * @see carla_get_supported_file_extensions()
- */
- CARLA_EXPORT bool carla_load_file(const char* filename);
-
- /*!
- * Load a Carla project file.
- * @param Filename Filename
- * @note Currently loaded plugins are not removed; call carla_remove_all_plugins() first if needed.
- */
- CARLA_EXPORT bool carla_load_project(const char* filename);
-
- /*!
- * Save current project to a file.
- * @param Filename Filename
- */
- CARLA_EXPORT bool carla_save_project(const char* filename);
-
- #ifndef BUILD_BRIDGE
- /*!
- * Connect two patchbay ports.
- * @param groupIdA Output group
- * @param portIdA Output port
- * @param groupIdB Input group
- * @param portIdB Input port
- * @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED
- */
- CARLA_EXPORT bool carla_patchbay_connect(int groupIdA, int portIdA, int groupIdB, int portIdB);
-
- /*!
- * Disconnect two patchbay ports.
- * @param connectionId Connection Id
- * @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED
- */
- CARLA_EXPORT bool carla_patchbay_disconnect(uint connectionId);
-
- /*!
- * Force the engine to resend all patchbay clients, ports and connections again.
- */
- CARLA_EXPORT bool carla_patchbay_refresh();
- #endif
-
- /*!
- * Start playback of the engine transport.
- */
- CARLA_EXPORT void carla_transport_play();
-
- /*!
- * Pause the engine transport.
- */
- CARLA_EXPORT void carla_transport_pause();
-
- /*!
- * Relocate the engine transport to a specific frame.
- * @param frames Frame to relocate to.
- */
- CARLA_EXPORT void carla_transport_relocate(uint64_t frame);
-
- /*!
- * Get the current transport frame.
- */
- CARLA_EXPORT uint64_t carla_get_current_transport_frame();
-
- /*!
- * Get the engine transport information.
- */
- CARLA_EXPORT const CarlaTransportInfo* carla_get_transport_info();
-
- /*!
- * Add a new plugin.\n
- * If you don't know the binary type use the BINARY_NATIVE macro.
- * @param btype Binary type
- * @param ptype Plugin type
- * @param filename Filename, if applicable
- * @param name Name of the plugin, can be NULL
- * @param label Plugin label, if applicable
- * @param uniqueId Plugin unique Id, if applicable
- * @param extraPtr Extra pointer, defined per plugin type
- */
- CARLA_EXPORT bool carla_add_plugin(BinaryType btype, PluginType ptype, const char* filename, const char* name, const char* label, int64_t uniqueId, const void* extraPtr);
-
- /*!
- * Remove one plugin.
- * @param pluginId Plugin to remove.
- */
- CARLA_EXPORT bool carla_remove_plugin(uint pluginId);
-
- /*!
- * Remove all plugins.
- */
- CARLA_EXPORT bool carla_remove_all_plugins();
-
- /*!
- * Rename a plugin.\n
- * Returns the new name, or NULL if the operation failed.
- * @param pluginId Plugin to rename
- * @param newName New plugin name
- */
- CARLA_EXPORT const char* carla_rename_plugin(uint pluginId, const char* newName);
-
- /*!
- * Clone a plugin.
- * @param pluginId Plugin to clone
- */
- CARLA_EXPORT bool carla_clone_plugin(uint pluginId);
-
- /*!
- * Prepare replace of a plugin.\n
- * The next call to carla_add_plugin() will use this id, replacing the current plugin.
- * @param pluginId Plugin to replace
- * @note This function requires carla_add_plugin() to be called afterwards *as soon as possible*.
- */
- CARLA_EXPORT bool carla_replace_plugin(uint pluginId);
-
- /*!
- * Switch two plugins positions.
- * @param pluginIdA Plugin A
- * @param pluginIdB Plugin B
- */
- CARLA_EXPORT bool carla_switch_plugins(uint pluginIdA, uint pluginIdB);
-
- /*!
- * Load a plugin state.
- * @param pluginId Plugin
- * @param filename Path to plugin state
- * @see carla_save_plugin_state()
- */
- CARLA_EXPORT bool carla_load_plugin_state(uint pluginId, const char* filename);
-
- /*!
- * Save a plugin state.
- * @param pluginId Plugin
- * @param filename Path to plugin state
- * @see carla_load_plugin_state()
- */
- CARLA_EXPORT bool carla_save_plugin_state(uint pluginId, const char* filename);
-
- /*!
- * Get information from a plugin.
- * @param pluginId Plugin
- */
- CARLA_EXPORT const CarlaPluginInfo* carla_get_plugin_info(uint pluginId);
-
- /*!
- * Get audio port count information from a plugin.
- * @param pluginId Plugin
- */
- CARLA_EXPORT const CarlaPortCountInfo* carla_get_audio_port_count_info(uint pluginId);
-
- /*!
- * Get MIDI port count information from a plugin.
- * @param pluginId Plugin
- */
- CARLA_EXPORT const CarlaPortCountInfo* carla_get_midi_port_count_info(uint pluginId);
-
- /*!
- * Get parameter count information from a plugin.
- * @param pluginId Plugin
- */
- CARLA_EXPORT const CarlaPortCountInfo* carla_get_parameter_count_info(uint pluginId);
-
- /*!
- * Get parameter information from a plugin.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- * @see carla_get_parameter_count()
- */
- CARLA_EXPORT const CarlaParameterInfo* carla_get_parameter_info(uint pluginId, uint32_t parameterId);
-
- /*!
- * Get parameter scale point information from a plugin.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- * @param scalePointId Parameter scale-point index
- * @see CarlaParameterInfo::scalePointCount
- */
- CARLA_EXPORT const CarlaScalePointInfo* carla_get_parameter_scalepoint_info(uint pluginId, uint32_t parameterId, uint32_t scalePointId);
-
- /*!
- * Get a plugin's parameter data.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- * @see carla_get_parameter_count()
- */
- CARLA_EXPORT const ParameterData* carla_get_parameter_data(uint pluginId, uint32_t parameterId);
-
- /*!
- * Get a plugin's parameter ranges.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- * @see carla_get_parameter_count()
- */
- CARLA_EXPORT const ParameterRanges* carla_get_parameter_ranges(uint pluginId, uint32_t parameterId);
-
- /*!
- * Get a plugin's MIDI program data.
- * @param pluginId Plugin
- * @param midiProgramId MIDI Program index
- * @see carla_get_midi_program_count()
- */
- CARLA_EXPORT const MidiProgramData* carla_get_midi_program_data(uint pluginId, uint32_t midiProgramId);
-
- /*!
- * Get a plugin's custom data.
- * @param pluginId Plugin
- * @param customDataId Custom data index
- * @see carla_get_custom_data_count()
- */
- CARLA_EXPORT const CustomData* carla_get_custom_data(uint pluginId, uint32_t customDataId);
-
- /*!
- * Get a plugin's chunk data.
- * @param pluginId Plugin
- * @see PLUGIN_OPTION_USE_CHUNKS and carla_set_chunk_data()
- */
- CARLA_EXPORT const char* carla_get_chunk_data(uint pluginId);
-
- /*!
- * Get how many parameters a plugin has.
- * @param pluginId Plugin
- */
- CARLA_EXPORT uint32_t carla_get_parameter_count(uint pluginId);
-
- /*!
- * Get how many programs a plugin has.
- * @param pluginId Plugin
- * @see carla_get_program_name()
- */
- CARLA_EXPORT uint32_t carla_get_program_count(uint pluginId);
-
- /*!
- * Get how many MIDI programs a plugin has.
- * @param pluginId Plugin
- * @see carla_get_midi_program_name() and carla_get_midi_program_data()
- */
- CARLA_EXPORT uint32_t carla_get_midi_program_count(uint pluginId);
-
- /*!
- * Get how many custom data sets a plugin has.
- * @param pluginId Plugin
- * @see carla_get_custom_data()
- */
- CARLA_EXPORT uint32_t carla_get_custom_data_count(uint pluginId);
-
- /*!
- * Get a plugin's parameter text (custom display of internal values).
- * @param pluginId Plugin
- * @param parameterId Parameter index
- * @see PARAMETER_USES_CUSTOM_TEXT
- */
- CARLA_EXPORT const char* carla_get_parameter_text(uint pluginId, uint32_t parameterId);
-
- /*!
- * Get a plugin's program name.
- * @param pluginId Plugin
- * @param programId Program index
- * @see carla_get_program_count()
- */
- CARLA_EXPORT const char* carla_get_program_name(uint pluginId, uint32_t programId);
-
- /*!
- * Get a plugin's MIDI program name.
- * @param pluginId Plugin
- * @param midiProgramId MIDI Program index
- * @see carla_get_midi_program_count()
- */
- CARLA_EXPORT const char* carla_get_midi_program_name(uint pluginId, uint32_t midiProgramId);
-
- /*!
- * Get a plugin's real name.\n
- * This is the name the plugin uses to identify itself; may not be unique.
- * @param pluginId Plugin
- */
- CARLA_EXPORT const char* carla_get_real_plugin_name(uint pluginId);
-
- /*!
- * Get a plugin's program index.
- * @param pluginId Plugin
- */
- CARLA_EXPORT int32_t carla_get_current_program_index(uint pluginId);
-
- /*!
- * Get a plugin's midi program index.
- * @param pluginId Plugin
- */
- CARLA_EXPORT int32_t carla_get_current_midi_program_index(uint pluginId);
-
- /*!
- * Get a plugin's default parameter value.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- */
- CARLA_EXPORT float carla_get_default_parameter_value(uint pluginId, uint32_t parameterId);
-
- /*!
- * Get a plugin's current parameter value.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- */
- CARLA_EXPORT float carla_get_current_parameter_value(uint pluginId, uint32_t parameterId);
-
- /*!
- * Get a plugin's input peak value.
- * @param pluginId Plugin
- * @param isLeft Wherever to get the left/mono value, otherwise right.
- */
- CARLA_EXPORT float carla_get_input_peak_value(uint pluginId, bool isLeft);
-
- /*!
- * Get a plugin's output peak value.
- * @param pluginId Plugin
- * @param isLeft Wherever to get the left/mono value, otherwise right.
- */
- CARLA_EXPORT float carla_get_output_peak_value(uint pluginId, bool isLeft);
-
- /*!
- * Enable a plugin's option.
- * @param pluginId Plugin
- * @param option An option from PluginOptions
- * @param yesNo New enabled state
- */
- CARLA_EXPORT void carla_set_option(uint pluginId, uint option, bool yesNo);
-
- /*!
- * Enable or disable a plugin.
- * @param pluginId Plugin
- * @param onOff New active state
- */
- CARLA_EXPORT void carla_set_active(uint pluginId, bool onOff);
-
- #ifndef BUILD_BRIDGE
- /*!
- * Change a plugin's internal dry/wet.
- * @param pluginId Plugin
- * @param value New dry/wet value
- */
- CARLA_EXPORT void carla_set_drywet(uint pluginId, float value);
-
- /*!
- * Change a plugin's internal volume.
- * @param pluginId Plugin
- * @param value New volume
- */
- CARLA_EXPORT void carla_set_volume(uint pluginId, float value);
-
- /*!
- * Change a plugin's internal stereo balance, left channel.
- * @param pluginId Plugin
- * @param value New value
- */
- CARLA_EXPORT void carla_set_balance_left(uint pluginId, float value);
-
- /*!
- * Change a plugin's internal stereo balance, right channel.
- * @param pluginId Plugin
- * @param value New value
- */
- CARLA_EXPORT void carla_set_balance_right(uint pluginId, float value);
-
- /*!
- * Change a plugin's internal mono panning value.
- * @param pluginId Plugin
- * @param value New value
- */
- CARLA_EXPORT void carla_set_panning(uint pluginId, float value);
- #endif
-
- /*!
- * Change a plugin's internal control channel.
- * @param pluginId Plugin
- * @param channel New channel
- */
- CARLA_EXPORT void carla_set_ctrl_channel(uint pluginId, int8_t channel);
-
- /*!
- * Change a plugin's parameter value.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- * @param value New value
- */
- CARLA_EXPORT void carla_set_parameter_value(uint pluginId, uint32_t parameterId, float value);
-
- #ifndef BUILD_BRIDGE
- /*!
- * Change a plugin's parameter MIDI channel.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- * @param channel New MIDI channel
- */
- CARLA_EXPORT void carla_set_parameter_midi_channel(uint pluginId, uint32_t parameterId, uint8_t channel);
-
- /*!
- * Change a plugin's parameter MIDI cc.
- * @param pluginId Plugin
- * @param parameterId Parameter index
- * @param cc New MIDI cc
- */
- CARLA_EXPORT void carla_set_parameter_midi_cc(uint pluginId, uint32_t parameterId, int16_t cc);
- #endif
-
- /*!
- * Change a plugin's current program.
- * @param pluginId Plugin
- * @param programId New program
- */
- CARLA_EXPORT void carla_set_program(uint pluginId, uint32_t programId);
-
- /*!
- * Change a plugin's current MIDI program.
- * @param pluginId Plugin
- * @param midiProgramId New value
- */
- CARLA_EXPORT void carla_set_midi_program(uint pluginId, uint32_t midiProgramId);
-
- /*!
- * Set a plugin's custom data set.
- * @param pluginId Plugin
- * @param type Type
- * @param key Key
- * @param value New value
- * @see CustomDataTypes and CustomDataKeys
- */
- CARLA_EXPORT void carla_set_custom_data(uint pluginId, const char* type, const char* key, const char* value);
-
- /*!
- * Set a plugin's chunk data.
- * @param pluginId Plugin
- * @param value New value
- * @see PLUGIN_OPTION_USE_CHUNKS and carla_get_chunk_data()
- */
- CARLA_EXPORT void carla_set_chunk_data(uint pluginId, const char* chunkData);
-
- /*!
- * Tell a plugin to prepare for save.\n
- * This should be called before saving custom data sets.
- * @param pluginId Plugin
- */
- CARLA_EXPORT void carla_prepare_for_save(uint pluginId);
-
- #ifndef BUILD_BRIDGE
- /*!
- * Send a single note of a plugin.\n
- * If velocity is 0, note-off is sent; note-on otherwise.
- * @param pluginId Plugin
- * @param channel Note channel
- * @param note Note pitch
- * @param velocity Note velocity
- */
- CARLA_EXPORT void carla_send_midi_note(uint pluginId, uint8_t channel, uint8_t note, uint8_t velocity);
- #endif
-
- /*!
- * Tell a plugin to show its own custom UI.
- * @param pluginId Plugin
- * @param yesNo New UI state, visible or not
- * @see PLUGIN_HAS_CUSTOM_UI
- */
- CARLA_EXPORT void carla_show_custom_ui(uint pluginId, bool yesNo);
-
- /*!
- * Get the current engine buffer size.
- */
- CARLA_EXPORT uint32_t carla_get_buffer_size();
-
- /*!
- * Get the current engine sample rate.
- */
- CARLA_EXPORT double carla_get_sample_rate();
-
- /*!
- * Get the last error.
- */
- CARLA_EXPORT const char* carla_get_last_error();
-
- /*!
- * Get the current engine OSC URL (TCP).
- */
- CARLA_EXPORT const char* carla_get_host_osc_url_tcp();
-
- /*!
- * Get the current engine OSC URL (UDP).
- */
- CARLA_EXPORT const char* carla_get_host_osc_url_udp();
-
- /** @} */
-
- #endif /* CARLA_HOST_H_INCLUDED */
|