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.

2003 lines
63KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla Backend code
  4. # Copyright (C) 2011-2013 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 ctypes import *
  20. from platform import architecture
  21. from sys import platform, maxsize
  22. # ------------------------------------------------------------------------------------------------------------
  23. # 64bit check
  24. kIs64bit = bool(architecture()[0] == "64bit" and maxsize > 2**32)
  25. # ------------------------------------------------------------------------------------------------------------
  26. # Define custom types
  27. c_enum = c_int
  28. c_uintptr = c_uint64 if kIs64bit else c_uint32
  29. # ------------------------------------------------------------------------------------------------------------
  30. # Set Platform
  31. if platform == "darwin":
  32. HAIKU = False
  33. LINUX = False
  34. MACOS = True
  35. WINDOWS = False
  36. elif "haiku" in platform:
  37. HAIKU = True
  38. LINUX = False
  39. MACOS = False
  40. WINDOWS = False
  41. elif "linux" in platform:
  42. HAIKU = False
  43. LINUX = True
  44. MACOS = False
  45. WINDOWS = False
  46. elif platform in ("win32", "win64", "cygwin"):
  47. HAIKU = False
  48. LINUX = False
  49. MACOS = False
  50. WINDOWS = True
  51. else:
  52. HAIKU = False
  53. LINUX = False
  54. MACOS = False
  55. WINDOWS = False
  56. # ------------------------------------------------------------------------------------------------------------
  57. # Convert a ctypes c_char_p into a python string
  58. def charPtrToString(value):
  59. if not value:
  60. return ""
  61. if isinstance(value, str):
  62. return value
  63. return value.decode("utf-8", errors="ignore")
  64. # ------------------------------------------------------------------------------------------------------------
  65. # Convert a ctypes POINTER(c_char_p) into a python string list
  66. def charPtrPtrToStringList(charPtrPtr):
  67. if not charPtrPtr:
  68. return []
  69. i = 0
  70. charPtr = charPtrPtr[0]
  71. strList = []
  72. while charPtr:
  73. strList.append(charPtr.decode("utf-8", errors="ignore"))
  74. i += 1
  75. charPtr = charPtrPtr[i]
  76. return strList
  77. # ------------------------------------------------------------------------------------------------------------
  78. # Convert a ctypes POINTER(c_<num>) into a python number list
  79. def numPtrToList(numPtr):
  80. if not numPtr:
  81. return []
  82. i = 0
  83. num = numPtr[0] #.value
  84. numList = []
  85. while num not in (0, 0.0):
  86. numList.append(num)
  87. i += 1
  88. num = numPtr[i] #.value
  89. return numList
  90. # ------------------------------------------------------------------------------------------------------------
  91. # Convert a ctypes value into a python one
  92. 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)
  93. c_float_types = (c_float, c_double, c_longdouble)
  94. c_intp_types = tuple(POINTER(i) for i in c_int_types)
  95. c_floatp_types = tuple(POINTER(i) for i in c_float_types)
  96. def toPythonType(value, attr):
  97. #if value is None:
  98. #return None
  99. if isinstance(value, (bool, int, float)):
  100. return value
  101. if isinstance(value, bytes):
  102. return charPtrToString(value)
  103. #if isinstance(value, c_bool):
  104. #return bool(value)
  105. #if isinstance(value, c_char_p):
  106. #return charPtrToString(value)
  107. #if isinstance(value, c_int_types):
  108. #return int(value)
  109. #if isinstance(value, c_float_types):
  110. #return float(value)
  111. if isinstance(value, c_intp_types):
  112. return numPtrToList(value)
  113. if isinstance(value, c_floatp_types):
  114. return numPtrToList(value)
  115. if isinstance(value, POINTER(c_char_p)):
  116. return charPtrPtrToStringList(value)
  117. print("..............", attr, ".....................", value, ":", type(value))
  118. #raise Exception("error here!!!")
  119. #from sys import exit
  120. #exit(1)
  121. return value
  122. # ------------------------------------------------------------------------------------------------------------
  123. # Convert a ctypes struct into a python dict
  124. def structToDict(struct):
  125. return dict((attr, toPythonType(getattr(struct, attr), attr)) for attr, value in struct._fields_)
  126. # ------------------------------------------------------------------------------------------------------------
  127. # Carla Backend API (base definitions)
  128. # Maximum default number of loadable plugins.
  129. MAX_DEFAULT_PLUGINS = 99
  130. # Maximum number of loadable plugins in rack mode.
  131. MAX_RACK_PLUGINS = 16
  132. # Maximum number of loadable plugins in patchbay mode.
  133. MAX_PATCHBAY_PLUGINS = 255
  134. # Maximum default number of parameters allowed.
  135. # @see ENGINE_OPTION_MAX_PARAMETERS
  136. MAX_DEFAULT_PARAMETERS = 200
  137. # ------------------------------------------------------------------------------------------------------------
  138. # Engine Driver Device Hints
  139. # Various engine driver device hints.
  140. # @see carla_get_engine_driver_device_info()
  141. # Engine driver device has custom control-panel.
  142. ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL = 0x1
  143. # Engine driver device can change buffer-size on the fly.
  144. # @see ENGINE_OPTION_AUDIO_BUFFER_SIZE
  145. ENGINE_DRIVER_DEVICE_VARIABLE_BUFFER_SIZE = 0x2
  146. # Engine driver device can change sample-rate on the fly.
  147. # @see ENGINE_OPTION_AUDIO_SAMPLE_RATE
  148. ENGINE_DRIVER_DEVICE_VARIABLE_SAMPLE_RATE = 0x4
  149. # ------------------------------------------------------------------------------------------------------------
  150. # Plugin Hints
  151. # Various plugin hints.
  152. # @see carla_get_plugin_info()
  153. # Plugin is a bridge.
  154. # This hint is required because "bridge" itself is not a plugin type.
  155. PLUGIN_IS_BRIDGE = 0x001
  156. # Plugin is hard real-time safe.
  157. PLUGIN_IS_RTSAFE = 0x002
  158. # Plugin is a synth (produces sound).
  159. PLUGIN_IS_SYNTH = 0x004
  160. # Plugin has its own custom UI.
  161. # @see carla_show_custom_ui()
  162. PLUGIN_HAS_CUSTOM_UI = 0x008
  163. # Plugin can use internal Dry/Wet control.
  164. PLUGIN_CAN_DRYWET = 0x010
  165. # Plugin can use internal Volume control.
  166. PLUGIN_CAN_VOLUME = 0x020
  167. # Plugin can use internal (Stereo) Balance controls.
  168. PLUGIN_CAN_BALANCE = 0x040
  169. # Plugin can use internal (Mono) Panning control.
  170. PLUGIN_CAN_PANNING = 0x080
  171. # Plugin needs a constant, fixed-size audio buffer.
  172. PLUGIN_NEEDS_FIXED_BUFFERS = 0x100
  173. # Plugin needs all UI events in a single/main thread.
  174. PLUGIN_NEEDS_SINGLE_THREAD = 0x200
  175. # ------------------------------------------------------------------------------------------------------------
  176. # Plugin Options
  177. # Various plugin options.
  178. # @see carla_get_plugin_info() and carla_set_option()
  179. # Use constant/fixed-size audio buffers.
  180. PLUGIN_OPTION_FIXED_BUFFERS = 0x001
  181. # Force mono plugin as stereo.
  182. PLUGIN_OPTION_FORCE_STEREO = 0x002
  183. # Map MIDI programs to plugin programs.
  184. PLUGIN_OPTION_MAP_PROGRAM_CHANGES = 0x004
  185. # Use chunks to save and restore data.
  186. PLUGIN_OPTION_USE_CHUNKS = 0x008
  187. # Send MIDI control change events.
  188. PLUGIN_OPTION_SEND_CONTROL_CHANGES = 0x010
  189. # Send MIDI channel pressure events.
  190. PLUGIN_OPTION_SEND_CHANNEL_PRESSURE = 0x020
  191. # Send MIDI note after-touch events.
  192. PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH = 0x040
  193. # Send MIDI pitch-bend events.
  194. PLUGIN_OPTION_SEND_PITCHBEND = 0x080
  195. # Send MIDI all-sounds/notes-off events, single note-offs otherwise.
  196. PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100
  197. # ------------------------------------------------------------------------------------------------------------
  198. # Parameter Hints
  199. # Various parameter hints.
  200. # @see CarlaPlugin::getParameterData() and carla_get_parameter_data()
  201. # Parameter value is boolean.
  202. PARAMETER_IS_BOOLEAN = 0x001
  203. # Parameter value is integer.
  204. PARAMETER_IS_INTEGER = 0x002
  205. # Parameter value is logarithmic.
  206. PARAMETER_IS_LOGARITHMIC = 0x004
  207. # Parameter is enabled.
  208. # It can be viewed, changed and stored.
  209. PARAMETER_IS_ENABLED = 0x010
  210. # Parameter is automable (real-time safe).
  211. PARAMETER_IS_AUTOMABLE = 0x020
  212. # Parameter is read-only.
  213. # It cannot be changed.
  214. PARAMETER_IS_READ_ONLY = 0x040
  215. # Parameter needs sample rate to work.
  216. # Value and ranges are multiplied by sample rate on usage and divided by sample rate on save.
  217. PARAMETER_USES_SAMPLERATE = 0x100
  218. # Parameter uses scale points to define internal values in a meaningful way.
  219. PARAMETER_USES_SCALEPOINTS = 0x200
  220. # Parameter uses custom text for displaying its value.
  221. # @see carla_get_parameter_text()
  222. PARAMETER_USES_CUSTOM_TEXT = 0x400
  223. # ------------------------------------------------------------------------------------------------------------
  224. # Patchbay Port Hints
  225. # Various patchbay port hints.
  226. # Patchbay port is input.
  227. # When this hint is not set, port is assumed to be output.
  228. PATCHBAY_PORT_IS_INPUT = 0x1
  229. # Patchbay port is of Audio type.
  230. PATCHBAY_PORT_TYPE_AUDIO = 0x2
  231. # Patchbay port is of CV type (Control Voltage).
  232. PATCHBAY_PORT_TYPE_CV = 0x4
  233. # Patchbay port is of MIDI type.
  234. PATCHBAY_PORT_TYPE_MIDI = 0x8
  235. # Patchbay port is of Parameter type.
  236. PATCHBAY_PORT_TYPE_PARAMETER = 0x10
  237. # ------------------------------------------------------------------------------------------------------------
  238. # Custom Data Types
  239. # These types define how the value in the CustomData struct is stored.
  240. # @see CustomData.type
  241. # Boolean string type URI.
  242. # Only "true" and "false" are valid values.
  243. CUSTOM_DATA_TYPE_BOOLEAN = "http://kxstudio.sf.net/ns/carla/boolean"
  244. # Chunk type URI.
  245. CUSTOM_DATA_TYPE_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk"
  246. # String type URI.
  247. CUSTOM_DATA_TYPE_STRING = "http://kxstudio.sf.net/ns/carla/string"
  248. # ------------------------------------------------------------------------------------------------------------
  249. # Custom Data Keys
  250. # Pre-defined keys used internally in Carla.
  251. # @see CustomData.key
  252. # Plugin options key.
  253. CUSTOM_DATA_KEY_PLUGIN_OPTIONS = "CarlaPluginOptions"
  254. # UI position key.
  255. CUSTOM_DATA_KEY_UI_POSITION = "CarlaUiPosition"
  256. # UI size key.
  257. CUSTOM_DATA_KEY_UI_SIZE = "CarlaUiSize"
  258. # UI visible key.
  259. CUSTOM_DATA_KEY_UI_VISIBLE = "CarlaUiVisible"
  260. # ------------------------------------------------------------------------------------------------------------
  261. # Binary Type
  262. # The binary type of a plugin.
  263. # Null binary type.
  264. BINARY_NONE = 0
  265. # POSIX 32bit binary.
  266. BINARY_POSIX32 = 1
  267. # POSIX 64bit binary.
  268. BINARY_POSIX64 = 2
  269. # Windows 32bit binary.
  270. BINARY_WIN32 = 3
  271. # Windows 64bit binary.
  272. BINARY_WIN64 = 4
  273. # Other binary type.
  274. BINARY_OTHER = 5
  275. # ------------------------------------------------------------------------------------------------------------
  276. # Plugin Type
  277. # Plugin type.
  278. # Some files are handled as if they were plugins.
  279. # Null plugin type.
  280. PLUGIN_NONE = 0
  281. # Internal plugin.
  282. PLUGIN_INTERNAL = 1
  283. # LADSPA plugin.
  284. PLUGIN_LADSPA = 2
  285. # DSSI plugin.
  286. PLUGIN_DSSI = 3
  287. # LV2 plugin.
  288. PLUGIN_LV2 = 4
  289. # VST plugin.
  290. PLUGIN_VST = 5
  291. # VST3 plugin.
  292. PLUGIN_VST3 = 6
  293. # AU plugin.
  294. # @note MacOS only
  295. PLUGIN_AU = 7
  296. # JACK plugin.
  297. PLUGIN_JACK = 8
  298. # ReWire plugin.
  299. # @note Windows and MacOS only
  300. PLUGIN_REWIRE = 9
  301. # Single CSD file (Csound).
  302. PLUGIN_FILE_CSD = 10
  303. # Single GIG file.
  304. PLUGIN_FILE_GIG = 11
  305. # Single SF2 file (SoundFont).
  306. PLUGIN_FILE_SF2 = 12
  307. # Single SFZ file.
  308. PLUGIN_FILE_SFZ = 13
  309. # ------------------------------------------------------------------------------------------------------------
  310. # Plugin Category
  311. # Plugin category, which describes the functionality of a plugin.
  312. # Null plugin category.
  313. PLUGIN_CATEGORY_NONE = 0
  314. # A synthesizer or generator.
  315. PLUGIN_CATEGORY_SYNTH = 1
  316. # A delay or reverb.
  317. PLUGIN_CATEGORY_DELAY = 2
  318. # An equalizer.
  319. PLUGIN_CATEGORY_EQ = 3
  320. # A filter.
  321. PLUGIN_CATEGORY_FILTER = 4
  322. # A distortion plugin.
  323. PLUGIN_CATEGORY_DISTORTION = 5
  324. # A 'dynamic' plugin (amplifier, compressor, gate, etc).
  325. PLUGIN_CATEGORY_DYNAMICS = 6
  326. # A 'modulator' plugin (chorus, flanger, phaser, etc).
  327. PLUGIN_CATEGORY_MODULATOR = 7
  328. # An 'utility' plugin (analyzer, converter, mixer, etc).
  329. PLUGIN_CATEGORY_UTILITY = 8
  330. # Miscellaneous plugin (used to check if the plugin has a category).
  331. PLUGIN_CATEGORY_OTHER = 9
  332. # ------------------------------------------------------------------------------------------------------------
  333. # Parameter Type
  334. # Plugin parameter type.
  335. # Null parameter type.
  336. PARAMETER_UNKNOWN = 0
  337. # Input parameter.
  338. PARAMETER_INPUT = 1
  339. # Ouput parameter.
  340. PARAMETER_OUTPUT = 2
  341. # Special (hidden) parameter.
  342. PARAMETER_SPECIAL = 3
  343. # ------------------------------------------------------------------------------------------------------------
  344. # Internal Parameter Index
  345. # Special parameters used internally in Carla.
  346. # Plugins do not know about their existence.
  347. # Null parameter.
  348. PARAMETER_NULL = -1
  349. # Active parameter, boolean type.
  350. # Default is 'false'.
  351. PARAMETER_ACTIVE = -2
  352. # Dry/Wet parameter.
  353. # Range 0.0...1.0; default is 1.0.
  354. PARAMETER_DRYWET = -3
  355. # Volume parameter.
  356. # Range 0.0...1.27; default is 1.0.
  357. PARAMETER_VOLUME = -4
  358. # Stereo Balance-Left parameter.
  359. # Range -1.0...1.0; default is -1.0.
  360. PARAMETER_BALANCE_LEFT = -5
  361. # Stereo Balance-Right parameter.
  362. # Range -1.0...1.0; default is 1.0.
  363. PARAMETER_BALANCE_RIGHT = -6
  364. # Mono Panning parameter.
  365. # Range -1.0...1.0; default is 0.0.
  366. PARAMETER_PANNING = -7
  367. # MIDI Control channel, integer type.
  368. # Range -1...15 (-1 = off).
  369. PARAMETER_CTRL_CHANNEL = -8
  370. # Max value, defined only for convenience.
  371. PARAMETER_MAX = -9
  372. # ------------------------------------------------------------------------------------------------------------
  373. # Engine Callback Opcode
  374. # Engine callback opcodes.
  375. # Front-ends must never block indefinitely during a callback.
  376. # @see EngineCallbackFunc and carla_set_engine_callback()
  377. # Debug.
  378. # This opcode is undefined and used only for testing purposes.
  379. ENGINE_CALLBACK_DEBUG = 0
  380. # A plugin has been added.
  381. # @param pluginId Plugin Id
  382. # @param valueStr Plugin name
  383. ENGINE_CALLBACK_PLUGIN_ADDED = 1
  384. # A plugin has been removed.
  385. # @param pluginId Plugin Id
  386. ENGINE_CALLBACK_PLUGIN_REMOVED = 2
  387. # A plugin has been renamed.
  388. # @param pluginId Plugin Id
  389. # @param valueStr New plugin name
  390. ENGINE_CALLBACK_PLUGIN_RENAMED = 3
  391. # A plugin has become unavailable.
  392. # @param pluginId Plugin Id
  393. # @param valueStr Related error string
  394. ENGINE_CALLBACK_PLUGIN_UNAVAILABLE = 4
  395. # A parameter value has changed.
  396. # @param pluginId Plugin Id
  397. # @param value1 Parameter index
  398. # @param value3 New parameter value
  399. ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED = 5
  400. # A parameter default has changed.
  401. # @param pluginId Plugin Id
  402. # @param value1 Parameter index
  403. # @param value3 New default value
  404. ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED = 6
  405. # A parameter's MIDI CC has changed.
  406. # @param pluginId Plugin Id
  407. # @param value1 Parameter index
  408. # @param value2 New MIDI CC
  409. ENGINE_CALLBACK_PARAMETER_MIDI_CC_CHANGED = 7
  410. # A parameter's MIDI channel has changed.
  411. # @param pluginId Plugin Id
  412. # @param value1 Parameter index
  413. # @param value2 New MIDI channel
  414. ENGINE_CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED = 8
  415. # The current program of a plugin has changed.
  416. # @param pluginId Plugin Id
  417. # @param value1 New program index
  418. ENGINE_CALLBACK_PROGRAM_CHANGED = 9
  419. # The current MIDI program of a plugin has changed.
  420. # @param pluginId Plugin Id
  421. # @param value1 New MIDI program index
  422. ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED = 10
  423. # A plugin's custom UI state has changed.
  424. # @param pluginId Plugin Id
  425. # @param value1 New state, as follows:
  426. # 0: UI is now hidden
  427. # 1: UI is now visible
  428. # -1: UI has crashed and should not be shown again
  429. ENGINE_CALLBACK_UI_STATE_CHANGED = 11
  430. # A note has been pressed.
  431. # @param pluginId Plugin Id
  432. # @param value1 Channel
  433. # @param value2 Note
  434. # @param value3 Velocity
  435. ENGINE_CALLBACK_NOTE_ON = 12
  436. # A note has been released.
  437. # @param pluginId Plugin Id
  438. # @param value1 Channel
  439. # @param value2 Note
  440. ENGINE_CALLBACK_NOTE_OFF = 13
  441. # A plugin needs update.
  442. # @param pluginId Plugin Id
  443. ENGINE_CALLBACK_UPDATE = 14
  444. # A plugin's data/information has changed.
  445. # @param pluginId Plugin Id
  446. ENGINE_CALLBACK_RELOAD_INFO = 15
  447. # A plugin's parameters have changed.
  448. # @param pluginId Plugin Id
  449. ENGINE_CALLBACK_RELOAD_PARAMETERS = 16
  450. # A plugin's programs have changed.
  451. # @param pluginId Plugin Id
  452. ENGINE_CALLBACK_RELOAD_PROGRAMS = 17
  453. # A plugin state has changed.
  454. # @param pluginId Plugin Id
  455. ENGINE_CALLBACK_RELOAD_ALL = 18
  456. # A patchbay client has been added.
  457. # @param pluginId Client Id
  458. # @param value1 Client icon
  459. # @param value2 Plugin Id (-1 if not a plugin)
  460. # @param valueStr Client name
  461. # @see PatchbayIcon
  462. ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED = 19
  463. # A patchbay client has been removed.
  464. # @param pluginId Client Id
  465. ENGINE_CALLBACK_PATCHBAY_CLIENT_REMOVED = 20
  466. # A patchbay client has been renamed.
  467. # @param pluginId Client Id
  468. # @param valueStr New client name
  469. ENGINE_CALLBACK_PATCHBAY_CLIENT_RENAMED = 21
  470. # A patchbay client data has changed.
  471. # @param pluginId Client Id
  472. # @param value1 New icon
  473. # @param value2 New plugin Id (-1 if not a plugin)
  474. # @see PatchbayIcon
  475. ENGINE_CALLBACK_PATCHBAY_CLIENT_DATA_CHANGED = 22
  476. # A patchbay port has been added.
  477. # @param pluginId Client Id
  478. # @param value1 Port Id
  479. # @param value2 Port hints
  480. # @param valueStr Port name
  481. # @see PatchbayPortHints
  482. ENGINE_CALLBACK_PATCHBAY_PORT_ADDED = 23
  483. # A patchbay port has been removed.
  484. # @param pluginId Client Id
  485. # @param value1 Port Id
  486. ENGINE_CALLBACK_PATCHBAY_PORT_REMOVED = 24
  487. # A patchbay port has been renamed.
  488. # @param pluginId Client Id
  489. # @param value1 Port Id
  490. # @param valueStr New port name
  491. ENGINE_CALLBACK_PATCHBAY_PORT_RENAMED = 25
  492. # A patchbay port value has changed.
  493. # @param pluginId Client Id
  494. # @param value1 Port Id
  495. # @param value3 New port value
  496. ENGINE_CALLBACK_PATCHBAY_PORT_VALUE_CHANGED = 26
  497. # A patchbay connection has been added.
  498. # @param pluginId Connection Id
  499. # @param valueStr Out group, port plus in group and port, in "og:op:ig:ip" syntax.
  500. ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED = 27
  501. # A patchbay connection has been removed.
  502. # @param pluginId Connection Id
  503. ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED = 28
  504. # Engine started.
  505. # @param value1 Process mode
  506. # @param value2 Transport mode
  507. # @param valuestr Engine driver
  508. # @see EngineProcessMode
  509. # @see EngineTransportMode
  510. ENGINE_CALLBACK_ENGINE_STARTED = 29
  511. # Engine stopped.
  512. ENGINE_CALLBACK_ENGINE_STOPPED = 30
  513. # Engine process mode has changed.
  514. # @param value1 New process mode
  515. # @see EngineProcessMode
  516. ENGINE_CALLBACK_PROCESS_MODE_CHANGED = 31
  517. # Engine transport mode has changed.
  518. # @param value1 New transport mode
  519. # @see EngineTransportMode
  520. ENGINE_CALLBACK_TRANSPORT_MODE_CHANGED = 32
  521. # Engine buffer-size changed.
  522. # @param value1 New buffer size
  523. ENGINE_CALLBACK_BUFFER_SIZE_CHANGED = 33
  524. # Engine sample-rate changed.
  525. # @param value3 New sample rate
  526. ENGINE_CALLBACK_SAMPLE_RATE_CHANGED = 34
  527. # Idle frontend.
  528. # This is used by the engine during long operations that might block the frontend,
  529. # giving it the possibility to idle while the operation is still in place.
  530. ENGINE_CALLBACK_IDLE = 35
  531. # Show a message as information.
  532. # @param valueStr The message
  533. ENGINE_CALLBACK_INFO = 36
  534. # Show a message as an error.
  535. # @param valueStr The message
  536. ENGINE_CALLBACK_ERROR = 37
  537. # The engine has crashed or malfunctioned and will no longer work.
  538. ENGINE_CALLBACK_QUIT = 38
  539. # ------------------------------------------------------------------------------------------------------------
  540. # Engine Option
  541. # Engine options.
  542. # @see carla_set_engine_option()
  543. # Debug.
  544. # This option is undefined and used only for testing purposes.
  545. ENGINE_OPTION_DEBUG = 0
  546. # Set the engine processing mode.
  547. # Default is ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS on Linux and ENGINE_PROCESS_MODE_CONTINUOUS_RACK for all other OSes.
  548. # @see EngineProcessMode
  549. ENGINE_OPTION_PROCESS_MODE = 1
  550. # Set the engine transport mode.
  551. # Default is ENGINE_TRANSPORT_MODE_JACK on Linux and ENGINE_TRANSPORT_MODE_INTERNAL for all other OSes.
  552. # @see EngineTransportMode
  553. ENGINE_OPTION_TRANSPORT_MODE = 2
  554. # Force mono plugins as stereo, by running 2 instances at the same time.
  555. # Default is false, but always true when process mode is ENGINE_PROCESS_MODE_CONTINUOUS_RACK.
  556. # @note Not supported by all plugins
  557. # @see PLUGIN_OPTION_FORCE_STEREO
  558. ENGINE_OPTION_FORCE_STEREO = 3
  559. # Use plugin bridges whenever possible.
  560. # Default is no, EXPERIMENTAL.
  561. ENGINE_OPTION_PREFER_PLUGIN_BRIDGES = 4
  562. # Use UI bridges whenever possible, otherwise UIs will be directly handled in the main backend thread.
  563. # Default is yes.
  564. ENGINE_OPTION_PREFER_UI_BRIDGES = 5
  565. # Make custom plugin UIs always-on-top.
  566. # Default is yes.
  567. ENGINE_OPTION_UIS_ALWAYS_ON_TOP = 6
  568. # Maximum number of parameters allowed.
  569. # Default is MAX_DEFAULT_PARAMETERS.
  570. ENGINE_OPTION_MAX_PARAMETERS = 7
  571. # Timeout value for how much to wait for UI bridges to respond, in milliseconds.
  572. # Default is 4000 (4 seconds).
  573. ENGINE_OPTION_UI_BRIDGES_TIMEOUT = 8
  574. # Audio number of periods.
  575. # Default is 2.
  576. ENGINE_OPTION_AUDIO_NUM_PERIODS = 9
  577. # Audio buffer size.
  578. # Default is 512.
  579. ENGINE_OPTION_AUDIO_BUFFER_SIZE = 10
  580. # Audio sample rate.
  581. # Default is 44100.
  582. ENGINE_OPTION_AUDIO_SAMPLE_RATE = 11
  583. # Audio device (within a driver).
  584. # Default unset.
  585. ENGINE_OPTION_AUDIO_DEVICE = 12
  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 = 13
  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 = 14
  594. # Set frontend winId, used to define as parent window for plugin UIs.
  595. ENGINE_OPTION_FRONTEND_WIN_ID = 15
  596. # ------------------------------------------------------------------------------------------------------------
  597. # Engine Process Mode
  598. # Engine process mode.
  599. # @see ENGINE_OPTION_PROCESS_MODE
  600. # Single client mode.
  601. # Inputs and outputs are added dynamically as needed by plugins.
  602. ENGINE_PROCESS_MODE_SINGLE_CLIENT = 0
  603. # Multiple client mode.
  604. # It has 1 master client + 1 client per plugin.
  605. ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS = 1
  606. # Single client, 'rack' mode.
  607. # Processes plugins in order of Id, with forced stereo always on.
  608. ENGINE_PROCESS_MODE_CONTINUOUS_RACK = 2
  609. # Single client, 'patchbay' mode.
  610. ENGINE_PROCESS_MODE_PATCHBAY = 3
  611. # Special mode, used in plugin-bridges only.
  612. ENGINE_PROCESS_MODE_BRIDGE = 4
  613. # ------------------------------------------------------------------------------------------------------------
  614. # Engine Transport Mode
  615. # Engine transport mode.
  616. # @see ENGINE_OPTION_TRANSPORT_MODE
  617. # Internal transport mode.
  618. ENGINE_TRANSPORT_MODE_INTERNAL = 0
  619. # Transport from JACK.
  620. # Only available if driver name is "JACK".
  621. ENGINE_TRANSPORT_MODE_JACK = 1
  622. # Transport from host, used when Carla is a plugin.
  623. ENGINE_TRANSPORT_MODE_PLUGIN = 2
  624. # Special mode, used in plugin-bridges only.
  625. ENGINE_TRANSPORT_MODE_BRIDGE = 3
  626. # ------------------------------------------------------------------------------------------------------------
  627. # File Callback Opcode
  628. # File callback opcodes.
  629. # Front-ends must always block-wait for user input.
  630. # @see FileCallbackFunc and carla_set_file_callback()
  631. # Debug.
  632. # This opcode is undefined and used only for testing purposes.
  633. FILE_CALLBACK_DEBUG = 0
  634. # Open file or folder.
  635. FILE_CALLBACK_OPEN = 1
  636. # Save file or folder.
  637. FILE_CALLBACK_SAVE = 2
  638. # ------------------------------------------------------------------------------------------------------------
  639. # Patchbay Icon
  640. # The icon of a patchbay client/group.
  641. # Generic application icon.
  642. # Used for all non-plugin clients that don't have a specific icon.
  643. PATCHBAY_ICON_APPLICATION = 0
  644. # Plugin icon.
  645. # Used for all plugin clients that don't have a specific icon.
  646. PATCHBAY_ICON_PLUGIN = 1
  647. # Hardware icon.
  648. # Used for hardware (audio or MIDI) clients.
  649. PATCHBAY_ICON_HARDWARE = 2
  650. # Carla icon.
  651. # Used for the main app.
  652. PATCHBAY_ICON_CARLA = 3
  653. # DISTRHO icon.
  654. # Used for DISTRHO based plugins.
  655. PATCHBAY_ICON_DISTRHO = 4
  656. # File icon.
  657. # Used for file type plugins (like GIG and SF2).
  658. PATCHBAY_ICON_FILE = 5
  659. # ------------------------------------------------------------------------------------------------------------
  660. # Carla Backend API (C stuff)
  661. # Engine callback function.
  662. # Front-ends must never block indefinitely during a callback.
  663. # @see EngineCallbackOpcode and carla_set_engine_callback()
  664. EngineCallbackFunc = CFUNCTYPE(None, c_void_p, c_enum, c_uint, c_int, c_int, c_float, c_char_p)
  665. # File callback function.
  666. # @see FileCallbackOpcode
  667. FileCallbackFunc = CFUNCTYPE(c_char_p, c_void_p, c_enum, c_bool, c_char_p, c_char_p)
  668. # Parameter data.
  669. class ParameterData(Structure):
  670. _fields_ = [
  671. # This parameter type.
  672. ("type", c_enum),
  673. # This parameter hints.
  674. # @see ParameterHints
  675. ("hints", c_uint),
  676. # Index as seen by Carla.
  677. ("index", c_int32),
  678. # Real index as seen by plugins.
  679. ("rindex", c_int32),
  680. # Currently mapped MIDI CC.
  681. # A value lower than 0 means invalid or unused.
  682. # Maximum allowed value is 95 (0x5F).
  683. ("midiCC", c_int16),
  684. # Currently mapped MIDI channel.
  685. # Counts from 0 to 15.
  686. ("midiChannel", c_uint8)
  687. ]
  688. # Parameter ranges.
  689. class ParameterRanges(Structure):
  690. _fields_ = [
  691. # Default value.
  692. ("def", c_float),
  693. # Minimum value.
  694. ("min", c_float),
  695. # Maximum value.
  696. ("max", c_float),
  697. # Regular, single step value.
  698. ("step", c_float),
  699. # Small step value.
  700. ("stepSmall", c_float),
  701. # Large step value.
  702. ("stepLarge", c_float)
  703. ]
  704. # MIDI Program data.
  705. class MidiProgramData(Structure):
  706. _fields_ = [
  707. # MIDI bank.
  708. ("bank", c_uint32),
  709. # MIDI program.
  710. ("program", c_uint32),
  711. # MIDI program name.
  712. ("name", c_char_p)
  713. ]
  714. # Custom data, used for saving key:value 'dictionaries'.
  715. class CustomData(Structure):
  716. _fields_ = [
  717. # Value type, in URI form.
  718. # @see CustomDataTypes
  719. ("type", c_char_p),
  720. # Key.
  721. # @see CustomDataKeys
  722. ("key", c_char_p),
  723. # Value.
  724. ("value", c_char_p)
  725. ]
  726. # Engine driver device information.
  727. class EngineDriverDeviceInfo(Structure):
  728. _fields_ = [
  729. # This driver device hints.
  730. # @see EngineDriverHints
  731. ("hints", c_uint),
  732. # Available buffer sizes.
  733. # Terminated with 0.
  734. ("bufferSizes", POINTER(c_uint32)),
  735. # Available sample rates.
  736. # Terminated with 0.0.
  737. ("sampleRates", POINTER(c_double))
  738. ]
  739. # ------------------------------------------------------------------------------------------------------------
  740. # Carla Backend API (Python compatible stuff)
  741. # @see ParameterData
  742. PyParameterData = {
  743. 'type': PARAMETER_UNKNOWN,
  744. 'hints': 0x0,
  745. 'index': PARAMETER_NULL,
  746. 'rindex': -1,
  747. 'midiCC': -1,
  748. 'midiChannel': 0
  749. }
  750. # @see ParameterRanges
  751. PyParameterRanges = {
  752. 'def': 0.0,
  753. 'min': 0.0,
  754. 'max': 1.0,
  755. 'step': 0.01,
  756. 'stepSmall': 0.0001,
  757. 'stepLarge': 0.1
  758. }
  759. # @see MidiProgramData
  760. PyMidiProgramData = {
  761. 'bank': 0,
  762. 'program': 0,
  763. 'name': None
  764. }
  765. # @see CustomData
  766. PyCustomData = {
  767. 'type': None,
  768. 'key': None,
  769. 'value': None
  770. }
  771. # @see EngineDriverDeviceInfo
  772. PyEngineDriverDeviceInfo = {
  773. 'hints': 0x0,
  774. 'bufferSizes': [],
  775. 'sampleRates': []
  776. }
  777. # ------------------------------------------------------------------------------------------------------------
  778. # Carla Host API (C stuff)
  779. # Information about a loaded plugin.
  780. # @see carla_get_plugin_info()
  781. class CarlaPluginInfo(Structure):
  782. _fields_ = [
  783. # Plugin type.
  784. ("type", c_enum),
  785. # Plugin category.
  786. ("category", c_enum),
  787. # Plugin hints.
  788. # @see PluginHints
  789. ("hints", c_uint),
  790. # Plugin options available for the user to change.
  791. # @see PluginOptions
  792. ("optionsAvailable", c_uint),
  793. # Plugin options currently enabled.
  794. # Some options are enabled but not available, which means they will always be on.
  795. # @see PluginOptions
  796. ("optionsEnabled", c_uint),
  797. # Plugin filename.
  798. # This can be the plugin binary or resource file.
  799. ("filename", c_char_p),
  800. # Plugin name.
  801. # This name is unique within a Carla instance.
  802. # @see carla_get_real_plugin_name()
  803. ("name", c_char_p),
  804. # Plugin label or URI.
  805. ("label", c_char_p),
  806. # Plugin author/maker.
  807. ("maker", c_char_p),
  808. # Plugin copyright/license.
  809. ("copyright", c_char_p),
  810. # Icon name for this plugin, in lowercase.
  811. # Default is "plugin".
  812. ("iconName", c_char_p),
  813. # Plugin unique Id.
  814. # This Id is dependant on the plugin type and may sometimes be 0.
  815. ("uniqueId", c_int64)
  816. ]
  817. # Information about an internal Carla plugin.
  818. # @see carla_get_internal_plugin_info()
  819. class CarlaNativePluginInfo(Structure):
  820. _fields_ = [
  821. # Plugin category.
  822. ("category", c_enum),
  823. # Plugin hints.
  824. # @see PluginHints
  825. ("hints", c_uint),
  826. # Number of audio inputs.
  827. ("audioIns", c_uint32),
  828. # Number of audio outputs.
  829. ("audioOuts", c_uint32),
  830. # Number of MIDI inputs.
  831. ("midiIns", c_uint32),
  832. # Number of MIDI outputs.
  833. ("midiOuts", c_uint32),
  834. # Number of input parameters.
  835. ("parameterIns", c_uint32),
  836. # Number of output parameters.
  837. ("parameterOuts", c_uint32),
  838. # Plugin name.
  839. ("name", c_char_p),
  840. # Plugin label.
  841. ("label", c_char_p),
  842. # Plugin author/maker.
  843. ("maker", c_char_p),
  844. # Plugin copyright/license.
  845. ("copyright", c_char_p)
  846. ]
  847. # Port count information, used for Audio and MIDI ports and parameters.
  848. # @see carla_get_audio_port_count_info()
  849. # @see carla_get_midi_port_count_info()
  850. # @see carla_get_parameter_count_info()
  851. class CarlaPortCountInfo(Structure):
  852. _fields_ = [
  853. # Number of inputs.
  854. ("ins", c_uint32),
  855. # Number of outputs.
  856. ("outs", c_uint32)
  857. ]
  858. # Parameter information.
  859. # @see carla_get_parameter_info()
  860. class CarlaParameterInfo(Structure):
  861. _fields_ = [
  862. # Parameter name.
  863. ("name", c_char_p),
  864. # Parameter symbol.
  865. ("symbol", c_char_p),
  866. # Parameter unit.
  867. ("unit", c_char_p),
  868. # Number of scale points.
  869. # @see CarlaScalePointInfo
  870. ("scalePointCount", c_uint32)
  871. ]
  872. # Parameter scale point information.
  873. # @see carla_get_parameter_scalepoint_info()
  874. class CarlaScalePointInfo(Structure):
  875. _fields_ = [
  876. # Scale point value.
  877. ("value", c_float),
  878. # Scale point label.
  879. ("label", c_char_p)
  880. ]
  881. # Transport information.
  882. # @see carla_get_transport_info()
  883. class CarlaTransportInfo(Structure):
  884. _fields_ = [
  885. # Wherever transport is playing.
  886. ("playing", c_bool),
  887. # Current transport frame.
  888. ("frame", c_uint64),
  889. # Bar
  890. ("bar", c_int32),
  891. # Beat
  892. ("beat", c_int32),
  893. # Tick
  894. ("tick", c_int32),
  895. # Beats per minute.
  896. ("bpm", c_double)
  897. ]
  898. # ------------------------------------------------------------------------------------------------------------
  899. # Carla Host API (Python compatible stuff)
  900. # @see CarlaPluginInfo
  901. PyCarlaPluginInfo = {
  902. 'type': PLUGIN_NONE,
  903. 'category': PLUGIN_CATEGORY_NONE,
  904. 'hints': 0x0,
  905. 'optionsAvailable': 0x0,
  906. 'optionsEnabled': 0x0,
  907. 'filename': None,
  908. 'name': None,
  909. 'label': None,
  910. 'maker': None,
  911. 'copyright': None,
  912. 'iconName': None,
  913. 'uniqueId': 0
  914. }
  915. # @see CarlaPortCountInfo
  916. PyCarlaPortCountInfo = {
  917. 'ins': 0,
  918. 'outs': 0
  919. }
  920. # @see CarlaParameterInfo
  921. PyCarlaParameterInfo = {
  922. 'name': None,
  923. 'symbol': None,
  924. 'unit': None,
  925. 'scalePointCount': 0,
  926. }
  927. # @see CarlaScalePointInfo
  928. PyCarlaScalePointInfo = {
  929. 'value': 0.0,
  930. 'label': None
  931. }
  932. # @see CarlaTransportInfo
  933. PyCarlaTransportInfo = {
  934. "playing": False,
  935. "frame": 0,
  936. "bar": 0,
  937. "beat": 0,
  938. "tick": 0,
  939. "bpm": 0.0
  940. }
  941. # ------------------------------------------------------------------------------------------------------------
  942. # Set BINARY_NATIVE
  943. if HAIKU or LINUX or MACOS:
  944. BINARY_NATIVE = BINARY_POSIX64 if kIs64bit else BINARY_POSIX32
  945. elif WINDOWS:
  946. BINARY_NATIVE = BINARY_WIN64 if kIs64bit else BINARY_WIN32
  947. else:
  948. BINARY_NATIVE = BINARY_OTHER
  949. # ------------------------------------------------------------------------------------------------------------
  950. # Python Host object (Control/Standalone)
  951. class Host(object):
  952. def __init__(self, libName):
  953. object.__init__(self)
  954. self._init(libName)
  955. # Get the complete license text of used third-party code and features.
  956. # Returned string is in basic html format.
  957. def get_complete_license_text(self):
  958. return charPtrToString(self.lib.carla_get_complete_license_text())
  959. # Get all the supported file extensions in carla_load_file().
  960. # Returned string uses this syntax:
  961. # @code
  962. # "*.ext1;*.ext2;*.ext3"
  963. # @endcode
  964. def get_supported_file_extensions(self):
  965. return charPtrToString(self.lib.carla_get_supported_file_extensions())
  966. # Get how many engine drivers are available.
  967. def get_engine_driver_count(self):
  968. return int(self.lib.carla_get_engine_driver_count())
  969. # Get an engine driver name.
  970. # @param index Driver index
  971. def get_engine_driver_name(self, index):
  972. return charPtrToString(self.lib.carla_get_engine_driver_name(index))
  973. # Get the device names of an engine driver.
  974. # @param index Driver index
  975. def get_engine_driver_device_names(self, index):
  976. return charPtrPtrToStringList(self.lib.carla_get_engine_driver_device_names(index))
  977. # Get information about a device driver.
  978. # @param index Driver index
  979. # @param name Device name
  980. def get_engine_driver_device_info(self, index, name):
  981. return structToDict(self.lib.carla_get_engine_driver_device_info(index, name.encode("utf-8")).contents)
  982. # Get how many internal plugins are available.
  983. def get_internal_plugin_count(self):
  984. return int(self.lib.carla_get_internal_plugin_count())
  985. # Get information about an internal plugin.
  986. # @param index Internal plugin Id
  987. def get_internal_plugin_info(self, index):
  988. return structToDict(self.lib.carla_get_internal_plugin_info(index).contents)
  989. # Initialize the engine.
  990. # Make sure to call carla_engine_idle() at regular intervals afterwards.
  991. # @param driverName Driver to use
  992. # @param clientName Engine master client name
  993. def engine_init(self, driverName, clientName):
  994. return bool(self.lib.carla_engine_init(driverName.encode("utf-8"), clientName.encode("utf-8")))
  995. # Close the engine.
  996. # This function always closes the engine even if it returns false.
  997. # In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
  998. def engine_close(self):
  999. return bool(self.lib.carla_engine_close())
  1000. # Idle the engine.
  1001. # Do not call this if the engine is not running.
  1002. def engine_idle(self):
  1003. self.lib.carla_engine_idle()
  1004. # Check if the engine is running.
  1005. def is_engine_running(self):
  1006. return bool(self.lib.carla_is_engine_running())
  1007. # Tell the engine it's about to close.
  1008. # This is used to prevent the engine thread(s) from reactivating.
  1009. def set_engine_about_to_close(self):
  1010. self.lib.carla_set_engine_about_to_close()
  1011. # Set the engine callback function.
  1012. # @param func Callback function
  1013. def set_engine_callback(self, func):
  1014. self._engineCallback = EngineCallbackFunc(func)
  1015. self.lib.carla_set_engine_callback(self._engineCallback, None)
  1016. # Set an engine option.
  1017. # @param option Option
  1018. # @param value Value as number
  1019. # @param valueStr Value as string
  1020. def set_engine_option(self, option, value, valueStr):
  1021. self.lib.carla_set_engine_option(option, value, valueStr.encode("utf-8"))
  1022. # Set the file callback function.
  1023. # @param func Callback function
  1024. # @param ptr Callback pointer
  1025. def set_file_callback(self, func):
  1026. self._fileCallback = FileCallbackFunc(func)
  1027. self.lib.carla_set_file_callback(self._fileCallback, None)
  1028. # Load a file of any type.\n
  1029. # This will try to load a generic file as a plugin,
  1030. # either by direct handling (Csound, GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
  1031. # @param Filename Filename
  1032. # @see carla_get_supported_file_extensions()
  1033. def load_file(self, filename):
  1034. return bool(self.lib.carla_load_file(filename.encode("utf-8")))
  1035. # Load a Carla project file.
  1036. # @param Filename Filename
  1037. # @note Currently loaded plugins are not removed; call carla_remove_all_plugins() first if needed.
  1038. def load_project(self, filename):
  1039. return bool(self.lib.carla_load_project(filename.encode("utf-8")))
  1040. # Save current project to a file.
  1041. # @param Filename Filename
  1042. def save_project(self, filename):
  1043. return bool(self.lib.carla_save_project(filename.encode("utf-8")))
  1044. # Connect two patchbay ports.
  1045. # @param groupIdA Output group
  1046. # @param portIdA Output port
  1047. # @param groupIdB Input group
  1048. # @param portIdB Input port
  1049. # @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED
  1050. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  1051. return bool(self.lib.carla_patchbay_connect(groupIdA, portIdA, groupIdB, portIdB))
  1052. # Disconnect two patchbay ports.
  1053. # @param connectionId Connection Id
  1054. # @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED
  1055. def patchbay_disconnect(self, connectionId):
  1056. return bool(self.lib.carla_patchbay_disconnect(connectionId))
  1057. # Force the engine to resend all patchbay clients, ports and connections again.
  1058. def patchbay_refresh(self):
  1059. return bool(self.lib.carla_patchbay_refresh())
  1060. # Start playback of the engine transport.
  1061. def transport_play(self):
  1062. self.lib.carla_transport_play()
  1063. # Pause the engine transport.
  1064. def transport_pause(self):
  1065. self.lib.carla_transport_pause()
  1066. # Relocate the engine transport to a specific frame.
  1067. # @param frames Frame to relocate to.
  1068. def transport_relocate(self, frame):
  1069. self.lib.carla_transport_relocate(frame)
  1070. # Get the current transport frame.
  1071. def get_current_transport_frame(self):
  1072. return bool(self.lib.carla_get_current_transport_frame())
  1073. # Get the engine transport information.
  1074. def get_transport_info(self):
  1075. return structToDict(self.lib.carla_get_transport_info().contents)
  1076. # Add a new plugin.
  1077. # If you don't know the binary type use the BINARY_NATIVE macro.
  1078. # @param btype Binary type
  1079. # @param ptype Plugin type
  1080. # @param filename Filename, if applicable
  1081. # @param name Name of the plugin, can be NULL
  1082. # @param label Plugin label, if applicable
  1083. # @param uniqueId Plugin unique Id, if applicable
  1084. # @param extraPtr Extra pointer, defined per plugin type
  1085. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr):
  1086. cfilename = filename.encode("utf-8") if filename else None
  1087. cname = name.encode("utf-8") if name else None
  1088. clabel = label.encode("utf-8") if label else None
  1089. return bool(self.lib.carla_add_plugin(btype, ptype, cfilename, cname, clabel, uniqueId, cast(extraPtr, c_void_p)))
  1090. # Remove a plugin.
  1091. # @param pluginId Plugin to remove.
  1092. def remove_plugin(self, pluginId):
  1093. return bool(self.lib.carla_remove_plugin(pluginId))
  1094. # Remove all plugins.
  1095. def remove_all_plugins(self):
  1096. return bool(self.lib.carla_remove_all_plugins())
  1097. # Rename a plugin.\n
  1098. # Returns the new name, or NULL if the operation failed.
  1099. # @param pluginId Plugin to rename
  1100. # @param newName New plugin name
  1101. def rename_plugin(self, pluginId, newName):
  1102. return charPtrToString(self.lib.carla_rename_plugin(pluginId, newName.encode("utf-8")))
  1103. # Clone a plugin.
  1104. # @param pluginId Plugin to clone
  1105. def clone_plugin(self, pluginId):
  1106. return bool(self.lib.carla_clone_plugin(pluginId))
  1107. # Prepare replace of a plugin.\n
  1108. # The next call to carla_add_plugin() will use this id, replacing the current plugin.
  1109. # @param pluginId Plugin to replace
  1110. # @note This function requires carla_add_plugin() to be called afterwards *as soon as possible*.
  1111. def replace_plugin(self, pluginId):
  1112. return bool(self.lib.carla_replace_plugin(pluginId))
  1113. # Switch two plugins positions.
  1114. # @param pluginIdA Plugin A
  1115. # @param pluginIdB Plugin B
  1116. def switch_plugins(self, pluginIdA, pluginIdB):
  1117. return bool(self.lib.carla_switch_plugins(pluginIdA, pluginIdB))
  1118. # Load a plugin state.
  1119. # @param pluginId Plugin
  1120. # @param filename Path to plugin state
  1121. # @see carla_save_plugin_state()
  1122. def load_plugin_state(self, pluginId, filename):
  1123. return bool(self.lib.carla_load_plugin_state(pluginId, filename.encode("utf-8")))
  1124. # Save a plugin state.
  1125. # @param pluginId Plugin
  1126. # @param filename Path to plugin state
  1127. # @see carla_load_plugin_state()
  1128. def save_plugin_state(self, pluginId, filename):
  1129. return bool(self.lib.carla_save_plugin_state(pluginId, filename.encode("utf-8")))
  1130. # Get information from a plugin.
  1131. # @param pluginId Plugin
  1132. def get_plugin_info(self, pluginId):
  1133. return structToDict(self.lib.carla_get_plugin_info(pluginId).contents)
  1134. # Get audio port count information from a plugin.
  1135. # @param pluginId Plugin
  1136. def get_audio_port_count_info(self, pluginId):
  1137. return structToDict(self.lib.carla_get_audio_port_count_info(pluginId).contents)
  1138. # Get MIDI port count information from a plugin.
  1139. # @param pluginId Plugin
  1140. def get_midi_port_count_info(self, pluginId):
  1141. return structToDict(self.lib.carla_get_midi_port_count_info(pluginId).contents)
  1142. # Get parameter count information from a plugin.
  1143. # @param pluginId Plugin
  1144. def get_parameter_count_info(self, pluginId):
  1145. return structToDict(self.lib.carla_get_parameter_count_info(pluginId).contents)
  1146. # Get parameter information from a plugin.
  1147. # @param pluginId Plugin
  1148. # @param parameterId Parameter index
  1149. # @see carla_get_parameter_count()
  1150. def get_parameter_info(self, pluginId, parameterId):
  1151. return structToDict(self.lib.carla_get_parameter_info(pluginId, parameterId).contents)
  1152. # Get parameter scale point information from a plugin.
  1153. # @param pluginId Plugin
  1154. # @param parameterId Parameter index
  1155. # @param scalePointId Parameter scale-point index
  1156. # @see CarlaParameterInfo::scalePointCount
  1157. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  1158. return structToDict(self.lib.carla_get_parameter_scalepoint_info(pluginId, parameterId, scalePointId).contents)
  1159. # Get a plugin's parameter data.
  1160. # @param pluginId Plugin
  1161. # @param parameterId Parameter index
  1162. # @see carla_get_parameter_count()
  1163. def get_parameter_data(self, pluginId, parameterId):
  1164. return structToDict(self.lib.carla_get_parameter_data(pluginId, parameterId).contents)
  1165. # Get a plugin's parameter ranges.
  1166. # @param pluginId Plugin
  1167. # @param parameterId Parameter index
  1168. # @see carla_get_parameter_count()
  1169. def get_parameter_ranges(self, pluginId, parameterId):
  1170. return structToDict(self.lib.carla_get_parameter_ranges(pluginId, parameterId).contents)
  1171. # Get a plugin's MIDI program data.
  1172. # @param pluginId Plugin
  1173. # @param midiProgramId MIDI Program index
  1174. # @see carla_get_midi_program_count()
  1175. def get_midi_program_data(self, pluginId, midiProgramId):
  1176. return structToDict(self.lib.carla_get_midi_program_data(pluginId, midiProgramId).contents)
  1177. # Get a plugin's custom data.
  1178. # @param pluginId Plugin
  1179. # @param customDataId Custom data index
  1180. # @see carla_get_custom_data_count()
  1181. def get_custom_data(self, pluginId, customDataId):
  1182. return structToDict(self.lib.carla_get_custom_data(pluginId, customDataId).contents)
  1183. # Get a plugin's chunk data.
  1184. # @param pluginId Plugin
  1185. # @see PLUGIN_OPTION_USE_CHUNKS
  1186. def get_chunk_data(self, pluginId):
  1187. return charPtrToString(self.lib.carla_get_chunk_data(pluginId))
  1188. # Get how many parameters a plugin has.
  1189. # @param pluginId Plugin
  1190. def get_parameter_count(self, pluginId):
  1191. return int(self.lib.carla_get_parameter_count(pluginId))
  1192. # Get how many programs a plugin has.
  1193. # @param pluginId Plugin
  1194. # @see carla_get_program_name()
  1195. def get_program_count(self, pluginId):
  1196. return int(self.lib.carla_get_program_count(pluginId))
  1197. # Get how many MIDI programs a plugin has.
  1198. # @param pluginId Plugin
  1199. # @see carla_get_midi_program_name() and carla_get_midi_program_data()
  1200. def get_midi_program_count(self, pluginId):
  1201. return int(self.lib.carla_get_midi_program_count(pluginId))
  1202. # Get how many custom data sets a plugin has.
  1203. # @param pluginId Plugin
  1204. # @see carla_get_custom_data()
  1205. def get_custom_data_count(self, pluginId):
  1206. return int(self.lib.carla_get_custom_data_count(pluginId))
  1207. # Get a plugin's parameter text (custom display of internal values).
  1208. # @param pluginId Plugin
  1209. # @param parameterId Parameter index
  1210. # @see PARAMETER_USES_CUSTOM_TEXT
  1211. def get_parameter_text(self, pluginId, parameterId):
  1212. return charPtrToString(self.lib.carla_get_parameter_text(pluginId, parameterId))
  1213. # Get a plugin's program name.
  1214. # @param pluginId Plugin
  1215. # @param programId Program index
  1216. # @see carla_get_program_count()
  1217. def get_program_name(self, pluginId, programId):
  1218. return charPtrToString(self.lib.carla_get_program_name(pluginId, programId))
  1219. # Get a plugin's MIDI program name.
  1220. # @param pluginId Plugin
  1221. # @param midiProgramId MIDI Program index
  1222. # @see carla_get_midi_program_count()
  1223. def get_midi_program_name(self, pluginId, midiProgramId):
  1224. return charPtrToString(self.lib.carla_get_midi_program_name(pluginId, midiProgramId))
  1225. # Get a plugin's real name.\n
  1226. # This is the name the plugin uses to identify itself; may not be unique.
  1227. # @param pluginId Plugin
  1228. def get_real_plugin_name(self, pluginId):
  1229. return charPtrToString(self.lib.carla_get_real_plugin_name(pluginId))
  1230. # Get a plugin's program index.
  1231. # @param pluginId Plugin
  1232. def get_current_program_index(self, pluginId):
  1233. return int(self.lib.carla_get_current_program_index(pluginId))
  1234. # Get a plugin's midi program index.
  1235. # @param pluginId Plugin
  1236. def get_current_midi_program_index(self, pluginId):
  1237. return int(self.lib.carla_get_current_midi_program_index(pluginId))
  1238. # Get a plugin's default parameter value.
  1239. # @param pluginId Plugin
  1240. # @param parameterId Parameter index
  1241. def get_default_parameter_value(self, pluginId, parameterId):
  1242. return float(self.lib.carla_get_default_parameter_value(pluginId, parameterId))
  1243. # Get a plugin's current parameter value.
  1244. # @param pluginId Plugin
  1245. # @param parameterId Parameter index
  1246. def get_current_parameter_value(self, pluginId, parameterId):
  1247. return float(self.lib.carla_get_current_parameter_value(pluginId, parameterId))
  1248. # Get a plugin's input peak value.
  1249. # @param pluginId Plugin
  1250. # @param isLeft Wherever to get the left/mono value, otherwise right.
  1251. def get_input_peak_value(self, pluginId, isLeft):
  1252. return float(self.lib.carla_get_input_peak_value(pluginId, isLeft))
  1253. # Get a plugin's output peak value.
  1254. # @param pluginId Plugin
  1255. # @param isLeft Wherever to get the left/mono value, otherwise right.
  1256. def get_output_peak_value(self, pluginId, isLeft):
  1257. return float(self.lib.carla_get_output_peak_value(pluginId, isLeft))
  1258. # Enable a plugin's option.
  1259. # @param pluginId Plugin
  1260. # @param option An option from PluginOptions
  1261. # @param yesNo New enabled state
  1262. def set_option(self, pluginId, option, yesNo):
  1263. self.lib.carla_set_option(pluginId, option, yesNo)
  1264. # Enable or disable a plugin.
  1265. # @param pluginId Plugin
  1266. # @param onOff New active state
  1267. def set_active(self, pluginId, onOff):
  1268. self.lib.carla_set_active(pluginId, onOff)
  1269. # Change a plugin's internal dry/wet.
  1270. # @param pluginId Plugin
  1271. # @param value New dry/wet value
  1272. def set_drywet(self, pluginId, value):
  1273. self.lib.carla_set_drywet(pluginId, value)
  1274. # Change a plugin's internal volume.
  1275. # @param pluginId Plugin
  1276. # @param value New volume
  1277. def set_volume(self, pluginId, value):
  1278. self.lib.carla_set_volume(pluginId, value)
  1279. # Change a plugin's internal stereo balance, left channel.
  1280. # @param pluginId Plugin
  1281. # @param value New value
  1282. def set_balance_left(self, pluginId, value):
  1283. self.lib.carla_set_balance_left(pluginId, value)
  1284. # Change a plugin's internal stereo balance, right channel.
  1285. # @param pluginId Plugin
  1286. # @param value New value
  1287. def set_balance_right(self, pluginId, value):
  1288. self.lib.carla_set_balance_right(pluginId, value)
  1289. # Change a plugin's internal mono panning value.
  1290. # @param pluginId Plugin
  1291. # @param value New value
  1292. def set_panning(self, pluginId, value):
  1293. self.lib.carla_set_panning(pluginId, value)
  1294. # Change a plugin's internal control channel.
  1295. # @param pluginId Plugin
  1296. # @param channel New channel
  1297. def set_ctrl_channel(self, pluginId, channel):
  1298. self.lib.carla_set_ctrl_channel(pluginId, channel)
  1299. # Change a plugin's parameter value.
  1300. # @param pluginId Plugin
  1301. # @param parameterId Parameter index
  1302. # @param value New value
  1303. def set_parameter_value(self, pluginId, parameterId, value):
  1304. self.lib.carla_set_parameter_value(pluginId, parameterId, value)
  1305. # Change a plugin's parameter MIDI cc.
  1306. # @param pluginId Plugin
  1307. # @param parameterId Parameter index
  1308. # @param cc New MIDI cc
  1309. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  1310. self.lib.carla_set_parameter_midi_channel(pluginId, parameterId, channel)
  1311. # Change a plugin's parameter MIDI channel.
  1312. # @param pluginId Plugin
  1313. # @param parameterId Parameter index
  1314. # @param channel New MIDI channel
  1315. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  1316. self.lib.carla_set_parameter_midi_cc(pluginId, parameterId, cc)
  1317. # Change a plugin's current program.
  1318. # @param pluginId Plugin
  1319. # @param programId New program
  1320. def set_program(self, pluginId, programId):
  1321. self.lib.carla_set_program(pluginId, programId)
  1322. # Change a plugin's current MIDI program.
  1323. # @param pluginId Plugin
  1324. # @param midiProgramId New value
  1325. def set_midi_program(self, pluginId, midiProgramId):
  1326. self.lib.carla_set_midi_program(pluginId, midiProgramId)
  1327. # Set a plugin's custom data set.
  1328. # @param pluginId Plugin
  1329. # @param type Type
  1330. # @param key Key
  1331. # @param value New value
  1332. # @see CustomDataTypes and CustomDataKeys
  1333. def set_custom_data(self, pluginId, type_, key, value):
  1334. self.lib.carla_set_custom_data(pluginId, type_.encode("utf-8"), key.encode("utf-8"), value.encode("utf-8"))
  1335. # Set a plugin's chunk data.
  1336. # @param pluginId Plugin
  1337. # @param value New value
  1338. # @see PLUGIN_OPTION_USE_CHUNKS and carla_get_chunk_data()
  1339. def set_chunk_data(self, pluginId, chunkData):
  1340. self.lib.carla_set_chunk_data(pluginId, chunkData.encode("utf-8"))
  1341. # Tell a plugin to prepare for save.\n
  1342. # This should be called before saving custom data sets.
  1343. # @param pluginId Plugin
  1344. def prepare_for_save(self, pluginId):
  1345. self.lib.carla_prepare_for_save(pluginId)
  1346. # Send a single note of a plugin.\n
  1347. # If velocity is 0, note-off is sent; note-on otherwise.
  1348. # @param pluginId Plugin
  1349. # @param channel Note channel
  1350. # @param note Note pitch
  1351. # @param velocity Note velocity
  1352. def send_midi_note(self, pluginId, channel, note, velocity):
  1353. self.lib.carla_send_midi_note(pluginId, channel, note, velocity)
  1354. # Tell a plugin to show its own custom UI.
  1355. # @param pluginId Plugin
  1356. # @param yesNo New UI state, visible or not
  1357. # @see PLUGIN_HAS_CUSTOM_UI
  1358. def show_custom_ui(self, pluginId, yesNo):
  1359. self.lib.carla_show_custom_ui(pluginId, yesNo)
  1360. # Get the current engine buffer size.
  1361. def get_buffer_size(self):
  1362. return int(self.lib.carla_get_buffer_size())
  1363. # Get the current engine sample rate.
  1364. def get_sample_rate(self):
  1365. return float(self.lib.carla_get_sample_rate())
  1366. # Get the last error.
  1367. def get_last_error(self):
  1368. return charPtrToString(self.lib.carla_get_last_error())
  1369. # Get the current engine OSC URL (TCP).
  1370. def get_host_osc_url_tcp(self):
  1371. return charPtrToString(self.lib.carla_get_host_osc_url_tcp())
  1372. # Get the current engine OSC URL (UDP).
  1373. def get_host_osc_url_udp(self):
  1374. return charPtrToString(self.lib.carla_get_host_osc_url_udp())
  1375. def _init(self, libName):
  1376. self.lib = cdll.LoadLibrary(libName)
  1377. self.lib.carla_get_complete_license_text.argtypes = None
  1378. self.lib.carla_get_complete_license_text.restype = c_char_p
  1379. self.lib.carla_get_supported_file_extensions.argtypes = None
  1380. self.lib.carla_get_supported_file_extensions.restype = c_char_p
  1381. self.lib.carla_get_engine_driver_count.argtypes = None
  1382. self.lib.carla_get_engine_driver_count.restype = c_uint
  1383. self.lib.carla_get_engine_driver_name.argtypes = [c_uint]
  1384. self.lib.carla_get_engine_driver_name.restype = c_char_p
  1385. self.lib.carla_get_engine_driver_device_names.argtypes = [c_uint]
  1386. self.lib.carla_get_engine_driver_device_names.restype = POINTER(c_char_p)
  1387. self.lib.carla_get_engine_driver_device_info.argtypes = [c_uint, c_char_p]
  1388. self.lib.carla_get_engine_driver_device_info.restype = POINTER(EngineDriverDeviceInfo)
  1389. self.lib.carla_get_internal_plugin_count.argtypes = None
  1390. self.lib.carla_get_internal_plugin_count.restype = c_uint
  1391. self.lib.carla_get_internal_plugin_info.argtypes = [c_uint]
  1392. self.lib.carla_get_internal_plugin_info.restype = POINTER(CarlaNativePluginInfo)
  1393. self.lib.carla_engine_init.argtypes = [c_char_p, c_char_p]
  1394. self.lib.carla_engine_init.restype = c_bool
  1395. self.lib.carla_engine_close.argtypes = None
  1396. self.lib.carla_engine_close.restype = c_bool
  1397. self.lib.carla_engine_idle.argtypes = None
  1398. self.lib.carla_engine_idle.restype = None
  1399. self.lib.carla_is_engine_running.argtypes = None
  1400. self.lib.carla_is_engine_running.restype = c_bool
  1401. self.lib.carla_set_engine_about_to_close.argtypes = None
  1402. self.lib.carla_set_engine_about_to_close.restype = None
  1403. self.lib.carla_set_engine_callback.argtypes = [EngineCallbackFunc, c_void_p]
  1404. self.lib.carla_set_engine_callback.restype = None
  1405. self.lib.carla_set_engine_option.argtypes = [c_enum, c_int, c_char_p]
  1406. self.lib.carla_set_engine_option.restype = None
  1407. self.lib.carla_set_file_callback.argtypes = [FileCallbackFunc, c_void_p]
  1408. self.lib.carla_set_file_callback.restype = None
  1409. self.lib.carla_load_file.argtypes = [c_char_p]
  1410. self.lib.carla_load_file.restype = c_bool
  1411. self.lib.carla_load_project.argtypes = [c_char_p]
  1412. self.lib.carla_load_project.restype = c_bool
  1413. self.lib.carla_save_project.argtypes = [c_char_p]
  1414. self.lib.carla_save_project.restype = c_bool
  1415. self.lib.carla_patchbay_connect.argtypes = [c_int, c_int, c_int, c_int]
  1416. self.lib.carla_patchbay_connect.restype = c_bool
  1417. self.lib.carla_patchbay_disconnect.argtypes = [c_uint]
  1418. self.lib.carla_patchbay_disconnect.restype = c_bool
  1419. self.lib.carla_patchbay_refresh.argtypes = None
  1420. self.lib.carla_patchbay_refresh.restype = c_bool
  1421. self.lib.carla_transport_play.argtypes = None
  1422. self.lib.carla_transport_play.restype = None
  1423. self.lib.carla_transport_pause.argtypes = None
  1424. self.lib.carla_transport_pause.restype = None
  1425. self.lib.carla_transport_relocate.argtypes = [c_uint64]
  1426. self.lib.carla_transport_relocate.restype = None
  1427. self.lib.carla_get_current_transport_frame.argtypes = None
  1428. self.lib.carla_get_current_transport_frame.restype = c_uint64
  1429. self.lib.carla_get_transport_info.argtypes = None
  1430. self.lib.carla_get_transport_info.restype = POINTER(CarlaTransportInfo)
  1431. self.lib.carla_add_plugin.argtypes = [c_enum, c_enum, c_char_p, c_char_p, c_char_p, c_int64, c_void_p]
  1432. self.lib.carla_add_plugin.restype = c_bool
  1433. self.lib.carla_remove_plugin.argtypes = [c_uint]
  1434. self.lib.carla_remove_plugin.restype = c_bool
  1435. self.lib.carla_remove_all_plugins.argtypes = None
  1436. self.lib.carla_remove_all_plugins.restype = c_bool
  1437. self.lib.carla_rename_plugin.argtypes = [c_uint, c_char_p]
  1438. self.lib.carla_rename_plugin.restype = c_char_p
  1439. self.lib.carla_clone_plugin.argtypes = [c_uint]
  1440. self.lib.carla_clone_plugin.restype = c_bool
  1441. self.lib.carla_replace_plugin.argtypes = [c_uint]
  1442. self.lib.carla_replace_plugin.restype = c_bool
  1443. self.lib.carla_switch_plugins.argtypes = [c_uint, c_uint]
  1444. self.lib.carla_switch_plugins.restype = c_bool
  1445. self.lib.carla_load_plugin_state.argtypes = [c_uint, c_char_p]
  1446. self.lib.carla_load_plugin_state.restype = c_bool
  1447. self.lib.carla_save_plugin_state.argtypes = [c_uint, c_char_p]
  1448. self.lib.carla_save_plugin_state.restype = c_bool
  1449. self.lib.carla_get_plugin_info.argtypes = [c_uint]
  1450. self.lib.carla_get_plugin_info.restype = POINTER(CarlaPluginInfo)
  1451. self.lib.carla_get_audio_port_count_info.argtypes = [c_uint]
  1452. self.lib.carla_get_audio_port_count_info.restype = POINTER(CarlaPortCountInfo)
  1453. self.lib.carla_get_midi_port_count_info.argtypes = [c_uint]
  1454. self.lib.carla_get_midi_port_count_info.restype = POINTER(CarlaPortCountInfo)
  1455. self.lib.carla_get_parameter_count_info.argtypes = [c_uint]
  1456. self.lib.carla_get_parameter_count_info.restype = POINTER(CarlaPortCountInfo)
  1457. self.lib.carla_get_parameter_info.argtypes = [c_uint, c_uint32]
  1458. self.lib.carla_get_parameter_info.restype = POINTER(CarlaParameterInfo)
  1459. self.lib.carla_get_parameter_scalepoint_info.argtypes = [c_uint, c_uint32, c_uint32]
  1460. self.lib.carla_get_parameter_scalepoint_info.restype = POINTER(CarlaScalePointInfo)
  1461. self.lib.carla_get_parameter_data.argtypes = [c_uint, c_uint32]
  1462. self.lib.carla_get_parameter_data.restype = POINTER(ParameterData)
  1463. self.lib.carla_get_parameter_ranges.argtypes = [c_uint, c_uint32]
  1464. self.lib.carla_get_parameter_ranges.restype = POINTER(ParameterRanges)
  1465. self.lib.carla_get_midi_program_data.argtypes = [c_uint, c_uint32]
  1466. self.lib.carla_get_midi_program_data.restype = POINTER(MidiProgramData)
  1467. self.lib.carla_get_custom_data.argtypes = [c_uint, c_uint32]
  1468. self.lib.carla_get_custom_data.restype = POINTER(CustomData)
  1469. self.lib.carla_get_chunk_data.argtypes = [c_uint]
  1470. self.lib.carla_get_chunk_data.restype = c_char_p
  1471. self.lib.carla_get_parameter_count.argtypes = [c_uint]
  1472. self.lib.carla_get_parameter_count.restype = c_uint32
  1473. self.lib.carla_get_program_count.argtypes = [c_uint]
  1474. self.lib.carla_get_program_count.restype = c_uint32
  1475. self.lib.carla_get_midi_program_count.argtypes = [c_uint]
  1476. self.lib.carla_get_midi_program_count.restype = c_uint32
  1477. self.lib.carla_get_custom_data_count.argtypes = [c_uint]
  1478. self.lib.carla_get_custom_data_count.restype = c_uint32
  1479. self.lib.carla_get_parameter_text.argtypes = [c_uint, c_uint32]
  1480. self.lib.carla_get_parameter_text.restype = c_char_p
  1481. self.lib.carla_get_program_name.argtypes = [c_uint, c_uint32]
  1482. self.lib.carla_get_program_name.restype = c_char_p
  1483. self.lib.carla_get_midi_program_name.argtypes = [c_uint, c_uint32]
  1484. self.lib.carla_get_midi_program_name.restype = c_char_p
  1485. self.lib.carla_get_real_plugin_name.argtypes = [c_uint]
  1486. self.lib.carla_get_real_plugin_name.restype = c_char_p
  1487. self.lib.carla_get_current_program_index.argtypes = [c_uint]
  1488. self.lib.carla_get_current_program_index.restype = c_int32
  1489. self.lib.carla_get_current_midi_program_index.argtypes = [c_uint]
  1490. self.lib.carla_get_current_midi_program_index.restype = c_int32
  1491. self.lib.carla_get_default_parameter_value.argtypes = [c_uint, c_uint32]
  1492. self.lib.carla_get_default_parameter_value.restype = c_float
  1493. self.lib.carla_get_current_parameter_value.argtypes = [c_uint, c_uint32]
  1494. self.lib.carla_get_current_parameter_value.restype = c_float
  1495. self.lib.carla_get_input_peak_value.argtypes = [c_uint, c_bool]
  1496. self.lib.carla_get_input_peak_value.restype = c_float
  1497. self.lib.carla_get_output_peak_value.argtypes = [c_uint, c_bool]
  1498. self.lib.carla_get_output_peak_value.restype = c_float
  1499. self.lib.carla_set_option.argtypes = [c_uint, c_uint, c_bool]
  1500. self.lib.carla_set_option.restype = None
  1501. self.lib.carla_set_active.argtypes = [c_uint, c_bool]
  1502. self.lib.carla_set_active.restype = None
  1503. self.lib.carla_set_drywet.argtypes = [c_uint, c_float]
  1504. self.lib.carla_set_drywet.restype = None
  1505. self.lib.carla_set_volume.argtypes = [c_uint, c_float]
  1506. self.lib.carla_set_volume.restype = None
  1507. self.lib.carla_set_balance_left.argtypes = [c_uint, c_float]
  1508. self.lib.carla_set_balance_left.restype = None
  1509. self.lib.carla_set_balance_right.argtypes = [c_uint, c_float]
  1510. self.lib.carla_set_balance_right.restype = None
  1511. self.lib.carla_set_panning.argtypes = [c_uint, c_float]
  1512. self.lib.carla_set_panning.restype = None
  1513. self.lib.carla_set_ctrl_channel.argtypes = [c_uint, c_int8]
  1514. self.lib.carla_set_ctrl_channel.restype = None
  1515. self.lib.carla_set_parameter_value.argtypes = [c_uint, c_uint32, c_float]
  1516. self.lib.carla_set_parameter_value.restype = None
  1517. self.lib.carla_set_parameter_midi_channel.argtypes = [c_uint, c_uint32, c_uint8]
  1518. self.lib.carla_set_parameter_midi_channel.restype = None
  1519. self.lib.carla_set_parameter_midi_cc.argtypes = [c_uint, c_uint32, c_int16]
  1520. self.lib.carla_set_parameter_midi_cc.restype = None
  1521. self.lib.carla_set_program.argtypes = [c_uint, c_uint32]
  1522. self.lib.carla_set_program.restype = None
  1523. self.lib.carla_set_midi_program.argtypes = [c_uint, c_uint32]
  1524. self.lib.carla_set_midi_program.restype = None
  1525. self.lib.carla_set_custom_data.argtypes = [c_uint, c_char_p, c_char_p, c_char_p]
  1526. self.lib.carla_set_custom_data.restype = None
  1527. self.lib.carla_set_chunk_data.argtypes = [c_uint, c_char_p]
  1528. self.lib.carla_set_chunk_data.restype = None
  1529. self.lib.carla_prepare_for_save.argtypes = [c_uint]
  1530. self.lib.carla_prepare_for_save.restype = None
  1531. self.lib.carla_send_midi_note.argtypes = [c_uint, c_uint8, c_uint8, c_uint8]
  1532. self.lib.carla_send_midi_note.restype = None
  1533. self.lib.carla_show_custom_ui.argtypes = [c_uint, c_bool]
  1534. self.lib.carla_show_custom_ui.restype = None
  1535. self.lib.carla_get_buffer_size.argtypes = None
  1536. self.lib.carla_get_buffer_size.restype = c_uint32
  1537. self.lib.carla_get_sample_rate.argtypes = None
  1538. self.lib.carla_get_sample_rate.restype = c_double
  1539. self.lib.carla_get_last_error.argtypes = None
  1540. self.lib.carla_get_last_error.restype = c_char_p
  1541. self.lib.carla_get_host_osc_url_tcp.argtypes = None
  1542. self.lib.carla_get_host_osc_url_tcp.restype = c_char_p
  1543. self.lib.carla_get_host_osc_url_udp.argtypes = None
  1544. self.lib.carla_get_host_osc_url_udp.restype = c_char_p