Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CarlaNative.h 11KB

10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /*
  2. * Carla Native Plugin API
  3. * Copyright (C) 2012-2014 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #ifndef CARLA_NATIVE_H_INCLUDED
  18. #define CARLA_NATIVE_H_INCLUDED
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. #include <stdbool.h>
  23. #include <stddef.h>
  24. #include <stdint.h>
  25. /*!
  26. * @defgroup CarlaNativeAPI Carla Native API
  27. *
  28. * The Carla Native API
  29. * @{
  30. */
  31. typedef void* NativeHostHandle;
  32. typedef void* NativePluginHandle;
  33. /* ------------------------------------------------------------------------------------------------------------
  34. * enums */
  35. typedef enum {
  36. NATIVE_PLUGIN_CATEGORY_NONE = 0, /** Null plugin category. */
  37. NATIVE_PLUGIN_CATEGORY_SYNTH = 1, /** A synthesizer or generator. */
  38. NATIVE_PLUGIN_CATEGORY_DELAY = 2, /** A delay or reverberator. */
  39. NATIVE_PLUGIN_CATEGORY_EQ = 3, /** An equalizer. */
  40. NATIVE_PLUGIN_CATEGORY_FILTER = 4, /** A filter. */
  41. NATIVE_PLUGIN_CATEGORY_DISTORTION = 5, /** A distortion plugin. */
  42. NATIVE_PLUGIN_CATEGORY_DYNAMICS = 6, /** A 'dynamic' plugin (amplifier, compressor, gate, etc). */
  43. NATIVE_PLUGIN_CATEGORY_MODULATOR = 7, /** A 'modulator' plugin (chorus, flanger, phaser, etc). */
  44. NATIVE_PLUGIN_CATEGORY_UTILITY = 8, /** An 'utility' plugin (analyzer, converter, mixer, etc). */
  45. NATIVE_PLUGIN_CATEGORY_OTHER = 9 /** Misc plugin (used to check if the plugin has a category). */
  46. } NativePluginCategory;
  47. typedef enum {
  48. NATIVE_PLUGIN_IS_RTSAFE = 1 << 0,
  49. NATIVE_PLUGIN_IS_SYNTH = 1 << 1,
  50. NATIVE_PLUGIN_HAS_UI = 1 << 2,
  51. NATIVE_PLUGIN_NEEDS_FIXED_BUFFERS = 1 << 3,
  52. NATIVE_PLUGIN_NEEDS_UI_MAIN_THREAD = 1 << 4,
  53. NATIVE_PLUGIN_NEEDS_UI_OPEN_SAVE = 1 << 6,
  54. NATIVE_PLUGIN_USES_MULTI_PROGS = 1 << 7, /** has 1 patch per midi channel */
  55. NATIVE_PLUGIN_USES_PANNING = 1 << 8, /** uses stereo balance if unset (default) */
  56. NATIVE_PLUGIN_USES_STATE = 1 << 9,
  57. NATIVE_PLUGIN_USES_TIME = 1 << 10,
  58. NATIVE_PLUGIN_USES_PARENT_ID = 1 << 11 /** can set transient hint to parent */
  59. } NativePluginHints;
  60. typedef enum {
  61. NATIVE_PLUGIN_SUPPORTS_PROGRAM_CHANGES = 1 << 0, /** handles MIDI programs internally instead of host-exposed/exported */
  62. NATIVE_PLUGIN_SUPPORTS_CONTROL_CHANGES = 1 << 1,
  63. NATIVE_PLUGIN_SUPPORTS_CHANNEL_PRESSURE = 1 << 2,
  64. NATIVE_PLUGIN_SUPPORTS_NOTE_AFTERTOUCH = 1 << 3,
  65. NATIVE_PLUGIN_SUPPORTS_PITCHBEND = 1 << 4,
  66. NATIVE_PLUGIN_SUPPORTS_ALL_SOUND_OFF = 1 << 5,
  67. NATIVE_PLUGIN_SUPPORTS_EVERYTHING = (1 << 6)-1
  68. } NativePluginSupports;
  69. typedef enum {
  70. NATIVE_PARAMETER_IS_OUTPUT = 1 << 0,
  71. NATIVE_PARAMETER_IS_ENABLED = 1 << 1,
  72. NATIVE_PARAMETER_IS_AUTOMABLE = 1 << 2,
  73. NATIVE_PARAMETER_IS_BOOLEAN = 1 << 3,
  74. NATIVE_PARAMETER_IS_INTEGER = 1 << 4,
  75. NATIVE_PARAMETER_IS_LOGARITHMIC = 1 << 5,
  76. NATIVE_PARAMETER_USES_SAMPLE_RATE = 1 << 6,
  77. NATIVE_PARAMETER_USES_SCALEPOINTS = 1 << 7,
  78. NATIVE_PARAMETER_USES_CUSTOM_TEXT = 1 << 8
  79. } NativeParameterHints;
  80. typedef enum {
  81. NATIVE_PLUGIN_OPCODE_NULL = 0, /** nothing */
  82. NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED = 1, /** uses value */
  83. NATIVE_PLUGIN_OPCODE_SAMPLE_RATE_CHANGED = 2, /** uses opt */
  84. NATIVE_PLUGIN_OPCODE_OFFLINE_CHANGED = 3, /** uses value (0=off, 1=on) */
  85. NATIVE_PLUGIN_OPCODE_UI_NAME_CHANGED = 4 /** uses ptr */
  86. } NativePluginDispatcherOpcode;
  87. typedef enum {
  88. NATIVE_HOST_OPCODE_NULL = 0, /** nothing */
  89. NATIVE_HOST_OPCODE_UPDATE_PARAMETER = 1, /** uses index, -1 for all */
  90. NATIVE_HOST_OPCODE_UPDATE_MIDI_PROGRAM = 2, /** uses index, -1 for all; may use value for channel */
  91. NATIVE_HOST_OPCODE_RELOAD_PARAMETERS = 3, /** nothing */
  92. NATIVE_HOST_OPCODE_RELOAD_MIDI_PROGRAMS = 4, /** nothing */
  93. NATIVE_HOST_OPCODE_RELOAD_ALL = 5, /** nothing */
  94. NATIVE_HOST_OPCODE_UI_UNAVAILABLE = 6 /** nothing */
  95. } NativeHostDispatcherOpcode;
  96. /* ------------------------------------------------------------------------------------------------------------
  97. * base structs */
  98. typedef struct {
  99. const char* label;
  100. float value;
  101. } NativeParameterScalePoint;
  102. typedef struct {
  103. float def;
  104. float min;
  105. float max;
  106. float step;
  107. float stepSmall;
  108. float stepLarge;
  109. } NativeParameterRanges;
  110. #define PARAMETER_RANGES_DEFAULT_STEP 0.01f
  111. #define PARAMETER_RANGES_DEFAULT_STEP_SMALL 0.0001f
  112. #define PARAMETER_RANGES_DEFAULT_STEP_LARGE 0.1f
  113. typedef struct {
  114. NativeParameterHints hints;
  115. const char* name;
  116. const char* unit;
  117. NativeParameterRanges ranges;
  118. uint32_t scalePointCount;
  119. NativeParameterScalePoint* scalePoints;
  120. } NativeParameter;
  121. typedef struct {
  122. uint32_t time;
  123. uint8_t port;
  124. uint8_t size;
  125. uint8_t data[4];
  126. } NativeMidiEvent;
  127. typedef struct {
  128. uint32_t bank;
  129. uint32_t program;
  130. const char* name;
  131. } NativeMidiProgram;
  132. typedef struct {
  133. bool valid;
  134. int32_t bar; /** current bar */
  135. int32_t beat; /** current beat-within-bar */
  136. int32_t tick; /** current tick-within-beat */
  137. double barStartTick;
  138. float beatsPerBar; /** time signature "numerator" */
  139. float beatType; /** time signature "denominator" */
  140. double ticksPerBeat;
  141. double beatsPerMinute;
  142. } NativeTimeInfoBBT;
  143. typedef struct {
  144. bool playing;
  145. uint64_t frame;
  146. uint64_t usecs;
  147. NativeTimeInfoBBT bbt;
  148. } NativeTimeInfo;
  149. /* ------------------------------------------------------------------------------------------------------------
  150. * HostDescriptor */
  151. typedef struct {
  152. NativeHostHandle handle;
  153. const char* resourceDir;
  154. const char* uiName;
  155. uintptr_t uiParentId;
  156. uint32_t (*get_buffer_size)(NativeHostHandle handle);
  157. double (*get_sample_rate)(NativeHostHandle handle);
  158. bool (*is_offline)(NativeHostHandle handle);
  159. const NativeTimeInfo* (*get_time_info)(NativeHostHandle handle);
  160. bool (*write_midi_event)(NativeHostHandle handle, const NativeMidiEvent* event);
  161. void (*ui_parameter_changed)(NativeHostHandle handle, uint32_t index, float value);
  162. void (*ui_midi_program_changed)(NativeHostHandle handle, uint8_t channel, uint32_t bank, uint32_t program);
  163. void (*ui_custom_data_changed)(NativeHostHandle handle, const char* key, const char* value);
  164. void (*ui_closed)(NativeHostHandle handle);
  165. const char* (*ui_open_file)(NativeHostHandle handle, bool isDir, const char* title, const char* filter);
  166. const char* (*ui_save_file)(NativeHostHandle handle, bool isDir, const char* title, const char* filter);
  167. intptr_t (*dispatcher)(NativeHostHandle handle, NativeHostDispatcherOpcode opcode, int32_t index, intptr_t value, void* ptr, float opt);
  168. } NativeHostDescriptor;
  169. /* ------------------------------------------------------------------------------------------------------------
  170. * PluginDescriptor */
  171. typedef struct _NativePluginDescriptor {
  172. const NativePluginCategory category;
  173. const NativePluginHints hints;
  174. const NativePluginSupports supports;
  175. const uint32_t audioIns;
  176. const uint32_t audioOuts;
  177. const uint32_t midiIns;
  178. const uint32_t midiOuts;
  179. const uint32_t paramIns;
  180. const uint32_t paramOuts;
  181. const char* const name;
  182. const char* const label;
  183. const char* const maker;
  184. const char* const copyright;
  185. NativePluginHandle (*instantiate)(const NativeHostDescriptor* host);
  186. void (*cleanup)(NativePluginHandle handle);
  187. uint32_t (*get_parameter_count)(NativePluginHandle handle);
  188. const NativeParameter* (*get_parameter_info)(NativePluginHandle handle, uint32_t index);
  189. float (*get_parameter_value)(NativePluginHandle handle, uint32_t index);
  190. const char* (*get_parameter_text)(NativePluginHandle handle, uint32_t index /*, float value*/);
  191. uint32_t (*get_midi_program_count)(NativePluginHandle handle);
  192. const NativeMidiProgram* (*get_midi_program_info)(NativePluginHandle handle, uint32_t index);
  193. void (*set_parameter_value)(NativePluginHandle handle, uint32_t index, float value);
  194. void (*set_midi_program)(NativePluginHandle handle, uint8_t channel, uint32_t bank, uint32_t program);
  195. void (*set_custom_data)(NativePluginHandle handle, const char* key, const char* value);
  196. void (*ui_show)(NativePluginHandle handle, bool show);
  197. void (*ui_idle)(NativePluginHandle handle);
  198. void (*ui_set_parameter_value)(NativePluginHandle handle, uint32_t index, float value);
  199. void (*ui_set_midi_program)(NativePluginHandle handle, uint8_t channel, uint32_t bank, uint32_t program);
  200. void (*ui_set_custom_data)(NativePluginHandle handle, const char* key, const char* value);
  201. void (*activate)(NativePluginHandle handle);
  202. void (*deactivate)(NativePluginHandle handle);
  203. void (*process)(NativePluginHandle handle, float** inBuffer, float** outBuffer, uint32_t frames, const NativeMidiEvent* midiEvents, uint32_t midiEventCount);
  204. char* (*get_state)(NativePluginHandle handle);
  205. void (*set_state)(NativePluginHandle handle, const char* data);
  206. intptr_t (*dispatcher)(NativePluginHandle handle, NativePluginDispatcherOpcode opcode, int32_t index, intptr_t value, void* ptr, float opt);
  207. } NativePluginDescriptor;
  208. /* ------------------------------------------------------------------------------------------------------------
  209. * Register plugin */
  210. /** Implemented by host */
  211. extern void carla_register_native_plugin(const NativePluginDescriptor* desc);
  212. /** Called once on host init */
  213. void carla_register_all_plugins(void);
  214. /* ------------------------------------------------------------------------------------------------------------ */
  215. /**@}*/
  216. #ifdef __cplusplus
  217. } /* extern "C" */
  218. #endif
  219. #endif /* CARLA_NATIVE_H_INCLUDED */