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.

332 lines
14KB

  1. /*
  2. * Carla Native Plugin API
  3. * Copyright (C) 2012-2019 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. #include "CarlaDefines.h"
  20. #include <stddef.h>
  21. #include <stdint.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  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 program 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. NATIVE_PLUGIN_HAS_INLINE_DISPLAY = 1 << 12,
  60. NATIVE_PLUGIN_USES_CONTROL_VOLTAGE = 1 << 13,
  61. NATIVE_PLUGIN_REQUESTS_IDLE = 1 << 15,
  62. NATIVE_PLUGIN_USES_UI_SIZE = 1 << 16
  63. } NativePluginHints;
  64. typedef enum {
  65. NATIVE_PLUGIN_SUPPORTS_NOTHING = 0,
  66. NATIVE_PLUGIN_SUPPORTS_PROGRAM_CHANGES = 1 << 0, /** handles MIDI programs internally instead of host-exposed/exported */
  67. NATIVE_PLUGIN_SUPPORTS_CONTROL_CHANGES = 1 << 1,
  68. NATIVE_PLUGIN_SUPPORTS_CHANNEL_PRESSURE = 1 << 2,
  69. NATIVE_PLUGIN_SUPPORTS_NOTE_AFTERTOUCH = 1 << 3,
  70. NATIVE_PLUGIN_SUPPORTS_PITCHBEND = 1 << 4,
  71. NATIVE_PLUGIN_SUPPORTS_ALL_SOUND_OFF = 1 << 5,
  72. NATIVE_PLUGIN_SUPPORTS_EVERYTHING = (1 << 6)-1
  73. } NativePluginSupports;
  74. typedef enum {
  75. NATIVE_PARAMETER_DESIGNATION_NONE = 0,
  76. NATIVE_PARAMETER_DESIGNATION_ENABLED
  77. } NativeParameterDesignations;
  78. typedef enum {
  79. NATIVE_PARAMETER_IS_OUTPUT = 1 << 0,
  80. NATIVE_PARAMETER_IS_ENABLED = 1 << 1,
  81. NATIVE_PARAMETER_IS_AUTOMABLE = 1 << 2,
  82. NATIVE_PARAMETER_IS_BOOLEAN = 1 << 3,
  83. NATIVE_PARAMETER_IS_INTEGER = 1 << 4,
  84. NATIVE_PARAMETER_IS_LOGARITHMIC = 1 << 5,
  85. NATIVE_PARAMETER_USES_SAMPLE_RATE = 1 << 6,
  86. NATIVE_PARAMETER_USES_SCALEPOINTS = 1 << 7,
  87. NATIVE_PARAMETER_USES_DESIGNATION = 1 << 8
  88. } NativeParameterHints;
  89. typedef enum {
  90. NATIVE_PLUGIN_OPCODE_NULL = 0, /** nothing */
  91. NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED = 1, /** uses value */
  92. NATIVE_PLUGIN_OPCODE_SAMPLE_RATE_CHANGED = 2, /** uses opt */
  93. NATIVE_PLUGIN_OPCODE_OFFLINE_CHANGED = 3, /** uses value (0=off, 1=on) */
  94. NATIVE_PLUGIN_OPCODE_UI_NAME_CHANGED = 4, /** uses ptr */
  95. NATIVE_PLUGIN_OPCODE_GET_INTERNAL_HANDLE = 5, /** nothing */
  96. NATIVE_PLUGIN_OPCODE_IDLE = 6, /** nothing */
  97. NATIVE_PLUGIN_OPCODE_UI_MIDI_EVENT = 7, /** uses ptr */
  98. NATIVE_PLUGIN_OPCODE_HOST_USES_EMBED = 8 /** nothing */
  99. } NativePluginDispatcherOpcode;
  100. typedef enum {
  101. NATIVE_HOST_OPCODE_NULL = 0, /** nothing */
  102. NATIVE_HOST_OPCODE_UPDATE_PARAMETER = 1, /** uses index, -1 for all */
  103. NATIVE_HOST_OPCODE_UPDATE_MIDI_PROGRAM = 2, /** uses index, -1 for all; may use value for channel */
  104. NATIVE_HOST_OPCODE_RELOAD_PARAMETERS = 3, /** nothing */
  105. NATIVE_HOST_OPCODE_RELOAD_MIDI_PROGRAMS = 4, /** nothing */
  106. NATIVE_HOST_OPCODE_RELOAD_ALL = 5, /** nothing */
  107. NATIVE_HOST_OPCODE_UI_UNAVAILABLE = 6, /** nothing */
  108. NATIVE_HOST_OPCODE_HOST_IDLE = 7, /** nothing */
  109. NATIVE_HOST_OPCODE_INTERNAL_PLUGIN = 8, /** nothing */
  110. NATIVE_HOST_OPCODE_QUEUE_INLINE_DISPLAY = 9, /** nothing */
  111. NATIVE_HOST_OPCODE_UI_TOUCH_PARAMETER = 10, /** uses index, value as bool */
  112. NATIVE_HOST_OPCODE_REQUEST_IDLE = 11, /** nothing */
  113. NATIVE_HOST_OPCODE_GET_FILE_PATH = 12, /** uses ptr as string for file type */
  114. NATIVE_HOST_OPCODE_UI_RESIZE = 13, /** uses index and value */
  115. NATIVE_HOST_OPCODE_PREVIEW_BUFFER_DATA = 14 /** uses index as type, value as size, and ptr */
  116. } NativeHostDispatcherOpcode;
  117. /* ------------------------------------------------------------------------------------------------------------
  118. * base structs */
  119. typedef struct {
  120. const char* label;
  121. float value;
  122. } NativeParameterScalePoint;
  123. typedef struct {
  124. float def;
  125. float min;
  126. float max;
  127. float step;
  128. float stepSmall;
  129. float stepLarge;
  130. } NativeParameterRanges;
  131. #define PARAMETER_RANGES_DEFAULT_STEP 0.01f
  132. #define PARAMETER_RANGES_DEFAULT_STEP_SMALL 0.0001f
  133. #define PARAMETER_RANGES_DEFAULT_STEP_LARGE 0.1f
  134. typedef struct {
  135. NativeParameterHints hints;
  136. const char* name;
  137. const char* unit;
  138. NativeParameterRanges ranges;
  139. uint32_t scalePointCount;
  140. const NativeParameterScalePoint* scalePoints;
  141. const char* comment;
  142. const char* groupName;
  143. uint designation;
  144. } NativeParameter;
  145. typedef struct {
  146. uint32_t time;
  147. uint8_t port;
  148. uint8_t size;
  149. uint8_t data[4];
  150. } NativeMidiEvent;
  151. typedef struct {
  152. uint32_t bank;
  153. uint32_t program;
  154. const char* name;
  155. } NativeMidiProgram;
  156. typedef struct {
  157. bool valid;
  158. int32_t bar; /** current bar */
  159. int32_t beat; /** current beat-within-bar */
  160. double tick; /** current tick-within-beat */
  161. double barStartTick;
  162. float beatsPerBar; /** time signature "numerator" */
  163. float beatType; /** time signature "denominator" */
  164. double ticksPerBeat;
  165. double beatsPerMinute;
  166. } NativeTimeInfoBBT;
  167. typedef struct {
  168. bool playing;
  169. uint64_t frame;
  170. uint64_t usecs;
  171. NativeTimeInfoBBT bbt;
  172. } NativeTimeInfo;
  173. typedef struct {
  174. unsigned char* data;
  175. int width;
  176. int height;
  177. int stride;
  178. } NativeInlineDisplayImageSurface;
  179. typedef struct {
  180. float minimum, maximum;
  181. } NativePortRange;
  182. /* ------------------------------------------------------------------------------------------------------------
  183. * HostDescriptor */
  184. typedef struct {
  185. NativeHostHandle handle;
  186. const char* resourceDir;
  187. const char* uiName;
  188. uintptr_t uiParentId;
  189. uint32_t (*get_buffer_size)(NativeHostHandle handle);
  190. double (*get_sample_rate)(NativeHostHandle handle);
  191. bool (*is_offline)(NativeHostHandle handle);
  192. const NativeTimeInfo* (*get_time_info)(NativeHostHandle handle);
  193. bool (*write_midi_event)(NativeHostHandle handle, const NativeMidiEvent* event);
  194. void (*ui_parameter_changed)(NativeHostHandle handle, uint32_t index, float value);
  195. void (*ui_midi_program_changed)(NativeHostHandle handle, uint8_t channel, uint32_t bank, uint32_t program);
  196. void (*ui_custom_data_changed)(NativeHostHandle handle, const char* key, const char* value);
  197. void (*ui_closed)(NativeHostHandle handle);
  198. const char* (*ui_open_file)(NativeHostHandle handle, bool isDir, const char* title, const char* filter);
  199. const char* (*ui_save_file)(NativeHostHandle handle, bool isDir, const char* title, const char* filter);
  200. intptr_t (*dispatcher)(NativeHostHandle handle,
  201. NativeHostDispatcherOpcode opcode, int32_t index, intptr_t value, void* ptr, float opt);
  202. } NativeHostDescriptor;
  203. /* ------------------------------------------------------------------------------------------------------------
  204. * PluginDescriptor */
  205. typedef struct _NativePluginDescriptor {
  206. const NativePluginCategory category;
  207. const NativePluginHints hints;
  208. const NativePluginSupports supports;
  209. const uint32_t audioIns;
  210. const uint32_t audioOuts;
  211. const uint32_t midiIns;
  212. const uint32_t midiOuts;
  213. const uint32_t paramIns;
  214. const uint32_t paramOuts;
  215. const char* const name;
  216. const char* const label;
  217. const char* const maker;
  218. const char* const copyright;
  219. NativePluginHandle (*instantiate)(const NativeHostDescriptor* host);
  220. void (*cleanup)(NativePluginHandle handle);
  221. uint32_t (*get_parameter_count)(NativePluginHandle handle);
  222. const NativeParameter* (*get_parameter_info)(NativePluginHandle handle, uint32_t index);
  223. float (*get_parameter_value)(NativePluginHandle handle, uint32_t index);
  224. uint32_t (*get_midi_program_count)(NativePluginHandle handle);
  225. const NativeMidiProgram* (*get_midi_program_info)(NativePluginHandle handle, uint32_t index);
  226. void (*set_parameter_value)(NativePluginHandle handle, uint32_t index, float value);
  227. void (*set_midi_program)(NativePluginHandle handle, uint8_t channel, uint32_t bank, uint32_t program);
  228. void (*set_custom_data)(NativePluginHandle handle, const char* key, const char* value);
  229. void (*ui_show)(NativePluginHandle handle, bool show);
  230. void (*ui_idle)(NativePluginHandle handle);
  231. void (*ui_set_parameter_value)(NativePluginHandle handle, uint32_t index, float value);
  232. void (*ui_set_midi_program)(NativePluginHandle handle, uint8_t channel, uint32_t bank, uint32_t program);
  233. void (*ui_set_custom_data)(NativePluginHandle handle, const char* key, const char* value);
  234. void (*activate)(NativePluginHandle handle);
  235. void (*deactivate)(NativePluginHandle handle);
  236. /* FIXME for v3.0, use const for the input buffer */
  237. void (*process)(NativePluginHandle handle,
  238. float** inBuffer, float** outBuffer, uint32_t frames,
  239. const NativeMidiEvent* midiEvents, uint32_t midiEventCount);
  240. char* (*get_state)(NativePluginHandle handle);
  241. void (*set_state)(NativePluginHandle handle, const char* data);
  242. intptr_t (*dispatcher)(NativePluginHandle handle,
  243. NativePluginDispatcherOpcode opcode, int32_t index, intptr_t value, void* ptr, float opt);
  244. /* placed at the end for backwards compatibility. only valid if NATIVE_PLUGIN_HAS_INLINE_DISPLAY is set */
  245. const NativeInlineDisplayImageSurface* (*render_inline_display)(NativePluginHandle handle,
  246. uint32_t width, uint32_t height);
  247. /* placed at the end for backwards compatibility. only valid if NATIVE_PLUGIN_USES_CONTROL_VOLTAGE is set */
  248. const uint32_t cvIns;
  249. const uint32_t cvOuts;
  250. const char* (*get_buffer_port_name)(NativePluginHandle handle, uint32_t index, bool isOutput);
  251. const NativePortRange* (*get_buffer_port_range)(NativePluginHandle handle, uint32_t index, bool isOutput);
  252. /* placed at the end for backwards compatibility. only valid if NATIVE_PLUGIN_USES_UI_SIZE is set */
  253. uint16_t ui_width, ui_height;
  254. } NativePluginDescriptor;
  255. /* ------------------------------------------------------------------------------------------------------------
  256. * Register plugin */
  257. /** Implemented by host */
  258. extern void carla_register_native_plugin(const NativePluginDescriptor* desc);
  259. /** Called once on host init */
  260. void carla_register_all_native_plugins(void);
  261. /** Get meta-data only */
  262. CARLA_EXPORT
  263. const NativePluginDescriptor* carla_get_native_plugins_data(uint32_t* count);
  264. /* ------------------------------------------------------------------------------------------------------------ */
  265. /**@}*/
  266. #ifdef __cplusplus
  267. } /* extern "C" */
  268. #endif
  269. #endif /* CARLA_NATIVE_H_INCLUDED */