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.

3229 lines
101KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla Backend code
  4. # Copyright (C) 2011-2017 Filipe Coelho <falktx@falktx.com>
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as
  8. # published by the Free Software Foundation; either version 2 of
  9. # the License, or any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # For a full copy of the GNU General Public License see the doc/GPL.txt file.
  17. # ------------------------------------------------------------------------------------------------------------
  18. # Imports (Global)
  19. from abc import ABCMeta, abstractmethod
  20. from ctypes import *
  21. from platform import architecture
  22. from sys import platform, maxsize
  23. # ------------------------------------------------------------------------------------------------------------
  24. # 64bit check
  25. kIs64bit = bool(architecture()[0] == "64bit" and maxsize > 2**32)
  26. # ------------------------------------------------------------------------------------------------------------
  27. # Define custom types
  28. c_enum = c_int
  29. c_uintptr = c_uint64 if kIs64bit else c_uint32
  30. # ------------------------------------------------------------------------------------------------------------
  31. # Set Platform
  32. if platform == "darwin":
  33. HAIKU = False
  34. LINUX = False
  35. MACOS = True
  36. WINDOWS = False
  37. elif "haiku" in platform:
  38. HAIKU = True
  39. LINUX = False
  40. MACOS = False
  41. WINDOWS = False
  42. elif "linux" in platform:
  43. HAIKU = False
  44. LINUX = True
  45. MACOS = False
  46. WINDOWS = False
  47. elif platform in ("win32", "win64", "cygwin"):
  48. HAIKU = False
  49. LINUX = False
  50. MACOS = False
  51. WINDOWS = True
  52. else:
  53. HAIKU = False
  54. LINUX = False
  55. MACOS = False
  56. WINDOWS = False
  57. # ------------------------------------------------------------------------------------------------------------
  58. # Convert a ctypes c_char_p into a python string
  59. def charPtrToString(charPtr):
  60. if not charPtr:
  61. return ""
  62. if isinstance(charPtr, str):
  63. return charPtr
  64. return charPtr.decode("utf-8", errors="ignore")
  65. # ------------------------------------------------------------------------------------------------------------
  66. # Convert a ctypes POINTER(c_char_p) into a python string list
  67. def charPtrPtrToStringList(charPtrPtr):
  68. if not charPtrPtr:
  69. return []
  70. i = 0
  71. charPtr = charPtrPtr[0]
  72. strList = []
  73. while charPtr:
  74. strList.append(charPtr.decode("utf-8", errors="ignore"))
  75. i += 1
  76. charPtr = charPtrPtr[i]
  77. return strList
  78. # ------------------------------------------------------------------------------------------------------------
  79. # Convert a ctypes POINTER(c_<num>) into a python number list
  80. def numPtrToList(numPtr):
  81. if not numPtr:
  82. return []
  83. i = 0
  84. num = numPtr[0] #.value
  85. numList = []
  86. while num not in (0, 0.0):
  87. numList.append(num)
  88. i += 1
  89. num = numPtr[i] #.value
  90. return numList
  91. # ------------------------------------------------------------------------------------------------------------
  92. # Convert a ctypes value into a python one
  93. c_int_types = (c_int, c_int8, c_int16, c_int32, c_int64, c_uint, c_uint8, c_uint16, c_uint32, c_uint64, c_long, c_longlong)
  94. c_float_types = (c_float, c_double, c_longdouble)
  95. c_intp_types = tuple(POINTER(i) for i in c_int_types)
  96. c_floatp_types = tuple(POINTER(i) for i in c_float_types)
  97. def toPythonType(value, attr):
  98. if isinstance(value, (bool, int, float)):
  99. return value
  100. if isinstance(value, bytes):
  101. return charPtrToString(value)
  102. if isinstance(value, c_intp_types) or isinstance(value, c_floatp_types):
  103. return numPtrToList(value)
  104. if isinstance(value, POINTER(c_char_p)):
  105. return charPtrPtrToStringList(value)
  106. print("..............", attr, ".....................", value, ":", type(value))
  107. return value
  108. # ------------------------------------------------------------------------------------------------------------
  109. # Convert a ctypes struct into a python dict
  110. def structToDict(struct):
  111. return dict((attr, toPythonType(getattr(struct, attr), attr)) for attr, value in struct._fields_)
  112. # ------------------------------------------------------------------------------------------------------------
  113. # Carla Backend API (base definitions)
  114. # Maximum default number of loadable plugins.
  115. MAX_DEFAULT_PLUGINS = 99
  116. # Maximum number of loadable plugins in rack mode.
  117. MAX_RACK_PLUGINS = 16
  118. # Maximum number of loadable plugins in patchbay mode.
  119. MAX_PATCHBAY_PLUGINS = 255
  120. # Maximum default number of parameters allowed.
  121. # @see ENGINE_OPTION_MAX_PARAMETERS
  122. MAX_DEFAULT_PARAMETERS = 200
  123. # ------------------------------------------------------------------------------------------------------------
  124. # Engine Driver Device Hints
  125. # Various engine driver device hints.
  126. # @see carla_get_engine_driver_device_info()
  127. # Engine driver device has custom control-panel.
  128. ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL = 0x1
  129. # Engine driver device can use a triple-buffer (3 number of periods instead of the usual 2).
  130. # @see ENGINE_OPTION_AUDIO_NUM_PERIODS
  131. ENGINE_DRIVER_DEVICE_CAN_TRIPLE_BUFFER = 0x2
  132. # Engine driver device can change buffer-size on the fly.
  133. # @see ENGINE_OPTION_AUDIO_BUFFER_SIZE
  134. ENGINE_DRIVER_DEVICE_VARIABLE_BUFFER_SIZE = 0x4
  135. # Engine driver device can change sample-rate on the fly.
  136. # @see ENGINE_OPTION_AUDIO_SAMPLE_RATE
  137. ENGINE_DRIVER_DEVICE_VARIABLE_SAMPLE_RATE = 0x8
  138. # ------------------------------------------------------------------------------------------------------------
  139. # Plugin Hints
  140. # Various plugin hints.
  141. # @see carla_get_plugin_info()
  142. # Plugin is a bridge.
  143. # This hint is required because "bridge" itself is not a plugin type.
  144. PLUGIN_IS_BRIDGE = 0x001
  145. # Plugin is hard real-time safe.
  146. PLUGIN_IS_RTSAFE = 0x002
  147. # Plugin is a synth (produces sound).
  148. PLUGIN_IS_SYNTH = 0x004
  149. # Plugin has its own custom UI.
  150. # @see carla_show_custom_ui()
  151. PLUGIN_HAS_CUSTOM_UI = 0x008
  152. # Plugin can use internal Dry/Wet control.
  153. PLUGIN_CAN_DRYWET = 0x010
  154. # Plugin can use internal Volume control.
  155. PLUGIN_CAN_VOLUME = 0x020
  156. # Plugin can use internal (Stereo) Balance controls.
  157. PLUGIN_CAN_BALANCE = 0x040
  158. # Plugin can use internal (Mono) Panning control.
  159. PLUGIN_CAN_PANNING = 0x080
  160. # Plugin needs a constant, fixed-size audio buffer.
  161. PLUGIN_NEEDS_FIXED_BUFFERS = 0x100
  162. # Plugin needs to receive all UI events in the main thread.
  163. PLUGIN_NEEDS_UI_MAIN_THREAD = 0x200
  164. # Plugin uses 1 program per MIDI channel.
  165. # @note: Only used in some internal plugins and gig+sf2 files.
  166. PLUGIN_USES_MULTI_PROGS = 0x400
  167. # Plugin can make use of inline display API.
  168. PLUGIN_HAS_INLINE_DISPLAY = 0x800
  169. # ------------------------------------------------------------------------------------------------------------
  170. # Plugin Options
  171. # Various plugin options.
  172. # @see carla_get_plugin_info() and carla_set_option()
  173. # Use constant/fixed-size audio buffers.
  174. PLUGIN_OPTION_FIXED_BUFFERS = 0x001
  175. # Force mono plugin as stereo.
  176. PLUGIN_OPTION_FORCE_STEREO = 0x002
  177. # Map MIDI programs to plugin programs.
  178. PLUGIN_OPTION_MAP_PROGRAM_CHANGES = 0x004
  179. # Use chunks to save and restore data instead of parameter values.
  180. PLUGIN_OPTION_USE_CHUNKS = 0x008
  181. # Send MIDI control change events.
  182. PLUGIN_OPTION_SEND_CONTROL_CHANGES = 0x010
  183. # Send MIDI channel pressure events.
  184. PLUGIN_OPTION_SEND_CHANNEL_PRESSURE = 0x020
  185. # Send MIDI note after-touch events.
  186. PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH = 0x040
  187. # Send MIDI pitch-bend events.
  188. PLUGIN_OPTION_SEND_PITCHBEND = 0x080
  189. # Send MIDI all-sounds/notes-off events, single note-offs otherwise.
  190. PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100
  191. # Send MIDI bank/program changes.
  192. # @note: This option conflicts with PLUGIN_OPTION_MAP_PROGRAM_CHANGES and cannot be used at the same time.
  193. PLUGIN_OPTION_SEND_PROGRAM_CHANGES = 0x200
  194. # ------------------------------------------------------------------------------------------------------------
  195. # Parameter Hints
  196. # Various parameter hints.
  197. # @see CarlaPlugin::getParameterData() and carla_get_parameter_data()
  198. # Parameter value is boolean.
  199. PARAMETER_IS_BOOLEAN = 0x001
  200. # Parameter value is integer.
  201. PARAMETER_IS_INTEGER = 0x002
  202. # Parameter value is logarithmic.
  203. PARAMETER_IS_LOGARITHMIC = 0x004
  204. # Parameter is enabled.
  205. # It can be viewed, changed and stored.
  206. PARAMETER_IS_ENABLED = 0x010
  207. # Parameter is automable (real-time safe).
  208. PARAMETER_IS_AUTOMABLE = 0x020
  209. # Parameter is read-only.
  210. # It cannot be changed.
  211. PARAMETER_IS_READ_ONLY = 0x040
  212. # Parameter needs sample rate to work.
  213. # Value and ranges are multiplied by sample rate on usage and divided by sample rate on save.
  214. PARAMETER_USES_SAMPLERATE = 0x100
  215. # Parameter uses scale points to define internal values in a meaningful way.
  216. PARAMETER_USES_SCALEPOINTS = 0x200
  217. # Parameter uses custom text for displaying its value.
  218. # @see carla_get_parameter_text()
  219. PARAMETER_USES_CUSTOM_TEXT = 0x400
  220. # ------------------------------------------------------------------------------------------------------------
  221. # Patchbay Port Hints
  222. # Various patchbay port hints.
  223. # Patchbay port is input.
  224. # When this hint is not set, port is assumed to be output.
  225. PATCHBAY_PORT_IS_INPUT = 0x1
  226. # Patchbay port is of Audio type.
  227. PATCHBAY_PORT_TYPE_AUDIO = 0x2
  228. # Patchbay port is of CV type (Control Voltage).
  229. PATCHBAY_PORT_TYPE_CV = 0x4
  230. # Patchbay port is of MIDI type.
  231. PATCHBAY_PORT_TYPE_MIDI = 0x8
  232. # ------------------------------------------------------------------------------------------------------------
  233. # Custom Data Types
  234. # These types define how the value in the CustomData struct is stored.
  235. # @see CustomData.type
  236. # Boolean string type URI.
  237. # Only "true" and "false" are valid values.
  238. CUSTOM_DATA_TYPE_BOOLEAN = "http://kxstudio.sf.net/ns/carla/boolean"
  239. # Chunk type URI.
  240. CUSTOM_DATA_TYPE_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk"
  241. # Property type URI.
  242. CUSTOM_DATA_TYPE_PROPERTY = "http://kxstudio.sf.net/ns/carla/property"
  243. # String type URI.
  244. CUSTOM_DATA_TYPE_STRING = "http://kxstudio.sf.net/ns/carla/string"
  245. # ------------------------------------------------------------------------------------------------------------
  246. # Custom Data Keys
  247. # Pre-defined keys used internally in Carla.
  248. # @see CustomData.key
  249. # Plugin options key.
  250. CUSTOM_DATA_KEY_PLUGIN_OPTIONS = "CarlaPluginOptions"
  251. # UI position key.
  252. CUSTOM_DATA_KEY_UI_POSITION = "CarlaUiPosition"
  253. # UI size key.
  254. CUSTOM_DATA_KEY_UI_SIZE = "CarlaUiSize"
  255. # UI visible key.
  256. CUSTOM_DATA_KEY_UI_VISIBLE = "CarlaUiVisible"
  257. # ------------------------------------------------------------------------------------------------------------
  258. # Binary Type
  259. # The binary type of a plugin.
  260. # Null binary type.
  261. BINARY_NONE = 0
  262. # POSIX 32bit binary.
  263. BINARY_POSIX32 = 1
  264. # POSIX 64bit binary.
  265. BINARY_POSIX64 = 2
  266. # Windows 32bit binary.
  267. BINARY_WIN32 = 3
  268. # Windows 64bit binary.
  269. BINARY_WIN64 = 4
  270. # Other binary type.
  271. BINARY_OTHER = 5
  272. # ------------------------------------------------------------------------------------------------------------
  273. # Plugin Type
  274. # Plugin type.
  275. # Some files are handled as if they were plugins.
  276. # Null plugin type.
  277. PLUGIN_NONE = 0
  278. # Internal plugin.
  279. PLUGIN_INTERNAL = 1
  280. # LADSPA plugin.
  281. PLUGIN_LADSPA = 2
  282. # DSSI plugin.
  283. PLUGIN_DSSI = 3
  284. # LV2 plugin.
  285. PLUGIN_LV2 = 4
  286. # VST2 plugin.
  287. PLUGIN_VST2 = 5
  288. # VST3 plugin.
  289. PLUGIN_VST3 = 6
  290. # AU plugin.
  291. # @note MacOS only
  292. PLUGIN_AU = 7
  293. # GIG file.
  294. PLUGIN_GIG = 8
  295. # SF2 file (SoundFont).
  296. PLUGIN_SF2 = 9
  297. # SFZ file.
  298. PLUGIN_SFZ = 10
  299. # JACK application.
  300. PLUGIN_JACK = 11
  301. # ------------------------------------------------------------------------------------------------------------
  302. # Plugin Category
  303. # Plugin category, which describes the functionality of a plugin.
  304. # Null plugin category.
  305. PLUGIN_CATEGORY_NONE = 0
  306. # A synthesizer or generator.
  307. PLUGIN_CATEGORY_SYNTH = 1
  308. # A delay or reverb.
  309. PLUGIN_CATEGORY_DELAY = 2
  310. # An equalizer.
  311. PLUGIN_CATEGORY_EQ = 3
  312. # A filter.
  313. PLUGIN_CATEGORY_FILTER = 4
  314. # A distortion plugin.
  315. PLUGIN_CATEGORY_DISTORTION = 5
  316. # A 'dynamic' plugin (amplifier, compressor, gate, etc).
  317. PLUGIN_CATEGORY_DYNAMICS = 6
  318. # A 'modulator' plugin (chorus, flanger, phaser, etc).
  319. PLUGIN_CATEGORY_MODULATOR = 7
  320. # An 'utility' plugin (analyzer, converter, mixer, etc).
  321. PLUGIN_CATEGORY_UTILITY = 8
  322. # Miscellaneous plugin (used to check if the plugin has a category).
  323. PLUGIN_CATEGORY_OTHER = 9
  324. # ------------------------------------------------------------------------------------------------------------
  325. # Parameter Type
  326. # Plugin parameter type.
  327. # Null parameter type.
  328. PARAMETER_UNKNOWN = 0
  329. # Input parameter.
  330. PARAMETER_INPUT = 1
  331. # Ouput parameter.
  332. PARAMETER_OUTPUT = 2
  333. # ------------------------------------------------------------------------------------------------------------
  334. # Internal Parameter Index
  335. # Special parameters used internally in Carla.
  336. # Plugins do not know about their existence.
  337. # Null parameter.
  338. PARAMETER_NULL = -1
  339. # Active parameter, boolean type.
  340. # Default is 'false'.
  341. PARAMETER_ACTIVE = -2
  342. # Dry/Wet parameter.
  343. # Range 0.0...1.0; default is 1.0.
  344. PARAMETER_DRYWET = -3
  345. # Volume parameter.
  346. # Range 0.0...1.27; default is 1.0.
  347. PARAMETER_VOLUME = -4
  348. # Stereo Balance-Left parameter.
  349. # Range -1.0...1.0; default is -1.0.
  350. PARAMETER_BALANCE_LEFT = -5
  351. # Stereo Balance-Right parameter.
  352. # Range -1.0...1.0; default is 1.0.
  353. PARAMETER_BALANCE_RIGHT = -6
  354. # Mono Panning parameter.
  355. # Range -1.0...1.0; default is 0.0.
  356. PARAMETER_PANNING = -7
  357. # MIDI Control channel, integer type.
  358. # Range -1...15 (-1 = off).
  359. PARAMETER_CTRL_CHANNEL = -8
  360. # Max value, defined only for convenience.
  361. PARAMETER_MAX = -9
  362. # ------------------------------------------------------------------------------------------------------------
  363. # Engine Callback Opcode
  364. # Engine callback opcodes.
  365. # Front-ends must never block indefinitely during a callback.
  366. # @see EngineCallbackFunc and carla_set_engine_callback()
  367. # Debug.
  368. # This opcode is undefined and used only for testing purposes.
  369. ENGINE_CALLBACK_DEBUG = 0
  370. # A plugin has been added.
  371. # @a pluginId Plugin Id
  372. # @a valueStr Plugin name
  373. ENGINE_CALLBACK_PLUGIN_ADDED = 1
  374. # A plugin has been removed.
  375. # @a pluginId Plugin Id
  376. ENGINE_CALLBACK_PLUGIN_REMOVED = 2
  377. # A plugin has been renamed.
  378. # @a pluginId Plugin Id
  379. # @a valueStr New plugin name
  380. ENGINE_CALLBACK_PLUGIN_RENAMED = 3
  381. # A plugin has become unavailable.
  382. # @a pluginId Plugin Id
  383. # @a valueStr Related error string
  384. ENGINE_CALLBACK_PLUGIN_UNAVAILABLE = 4
  385. # A parameter value has changed.
  386. # @a pluginId Plugin Id
  387. # @a value1 Parameter index
  388. # @a value3 New parameter value
  389. ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED = 5
  390. # A parameter default has changed.
  391. # @a pluginId Plugin Id
  392. # @a value1 Parameter index
  393. # @a value3 New default value
  394. ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED = 6
  395. # A parameter's MIDI CC has changed.
  396. # @a pluginId Plugin Id
  397. # @a value1 Parameter index
  398. # @a value2 New MIDI CC
  399. ENGINE_CALLBACK_PARAMETER_MIDI_CC_CHANGED = 7
  400. # A parameter's MIDI channel has changed.
  401. # @a pluginId Plugin Id
  402. # @a value1 Parameter index
  403. # @a value2 New MIDI channel
  404. ENGINE_CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED = 8
  405. # A plugin option has changed.
  406. # @a pluginId Plugin Id
  407. # @a value1 Option
  408. # @a value2 New on/off state (1 for on, 0 for off)
  409. # @see PluginOptions
  410. ENGINE_CALLBACK_OPTION_CHANGED = 9
  411. # The current program of a plugin has changed.
  412. # @a pluginId Plugin Id
  413. # @a value1 New program index
  414. ENGINE_CALLBACK_PROGRAM_CHANGED = 10
  415. # The current MIDI program of a plugin has changed.
  416. # @a pluginId Plugin Id
  417. # @a value1 New MIDI program index
  418. ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED = 11
  419. # A plugin's custom UI state has changed.
  420. # @a pluginId Plugin Id
  421. # @a value1 New state, as follows:
  422. # 0: UI is now hidden
  423. # 1: UI is now visible
  424. # -1: UI has crashed and should not be shown again
  425. ENGINE_CALLBACK_UI_STATE_CHANGED = 12
  426. # A note has been pressed.
  427. # @a pluginId Plugin Id
  428. # @a value1 Channel
  429. # @a value2 Note
  430. # @a value3 Velocity
  431. ENGINE_CALLBACK_NOTE_ON = 13
  432. # A note has been released.
  433. # @a pluginId Plugin Id
  434. # @a value1 Channel
  435. # @a value2 Note
  436. ENGINE_CALLBACK_NOTE_OFF = 14
  437. # A plugin needs update.
  438. # @a pluginId Plugin Id
  439. ENGINE_CALLBACK_UPDATE = 15
  440. # A plugin's data/information has changed.
  441. # @a pluginId Plugin Id
  442. ENGINE_CALLBACK_RELOAD_INFO = 16
  443. # A plugin's parameters have changed.
  444. # @a pluginId Plugin Id
  445. ENGINE_CALLBACK_RELOAD_PARAMETERS = 17
  446. # A plugin's programs have changed.
  447. # @a pluginId Plugin Id
  448. ENGINE_CALLBACK_RELOAD_PROGRAMS = 18
  449. # A plugin state has changed.
  450. # @a pluginId Plugin Id
  451. ENGINE_CALLBACK_RELOAD_ALL = 19
  452. # A patchbay client has been added.
  453. # @a pluginId Client Id
  454. # @a value1 Client icon
  455. # @a value2 Plugin Id (-1 if not a plugin)
  456. # @a valueStr Client name
  457. # @see PatchbayIcon
  458. ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED = 20
  459. # A patchbay client has been removed.
  460. # @a pluginId Client Id
  461. ENGINE_CALLBACK_PATCHBAY_CLIENT_REMOVED = 21
  462. # A patchbay client has been renamed.
  463. # @a pluginId Client Id
  464. # @a valueStr New client name
  465. ENGINE_CALLBACK_PATCHBAY_CLIENT_RENAMED = 22
  466. # A patchbay client data has changed.
  467. # @a pluginId Client Id
  468. # @a value1 New icon
  469. # @a value2 New plugin Id (-1 if not a plugin)
  470. # @see PatchbayIcon
  471. ENGINE_CALLBACK_PATCHBAY_CLIENT_DATA_CHANGED = 23
  472. # A patchbay port has been added.
  473. # @a pluginId Client Id
  474. # @a value1 Port Id
  475. # @a value2 Port hints
  476. # @a valueStr Port name
  477. # @see PatchbayPortHints
  478. ENGINE_CALLBACK_PATCHBAY_PORT_ADDED = 24
  479. # A patchbay port has been removed.
  480. # @a pluginId Client Id
  481. # @a value1 Port Id
  482. ENGINE_CALLBACK_PATCHBAY_PORT_REMOVED = 25
  483. # A patchbay port has been renamed.
  484. # @a pluginId Client Id
  485. # @a value1 Port Id
  486. # @a valueStr New port name
  487. ENGINE_CALLBACK_PATCHBAY_PORT_RENAMED = 26
  488. # A patchbay connection has been added.
  489. # @a pluginId Connection Id
  490. # @a valueStr Out group, port plus in group and port, in "og:op:ig:ip" syntax.
  491. ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED = 27
  492. # A patchbay connection has been removed.
  493. # @a pluginId Connection Id
  494. ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED = 28
  495. # Engine started.
  496. # @a value1 Process mode
  497. # @a value2 Transport mode
  498. # @a valuestr Engine driver
  499. # @see EngineProcessMode
  500. # @see EngineTransportMode
  501. ENGINE_CALLBACK_ENGINE_STARTED = 29
  502. # Engine stopped.
  503. ENGINE_CALLBACK_ENGINE_STOPPED = 30
  504. # Engine process mode has changed.
  505. # @a value1 New process mode
  506. # @see EngineProcessMode
  507. ENGINE_CALLBACK_PROCESS_MODE_CHANGED = 31
  508. # Engine transport mode has changed.
  509. # @a value1 New transport mode
  510. # @see EngineTransportMode
  511. ENGINE_CALLBACK_TRANSPORT_MODE_CHANGED = 32
  512. # Engine buffer-size changed.
  513. # @a value1 New buffer size
  514. ENGINE_CALLBACK_BUFFER_SIZE_CHANGED = 33
  515. # Engine sample-rate changed.
  516. # @a value3 New sample rate
  517. ENGINE_CALLBACK_SAMPLE_RATE_CHANGED = 34
  518. # Project has finished loading.
  519. ENGINE_CALLBACK_PROJECT_LOAD_FINISHED = 35
  520. # NSM callback.
  521. # (Work in progress, values are not defined yet)
  522. ENGINE_CALLBACK_NSM = 36
  523. # Idle frontend.
  524. # This is used by the engine during long operations that might block the frontend,
  525. # giving it the possibility to idle while the operation is still in place.
  526. ENGINE_CALLBACK_IDLE = 37
  527. # Show a message as information.
  528. # @a valueStr The message
  529. ENGINE_CALLBACK_INFO = 38
  530. # Show a message as an error.
  531. # @a valueStr The message
  532. ENGINE_CALLBACK_ERROR = 39
  533. # The engine has crashed or malfunctioned and will no longer work.
  534. ENGINE_CALLBACK_QUIT = 40
  535. # ------------------------------------------------------------------------------------------------------------
  536. # Engine Option
  537. # Engine options.
  538. # @see carla_set_engine_option()
  539. # Debug.
  540. # This option is undefined and used only for testing purposes.
  541. ENGINE_OPTION_DEBUG = 0
  542. # Set the engine processing mode.
  543. # Default is ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS on Linux and ENGINE_PROCESS_MODE_PATCHBAY for all other OSes.
  544. # @see EngineProcessMode
  545. ENGINE_OPTION_PROCESS_MODE = 1
  546. # Set the engine transport mode.
  547. # Default is ENGINE_TRANSPORT_MODE_JACK on Linux and ENGINE_TRANSPORT_MODE_INTERNAL for all other OSes.
  548. # @see EngineTransportMode
  549. ENGINE_OPTION_TRANSPORT_MODE = 2
  550. # Force mono plugins as stereo, by running 2 instances at the same time.
  551. # Default is false, but always true when process mode is ENGINE_PROCESS_MODE_CONTINUOUS_RACK.
  552. # @note Not supported by all plugins
  553. # @see PLUGIN_OPTION_FORCE_STEREO
  554. ENGINE_OPTION_FORCE_STEREO = 3
  555. # Use plugin bridges whenever possible.
  556. # Default is no, EXPERIMENTAL.
  557. ENGINE_OPTION_PREFER_PLUGIN_BRIDGES = 4
  558. # Use UI bridges whenever possible, otherwise UIs will be directly handled in the main backend thread.
  559. # Default is yes.
  560. ENGINE_OPTION_PREFER_UI_BRIDGES = 5
  561. # Make custom plugin UIs always-on-top.
  562. # Default is yes.
  563. ENGINE_OPTION_UIS_ALWAYS_ON_TOP = 6
  564. # Maximum number of parameters allowed.
  565. # Default is MAX_DEFAULT_PARAMETERS.
  566. ENGINE_OPTION_MAX_PARAMETERS = 7
  567. # Timeout value for how much to wait for UI bridges to respond, in milliseconds.
  568. # Default is 4000 (4 seconds).
  569. ENGINE_OPTION_UI_BRIDGES_TIMEOUT = 8
  570. # Number of audio periods.
  571. # Default is 2.
  572. ENGINE_OPTION_AUDIO_NUM_PERIODS = 9
  573. # Audio buffer size.
  574. # Default is 512.
  575. ENGINE_OPTION_AUDIO_BUFFER_SIZE = 10
  576. # Audio sample rate.
  577. # Default is 44100.
  578. ENGINE_OPTION_AUDIO_SAMPLE_RATE = 11
  579. # Audio device (within a driver).
  580. # Default unset.
  581. ENGINE_OPTION_AUDIO_DEVICE = 12
  582. # Set path used for a specific plugin type.
  583. # Uses value as the plugin format, valueStr as actual path.
  584. # @see PluginType
  585. ENGINE_OPTION_PLUGIN_PATH = 13
  586. # Set path to the binary files.
  587. # Default unset.
  588. # @note Must be set for plugin and UI bridges to work
  589. ENGINE_OPTION_PATH_BINARIES = 14
  590. # Set path to the resource files.
  591. # Default unset.
  592. # @note Must be set for some internal plugins to work
  593. ENGINE_OPTION_PATH_RESOURCES = 15
  594. # Prevent bad plugin and UI behaviour.
  595. # @note: Linux only
  596. ENGINE_OPTION_PREVENT_BAD_BEHAVIOUR = 16
  597. # Set frontend winId, used to define as parent window for plugin UIs.
  598. ENGINE_OPTION_FRONTEND_WIN_ID = 17
  599. # Capture console output into debug callbacks
  600. ENGINE_OPTION_DEBUG_CONSOLE_OUTPUT = 18
  601. # ------------------------------------------------------------------------------------------------------------
  602. # Engine Process Mode
  603. # Engine process mode.
  604. # @see ENGINE_OPTION_PROCESS_MODE
  605. # Single client mode.
  606. # Inputs and outputs are added dynamically as needed by plugins.
  607. ENGINE_PROCESS_MODE_SINGLE_CLIENT = 0
  608. # Multiple client mode.
  609. # It has 1 master client + 1 client per plugin.
  610. ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS = 1
  611. # Single client, 'rack' mode.
  612. # Processes plugins in order of Id, with forced stereo always on.
  613. ENGINE_PROCESS_MODE_CONTINUOUS_RACK = 2
  614. # Single client, 'patchbay' mode.
  615. ENGINE_PROCESS_MODE_PATCHBAY = 3
  616. # Special mode, used in plugin-bridges only.
  617. ENGINE_PROCESS_MODE_BRIDGE = 4
  618. # ------------------------------------------------------------------------------------------------------------
  619. # Engine Transport Mode
  620. # Engine transport mode.
  621. # @see ENGINE_OPTION_TRANSPORT_MODE
  622. # Internal transport mode.
  623. ENGINE_TRANSPORT_MODE_INTERNAL = 0
  624. # Transport from JACK.
  625. # Only available if driver name is "JACK".
  626. ENGINE_TRANSPORT_MODE_JACK = 1
  627. # Transport from host, used when Carla is a plugin.
  628. ENGINE_TRANSPORT_MODE_PLUGIN = 2
  629. # Special mode, used in plugin-bridges only.
  630. ENGINE_TRANSPORT_MODE_BRIDGE = 3
  631. # ------------------------------------------------------------------------------------------------------------
  632. # File Callback Opcode
  633. # File callback opcodes.
  634. # Front-ends must always block-wait for user input.
  635. # @see FileCallbackFunc and carla_set_file_callback()
  636. # Debug.
  637. # This opcode is undefined and used only for testing purposes.
  638. FILE_CALLBACK_DEBUG = 0
  639. # Open file or folder.
  640. FILE_CALLBACK_OPEN = 1
  641. # Save file or folder.
  642. FILE_CALLBACK_SAVE = 2
  643. # ------------------------------------------------------------------------------------------------------------
  644. # Patchbay Icon
  645. # The icon of a patchbay client/group.
  646. # Generic application icon.
  647. # Used for all non-plugin clients that don't have a specific icon.
  648. PATCHBAY_ICON_APPLICATION = 0
  649. # Plugin icon.
  650. # Used for all plugin clients that don't have a specific icon.
  651. PATCHBAY_ICON_PLUGIN = 1
  652. # Hardware icon.
  653. # Used for hardware (audio or MIDI) clients.
  654. PATCHBAY_ICON_HARDWARE = 2
  655. # Carla icon.
  656. # Used for the main app.
  657. PATCHBAY_ICON_CARLA = 3
  658. # DISTRHO icon.
  659. # Used for DISTRHO based plugins.
  660. PATCHBAY_ICON_DISTRHO = 4
  661. # File icon.
  662. # Used for file type plugins (like GIG and SF2).
  663. PATCHBAY_ICON_FILE = 5
  664. # ------------------------------------------------------------------------------------------------------------
  665. # Carla Backend API (C stuff)
  666. # Engine callback function.
  667. # Front-ends must never block indefinitely during a callback.
  668. # @see EngineCallbackOpcode and carla_set_engine_callback()
  669. EngineCallbackFunc = CFUNCTYPE(None, c_void_p, c_enum, c_uint, c_int, c_int, c_float, c_char_p)
  670. # File callback function.
  671. # @see FileCallbackOpcode
  672. FileCallbackFunc = CFUNCTYPE(c_char_p, c_void_p, c_enum, c_bool, c_char_p, c_char_p)
  673. # Parameter data.
  674. class ParameterData(Structure):
  675. _fields_ = [
  676. # This parameter type.
  677. ("type", c_enum),
  678. # This parameter hints.
  679. # @see ParameterHints
  680. ("hints", c_uint),
  681. # Index as seen by Carla.
  682. ("index", c_int32),
  683. # Real index as seen by plugins.
  684. ("rindex", c_int32),
  685. # Currently mapped MIDI CC.
  686. # A value lower than 0 means invalid or unused.
  687. # Maximum allowed value is 119 (0x77).
  688. ("midiCC", c_int16),
  689. # Currently mapped MIDI channel.
  690. # Counts from 0 to 15.
  691. ("midiChannel", c_uint8)
  692. ]
  693. # Parameter ranges.
  694. class ParameterRanges(Structure):
  695. _fields_ = [
  696. # Default value.
  697. ("def", c_float),
  698. # Minimum value.
  699. ("min", c_float),
  700. # Maximum value.
  701. ("max", c_float),
  702. # Regular, single step value.
  703. ("step", c_float),
  704. # Small step value.
  705. ("stepSmall", c_float),
  706. # Large step value.
  707. ("stepLarge", c_float)
  708. ]
  709. # MIDI Program data.
  710. class MidiProgramData(Structure):
  711. _fields_ = [
  712. # MIDI bank.
  713. ("bank", c_uint32),
  714. # MIDI program.
  715. ("program", c_uint32),
  716. # MIDI program name.
  717. ("name", c_char_p)
  718. ]
  719. # Custom data, used for saving key:value 'dictionaries'.
  720. class CustomData(Structure):
  721. _fields_ = [
  722. # Value type, in URI form.
  723. # @see CustomDataTypes
  724. ("type", c_char_p),
  725. # Key.
  726. # @see CustomDataKeys
  727. ("key", c_char_p),
  728. # Value.
  729. ("value", c_char_p)
  730. ]
  731. # Engine driver device information.
  732. class EngineDriverDeviceInfo(Structure):
  733. _fields_ = [
  734. # This driver device hints.
  735. # @see EngineDriverHints
  736. ("hints", c_uint),
  737. # Available buffer sizes.
  738. # Terminated with 0.
  739. ("bufferSizes", POINTER(c_uint32)),
  740. # Available sample rates.
  741. # Terminated with 0.0.
  742. ("sampleRates", POINTER(c_double))
  743. ]
  744. # ------------------------------------------------------------------------------------------------------------
  745. # Carla Backend API (Python compatible stuff)
  746. # @see ParameterData
  747. PyParameterData = {
  748. 'type': PARAMETER_UNKNOWN,
  749. 'hints': 0x0,
  750. 'index': PARAMETER_NULL,
  751. 'rindex': -1,
  752. 'midiCC': -1,
  753. 'midiChannel': 0
  754. }
  755. # @see ParameterRanges
  756. PyParameterRanges = {
  757. 'def': 0.0,
  758. 'min': 0.0,
  759. 'max': 1.0,
  760. 'step': 0.01,
  761. 'stepSmall': 0.0001,
  762. 'stepLarge': 0.1
  763. }
  764. # @see MidiProgramData
  765. PyMidiProgramData = {
  766. 'bank': 0,
  767. 'program': 0,
  768. 'name': None
  769. }
  770. # @see CustomData
  771. PyCustomData = {
  772. 'type': None,
  773. 'key': None,
  774. 'value': None
  775. }
  776. # @see EngineDriverDeviceInfo
  777. PyEngineDriverDeviceInfo = {
  778. 'hints': 0x0,
  779. 'bufferSizes': [],
  780. 'sampleRates': []
  781. }
  782. # ------------------------------------------------------------------------------------------------------------
  783. # Carla Host API (C stuff)
  784. # Information about a loaded plugin.
  785. # @see carla_get_plugin_info()
  786. class CarlaPluginInfo(Structure):
  787. _fields_ = [
  788. # Plugin type.
  789. ("type", c_enum),
  790. # Plugin category.
  791. ("category", c_enum),
  792. # Plugin hints.
  793. # @see PluginHints
  794. ("hints", c_uint),
  795. # Plugin options available for the user to change.
  796. # @see PluginOptions
  797. ("optionsAvailable", c_uint),
  798. # Plugin options currently enabled.
  799. # Some options are enabled but not available, which means they will always be on.
  800. # @see PluginOptions
  801. ("optionsEnabled", c_uint),
  802. # Plugin filename.
  803. # This can be the plugin binary or resource file.
  804. ("filename", c_char_p),
  805. # Plugin name.
  806. # This name is unique within a Carla instance.
  807. # @see carla_get_real_plugin_name()
  808. ("name", c_char_p),
  809. # Plugin label or URI.
  810. ("label", c_char_p),
  811. # Plugin author/maker.
  812. ("maker", c_char_p),
  813. # Plugin copyright/license.
  814. ("copyright", c_char_p),
  815. # Icon name for this plugin, in lowercase.
  816. # Default is "plugin".
  817. ("iconName", c_char_p),
  818. # Plugin unique Id.
  819. # This Id is dependant on the plugin type and may sometimes be 0.
  820. ("uniqueId", c_int64)
  821. ]
  822. # Port count information, used for Audio and MIDI ports and parameters.
  823. # @see carla_get_audio_port_count_info()
  824. # @see carla_get_midi_port_count_info()
  825. # @see carla_get_parameter_count_info()
  826. class CarlaPortCountInfo(Structure):
  827. _fields_ = [
  828. # Number of inputs.
  829. ("ins", c_uint32),
  830. # Number of outputs.
  831. ("outs", c_uint32)
  832. ]
  833. # Parameter information.
  834. # @see carla_get_parameter_info()
  835. class CarlaParameterInfo(Structure):
  836. _fields_ = [
  837. # Parameter name.
  838. ("name", c_char_p),
  839. # Parameter symbol.
  840. ("symbol", c_char_p),
  841. # Parameter unit.
  842. ("unit", c_char_p),
  843. # Number of scale points.
  844. # @see CarlaScalePointInfo
  845. ("scalePointCount", c_uint32)
  846. ]
  847. # Parameter scale point information.
  848. # @see carla_get_parameter_scalepoint_info()
  849. class CarlaScalePointInfo(Structure):
  850. _fields_ = [
  851. # Scale point value.
  852. ("value", c_float),
  853. # Scale point label.
  854. ("label", c_char_p)
  855. ]
  856. # Transport information.
  857. # @see carla_get_transport_info()
  858. class CarlaTransportInfo(Structure):
  859. _fields_ = [
  860. # Wherever transport is playing.
  861. ("playing", c_bool),
  862. # Current transport frame.
  863. ("frame", c_uint64),
  864. # Bar
  865. ("bar", c_int32),
  866. # Beat
  867. ("beat", c_int32),
  868. # Tick
  869. ("tick", c_int32),
  870. # Beats per minute.
  871. ("bpm", c_double)
  872. ]
  873. # Image data for LV2 inline display API.
  874. # raw image pixmap format is ARGB32,
  875. class CarlaInlineDisplayImageSurface(Structure):
  876. _fields_ = [
  877. ("data", POINTER(c_ubyte)),
  878. ("width", c_int),
  879. ("height", c_int),
  880. ("stride", c_int)
  881. ]
  882. # ------------------------------------------------------------------------------------------------------------
  883. # Carla Host API (Python compatible stuff)
  884. # @see CarlaPluginInfo
  885. PyCarlaPluginInfo = {
  886. 'type': PLUGIN_NONE,
  887. 'category': PLUGIN_CATEGORY_NONE,
  888. 'hints': 0x0,
  889. 'optionsAvailable': 0x0,
  890. 'optionsEnabled': 0x0,
  891. 'filename': "",
  892. 'name': "",
  893. 'label': "",
  894. 'maker': "",
  895. 'copyright': "",
  896. 'iconName': "",
  897. 'uniqueId': 0
  898. }
  899. # @see CarlaPortCountInfo
  900. PyCarlaPortCountInfo = {
  901. 'ins': 0,
  902. 'outs': 0
  903. }
  904. # @see CarlaParameterInfo
  905. PyCarlaParameterInfo = {
  906. 'name': "",
  907. 'symbol': "",
  908. 'unit': "",
  909. 'scalePointCount': 0,
  910. }
  911. # @see CarlaScalePointInfo
  912. PyCarlaScalePointInfo = {
  913. 'value': 0.0,
  914. 'label': ""
  915. }
  916. # @see CarlaTransportInfo
  917. PyCarlaTransportInfo = {
  918. "playing": False,
  919. "frame": 0,
  920. "bar": 0,
  921. "beat": 0,
  922. "tick": 0,
  923. "bpm": 0.0
  924. }
  925. # ------------------------------------------------------------------------------------------------------------
  926. # Set BINARY_NATIVE
  927. if HAIKU or LINUX or MACOS:
  928. BINARY_NATIVE = BINARY_POSIX64 if kIs64bit else BINARY_POSIX32
  929. elif WINDOWS:
  930. BINARY_NATIVE = BINARY_WIN64 if kIs64bit else BINARY_WIN32
  931. else:
  932. BINARY_NATIVE = BINARY_OTHER
  933. # ------------------------------------------------------------------------------------------------------------
  934. # Carla Host object (Meta)
  935. class CarlaHostMeta(object):
  936. #class CarlaHostMeta(object, metaclass=ABCMeta):
  937. def __init__(self):
  938. object.__init__(self)
  939. # info about this host object
  940. self.isControl = False
  941. self.isPlugin = False
  942. self.nsmOK = False
  943. # settings
  944. self.processMode = ENGINE_PROCESS_MODE_PATCHBAY
  945. self.transportMode = ENGINE_TRANSPORT_MODE_INTERNAL
  946. self.nextProcessMode = ENGINE_PROCESS_MODE_PATCHBAY
  947. self.processModeForced = False
  948. self.audioDriverForced = None
  949. # settings
  950. self.experimental = False
  951. self.exportLV2 = False
  952. self.forceStereo = False
  953. self.manageUIs = False
  954. self.maxParameters = 0
  955. self.preferPluginBridges = False
  956. self.preferUIBridges = False
  957. self.preventBadBehaviour = False
  958. self.showPluginBridges = False
  959. self.showLogs = False
  960. self.uiBridgesTimeout = 0
  961. self.uisAlwaysOnTop = False
  962. # settings
  963. self.pathBinaries = ""
  964. self.pathResources = ""
  965. # Get how many engine drivers are available.
  966. @abstractmethod
  967. def get_engine_driver_count(self):
  968. raise NotImplementedError
  969. # Get an engine driver name.
  970. # @param index Driver index
  971. @abstractmethod
  972. def get_engine_driver_name(self, index):
  973. raise NotImplementedError
  974. # Get the device names of an engine driver.
  975. # @param index Driver index
  976. @abstractmethod
  977. def get_engine_driver_device_names(self, index):
  978. raise NotImplementedError
  979. # Get information about a device driver.
  980. # @param index Driver index
  981. # @param name Device name
  982. @abstractmethod
  983. def get_engine_driver_device_info(self, index, name):
  984. raise NotImplementedError
  985. # Initialize the engine.
  986. # Make sure to call carla_engine_idle() at regular intervals afterwards.
  987. # @param driverName Driver to use
  988. # @param clientName Engine master client name
  989. @abstractmethod
  990. def engine_init(self, driverName, clientName):
  991. raise NotImplementedError
  992. # Close the engine.
  993. # This function always closes the engine even if it returns false.
  994. # In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
  995. @abstractmethod
  996. def engine_close(self):
  997. raise NotImplementedError
  998. # Idle the engine.
  999. # Do not call this if the engine is not running.
  1000. @abstractmethod
  1001. def engine_idle(self):
  1002. raise NotImplementedError
  1003. # Check if the engine is running.
  1004. @abstractmethod
  1005. def is_engine_running(self):
  1006. raise NotImplementedError
  1007. # Tell the engine it's about to close.
  1008. # This is used to prevent the engine thread(s) from reactivating.
  1009. @abstractmethod
  1010. def set_engine_about_to_close(self):
  1011. raise NotImplementedError
  1012. # Set the engine callback function.
  1013. # @param func Callback function
  1014. @abstractmethod
  1015. def set_engine_callback(self, func):
  1016. raise NotImplementedError
  1017. # Set an engine option.
  1018. # @param option Option
  1019. # @param value Value as number
  1020. # @param valueStr Value as string
  1021. @abstractmethod
  1022. def set_engine_option(self, option, value, valueStr):
  1023. raise NotImplementedError
  1024. # Set the file callback function.
  1025. # @param func Callback function
  1026. # @param ptr Callback pointer
  1027. @abstractmethod
  1028. def set_file_callback(self, func):
  1029. raise NotImplementedError
  1030. # Load a file of any type.
  1031. # This will try to load a generic file as a plugin,
  1032. # either by direct handling (GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
  1033. # @see carla_get_supported_file_extensions()
  1034. @abstractmethod
  1035. def load_file(self, filename):
  1036. raise NotImplementedError
  1037. # Load a Carla project file.
  1038. # @note Currently loaded plugins are not removed; call carla_remove_all_plugins() first if needed.
  1039. @abstractmethod
  1040. def load_project(self, filename):
  1041. raise NotImplementedError
  1042. # Save current project to a file.
  1043. @abstractmethod
  1044. def save_project(self, filename):
  1045. raise NotImplementedError
  1046. # Connect two patchbay ports.
  1047. # @param groupIdA Output group
  1048. # @param portIdA Output port
  1049. # @param groupIdB Input group
  1050. # @param portIdB Input port
  1051. # @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED
  1052. @abstractmethod
  1053. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  1054. raise NotImplementedError
  1055. # Disconnect two patchbay ports.
  1056. # @param connectionId Connection Id
  1057. # @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED
  1058. @abstractmethod
  1059. def patchbay_disconnect(self, connectionId):
  1060. raise NotImplementedError
  1061. # Force the engine to resend all patchbay clients, ports and connections again.
  1062. # @param external Wherever to show external/hardware ports instead of internal ones.
  1063. # Only valid in patchbay engine mode, other modes will ignore this.
  1064. @abstractmethod
  1065. def patchbay_refresh(self, external):
  1066. raise NotImplementedError
  1067. # Start playback of the engine transport.
  1068. @abstractmethod
  1069. def transport_play(self):
  1070. raise NotImplementedError
  1071. # Pause the engine transport.
  1072. @abstractmethod
  1073. def transport_pause(self):
  1074. raise NotImplementedError
  1075. # Pause the engine transport.
  1076. @abstractmethod
  1077. def transport_bpm(self, bpm):
  1078. raise NotImplementedError
  1079. # Relocate the engine transport to a specific frame.
  1080. @abstractmethod
  1081. def transport_relocate(self, frame):
  1082. raise NotImplementedError
  1083. # Get the current transport frame.
  1084. @abstractmethod
  1085. def get_current_transport_frame(self):
  1086. raise NotImplementedError
  1087. # Get the engine transport information.
  1088. @abstractmethod
  1089. def get_transport_info(self):
  1090. raise NotImplementedError
  1091. # Current number of plugins loaded.
  1092. @abstractmethod
  1093. def get_current_plugin_count(self):
  1094. raise NotImplementedError
  1095. # Maximum number of loadable plugins allowed.
  1096. # Returns 0 if engine is not started.
  1097. @abstractmethod
  1098. def get_max_plugin_number(self):
  1099. raise NotImplementedError
  1100. # Add a new plugin.
  1101. # If you don't know the binary type use the BINARY_NATIVE macro.
  1102. # @param btype Binary type
  1103. # @param ptype Plugin type
  1104. # @param filename Filename, if applicable
  1105. # @param name Name of the plugin, can be NULL
  1106. # @param label Plugin label, if applicable
  1107. # @param uniqueId Plugin unique Id, if applicable
  1108. # @param extraPtr Extra pointer, defined per plugin type
  1109. # @param options Initial plugin options
  1110. @abstractmethod
  1111. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr, options):
  1112. raise NotImplementedError
  1113. # Remove a plugin.
  1114. # @param pluginId Plugin to remove.
  1115. @abstractmethod
  1116. def remove_plugin(self, pluginId):
  1117. raise NotImplementedError
  1118. # Remove all plugins.
  1119. @abstractmethod
  1120. def remove_all_plugins(self):
  1121. raise NotImplementedError
  1122. # Rename a plugin.
  1123. # Returns the new name, or NULL if the operation failed.
  1124. # @param pluginId Plugin to rename
  1125. # @param newName New plugin name
  1126. @abstractmethod
  1127. def rename_plugin(self, pluginId, newName):
  1128. raise NotImplementedError
  1129. # Clone a plugin.
  1130. # @param pluginId Plugin to clone
  1131. @abstractmethod
  1132. def clone_plugin(self, pluginId):
  1133. raise NotImplementedError
  1134. # Prepare replace of a plugin.
  1135. # The next call to carla_add_plugin() will use this id, replacing the current plugin.
  1136. # @param pluginId Plugin to replace
  1137. # @note This function requires carla_add_plugin() to be called afterwards *as soon as possible*.
  1138. @abstractmethod
  1139. def replace_plugin(self, pluginId):
  1140. raise NotImplementedError
  1141. # Switch two plugins positions.
  1142. # @param pluginIdA Plugin A
  1143. # @param pluginIdB Plugin B
  1144. @abstractmethod
  1145. def switch_plugins(self, pluginIdA, pluginIdB):
  1146. raise NotImplementedError
  1147. # Load a plugin state.
  1148. # @param pluginId Plugin
  1149. # @param filename Path to plugin state
  1150. # @see carla_save_plugin_state()
  1151. @abstractmethod
  1152. def load_plugin_state(self, pluginId, filename):
  1153. raise NotImplementedError
  1154. # Save a plugin state.
  1155. # @param pluginId Plugin
  1156. # @param filename Path to plugin state
  1157. # @see carla_load_plugin_state()
  1158. @abstractmethod
  1159. def save_plugin_state(self, pluginId, filename):
  1160. raise NotImplementedError
  1161. # Export plugin as LV2.
  1162. # @param pluginId Plugin
  1163. # @param lv2path Path to lv2 plugin folder
  1164. def export_plugin_lv2(self, pluginId, lv2path):
  1165. raise NotImplementedError
  1166. # Get information from a plugin.
  1167. # @param pluginId Plugin
  1168. @abstractmethod
  1169. def get_plugin_info(self, pluginId):
  1170. raise NotImplementedError
  1171. # Get audio port count information from a plugin.
  1172. # @param pluginId Plugin
  1173. @abstractmethod
  1174. def get_audio_port_count_info(self, pluginId):
  1175. raise NotImplementedError
  1176. # Get MIDI port count information from a plugin.
  1177. # @param pluginId Plugin
  1178. @abstractmethod
  1179. def get_midi_port_count_info(self, pluginId):
  1180. raise NotImplementedError
  1181. # Get parameter count information from a plugin.
  1182. # @param pluginId Plugin
  1183. @abstractmethod
  1184. def get_parameter_count_info(self, pluginId):
  1185. raise NotImplementedError
  1186. # Get parameter information from a plugin.
  1187. # @param pluginId Plugin
  1188. # @param parameterId Parameter index
  1189. # @see carla_get_parameter_count()
  1190. @abstractmethod
  1191. def get_parameter_info(self, pluginId, parameterId):
  1192. raise NotImplementedError
  1193. # Get parameter scale point information from a plugin.
  1194. # @param pluginId Plugin
  1195. # @param parameterId Parameter index
  1196. # @param scalePointId Parameter scale-point index
  1197. # @see CarlaParameterInfo::scalePointCount
  1198. @abstractmethod
  1199. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  1200. raise NotImplementedError
  1201. # Get a plugin's parameter data.
  1202. # @param pluginId Plugin
  1203. # @param parameterId Parameter index
  1204. # @see carla_get_parameter_count()
  1205. @abstractmethod
  1206. def get_parameter_data(self, pluginId, parameterId):
  1207. raise NotImplementedError
  1208. # Get a plugin's parameter ranges.
  1209. # @param pluginId Plugin
  1210. # @param parameterId Parameter index
  1211. # @see carla_get_parameter_count()
  1212. @abstractmethod
  1213. def get_parameter_ranges(self, pluginId, parameterId):
  1214. raise NotImplementedError
  1215. # Get a plugin's MIDI program data.
  1216. # @param pluginId Plugin
  1217. # @param midiProgramId MIDI Program index
  1218. # @see carla_get_midi_program_count()
  1219. @abstractmethod
  1220. def get_midi_program_data(self, pluginId, midiProgramId):
  1221. raise NotImplementedError
  1222. # Get a plugin's custom data.
  1223. # @param pluginId Plugin
  1224. # @param customDataId Custom data index
  1225. # @see carla_get_custom_data_count()
  1226. @abstractmethod
  1227. def get_custom_data(self, pluginId, customDataId):
  1228. raise NotImplementedError
  1229. # Get a plugin's chunk data.
  1230. # @param pluginId Plugin
  1231. # @see PLUGIN_OPTION_USE_CHUNKS
  1232. @abstractmethod
  1233. def get_chunk_data(self, pluginId):
  1234. raise NotImplementedError
  1235. # Get how many parameters a plugin has.
  1236. # @param pluginId Plugin
  1237. @abstractmethod
  1238. def get_parameter_count(self, pluginId):
  1239. raise NotImplementedError
  1240. # Get how many programs a plugin has.
  1241. # @param pluginId Plugin
  1242. # @see carla_get_program_name()
  1243. @abstractmethod
  1244. def get_program_count(self, pluginId):
  1245. raise NotImplementedError
  1246. # Get how many MIDI programs a plugin has.
  1247. # @param pluginId Plugin
  1248. # @see carla_get_midi_program_name() and carla_get_midi_program_data()
  1249. @abstractmethod
  1250. def get_midi_program_count(self, pluginId):
  1251. raise NotImplementedError
  1252. # Get how many custom data sets a plugin has.
  1253. # @param pluginId Plugin
  1254. # @see carla_get_custom_data()
  1255. @abstractmethod
  1256. def get_custom_data_count(self, pluginId):
  1257. raise NotImplementedError
  1258. # Get a plugin's parameter text (custom display of internal values).
  1259. # @param pluginId Plugin
  1260. # @param parameterId Parameter index
  1261. # @see PARAMETER_USES_CUSTOM_TEXT
  1262. @abstractmethod
  1263. def get_parameter_text(self, pluginId, parameterId):
  1264. raise NotImplementedError
  1265. # Get a plugin's program name.
  1266. # @param pluginId Plugin
  1267. # @param programId Program index
  1268. # @see carla_get_program_count()
  1269. @abstractmethod
  1270. def get_program_name(self, pluginId, programId):
  1271. raise NotImplementedError
  1272. # Get a plugin's MIDI program name.
  1273. # @param pluginId Plugin
  1274. # @param midiProgramId MIDI Program index
  1275. # @see carla_get_midi_program_count()
  1276. @abstractmethod
  1277. def get_midi_program_name(self, pluginId, midiProgramId):
  1278. raise NotImplementedError
  1279. # Get a plugin's real name.
  1280. # This is the name the plugin uses to identify itself; may not be unique.
  1281. # @param pluginId Plugin
  1282. @abstractmethod
  1283. def get_real_plugin_name(self, pluginId):
  1284. raise NotImplementedError
  1285. # Get a plugin's program index.
  1286. # @param pluginId Plugin
  1287. @abstractmethod
  1288. def get_current_program_index(self, pluginId):
  1289. raise NotImplementedError
  1290. # Get a plugin's midi program index.
  1291. # @param pluginId Plugin
  1292. @abstractmethod
  1293. def get_current_midi_program_index(self, pluginId):
  1294. raise NotImplementedError
  1295. # Get a plugin's default parameter value.
  1296. # @param pluginId Plugin
  1297. # @param parameterId Parameter index
  1298. @abstractmethod
  1299. def get_default_parameter_value(self, pluginId, parameterId):
  1300. raise NotImplementedError
  1301. # Get a plugin's current parameter value.
  1302. # @param pluginId Plugin
  1303. # @param parameterId Parameter index
  1304. @abstractmethod
  1305. def get_current_parameter_value(self, pluginId, parameterId):
  1306. raise NotImplementedError
  1307. # Get a plugin's internal parameter value.
  1308. # @param pluginId Plugin
  1309. # @param parameterId Parameter index, maybe be negative
  1310. # @see InternalParameterIndex
  1311. @abstractmethod
  1312. def get_internal_parameter_value(self, pluginId, parameterId):
  1313. raise NotImplementedError
  1314. # Get a plugin's input peak value.
  1315. # @param pluginId Plugin
  1316. # @param isLeft Wherever to get the left/mono value, otherwise right.
  1317. @abstractmethod
  1318. def get_input_peak_value(self, pluginId, isLeft):
  1319. raise NotImplementedError
  1320. # Get a plugin's output peak value.
  1321. # @param pluginId Plugin
  1322. # @param isLeft Wherever to get the left/mono value, otherwise right.
  1323. @abstractmethod
  1324. def get_output_peak_value(self, pluginId, isLeft):
  1325. raise NotImplementedError
  1326. # Render a plugin's inline display.
  1327. # @param pluginId Plugin
  1328. @abstractmethod
  1329. def render_inline_display(self, pluginId, width, height):
  1330. raise NotImplementedError
  1331. # Enable a plugin's option.
  1332. # @param pluginId Plugin
  1333. # @param option An option from PluginOptions
  1334. # @param yesNo New enabled state
  1335. @abstractmethod
  1336. def set_option(self, pluginId, option, yesNo):
  1337. raise NotImplementedError
  1338. # Enable or disable a plugin.
  1339. # @param pluginId Plugin
  1340. # @param onOff New active state
  1341. @abstractmethod
  1342. def set_active(self, pluginId, onOff):
  1343. raise NotImplementedError
  1344. # Change a plugin's internal dry/wet.
  1345. # @param pluginId Plugin
  1346. # @param value New dry/wet value
  1347. @abstractmethod
  1348. def set_drywet(self, pluginId, value):
  1349. raise NotImplementedError
  1350. # Change a plugin's internal volume.
  1351. # @param pluginId Plugin
  1352. # @param value New volume
  1353. @abstractmethod
  1354. def set_volume(self, pluginId, value):
  1355. raise NotImplementedError
  1356. # Change a plugin's internal stereo balance, left channel.
  1357. # @param pluginId Plugin
  1358. # @param value New value
  1359. @abstractmethod
  1360. def set_balance_left(self, pluginId, value):
  1361. raise NotImplementedError
  1362. # Change a plugin's internal stereo balance, right channel.
  1363. # @param pluginId Plugin
  1364. # @param value New value
  1365. @abstractmethod
  1366. def set_balance_right(self, pluginId, value):
  1367. raise NotImplementedError
  1368. # Change a plugin's internal mono panning value.
  1369. # @param pluginId Plugin
  1370. # @param value New value
  1371. @abstractmethod
  1372. def set_panning(self, pluginId, value):
  1373. raise NotImplementedError
  1374. # Change a plugin's internal control channel.
  1375. # @param pluginId Plugin
  1376. # @param channel New channel
  1377. @abstractmethod
  1378. def set_ctrl_channel(self, pluginId, channel):
  1379. raise NotImplementedError
  1380. # Change a plugin's parameter value.
  1381. # @param pluginId Plugin
  1382. # @param parameterId Parameter index
  1383. # @param value New value
  1384. @abstractmethod
  1385. def set_parameter_value(self, pluginId, parameterId, value):
  1386. raise NotImplementedError
  1387. # Change a plugin's parameter MIDI cc.
  1388. # @param pluginId Plugin
  1389. # @param parameterId Parameter index
  1390. # @param cc New MIDI cc
  1391. @abstractmethod
  1392. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  1393. raise NotImplementedError
  1394. # Change a plugin's parameter MIDI channel.
  1395. # @param pluginId Plugin
  1396. # @param parameterId Parameter index
  1397. # @param channel New MIDI channel
  1398. @abstractmethod
  1399. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  1400. raise NotImplementedError
  1401. # Change a plugin's current program.
  1402. # @param pluginId Plugin
  1403. # @param programId New program
  1404. @abstractmethod
  1405. def set_program(self, pluginId, programId):
  1406. raise NotImplementedError
  1407. # Change a plugin's current MIDI program.
  1408. # @param pluginId Plugin
  1409. # @param midiProgramId New value
  1410. @abstractmethod
  1411. def set_midi_program(self, pluginId, midiProgramId):
  1412. raise NotImplementedError
  1413. # Set a plugin's custom data set.
  1414. # @param pluginId Plugin
  1415. # @param type Type
  1416. # @param key Key
  1417. # @param value New value
  1418. # @see CustomDataTypes and CustomDataKeys
  1419. @abstractmethod
  1420. def set_custom_data(self, pluginId, type_, key, value):
  1421. raise NotImplementedError
  1422. # Set a plugin's chunk data.
  1423. # @param pluginId Plugin
  1424. # @param chunkData New chunk data
  1425. # @see PLUGIN_OPTION_USE_CHUNKS and carla_get_chunk_data()
  1426. @abstractmethod
  1427. def set_chunk_data(self, pluginId, chunkData):
  1428. raise NotImplementedError
  1429. # Tell a plugin to prepare for save.
  1430. # This should be called before saving custom data sets.
  1431. # @param pluginId Plugin
  1432. @abstractmethod
  1433. def prepare_for_save(self, pluginId):
  1434. raise NotImplementedError
  1435. # Reset all plugin's parameters.
  1436. # @param pluginId Plugin
  1437. @abstractmethod
  1438. def reset_parameters(self, pluginId):
  1439. raise NotImplementedError
  1440. # Randomize all plugin's parameters.
  1441. # @param pluginId Plugin
  1442. @abstractmethod
  1443. def randomize_parameters(self, pluginId):
  1444. raise NotImplementedError
  1445. # Send a single note of a plugin.
  1446. # If velocity is 0, note-off is sent; note-on otherwise.
  1447. # @param pluginId Plugin
  1448. # @param channel Note channel
  1449. # @param note Note pitch
  1450. # @param velocity Note velocity
  1451. @abstractmethod
  1452. def send_midi_note(self, pluginId, channel, note, velocity):
  1453. raise NotImplementedError
  1454. # Tell a plugin to show its own custom UI.
  1455. # @param pluginId Plugin
  1456. # @param yesNo New UI state, visible or not
  1457. # @see PLUGIN_HAS_CUSTOM_UI
  1458. @abstractmethod
  1459. def show_custom_ui(self, pluginId, yesNo):
  1460. raise NotImplementedError
  1461. # Get the current engine buffer size.
  1462. @abstractmethod
  1463. def get_buffer_size(self):
  1464. raise NotImplementedError
  1465. # Get the current engine sample rate.
  1466. @abstractmethod
  1467. def get_sample_rate(self):
  1468. raise NotImplementedError
  1469. # Get the last error.
  1470. @abstractmethod
  1471. def get_last_error(self):
  1472. raise NotImplementedError
  1473. # Get the current engine OSC URL (TCP).
  1474. @abstractmethod
  1475. def get_host_osc_url_tcp(self):
  1476. raise NotImplementedError
  1477. # Get the current engine OSC URL (UDP).
  1478. @abstractmethod
  1479. def get_host_osc_url_udp(self):
  1480. raise NotImplementedError
  1481. # ------------------------------------------------------------------------------------------------------------
  1482. # Carla Host object (dummy/null, does nothing)
  1483. class CarlaHostNull(CarlaHostMeta):
  1484. def __init__(self):
  1485. CarlaHostMeta.__init__(self)
  1486. self.fEngineCallback = None
  1487. self.fEngineRunning = False
  1488. def get_engine_driver_count(self):
  1489. return 0
  1490. def get_engine_driver_name(self, index):
  1491. return ""
  1492. def get_engine_driver_device_names(self, index):
  1493. return []
  1494. def get_engine_driver_device_info(self, index, name):
  1495. return PyEngineDriverDeviceInfo
  1496. def engine_init(self, driverName, clientName):
  1497. self.fEngineRunning = True
  1498. if self.fEngineCallback is not None:
  1499. self.fEngineCallback(None, ENGINE_CALLBACK_ENGINE_STARTED, 0, self.processMode, self.transportMode, 0.0, driverName)
  1500. return True
  1501. def engine_close(self):
  1502. self.fEngineRunning = False
  1503. if self.fEngineCallback is not None:
  1504. self.fEngineCallback(None, ENGINE_CALLBACK_ENGINE_STOPPED, 0, 0, 0, 0.0, "")
  1505. return True
  1506. def engine_idle(self):
  1507. return
  1508. def is_engine_running(self):
  1509. return False
  1510. def set_engine_about_to_close(self):
  1511. return True
  1512. def set_engine_callback(self, func):
  1513. self.fEngineCallback = func
  1514. def set_engine_option(self, option, value, valueStr):
  1515. return
  1516. def set_file_callback(self, func):
  1517. return
  1518. def load_file(self, filename):
  1519. return False
  1520. def load_project(self, filename):
  1521. return False
  1522. def save_project(self, filename):
  1523. return False
  1524. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  1525. return False
  1526. def patchbay_disconnect(self, connectionId):
  1527. return False
  1528. def patchbay_refresh(self, external):
  1529. return False
  1530. def transport_play(self):
  1531. return
  1532. def transport_pause(self):
  1533. return
  1534. def transport_bpm(self, bpm):
  1535. return
  1536. def transport_relocate(self, frame):
  1537. return
  1538. def get_current_transport_frame(self):
  1539. return 0
  1540. def get_transport_info(self):
  1541. return PyCarlaTransportInfo
  1542. def get_current_plugin_count(self):
  1543. return 0
  1544. def get_max_plugin_number(self):
  1545. return 0
  1546. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr, options):
  1547. return False
  1548. def remove_plugin(self, pluginId):
  1549. return False
  1550. def remove_all_plugins(self):
  1551. return False
  1552. def rename_plugin(self, pluginId, newName):
  1553. return ""
  1554. def clone_plugin(self, pluginId):
  1555. return False
  1556. def replace_plugin(self, pluginId):
  1557. return False
  1558. def switch_plugins(self, pluginIdA, pluginIdB):
  1559. return False
  1560. def load_plugin_state(self, pluginId, filename):
  1561. return False
  1562. def save_plugin_state(self, pluginId, filename):
  1563. return False
  1564. def export_plugin_lv2(self, pluginId, lv2path):
  1565. return False
  1566. def get_plugin_info(self, pluginId):
  1567. return PyCarlaPluginInfo
  1568. def get_audio_port_count_info(self, pluginId):
  1569. return PyCarlaPortCountInfo
  1570. def get_midi_port_count_info(self, pluginId):
  1571. return PyCarlaPortCountInfo
  1572. def get_parameter_count_info(self, pluginId):
  1573. return PyCarlaPortCountInfo
  1574. def get_parameter_info(self, pluginId, parameterId):
  1575. return PyCarlaParameterInfo
  1576. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  1577. return PyCarlaScalePointInfo
  1578. def get_parameter_data(self, pluginId, parameterId):
  1579. return PyParameterData
  1580. def get_parameter_ranges(self, pluginId, parameterId):
  1581. return PyParameterRanges
  1582. def get_midi_program_data(self, pluginId, midiProgramId):
  1583. return PyMidiProgramData
  1584. def get_custom_data(self, pluginId, customDataId):
  1585. return PyCustomData
  1586. def get_chunk_data(self, pluginId):
  1587. return ""
  1588. def get_parameter_count(self, pluginId):
  1589. return 0
  1590. def get_program_count(self, pluginId):
  1591. return 0
  1592. def get_midi_program_count(self, pluginId):
  1593. return 0
  1594. def get_custom_data_count(self, pluginId):
  1595. return 0
  1596. def get_parameter_text(self, pluginId, parameterId):
  1597. return ""
  1598. def get_program_name(self, pluginId, programId):
  1599. return ""
  1600. def get_midi_program_name(self, pluginId, midiProgramId):
  1601. return ""
  1602. def get_real_plugin_name(self, pluginId):
  1603. return ""
  1604. def get_current_program_index(self, pluginId):
  1605. return 0
  1606. def get_current_midi_program_index(self, pluginId):
  1607. return 0
  1608. def get_default_parameter_value(self, pluginId, parameterId):
  1609. return 0.0
  1610. def get_current_parameter_value(self, pluginId, parameterId):
  1611. return 0.0
  1612. def get_internal_parameter_value(self, pluginId, parameterId):
  1613. return 0.0
  1614. def get_input_peak_value(self, pluginId, isLeft):
  1615. return 0.0
  1616. def get_output_peak_value(self, pluginId, isLeft):
  1617. return 0.0
  1618. def render_inline_display(self, pluginId, width, height):
  1619. return None
  1620. def set_option(self, pluginId, option, yesNo):
  1621. return
  1622. def set_active(self, pluginId, onOff):
  1623. return
  1624. def set_drywet(self, pluginId, value):
  1625. return
  1626. def set_volume(self, pluginId, value):
  1627. return
  1628. def set_balance_left(self, pluginId, value):
  1629. return
  1630. def set_balance_right(self, pluginId, value):
  1631. return
  1632. def set_panning(self, pluginId, value):
  1633. return
  1634. def set_ctrl_channel(self, pluginId, channel):
  1635. return
  1636. def set_parameter_value(self, pluginId, parameterId, value):
  1637. return
  1638. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  1639. return
  1640. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  1641. return
  1642. def set_program(self, pluginId, programId):
  1643. return
  1644. def set_midi_program(self, pluginId, midiProgramId):
  1645. return
  1646. def set_custom_data(self, pluginId, type_, key, value):
  1647. return
  1648. def set_chunk_data(self, pluginId, chunkData):
  1649. return
  1650. def prepare_for_save(self, pluginId):
  1651. return
  1652. def reset_parameters(self, pluginId):
  1653. return
  1654. def randomize_parameters(self, pluginId):
  1655. return
  1656. def send_midi_note(self, pluginId, channel, note, velocity):
  1657. return
  1658. def show_custom_ui(self, pluginId, yesNo):
  1659. return
  1660. def get_buffer_size(self):
  1661. return 0
  1662. def get_sample_rate(self):
  1663. return 0.0
  1664. def get_last_error(self):
  1665. return ""
  1666. def get_host_osc_url_tcp(self):
  1667. return ""
  1668. def get_host_osc_url_udp(self):
  1669. return ""
  1670. def nsm_init(self, pid, executableName):
  1671. return False
  1672. def nsm_ready(self, action):
  1673. return
  1674. # ------------------------------------------------------------------------------------------------------------
  1675. # Carla Host object using a DLL
  1676. class CarlaHostDLL(CarlaHostMeta):
  1677. def __init__(self, libName, loadGlobal):
  1678. CarlaHostMeta.__init__(self)
  1679. # info about this host object
  1680. self.isPlugin = False
  1681. self.lib = CDLL(libName, RTLD_GLOBAL if loadGlobal else RTLD_LOCAL)
  1682. self.lib.carla_get_engine_driver_count.argtypes = None
  1683. self.lib.carla_get_engine_driver_count.restype = c_uint
  1684. self.lib.carla_get_engine_driver_name.argtypes = [c_uint]
  1685. self.lib.carla_get_engine_driver_name.restype = c_char_p
  1686. self.lib.carla_get_engine_driver_device_names.argtypes = [c_uint]
  1687. self.lib.carla_get_engine_driver_device_names.restype = POINTER(c_char_p)
  1688. self.lib.carla_get_engine_driver_device_info.argtypes = [c_uint, c_char_p]
  1689. self.lib.carla_get_engine_driver_device_info.restype = POINTER(EngineDriverDeviceInfo)
  1690. self.lib.carla_engine_init.argtypes = [c_char_p, c_char_p]
  1691. self.lib.carla_engine_init.restype = c_bool
  1692. self.lib.carla_engine_close.argtypes = None
  1693. self.lib.carla_engine_close.restype = c_bool
  1694. self.lib.carla_engine_idle.argtypes = None
  1695. self.lib.carla_engine_idle.restype = None
  1696. self.lib.carla_is_engine_running.argtypes = None
  1697. self.lib.carla_is_engine_running.restype = c_bool
  1698. self.lib.carla_set_engine_about_to_close.argtypes = None
  1699. self.lib.carla_set_engine_about_to_close.restype = c_bool
  1700. self.lib.carla_set_engine_callback.argtypes = [EngineCallbackFunc, c_void_p]
  1701. self.lib.carla_set_engine_callback.restype = None
  1702. self.lib.carla_set_engine_option.argtypes = [c_enum, c_int, c_char_p]
  1703. self.lib.carla_set_engine_option.restype = None
  1704. self.lib.carla_set_file_callback.argtypes = [FileCallbackFunc, c_void_p]
  1705. self.lib.carla_set_file_callback.restype = None
  1706. self.lib.carla_load_file.argtypes = [c_char_p]
  1707. self.lib.carla_load_file.restype = c_bool
  1708. self.lib.carla_load_project.argtypes = [c_char_p]
  1709. self.lib.carla_load_project.restype = c_bool
  1710. self.lib.carla_save_project.argtypes = [c_char_p]
  1711. self.lib.carla_save_project.restype = c_bool
  1712. self.lib.carla_patchbay_connect.argtypes = [c_uint, c_uint, c_uint, c_uint]
  1713. self.lib.carla_patchbay_connect.restype = c_bool
  1714. self.lib.carla_patchbay_disconnect.argtypes = [c_uint]
  1715. self.lib.carla_patchbay_disconnect.restype = c_bool
  1716. self.lib.carla_patchbay_refresh.argtypes = [c_bool]
  1717. self.lib.carla_patchbay_refresh.restype = c_bool
  1718. self.lib.carla_transport_play.argtypes = None
  1719. self.lib.carla_transport_play.restype = None
  1720. self.lib.carla_transport_pause.argtypes = None
  1721. self.lib.carla_transport_pause.restype = None
  1722. self.lib.carla_transport_bpm.argtypes = [c_double]
  1723. self.lib.carla_transport_bpm.restype = None
  1724. self.lib.carla_transport_relocate.argtypes = [c_uint64]
  1725. self.lib.carla_transport_relocate.restype = None
  1726. self.lib.carla_get_current_transport_frame.argtypes = None
  1727. self.lib.carla_get_current_transport_frame.restype = c_uint64
  1728. self.lib.carla_get_transport_info.argtypes = None
  1729. self.lib.carla_get_transport_info.restype = POINTER(CarlaTransportInfo)
  1730. self.lib.carla_get_current_plugin_count.argtypes = None
  1731. self.lib.carla_get_current_plugin_count.restype = c_uint32
  1732. self.lib.carla_get_max_plugin_number.argtypes = None
  1733. self.lib.carla_get_max_plugin_number.restype = c_uint32
  1734. self.lib.carla_add_plugin.argtypes = [c_enum, c_enum, c_char_p, c_char_p, c_char_p, c_int64, c_void_p, c_uint]
  1735. self.lib.carla_add_plugin.restype = c_bool
  1736. self.lib.carla_remove_plugin.argtypes = [c_uint]
  1737. self.lib.carla_remove_plugin.restype = c_bool
  1738. self.lib.carla_remove_all_plugins.argtypes = None
  1739. self.lib.carla_remove_all_plugins.restype = c_bool
  1740. self.lib.carla_rename_plugin.argtypes = [c_uint, c_char_p]
  1741. self.lib.carla_rename_plugin.restype = c_char_p
  1742. self.lib.carla_clone_plugin.argtypes = [c_uint]
  1743. self.lib.carla_clone_plugin.restype = c_bool
  1744. self.lib.carla_replace_plugin.argtypes = [c_uint]
  1745. self.lib.carla_replace_plugin.restype = c_bool
  1746. self.lib.carla_switch_plugins.argtypes = [c_uint, c_uint]
  1747. self.lib.carla_switch_plugins.restype = c_bool
  1748. self.lib.carla_load_plugin_state.argtypes = [c_uint, c_char_p]
  1749. self.lib.carla_load_plugin_state.restype = c_bool
  1750. self.lib.carla_save_plugin_state.argtypes = [c_uint, c_char_p]
  1751. self.lib.carla_save_plugin_state.restype = c_bool
  1752. self.lib.carla_export_plugin_lv2.argtypes = [c_uint, c_char_p]
  1753. self.lib.carla_export_plugin_lv2.restype = c_bool
  1754. self.lib.carla_get_plugin_info.argtypes = [c_uint]
  1755. self.lib.carla_get_plugin_info.restype = POINTER(CarlaPluginInfo)
  1756. self.lib.carla_get_audio_port_count_info.argtypes = [c_uint]
  1757. self.lib.carla_get_audio_port_count_info.restype = POINTER(CarlaPortCountInfo)
  1758. self.lib.carla_get_midi_port_count_info.argtypes = [c_uint]
  1759. self.lib.carla_get_midi_port_count_info.restype = POINTER(CarlaPortCountInfo)
  1760. self.lib.carla_get_parameter_count_info.argtypes = [c_uint]
  1761. self.lib.carla_get_parameter_count_info.restype = POINTER(CarlaPortCountInfo)
  1762. self.lib.carla_get_parameter_info.argtypes = [c_uint, c_uint32]
  1763. self.lib.carla_get_parameter_info.restype = POINTER(CarlaParameterInfo)
  1764. self.lib.carla_get_parameter_scalepoint_info.argtypes = [c_uint, c_uint32, c_uint32]
  1765. self.lib.carla_get_parameter_scalepoint_info.restype = POINTER(CarlaScalePointInfo)
  1766. self.lib.carla_get_parameter_data.argtypes = [c_uint, c_uint32]
  1767. self.lib.carla_get_parameter_data.restype = POINTER(ParameterData)
  1768. self.lib.carla_get_parameter_ranges.argtypes = [c_uint, c_uint32]
  1769. self.lib.carla_get_parameter_ranges.restype = POINTER(ParameterRanges)
  1770. self.lib.carla_get_midi_program_data.argtypes = [c_uint, c_uint32]
  1771. self.lib.carla_get_midi_program_data.restype = POINTER(MidiProgramData)
  1772. self.lib.carla_get_custom_data.argtypes = [c_uint, c_uint32]
  1773. self.lib.carla_get_custom_data.restype = POINTER(CustomData)
  1774. self.lib.carla_get_chunk_data.argtypes = [c_uint]
  1775. self.lib.carla_get_chunk_data.restype = c_char_p
  1776. self.lib.carla_get_parameter_count.argtypes = [c_uint]
  1777. self.lib.carla_get_parameter_count.restype = c_uint32
  1778. self.lib.carla_get_program_count.argtypes = [c_uint]
  1779. self.lib.carla_get_program_count.restype = c_uint32
  1780. self.lib.carla_get_midi_program_count.argtypes = [c_uint]
  1781. self.lib.carla_get_midi_program_count.restype = c_uint32
  1782. self.lib.carla_get_custom_data_count.argtypes = [c_uint]
  1783. self.lib.carla_get_custom_data_count.restype = c_uint32
  1784. self.lib.carla_get_parameter_text.argtypes = [c_uint, c_uint32]
  1785. self.lib.carla_get_parameter_text.restype = c_char_p
  1786. self.lib.carla_get_program_name.argtypes = [c_uint, c_uint32]
  1787. self.lib.carla_get_program_name.restype = c_char_p
  1788. self.lib.carla_get_midi_program_name.argtypes = [c_uint, c_uint32]
  1789. self.lib.carla_get_midi_program_name.restype = c_char_p
  1790. self.lib.carla_get_real_plugin_name.argtypes = [c_uint]
  1791. self.lib.carla_get_real_plugin_name.restype = c_char_p
  1792. self.lib.carla_get_current_program_index.argtypes = [c_uint]
  1793. self.lib.carla_get_current_program_index.restype = c_int32
  1794. self.lib.carla_get_current_midi_program_index.argtypes = [c_uint]
  1795. self.lib.carla_get_current_midi_program_index.restype = c_int32
  1796. self.lib.carla_get_default_parameter_value.argtypes = [c_uint, c_uint32]
  1797. self.lib.carla_get_default_parameter_value.restype = c_float
  1798. self.lib.carla_get_current_parameter_value.argtypes = [c_uint, c_uint32]
  1799. self.lib.carla_get_current_parameter_value.restype = c_float
  1800. self.lib.carla_get_internal_parameter_value.argtypes = [c_uint, c_int32]
  1801. self.lib.carla_get_internal_parameter_value.restype = c_float
  1802. self.lib.carla_get_input_peak_value.argtypes = [c_uint, c_bool]
  1803. self.lib.carla_get_input_peak_value.restype = c_float
  1804. self.lib.carla_get_output_peak_value.argtypes = [c_uint, c_bool]
  1805. self.lib.carla_get_output_peak_value.restype = c_float
  1806. self.lib.carla_render_inline_display.argtypes = [c_uint, c_uint, c_uint]
  1807. self.lib.carla_render_inline_display.restype = POINTER(CarlaInlineDisplayImageSurface)
  1808. self.lib.carla_set_option.argtypes = [c_uint, c_uint, c_bool]
  1809. self.lib.carla_set_option.restype = None
  1810. self.lib.carla_set_active.argtypes = [c_uint, c_bool]
  1811. self.lib.carla_set_active.restype = None
  1812. self.lib.carla_set_drywet.argtypes = [c_uint, c_float]
  1813. self.lib.carla_set_drywet.restype = None
  1814. self.lib.carla_set_volume.argtypes = [c_uint, c_float]
  1815. self.lib.carla_set_volume.restype = None
  1816. self.lib.carla_set_balance_left.argtypes = [c_uint, c_float]
  1817. self.lib.carla_set_balance_left.restype = None
  1818. self.lib.carla_set_balance_right.argtypes = [c_uint, c_float]
  1819. self.lib.carla_set_balance_right.restype = None
  1820. self.lib.carla_set_panning.argtypes = [c_uint, c_float]
  1821. self.lib.carla_set_panning.restype = None
  1822. self.lib.carla_set_ctrl_channel.argtypes = [c_uint, c_int8]
  1823. self.lib.carla_set_ctrl_channel.restype = None
  1824. self.lib.carla_set_parameter_value.argtypes = [c_uint, c_uint32, c_float]
  1825. self.lib.carla_set_parameter_value.restype = None
  1826. self.lib.carla_set_parameter_midi_channel.argtypes = [c_uint, c_uint32, c_uint8]
  1827. self.lib.carla_set_parameter_midi_channel.restype = None
  1828. self.lib.carla_set_parameter_midi_cc.argtypes = [c_uint, c_uint32, c_int16]
  1829. self.lib.carla_set_parameter_midi_cc.restype = None
  1830. self.lib.carla_set_program.argtypes = [c_uint, c_uint32]
  1831. self.lib.carla_set_program.restype = None
  1832. self.lib.carla_set_midi_program.argtypes = [c_uint, c_uint32]
  1833. self.lib.carla_set_midi_program.restype = None
  1834. self.lib.carla_set_custom_data.argtypes = [c_uint, c_char_p, c_char_p, c_char_p]
  1835. self.lib.carla_set_custom_data.restype = None
  1836. self.lib.carla_set_chunk_data.argtypes = [c_uint, c_char_p]
  1837. self.lib.carla_set_chunk_data.restype = None
  1838. self.lib.carla_prepare_for_save.argtypes = [c_uint]
  1839. self.lib.carla_prepare_for_save.restype = None
  1840. self.lib.carla_reset_parameters.argtypes = [c_uint]
  1841. self.lib.carla_reset_parameters.restype = None
  1842. self.lib.carla_randomize_parameters.argtypes = [c_uint]
  1843. self.lib.carla_randomize_parameters.restype = None
  1844. self.lib.carla_send_midi_note.argtypes = [c_uint, c_uint8, c_uint8, c_uint8]
  1845. self.lib.carla_send_midi_note.restype = None
  1846. self.lib.carla_show_custom_ui.argtypes = [c_uint, c_bool]
  1847. self.lib.carla_show_custom_ui.restype = None
  1848. self.lib.carla_get_buffer_size.argtypes = None
  1849. self.lib.carla_get_buffer_size.restype = c_uint32
  1850. self.lib.carla_get_sample_rate.argtypes = None
  1851. self.lib.carla_get_sample_rate.restype = c_double
  1852. self.lib.carla_get_last_error.argtypes = None
  1853. self.lib.carla_get_last_error.restype = c_char_p
  1854. self.lib.carla_get_host_osc_url_tcp.argtypes = None
  1855. self.lib.carla_get_host_osc_url_tcp.restype = c_char_p
  1856. self.lib.carla_get_host_osc_url_udp.argtypes = None
  1857. self.lib.carla_get_host_osc_url_udp.restype = c_char_p
  1858. self.lib.carla_nsm_init.argtypes = [c_int, c_char_p]
  1859. self.lib.carla_nsm_init.restype = c_bool
  1860. self.lib.carla_nsm_ready.argtypes = [c_int]
  1861. self.lib.carla_nsm_ready.restype = None
  1862. # --------------------------------------------------------------------------------------------------------
  1863. def get_engine_driver_count(self):
  1864. return int(self.lib.carla_get_engine_driver_count())
  1865. def get_engine_driver_name(self, index):
  1866. return charPtrToString(self.lib.carla_get_engine_driver_name(index))
  1867. def get_engine_driver_device_names(self, index):
  1868. return charPtrPtrToStringList(self.lib.carla_get_engine_driver_device_names(index))
  1869. def get_engine_driver_device_info(self, index, name):
  1870. return structToDict(self.lib.carla_get_engine_driver_device_info(index, name.encode("utf-8")).contents)
  1871. def engine_init(self, driverName, clientName):
  1872. return bool(self.lib.carla_engine_init(driverName.encode("utf-8"), clientName.encode("utf-8")))
  1873. def engine_close(self):
  1874. return bool(self.lib.carla_engine_close())
  1875. def engine_idle(self):
  1876. self.lib.carla_engine_idle()
  1877. def is_engine_running(self):
  1878. return bool(self.lib.carla_is_engine_running())
  1879. def set_engine_about_to_close(self):
  1880. return bool(self.lib.carla_set_engine_about_to_close())
  1881. def set_engine_callback(self, func):
  1882. self._engineCallback = EngineCallbackFunc(func)
  1883. self.lib.carla_set_engine_callback(self._engineCallback, None)
  1884. def set_engine_option(self, option, value, valueStr):
  1885. self.lib.carla_set_engine_option(option, value, valueStr.encode("utf-8"))
  1886. def set_file_callback(self, func):
  1887. self._fileCallback = FileCallbackFunc(func)
  1888. self.lib.carla_set_file_callback(self._fileCallback, None)
  1889. def load_file(self, filename):
  1890. return bool(self.lib.carla_load_file(filename.encode("utf-8")))
  1891. def load_project(self, filename):
  1892. return bool(self.lib.carla_load_project(filename.encode("utf-8")))
  1893. def save_project(self, filename):
  1894. return bool(self.lib.carla_save_project(filename.encode("utf-8")))
  1895. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  1896. return bool(self.lib.carla_patchbay_connect(groupIdA, portIdA, groupIdB, portIdB))
  1897. def patchbay_disconnect(self, connectionId):
  1898. return bool(self.lib.carla_patchbay_disconnect(connectionId))
  1899. def patchbay_refresh(self, external):
  1900. return bool(self.lib.carla_patchbay_refresh(external))
  1901. def transport_play(self):
  1902. self.lib.carla_transport_play()
  1903. def transport_pause(self):
  1904. self.lib.carla_transport_pause()
  1905. def transport_bpm(self, bpm):
  1906. self.lib.carla_transport_bpm(bpm)
  1907. def transport_relocate(self, frame):
  1908. self.lib.carla_transport_relocate(frame)
  1909. def get_current_transport_frame(self):
  1910. return int(self.lib.carla_get_current_transport_frame())
  1911. def get_transport_info(self):
  1912. return structToDict(self.lib.carla_get_transport_info().contents)
  1913. def get_current_plugin_count(self):
  1914. return int(self.lib.carla_get_current_plugin_count())
  1915. def get_max_plugin_number(self):
  1916. return int(self.lib.carla_get_max_plugin_number())
  1917. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr, options):
  1918. cfilename = filename.encode("utf-8") if filename else None
  1919. cname = name.encode("utf-8") if name else None
  1920. clabel = label.encode("utf-8") if label else None
  1921. return bool(self.lib.carla_add_plugin(btype, ptype, cfilename, cname, clabel, uniqueId, cast(extraPtr, c_void_p), options))
  1922. def remove_plugin(self, pluginId):
  1923. return bool(self.lib.carla_remove_plugin(pluginId))
  1924. def remove_all_plugins(self):
  1925. return bool(self.lib.carla_remove_all_plugins())
  1926. def rename_plugin(self, pluginId, newName):
  1927. return charPtrToString(self.lib.carla_rename_plugin(pluginId, newName.encode("utf-8")))
  1928. def clone_plugin(self, pluginId):
  1929. return bool(self.lib.carla_clone_plugin(pluginId))
  1930. def replace_plugin(self, pluginId):
  1931. return bool(self.lib.carla_replace_plugin(pluginId))
  1932. def switch_plugins(self, pluginIdA, pluginIdB):
  1933. return bool(self.lib.carla_switch_plugins(pluginIdA, pluginIdB))
  1934. def load_plugin_state(self, pluginId, filename):
  1935. return bool(self.lib.carla_load_plugin_state(pluginId, filename.encode("utf-8")))
  1936. def save_plugin_state(self, pluginId, filename):
  1937. return bool(self.lib.carla_save_plugin_state(pluginId, filename.encode("utf-8")))
  1938. def export_plugin_lv2(self, pluginId, lv2path):
  1939. return bool(self.lib.carla_export_plugin_lv2(pluginId, lv2path.encode("utf-8")))
  1940. def get_plugin_info(self, pluginId):
  1941. return structToDict(self.lib.carla_get_plugin_info(pluginId).contents)
  1942. def get_audio_port_count_info(self, pluginId):
  1943. return structToDict(self.lib.carla_get_audio_port_count_info(pluginId).contents)
  1944. def get_midi_port_count_info(self, pluginId):
  1945. return structToDict(self.lib.carla_get_midi_port_count_info(pluginId).contents)
  1946. def get_parameter_count_info(self, pluginId):
  1947. return structToDict(self.lib.carla_get_parameter_count_info(pluginId).contents)
  1948. def get_parameter_info(self, pluginId, parameterId):
  1949. return structToDict(self.lib.carla_get_parameter_info(pluginId, parameterId).contents)
  1950. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  1951. return structToDict(self.lib.carla_get_parameter_scalepoint_info(pluginId, parameterId, scalePointId).contents)
  1952. def get_parameter_data(self, pluginId, parameterId):
  1953. return structToDict(self.lib.carla_get_parameter_data(pluginId, parameterId).contents)
  1954. def get_parameter_ranges(self, pluginId, parameterId):
  1955. return structToDict(self.lib.carla_get_parameter_ranges(pluginId, parameterId).contents)
  1956. def get_midi_program_data(self, pluginId, midiProgramId):
  1957. return structToDict(self.lib.carla_get_midi_program_data(pluginId, midiProgramId).contents)
  1958. def get_custom_data(self, pluginId, customDataId):
  1959. return structToDict(self.lib.carla_get_custom_data(pluginId, customDataId).contents)
  1960. def get_chunk_data(self, pluginId):
  1961. return charPtrToString(self.lib.carla_get_chunk_data(pluginId))
  1962. def get_parameter_count(self, pluginId):
  1963. return int(self.lib.carla_get_parameter_count(pluginId))
  1964. def get_program_count(self, pluginId):
  1965. return int(self.lib.carla_get_program_count(pluginId))
  1966. def get_midi_program_count(self, pluginId):
  1967. return int(self.lib.carla_get_midi_program_count(pluginId))
  1968. def get_custom_data_count(self, pluginId):
  1969. return int(self.lib.carla_get_custom_data_count(pluginId))
  1970. def get_parameter_text(self, pluginId, parameterId):
  1971. return charPtrToString(self.lib.carla_get_parameter_text(pluginId, parameterId))
  1972. def get_program_name(self, pluginId, programId):
  1973. return charPtrToString(self.lib.carla_get_program_name(pluginId, programId))
  1974. def get_midi_program_name(self, pluginId, midiProgramId):
  1975. return charPtrToString(self.lib.carla_get_midi_program_name(pluginId, midiProgramId))
  1976. def get_real_plugin_name(self, pluginId):
  1977. return charPtrToString(self.lib.carla_get_real_plugin_name(pluginId))
  1978. def get_current_program_index(self, pluginId):
  1979. return int(self.lib.carla_get_current_program_index(pluginId))
  1980. def get_current_midi_program_index(self, pluginId):
  1981. return int(self.lib.carla_get_current_midi_program_index(pluginId))
  1982. def get_default_parameter_value(self, pluginId, parameterId):
  1983. return float(self.lib.carla_get_default_parameter_value(pluginId, parameterId))
  1984. def get_current_parameter_value(self, pluginId, parameterId):
  1985. return float(self.lib.carla_get_current_parameter_value(pluginId, parameterId))
  1986. def get_internal_parameter_value(self, pluginId, parameterId):
  1987. return float(self.lib.carla_get_internal_parameter_value(pluginId, parameterId))
  1988. def get_input_peak_value(self, pluginId, isLeft):
  1989. return float(self.lib.carla_get_input_peak_value(pluginId, isLeft))
  1990. def get_output_peak_value(self, pluginId, isLeft):
  1991. return float(self.lib.carla_get_output_peak_value(pluginId, isLeft))
  1992. def render_inline_display(self, pluginId, width, height):
  1993. return structToDict(self.lib.carla_render_inline_display(pluginId, width, height))
  1994. def set_option(self, pluginId, option, yesNo):
  1995. self.lib.carla_set_option(pluginId, option, yesNo)
  1996. def set_active(self, pluginId, onOff):
  1997. self.lib.carla_set_active(pluginId, onOff)
  1998. def set_drywet(self, pluginId, value):
  1999. self.lib.carla_set_drywet(pluginId, value)
  2000. def set_volume(self, pluginId, value):
  2001. self.lib.carla_set_volume(pluginId, value)
  2002. def set_balance_left(self, pluginId, value):
  2003. self.lib.carla_set_balance_left(pluginId, value)
  2004. def set_balance_right(self, pluginId, value):
  2005. self.lib.carla_set_balance_right(pluginId, value)
  2006. def set_panning(self, pluginId, value):
  2007. self.lib.carla_set_panning(pluginId, value)
  2008. def set_ctrl_channel(self, pluginId, channel):
  2009. self.lib.carla_set_ctrl_channel(pluginId, channel)
  2010. def set_parameter_value(self, pluginId, parameterId, value):
  2011. self.lib.carla_set_parameter_value(pluginId, parameterId, value)
  2012. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  2013. self.lib.carla_set_parameter_midi_channel(pluginId, parameterId, channel)
  2014. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  2015. self.lib.carla_set_parameter_midi_cc(pluginId, parameterId, cc)
  2016. def set_program(self, pluginId, programId):
  2017. self.lib.carla_set_program(pluginId, programId)
  2018. def set_midi_program(self, pluginId, midiProgramId):
  2019. self.lib.carla_set_midi_program(pluginId, midiProgramId)
  2020. def set_custom_data(self, pluginId, type_, key, value):
  2021. self.lib.carla_set_custom_data(pluginId, type_.encode("utf-8"), key.encode("utf-8"), value.encode("utf-8"))
  2022. def set_chunk_data(self, pluginId, chunkData):
  2023. self.lib.carla_set_chunk_data(pluginId, chunkData.encode("utf-8"))
  2024. def prepare_for_save(self, pluginId):
  2025. self.lib.carla_prepare_for_save(pluginId)
  2026. def reset_parameters(self, pluginId):
  2027. self.lib.carla_reset_parameters(pluginId)
  2028. def randomize_parameters(self, pluginId):
  2029. self.lib.carla_randomize_parameters(pluginId)
  2030. def send_midi_note(self, pluginId, channel, note, velocity):
  2031. self.lib.carla_send_midi_note(pluginId, channel, note, velocity)
  2032. def show_custom_ui(self, pluginId, yesNo):
  2033. self.lib.carla_show_custom_ui(pluginId, yesNo)
  2034. def get_buffer_size(self):
  2035. return int(self.lib.carla_get_buffer_size())
  2036. def get_sample_rate(self):
  2037. return float(self.lib.carla_get_sample_rate())
  2038. def get_last_error(self):
  2039. return charPtrToString(self.lib.carla_get_last_error())
  2040. def get_host_osc_url_tcp(self):
  2041. return charPtrToString(self.lib.carla_get_host_osc_url_tcp())
  2042. def get_host_osc_url_udp(self):
  2043. return charPtrToString(self.lib.carla_get_host_osc_url_udp())
  2044. def nsm_init(self, pid, executableName):
  2045. return bool(self.lib.carla_nsm_init(pid, executableName.encode("utf-8")))
  2046. def nsm_ready(self, action):
  2047. self.lib.carla_nsm_ready(action)
  2048. # ------------------------------------------------------------------------------------------------------------
  2049. # Helper object for CarlaHostPlugin
  2050. class PluginStoreInfo(object):
  2051. __slots__ = [
  2052. 'pluginInfo',
  2053. 'pluginRealName',
  2054. 'internalValues',
  2055. 'audioCountInfo',
  2056. 'midiCountInfo',
  2057. 'parameterCount',
  2058. 'parameterCountInfo',
  2059. 'parameterInfo',
  2060. 'parameterData',
  2061. 'parameterRanges',
  2062. 'parameterValues',
  2063. 'programCount',
  2064. 'programCurrent',
  2065. 'programNames',
  2066. 'midiProgramCount',
  2067. 'midiProgramCurrent',
  2068. 'midiProgramData',
  2069. 'customDataCount',
  2070. 'customData',
  2071. 'peaks'
  2072. ]
  2073. # ------------------------------------------------------------------------------------------------------------
  2074. # Carla Host object for plugins (using pipes)
  2075. class CarlaHostPlugin(CarlaHostMeta):
  2076. #class CarlaHostPlugin(CarlaHostMeta, metaclass=ABCMeta):
  2077. def __init__(self):
  2078. CarlaHostMeta.__init__(self)
  2079. # info about this host object
  2080. self.isPlugin = True
  2081. self.processModeForced = True
  2082. # text data to return when requested
  2083. self.fMaxPluginNumber = 0
  2084. self.fLastError = ""
  2085. # plugin info
  2086. self.fPluginsInfo = []
  2087. # transport info
  2088. self.fTransportInfo = {
  2089. "playing": False,
  2090. "frame": 0,
  2091. "bar": 0,
  2092. "beat": 0,
  2093. "tick": 0,
  2094. "bpm": 0.0
  2095. }
  2096. # some other vars
  2097. self.fBufferSize = 0
  2098. self.fSampleRate = 0.0
  2099. self.fOscTCP = ""
  2100. self.fOscUDP = ""
  2101. # --------------------------------------------------------------------------------------------------------
  2102. # Needs to be reimplemented
  2103. @abstractmethod
  2104. def sendMsg(self, lines):
  2105. raise NotImplementedError
  2106. # internal, sets error if sendMsg failed
  2107. def sendMsgAndSetError(self, lines):
  2108. if self.sendMsg(lines):
  2109. return True
  2110. self.fLastError = "Communication error with backend"
  2111. return False
  2112. # --------------------------------------------------------------------------------------------------------
  2113. def get_engine_driver_count(self):
  2114. return 1
  2115. def get_engine_driver_name(self, index):
  2116. return "Plugin"
  2117. def get_engine_driver_device_names(self, index):
  2118. return []
  2119. def get_engine_driver_device_info(self, index, name):
  2120. return PyEngineDriverDeviceInfo
  2121. def set_engine_callback(self, func):
  2122. return # TODO
  2123. def set_engine_option(self, option, value, valueStr):
  2124. self.sendMsg(["set_engine_option", option, int(value), valueStr])
  2125. def set_file_callback(self, func):
  2126. return # TODO
  2127. def load_file(self, filename):
  2128. return self.sendMsgAndSetError(["load_file", filename])
  2129. def load_project(self, filename):
  2130. return self.sendMsgAndSetError(["load_project", filename])
  2131. def save_project(self, filename):
  2132. return self.sendMsgAndSetError(["save_project", filename])
  2133. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  2134. return self.sendMsgAndSetError(["patchbay_connect", groupIdA, portIdA, groupIdB, portIdB])
  2135. def patchbay_disconnect(self, connectionId):
  2136. return self.sendMsgAndSetError(["patchbay_disconnect", connectionId])
  2137. def patchbay_refresh(self, external):
  2138. # don't send external param, never used in plugins
  2139. return self.sendMsgAndSetError(["patchbay_refresh"])
  2140. def transport_play(self):
  2141. self.sendMsg(["transport_play"])
  2142. def transport_pause(self):
  2143. self.sendMsg(["transport_pause"])
  2144. def transport_bpm(self, bpm):
  2145. self.sendMsg(["transport_bpm", bpm])
  2146. def transport_relocate(self, frame):
  2147. self.sendMsg(["transport_relocate"])
  2148. def get_current_transport_frame(self):
  2149. return self.fTransportInfo['frame']
  2150. def get_transport_info(self):
  2151. return self.fTransportInfo
  2152. def get_current_plugin_count(self):
  2153. return len(self.fPluginsInfo)
  2154. def get_max_plugin_number(self):
  2155. return self.fMaxPluginNumber
  2156. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr, options):
  2157. return self.sendMsgAndSetError(["add_plugin", btype, ptype, filename, name, label, uniqueId, options])
  2158. def remove_plugin(self, pluginId):
  2159. return self.sendMsgAndSetError(["remove_plugin", pluginId])
  2160. def remove_all_plugins(self):
  2161. return self.sendMsgAndSetError(["remove_all_plugins"])
  2162. def rename_plugin(self, pluginId, newName):
  2163. if self.sendMsg(["rename_plugin", pluginId, newName]):
  2164. return newName
  2165. self.fLastError = "Communication error with backend"
  2166. return ""
  2167. def clone_plugin(self, pluginId):
  2168. return self.sendMsgAndSetError(["clone_plugin", pluginId])
  2169. def replace_plugin(self, pluginId):
  2170. return self.sendMsgAndSetError(["replace_plugin", pluginId])
  2171. def switch_plugins(self, pluginIdA, pluginIdB):
  2172. return self.sendMsgAndSetError(["switch_plugins", pluginIdA, pluginIdB])
  2173. def load_plugin_state(self, pluginId, filename):
  2174. return self.sendMsgAndSetError(["load_plugin_state", pluginId, filename])
  2175. def save_plugin_state(self, pluginId, filename):
  2176. return self.sendMsgAndSetError(["save_plugin_state", pluginId, filename])
  2177. def export_plugin_lv2(self, pluginId, lv2path):
  2178. self.fLastError = "Operation unavailable in plugin version"
  2179. return False
  2180. def get_plugin_info(self, pluginId):
  2181. return self.fPluginsInfo[pluginId].pluginInfo
  2182. def get_audio_port_count_info(self, pluginId):
  2183. return self.fPluginsInfo[pluginId].audioCountInfo
  2184. def get_midi_port_count_info(self, pluginId):
  2185. return self.fPluginsInfo[pluginId].midiCountInfo
  2186. def get_parameter_count_info(self, pluginId):
  2187. return self.fPluginsInfo[pluginId].parameterCountInfo
  2188. def get_parameter_info(self, pluginId, parameterId):
  2189. return self.fPluginsInfo[pluginId].parameterInfo[parameterId]
  2190. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  2191. return PyCarlaScalePointInfo
  2192. def get_parameter_data(self, pluginId, parameterId):
  2193. return self.fPluginsInfo[pluginId].parameterData[parameterId]
  2194. def get_parameter_ranges(self, pluginId, parameterId):
  2195. return self.fPluginsInfo[pluginId].parameterRanges[parameterId]
  2196. def get_midi_program_data(self, pluginId, midiProgramId):
  2197. return self.fPluginsInfo[pluginId].midiProgramData[midiProgramId]
  2198. def get_custom_data(self, pluginId, customDataId):
  2199. return self.fPluginsInfo[pluginId].customData[customDataId]
  2200. def get_chunk_data(self, pluginId):
  2201. return ""
  2202. def get_parameter_count(self, pluginId):
  2203. return self.fPluginsInfo[pluginId].parameterCount
  2204. def get_program_count(self, pluginId):
  2205. return self.fPluginsInfo[pluginId].programCount
  2206. def get_midi_program_count(self, pluginId):
  2207. return self.fPluginsInfo[pluginId].midiProgramCount
  2208. def get_custom_data_count(self, pluginId):
  2209. return self.fPluginsInfo[pluginId].customDataCount
  2210. def get_parameter_text(self, pluginId, parameterId):
  2211. return ""
  2212. def get_program_name(self, pluginId, programId):
  2213. return self.fPluginsInfo[pluginId].programNames[programId]
  2214. def get_midi_program_name(self, pluginId, midiProgramId):
  2215. return self.fPluginsInfo[pluginId].midiProgramData[midiProgramId]['label']
  2216. def get_real_plugin_name(self, pluginId):
  2217. return self.fPluginsInfo[pluginId].pluginRealName
  2218. def get_current_program_index(self, pluginId):
  2219. return self.fPluginsInfo[pluginId].programCurrent
  2220. def get_current_midi_program_index(self, pluginId):
  2221. return self.fPluginsInfo[pluginId].midiProgramCurrent
  2222. def get_default_parameter_value(self, pluginId, parameterId):
  2223. return self.fPluginsInfo[pluginId].parameterRanges[parameterId]['def']
  2224. def get_current_parameter_value(self, pluginId, parameterId):
  2225. return self.fPluginsInfo[pluginId].parameterValues[parameterId]
  2226. def get_internal_parameter_value(self, pluginId, parameterId):
  2227. if parameterId == PARAMETER_NULL or parameterId <= PARAMETER_MAX:
  2228. return 0.0
  2229. if parameterId < 0:
  2230. return self.fPluginsInfo[pluginId].internalValues[abs(parameterId)-2]
  2231. return self.fPluginsInfo[pluginId].parameterValues[parameterId]
  2232. def get_input_peak_value(self, pluginId, isLeft):
  2233. return self.fPluginsInfo[pluginId].peaks[0 if isLeft else 1]
  2234. def get_output_peak_value(self, pluginId, isLeft):
  2235. return self.fPluginsInfo[pluginId].peaks[2 if isLeft else 3]
  2236. def render_inline_display(self, pluginId, width, height):
  2237. return None
  2238. def set_option(self, pluginId, option, yesNo):
  2239. self.sendMsg(["set_option", pluginId, option, yesNo])
  2240. def set_active(self, pluginId, onOff):
  2241. self.sendMsg(["set_active", pluginId, onOff])
  2242. self.fPluginsInfo[pluginId].internalValues[0] = 1.0 if onOff else 0.0
  2243. def set_drywet(self, pluginId, value):
  2244. self.sendMsg(["set_drywet", pluginId, value])
  2245. self.fPluginsInfo[pluginId].internalValues[1] = value
  2246. def set_volume(self, pluginId, value):
  2247. self.sendMsg(["set_volume", pluginId, value])
  2248. self.fPluginsInfo[pluginId].internalValues[2] = value
  2249. def set_balance_left(self, pluginId, value):
  2250. self.sendMsg(["set_balance_left", pluginId, value])
  2251. self.fPluginsInfo[pluginId].internalValues[3] = value
  2252. def set_balance_right(self, pluginId, value):
  2253. self.sendMsg(["set_balance_right", pluginId, value])
  2254. self.fPluginsInfo[pluginId].internalValues[4] = value
  2255. def set_panning(self, pluginId, value):
  2256. self.sendMsg(["set_panning", pluginId, value])
  2257. self.fPluginsInfo[pluginId].internalValues[5] = value
  2258. def set_ctrl_channel(self, pluginId, channel):
  2259. self.sendMsg(["set_ctrl_channel", pluginId, channel])
  2260. self.fPluginsInfo[pluginId].internalValues[6] = float(channel)
  2261. def set_parameter_value(self, pluginId, parameterId, value):
  2262. self.sendMsg(["set_parameter_value", pluginId, parameterId, value])
  2263. self.fPluginsInfo[pluginId].parameterValues[parameterId] = value
  2264. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  2265. self.sendMsg(["set_parameter_midi_channel", pluginId, parameterId, channel])
  2266. self.fPluginsInfo[pluginId].parameterData[parameterId]['midiCC'] = channel
  2267. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  2268. self.sendMsg(["set_parameter_midi_cc", pluginId, parameterId, cc])
  2269. self.fPluginsInfo[pluginId].parameterData[parameterId]['midiCC'] = cc
  2270. def set_program(self, pluginId, programId):
  2271. self.sendMsg(["set_program", pluginId, programId])
  2272. self.fPluginsInfo[pluginId].programCurrent = programId
  2273. def set_midi_program(self, pluginId, midiProgramId):
  2274. self.sendMsg(["set_midi_program", pluginId, midiProgramId])
  2275. self.fPluginsInfo[pluginId].midiProgramCurrent = midiProgramId
  2276. def set_custom_data(self, pluginId, type_, key, value):
  2277. self.sendMsg(["set_custom_data", pluginId, type_, key, value])
  2278. for cdata in self.fPluginsInfo[pluginId].customData:
  2279. if cdata['type'] != type_:
  2280. continue
  2281. if cdata['key'] != key:
  2282. continue
  2283. cdata['value'] = value
  2284. break
  2285. def set_chunk_data(self, pluginId, chunkData):
  2286. self.sendMsg(["set_chunk_data", pluginId, chunkData])
  2287. def prepare_for_save(self, pluginId):
  2288. self.sendMsg(["prepare_for_save", pluginId])
  2289. def reset_parameters(self, pluginId):
  2290. self.sendMsg(["reset_parameters", pluginId])
  2291. def randomize_parameters(self, pluginId):
  2292. self.sendMsg(["randomize_parameters", pluginId])
  2293. def send_midi_note(self, pluginId, channel, note, velocity):
  2294. self.sendMsg(["send_midi_note", pluginId, channel, note, velocity])
  2295. def show_custom_ui(self, pluginId, yesNo):
  2296. self.sendMsg(["show_custom_ui", pluginId, yesNo])
  2297. def get_buffer_size(self):
  2298. return self.fBufferSize
  2299. def get_sample_rate(self):
  2300. return self.fSampleRate
  2301. def get_last_error(self):
  2302. return self.fLastError
  2303. def get_host_osc_url_tcp(self):
  2304. return self.fOscTCP
  2305. def get_host_osc_url_udp(self):
  2306. return self.fOscUDP
  2307. # --------------------------------------------------------------------------------------------------------
  2308. def _set_transport(self, playing, frame, bar, beat, tick, bpm):
  2309. self.fTransportInfo = {
  2310. "playing": playing,
  2311. "frame": frame,
  2312. "bar": bar,
  2313. "beat": beat,
  2314. "tick": tick,
  2315. "bpm": bpm
  2316. }
  2317. def _add(self, pluginId):
  2318. if len(self.fPluginsInfo) != pluginId:
  2319. self._reset_info(self.fPluginsInfo[pluginId])
  2320. return
  2321. info = PluginStoreInfo()
  2322. self._reset_info(info)
  2323. self.fPluginsInfo.append(info)
  2324. def _reset_info(self, info):
  2325. info.pluginInfo = PyCarlaPluginInfo.copy()
  2326. info.pluginRealName = ""
  2327. info.internalValues = [0.0, 1.0, 1.0, -1.0, 1.0, 0.0, -1.0]
  2328. info.audioCountInfo = PyCarlaPortCountInfo.copy()
  2329. info.midiCountInfo = PyCarlaPortCountInfo.copy()
  2330. info.parameterCount = 0
  2331. info.parameterCountInfo = PyCarlaPortCountInfo.copy()
  2332. info.parameterInfo = []
  2333. info.parameterData = []
  2334. info.parameterRanges = []
  2335. info.parameterValues = []
  2336. info.programCount = 0
  2337. info.programCurrent = -1
  2338. info.programNames = []
  2339. info.midiProgramCount = 0
  2340. info.midiProgramCurrent = -1
  2341. info.midiProgramData = []
  2342. info.customDataCount = 0
  2343. info.customData = []
  2344. info.peaks = [0.0, 0.0, 0.0, 0.0]
  2345. def _set_pluginInfo(self, pluginId, info):
  2346. self.fPluginsInfo[pluginId].pluginInfo = info
  2347. def _set_pluginInfoUpdate(self, pluginId, info):
  2348. self.fPluginsInfo[pluginId].pluginInfo.update(info)
  2349. def _set_pluginName(self, pluginId, name):
  2350. self.fPluginsInfo[pluginId].pluginInfo['name'] = name
  2351. def _set_pluginRealName(self, pluginId, realName):
  2352. self.fPluginsInfo[pluginId].pluginRealName = realName
  2353. def _set_internalValue(self, pluginId, paramIndex, value):
  2354. if pluginId < len(self.fPluginsInfo) and PARAMETER_NULL > paramIndex > PARAMETER_MAX:
  2355. self.fPluginsInfo[pluginId].internalValues[abs(paramIndex)-2] = float(value)
  2356. def _set_audioCountInfo(self, pluginId, info):
  2357. self.fPluginsInfo[pluginId].audioCountInfo = info
  2358. def _set_midiCountInfo(self, pluginId, info):
  2359. self.fPluginsInfo[pluginId].midiCountInfo = info
  2360. def _set_parameterCountInfo(self, pluginId, count, info):
  2361. self.fPluginsInfo[pluginId].parameterCount = count
  2362. self.fPluginsInfo[pluginId].parameterCountInfo = info
  2363. # clear
  2364. self.fPluginsInfo[pluginId].parameterInfo = []
  2365. self.fPluginsInfo[pluginId].parameterData = []
  2366. self.fPluginsInfo[pluginId].parameterRanges = []
  2367. self.fPluginsInfo[pluginId].parameterValues = []
  2368. # add placeholders
  2369. for x in range(count):
  2370. self.fPluginsInfo[pluginId].parameterInfo.append(PyCarlaParameterInfo.copy())
  2371. self.fPluginsInfo[pluginId].parameterData.append(PyParameterData.copy())
  2372. self.fPluginsInfo[pluginId].parameterRanges.append(PyParameterRanges.copy())
  2373. self.fPluginsInfo[pluginId].parameterValues.append(0.0)
  2374. def _set_programCount(self, pluginId, count):
  2375. self.fPluginsInfo[pluginId].programCount = count
  2376. # clear
  2377. self.fPluginsInfo[pluginId].programNames = []
  2378. # add placeholders
  2379. for x in range(count):
  2380. self.fPluginsInfo[pluginId].programNames.append("")
  2381. def _set_midiProgramCount(self, pluginId, count):
  2382. self.fPluginsInfo[pluginId].midiProgramCount = count
  2383. # clear
  2384. self.fPluginsInfo[pluginId].midiProgramData = []
  2385. # add placeholders
  2386. for x in range(count):
  2387. self.fPluginsInfo[pluginId].midiProgramData.append(PyMidiProgramData.copy())
  2388. def _set_customDataCount(self, pluginId, count):
  2389. self.fPluginsInfo[pluginId].customDataCount = count
  2390. # clear
  2391. self.fPluginsInfo[pluginId].customData = []
  2392. # add placeholders
  2393. for x in range(count):
  2394. self.fPluginsInfo[pluginId].customData.append(PyCustomData)
  2395. def _set_parameterInfo(self, pluginId, paramIndex, info):
  2396. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2397. self.fPluginsInfo[pluginId].parameterInfo[paramIndex] = info
  2398. def _set_parameterData(self, pluginId, paramIndex, data):
  2399. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2400. self.fPluginsInfo[pluginId].parameterData[paramIndex] = data
  2401. def _set_parameterRanges(self, pluginId, paramIndex, ranges):
  2402. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2403. self.fPluginsInfo[pluginId].parameterRanges[paramIndex] = ranges
  2404. def _set_parameterRangesUpdate(self, pluginId, paramIndex, ranges):
  2405. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2406. self.fPluginsInfo[pluginId].parameterRanges[paramIndex].update(ranges)
  2407. def _set_parameterValue(self, pluginId, paramIndex, value):
  2408. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2409. self.fPluginsInfo[pluginId].parameterValues[paramIndex] = value
  2410. def _set_parameterDefault(self, pluginId, paramIndex, value):
  2411. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2412. self.fPluginsInfo[pluginId].parameterRanges[paramIndex]['def'] = value
  2413. def _set_parameterMidiChannel(self, pluginId, paramIndex, channel):
  2414. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2415. self.fPluginsInfo[pluginId].parameterData[paramIndex]['midiChannel'] = channel
  2416. def _set_parameterMidiCC(self, pluginId, paramIndex, cc):
  2417. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2418. self.fPluginsInfo[pluginId].parameterData[paramIndex]['midiCC'] = cc
  2419. def _set_currentProgram(self, pluginId, pIndex):
  2420. self.fPluginsInfo[pluginId].programCurrent = pIndex
  2421. def _set_currentMidiProgram(self, pluginId, mpIndex):
  2422. self.fPluginsInfo[pluginId].midiProgramCurrent = mpIndex
  2423. def _set_programName(self, pluginId, pIndex, name):
  2424. if pIndex < self.fPluginsInfo[pluginId].programCount:
  2425. self.fPluginsInfo[pluginId].programNames[pIndex] = name
  2426. def _set_midiProgramData(self, pluginId, mpIndex, data):
  2427. if mpIndex < self.fPluginsInfo[pluginId].midiProgramCount:
  2428. self.fPluginsInfo[pluginId].midiProgramData[mpIndex] = data
  2429. def _set_customData(self, pluginId, cdIndex, data):
  2430. if cdIndex < self.fPluginsInfo[pluginId].customDataCount:
  2431. self.fPluginsInfo[pluginId].customData[cdIndex] = data
  2432. def _set_peaks(self, pluginId, in1, in2, out1, out2):
  2433. self.fPluginsInfo[pluginId].peaks = [in1, in2, out1, out2]
  2434. # ------------------------------------------------------------------------------------------------------------