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.

3209 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. # NSM callback.
  519. # (Work in progress, values are not defined yet)
  520. ENGINE_CALLBACK_NSM = 35
  521. # Idle frontend.
  522. # This is used by the engine during long operations that might block the frontend,
  523. # giving it the possibility to idle while the operation is still in place.
  524. ENGINE_CALLBACK_IDLE = 36
  525. # Show a message as information.
  526. # @a valueStr The message
  527. ENGINE_CALLBACK_INFO = 37
  528. # Show a message as an error.
  529. # @a valueStr The message
  530. ENGINE_CALLBACK_ERROR = 38
  531. # The engine has crashed or malfunctioned and will no longer work.
  532. ENGINE_CALLBACK_QUIT = 39
  533. # ------------------------------------------------------------------------------------------------------------
  534. # Engine Option
  535. # Engine options.
  536. # @see carla_set_engine_option()
  537. # Debug.
  538. # This option is undefined and used only for testing purposes.
  539. ENGINE_OPTION_DEBUG = 0
  540. # Set the engine processing mode.
  541. # Default is ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS on Linux and ENGINE_PROCESS_MODE_PATCHBAY for all other OSes.
  542. # @see EngineProcessMode
  543. ENGINE_OPTION_PROCESS_MODE = 1
  544. # Set the engine transport mode.
  545. # Default is ENGINE_TRANSPORT_MODE_JACK on Linux and ENGINE_TRANSPORT_MODE_INTERNAL for all other OSes.
  546. # @see EngineTransportMode
  547. ENGINE_OPTION_TRANSPORT_MODE = 2
  548. # Force mono plugins as stereo, by running 2 instances at the same time.
  549. # Default is false, but always true when process mode is ENGINE_PROCESS_MODE_CONTINUOUS_RACK.
  550. # @note Not supported by all plugins
  551. # @see PLUGIN_OPTION_FORCE_STEREO
  552. ENGINE_OPTION_FORCE_STEREO = 3
  553. # Use plugin bridges whenever possible.
  554. # Default is no, EXPERIMENTAL.
  555. ENGINE_OPTION_PREFER_PLUGIN_BRIDGES = 4
  556. # Use UI bridges whenever possible, otherwise UIs will be directly handled in the main backend thread.
  557. # Default is yes.
  558. ENGINE_OPTION_PREFER_UI_BRIDGES = 5
  559. # Make custom plugin UIs always-on-top.
  560. # Default is yes.
  561. ENGINE_OPTION_UIS_ALWAYS_ON_TOP = 6
  562. # Maximum number of parameters allowed.
  563. # Default is MAX_DEFAULT_PARAMETERS.
  564. ENGINE_OPTION_MAX_PARAMETERS = 7
  565. # Timeout value for how much to wait for UI bridges to respond, in milliseconds.
  566. # Default is 4000 (4 seconds).
  567. ENGINE_OPTION_UI_BRIDGES_TIMEOUT = 8
  568. # Number of audio periods.
  569. # Default is 2.
  570. ENGINE_OPTION_AUDIO_NUM_PERIODS = 9
  571. # Audio buffer size.
  572. # Default is 512.
  573. ENGINE_OPTION_AUDIO_BUFFER_SIZE = 10
  574. # Audio sample rate.
  575. # Default is 44100.
  576. ENGINE_OPTION_AUDIO_SAMPLE_RATE = 11
  577. # Audio device (within a driver).
  578. # Default unset.
  579. ENGINE_OPTION_AUDIO_DEVICE = 12
  580. # Set path used for a specific plugin type.
  581. # Uses value as the plugin format, valueStr as actual path.
  582. # @see PluginType
  583. ENGINE_OPTION_PLUGIN_PATH = 13
  584. # Set path to the binary files.
  585. # Default unset.
  586. # @note Must be set for plugin and UI bridges to work
  587. ENGINE_OPTION_PATH_BINARIES = 14
  588. # Set path to the resource files.
  589. # Default unset.
  590. # @note Must be set for some internal plugins to work
  591. ENGINE_OPTION_PATH_RESOURCES = 15
  592. # Prevent bad plugin and UI behaviour.
  593. # @note: Linux only
  594. ENGINE_OPTION_PREVENT_BAD_BEHAVIOUR = 16
  595. # Set frontend winId, used to define as parent window for plugin UIs.
  596. ENGINE_OPTION_FRONTEND_WIN_ID = 17
  597. # Capture console output into debug callbacks
  598. ENGINE_OPTION_DEBUG_CONSOLE_OUTPUT = 18
  599. # ------------------------------------------------------------------------------------------------------------
  600. # Engine Process Mode
  601. # Engine process mode.
  602. # @see ENGINE_OPTION_PROCESS_MODE
  603. # Single client mode.
  604. # Inputs and outputs are added dynamically as needed by plugins.
  605. ENGINE_PROCESS_MODE_SINGLE_CLIENT = 0
  606. # Multiple client mode.
  607. # It has 1 master client + 1 client per plugin.
  608. ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS = 1
  609. # Single client, 'rack' mode.
  610. # Processes plugins in order of Id, with forced stereo always on.
  611. ENGINE_PROCESS_MODE_CONTINUOUS_RACK = 2
  612. # Single client, 'patchbay' mode.
  613. ENGINE_PROCESS_MODE_PATCHBAY = 3
  614. # Special mode, used in plugin-bridges only.
  615. ENGINE_PROCESS_MODE_BRIDGE = 4
  616. # ------------------------------------------------------------------------------------------------------------
  617. # Engine Transport Mode
  618. # Engine transport mode.
  619. # @see ENGINE_OPTION_TRANSPORT_MODE
  620. # Internal transport mode.
  621. ENGINE_TRANSPORT_MODE_INTERNAL = 0
  622. # Transport from JACK.
  623. # Only available if driver name is "JACK".
  624. ENGINE_TRANSPORT_MODE_JACK = 1
  625. # Transport from host, used when Carla is a plugin.
  626. ENGINE_TRANSPORT_MODE_PLUGIN = 2
  627. # Special mode, used in plugin-bridges only.
  628. ENGINE_TRANSPORT_MODE_BRIDGE = 3
  629. # ------------------------------------------------------------------------------------------------------------
  630. # File Callback Opcode
  631. # File callback opcodes.
  632. # Front-ends must always block-wait for user input.
  633. # @see FileCallbackFunc and carla_set_file_callback()
  634. # Debug.
  635. # This opcode is undefined and used only for testing purposes.
  636. FILE_CALLBACK_DEBUG = 0
  637. # Open file or folder.
  638. FILE_CALLBACK_OPEN = 1
  639. # Save file or folder.
  640. FILE_CALLBACK_SAVE = 2
  641. # ------------------------------------------------------------------------------------------------------------
  642. # Patchbay Icon
  643. # The icon of a patchbay client/group.
  644. # Generic application icon.
  645. # Used for all non-plugin clients that don't have a specific icon.
  646. PATCHBAY_ICON_APPLICATION = 0
  647. # Plugin icon.
  648. # Used for all plugin clients that don't have a specific icon.
  649. PATCHBAY_ICON_PLUGIN = 1
  650. # Hardware icon.
  651. # Used for hardware (audio or MIDI) clients.
  652. PATCHBAY_ICON_HARDWARE = 2
  653. # Carla icon.
  654. # Used for the main app.
  655. PATCHBAY_ICON_CARLA = 3
  656. # DISTRHO icon.
  657. # Used for DISTRHO based plugins.
  658. PATCHBAY_ICON_DISTRHO = 4
  659. # File icon.
  660. # Used for file type plugins (like GIG and SF2).
  661. PATCHBAY_ICON_FILE = 5
  662. # ------------------------------------------------------------------------------------------------------------
  663. # Carla Backend API (C stuff)
  664. # Engine callback function.
  665. # Front-ends must never block indefinitely during a callback.
  666. # @see EngineCallbackOpcode and carla_set_engine_callback()
  667. EngineCallbackFunc = CFUNCTYPE(None, c_void_p, c_enum, c_uint, c_int, c_int, c_float, c_char_p)
  668. # File callback function.
  669. # @see FileCallbackOpcode
  670. FileCallbackFunc = CFUNCTYPE(c_char_p, c_void_p, c_enum, c_bool, c_char_p, c_char_p)
  671. # Parameter data.
  672. class ParameterData(Structure):
  673. _fields_ = [
  674. # This parameter type.
  675. ("type", c_enum),
  676. # This parameter hints.
  677. # @see ParameterHints
  678. ("hints", c_uint),
  679. # Index as seen by Carla.
  680. ("index", c_int32),
  681. # Real index as seen by plugins.
  682. ("rindex", c_int32),
  683. # Currently mapped MIDI CC.
  684. # A value lower than 0 means invalid or unused.
  685. # Maximum allowed value is 119 (0x77).
  686. ("midiCC", c_int16),
  687. # Currently mapped MIDI channel.
  688. # Counts from 0 to 15.
  689. ("midiChannel", c_uint8)
  690. ]
  691. # Parameter ranges.
  692. class ParameterRanges(Structure):
  693. _fields_ = [
  694. # Default value.
  695. ("def", c_float),
  696. # Minimum value.
  697. ("min", c_float),
  698. # Maximum value.
  699. ("max", c_float),
  700. # Regular, single step value.
  701. ("step", c_float),
  702. # Small step value.
  703. ("stepSmall", c_float),
  704. # Large step value.
  705. ("stepLarge", c_float)
  706. ]
  707. # MIDI Program data.
  708. class MidiProgramData(Structure):
  709. _fields_ = [
  710. # MIDI bank.
  711. ("bank", c_uint32),
  712. # MIDI program.
  713. ("program", c_uint32),
  714. # MIDI program name.
  715. ("name", c_char_p)
  716. ]
  717. # Custom data, used for saving key:value 'dictionaries'.
  718. class CustomData(Structure):
  719. _fields_ = [
  720. # Value type, in URI form.
  721. # @see CustomDataTypes
  722. ("type", c_char_p),
  723. # Key.
  724. # @see CustomDataKeys
  725. ("key", c_char_p),
  726. # Value.
  727. ("value", c_char_p)
  728. ]
  729. # Engine driver device information.
  730. class EngineDriverDeviceInfo(Structure):
  731. _fields_ = [
  732. # This driver device hints.
  733. # @see EngineDriverHints
  734. ("hints", c_uint),
  735. # Available buffer sizes.
  736. # Terminated with 0.
  737. ("bufferSizes", POINTER(c_uint32)),
  738. # Available sample rates.
  739. # Terminated with 0.0.
  740. ("sampleRates", POINTER(c_double))
  741. ]
  742. # ------------------------------------------------------------------------------------------------------------
  743. # Carla Backend API (Python compatible stuff)
  744. # @see ParameterData
  745. PyParameterData = {
  746. 'type': PARAMETER_UNKNOWN,
  747. 'hints': 0x0,
  748. 'index': PARAMETER_NULL,
  749. 'rindex': -1,
  750. 'midiCC': -1,
  751. 'midiChannel': 0
  752. }
  753. # @see ParameterRanges
  754. PyParameterRanges = {
  755. 'def': 0.0,
  756. 'min': 0.0,
  757. 'max': 1.0,
  758. 'step': 0.01,
  759. 'stepSmall': 0.0001,
  760. 'stepLarge': 0.1
  761. }
  762. # @see MidiProgramData
  763. PyMidiProgramData = {
  764. 'bank': 0,
  765. 'program': 0,
  766. 'name': None
  767. }
  768. # @see CustomData
  769. PyCustomData = {
  770. 'type': None,
  771. 'key': None,
  772. 'value': None
  773. }
  774. # @see EngineDriverDeviceInfo
  775. PyEngineDriverDeviceInfo = {
  776. 'hints': 0x0,
  777. 'bufferSizes': [],
  778. 'sampleRates': []
  779. }
  780. # ------------------------------------------------------------------------------------------------------------
  781. # Carla Host API (C stuff)
  782. # Information about a loaded plugin.
  783. # @see carla_get_plugin_info()
  784. class CarlaPluginInfo(Structure):
  785. _fields_ = [
  786. # Plugin type.
  787. ("type", c_enum),
  788. # Plugin category.
  789. ("category", c_enum),
  790. # Plugin hints.
  791. # @see PluginHints
  792. ("hints", c_uint),
  793. # Plugin options available for the user to change.
  794. # @see PluginOptions
  795. ("optionsAvailable", c_uint),
  796. # Plugin options currently enabled.
  797. # Some options are enabled but not available, which means they will always be on.
  798. # @see PluginOptions
  799. ("optionsEnabled", c_uint),
  800. # Plugin filename.
  801. # This can be the plugin binary or resource file.
  802. ("filename", c_char_p),
  803. # Plugin name.
  804. # This name is unique within a Carla instance.
  805. # @see carla_get_real_plugin_name()
  806. ("name", c_char_p),
  807. # Plugin label or URI.
  808. ("label", c_char_p),
  809. # Plugin author/maker.
  810. ("maker", c_char_p),
  811. # Plugin copyright/license.
  812. ("copyright", c_char_p),
  813. # Icon name for this plugin, in lowercase.
  814. # Default is "plugin".
  815. ("iconName", c_char_p),
  816. # Plugin unique Id.
  817. # This Id is dependant on the plugin type and may sometimes be 0.
  818. ("uniqueId", c_int64)
  819. ]
  820. # Port count information, used for Audio and MIDI ports and parameters.
  821. # @see carla_get_audio_port_count_info()
  822. # @see carla_get_midi_port_count_info()
  823. # @see carla_get_parameter_count_info()
  824. class CarlaPortCountInfo(Structure):
  825. _fields_ = [
  826. # Number of inputs.
  827. ("ins", c_uint32),
  828. # Number of outputs.
  829. ("outs", c_uint32)
  830. ]
  831. # Parameter information.
  832. # @see carla_get_parameter_info()
  833. class CarlaParameterInfo(Structure):
  834. _fields_ = [
  835. # Parameter name.
  836. ("name", c_char_p),
  837. # Parameter symbol.
  838. ("symbol", c_char_p),
  839. # Parameter unit.
  840. ("unit", c_char_p),
  841. # Number of scale points.
  842. # @see CarlaScalePointInfo
  843. ("scalePointCount", c_uint32)
  844. ]
  845. # Parameter scale point information.
  846. # @see carla_get_parameter_scalepoint_info()
  847. class CarlaScalePointInfo(Structure):
  848. _fields_ = [
  849. # Scale point value.
  850. ("value", c_float),
  851. # Scale point label.
  852. ("label", c_char_p)
  853. ]
  854. # Transport information.
  855. # @see carla_get_transport_info()
  856. class CarlaTransportInfo(Structure):
  857. _fields_ = [
  858. # Wherever transport is playing.
  859. ("playing", c_bool),
  860. # Current transport frame.
  861. ("frame", c_uint64),
  862. # Bar
  863. ("bar", c_int32),
  864. # Beat
  865. ("beat", c_int32),
  866. # Tick
  867. ("tick", c_int32),
  868. # Beats per minute.
  869. ("bpm", c_double)
  870. ]
  871. # Image data for LV2 inline display API.
  872. # raw image pixmap format is ARGB32,
  873. class CarlaInlineDisplayImageSurface(Structure):
  874. _fields_ = [
  875. ("data", POINTER(c_ubyte)),
  876. ("width", c_int),
  877. ("height", c_int),
  878. ("stride", c_int)
  879. ]
  880. # ------------------------------------------------------------------------------------------------------------
  881. # Carla Host API (Python compatible stuff)
  882. # @see CarlaPluginInfo
  883. PyCarlaPluginInfo = {
  884. 'type': PLUGIN_NONE,
  885. 'category': PLUGIN_CATEGORY_NONE,
  886. 'hints': 0x0,
  887. 'optionsAvailable': 0x0,
  888. 'optionsEnabled': 0x0,
  889. 'filename': "",
  890. 'name': "",
  891. 'label': "",
  892. 'maker': "",
  893. 'copyright': "",
  894. 'iconName': "",
  895. 'uniqueId': 0
  896. }
  897. # @see CarlaPortCountInfo
  898. PyCarlaPortCountInfo = {
  899. 'ins': 0,
  900. 'outs': 0
  901. }
  902. # @see CarlaParameterInfo
  903. PyCarlaParameterInfo = {
  904. 'name': "",
  905. 'symbol': "",
  906. 'unit': "",
  907. 'scalePointCount': 0,
  908. }
  909. # @see CarlaScalePointInfo
  910. PyCarlaScalePointInfo = {
  911. 'value': 0.0,
  912. 'label': ""
  913. }
  914. # @see CarlaTransportInfo
  915. PyCarlaTransportInfo = {
  916. "playing": False,
  917. "frame": 0,
  918. "bar": 0,
  919. "beat": 0,
  920. "tick": 0,
  921. "bpm": 0.0
  922. }
  923. # ------------------------------------------------------------------------------------------------------------
  924. # Set BINARY_NATIVE
  925. if HAIKU or LINUX or MACOS:
  926. BINARY_NATIVE = BINARY_POSIX64 if kIs64bit else BINARY_POSIX32
  927. elif WINDOWS:
  928. BINARY_NATIVE = BINARY_WIN64 if kIs64bit else BINARY_WIN32
  929. else:
  930. BINARY_NATIVE = BINARY_OTHER
  931. # ------------------------------------------------------------------------------------------------------------
  932. # Carla Host object (Meta)
  933. class CarlaHostMeta(object):
  934. #class CarlaHostMeta(object, metaclass=ABCMeta):
  935. def __init__(self):
  936. object.__init__(self)
  937. # info about this host object
  938. self.isControl = False
  939. self.isPlugin = False
  940. self.nsmOK = False
  941. # settings
  942. self.processMode = ENGINE_PROCESS_MODE_PATCHBAY
  943. self.transportMode = ENGINE_TRANSPORT_MODE_INTERNAL
  944. self.nextProcessMode = ENGINE_PROCESS_MODE_PATCHBAY
  945. self.processModeForced = False
  946. self.audioDriverForced = None
  947. # settings
  948. self.experimental = False
  949. self.exportLV2 = False
  950. self.forceStereo = False
  951. self.manageUIs = False
  952. self.maxParameters = 0
  953. self.preferPluginBridges = False
  954. self.preferUIBridges = False
  955. self.preventBadBehaviour = False
  956. self.showPluginBridges = False
  957. self.showLogs = False
  958. self.uiBridgesTimeout = 0
  959. self.uisAlwaysOnTop = False
  960. # settings
  961. self.pathBinaries = ""
  962. self.pathResources = ""
  963. # Get how many engine drivers are available.
  964. @abstractmethod
  965. def get_engine_driver_count(self):
  966. raise NotImplementedError
  967. # Get an engine driver name.
  968. # @param index Driver index
  969. @abstractmethod
  970. def get_engine_driver_name(self, index):
  971. raise NotImplementedError
  972. # Get the device names of an engine driver.
  973. # @param index Driver index
  974. @abstractmethod
  975. def get_engine_driver_device_names(self, index):
  976. raise NotImplementedError
  977. # Get information about a device driver.
  978. # @param index Driver index
  979. # @param name Device name
  980. @abstractmethod
  981. def get_engine_driver_device_info(self, index, name):
  982. raise NotImplementedError
  983. # Initialize the engine.
  984. # Make sure to call carla_engine_idle() at regular intervals afterwards.
  985. # @param driverName Driver to use
  986. # @param clientName Engine master client name
  987. @abstractmethod
  988. def engine_init(self, driverName, clientName):
  989. raise NotImplementedError
  990. # Close the engine.
  991. # This function always closes the engine even if it returns false.
  992. # In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
  993. @abstractmethod
  994. def engine_close(self):
  995. raise NotImplementedError
  996. # Idle the engine.
  997. # Do not call this if the engine is not running.
  998. @abstractmethod
  999. def engine_idle(self):
  1000. raise NotImplementedError
  1001. # Check if the engine is running.
  1002. @abstractmethod
  1003. def is_engine_running(self):
  1004. raise NotImplementedError
  1005. # Tell the engine it's about to close.
  1006. # This is used to prevent the engine thread(s) from reactivating.
  1007. @abstractmethod
  1008. def set_engine_about_to_close(self):
  1009. raise NotImplementedError
  1010. # Set the engine callback function.
  1011. # @param func Callback function
  1012. @abstractmethod
  1013. def set_engine_callback(self, func):
  1014. raise NotImplementedError
  1015. # Set an engine option.
  1016. # @param option Option
  1017. # @param value Value as number
  1018. # @param valueStr Value as string
  1019. @abstractmethod
  1020. def set_engine_option(self, option, value, valueStr):
  1021. raise NotImplementedError
  1022. # Set the file callback function.
  1023. # @param func Callback function
  1024. # @param ptr Callback pointer
  1025. @abstractmethod
  1026. def set_file_callback(self, func):
  1027. raise NotImplementedError
  1028. # Load a file of any type.
  1029. # This will try to load a generic file as a plugin,
  1030. # either by direct handling (GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
  1031. # @see carla_get_supported_file_extensions()
  1032. @abstractmethod
  1033. def load_file(self, filename):
  1034. raise NotImplementedError
  1035. # Load a Carla project file.
  1036. # @note Currently loaded plugins are not removed; call carla_remove_all_plugins() first if needed.
  1037. @abstractmethod
  1038. def load_project(self, filename):
  1039. raise NotImplementedError
  1040. # Save current project to a file.
  1041. @abstractmethod
  1042. def save_project(self, filename):
  1043. raise NotImplementedError
  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. @abstractmethod
  1051. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  1052. raise NotImplementedError
  1053. # Disconnect two patchbay ports.
  1054. # @param connectionId Connection Id
  1055. # @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED
  1056. @abstractmethod
  1057. def patchbay_disconnect(self, connectionId):
  1058. raise NotImplementedError
  1059. # Force the engine to resend all patchbay clients, ports and connections again.
  1060. # @param external Wherever to show external/hardware ports instead of internal ones.
  1061. # Only valid in patchbay engine mode, other modes will ignore this.
  1062. @abstractmethod
  1063. def patchbay_refresh(self, external):
  1064. raise NotImplementedError
  1065. # Start playback of the engine transport.
  1066. @abstractmethod
  1067. def transport_play(self):
  1068. raise NotImplementedError
  1069. # Pause the engine transport.
  1070. @abstractmethod
  1071. def transport_pause(self):
  1072. raise NotImplementedError
  1073. # Relocate the engine transport to a specific frame.
  1074. @abstractmethod
  1075. def transport_relocate(self, frame):
  1076. raise NotImplementedError
  1077. # Get the current transport frame.
  1078. @abstractmethod
  1079. def get_current_transport_frame(self):
  1080. raise NotImplementedError
  1081. # Get the engine transport information.
  1082. @abstractmethod
  1083. def get_transport_info(self):
  1084. raise NotImplementedError
  1085. # Current number of plugins loaded.
  1086. @abstractmethod
  1087. def get_current_plugin_count(self):
  1088. raise NotImplementedError
  1089. # Maximum number of loadable plugins allowed.
  1090. # Returns 0 if engine is not started.
  1091. @abstractmethod
  1092. def get_max_plugin_number(self):
  1093. raise NotImplementedError
  1094. # Add a new plugin.
  1095. # If you don't know the binary type use the BINARY_NATIVE macro.
  1096. # @param btype Binary type
  1097. # @param ptype Plugin type
  1098. # @param filename Filename, if applicable
  1099. # @param name Name of the plugin, can be NULL
  1100. # @param label Plugin label, if applicable
  1101. # @param uniqueId Plugin unique Id, if applicable
  1102. # @param extraPtr Extra pointer, defined per plugin type
  1103. # @param options Initial plugin options
  1104. @abstractmethod
  1105. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr, options):
  1106. raise NotImplementedError
  1107. # Remove a plugin.
  1108. # @param pluginId Plugin to remove.
  1109. @abstractmethod
  1110. def remove_plugin(self, pluginId):
  1111. raise NotImplementedError
  1112. # Remove all plugins.
  1113. @abstractmethod
  1114. def remove_all_plugins(self):
  1115. raise NotImplementedError
  1116. # Rename a plugin.
  1117. # Returns the new name, or NULL if the operation failed.
  1118. # @param pluginId Plugin to rename
  1119. # @param newName New plugin name
  1120. @abstractmethod
  1121. def rename_plugin(self, pluginId, newName):
  1122. raise NotImplementedError
  1123. # Clone a plugin.
  1124. # @param pluginId Plugin to clone
  1125. @abstractmethod
  1126. def clone_plugin(self, pluginId):
  1127. raise NotImplementedError
  1128. # Prepare replace of a plugin.
  1129. # The next call to carla_add_plugin() will use this id, replacing the current plugin.
  1130. # @param pluginId Plugin to replace
  1131. # @note This function requires carla_add_plugin() to be called afterwards *as soon as possible*.
  1132. @abstractmethod
  1133. def replace_plugin(self, pluginId):
  1134. raise NotImplementedError
  1135. # Switch two plugins positions.
  1136. # @param pluginIdA Plugin A
  1137. # @param pluginIdB Plugin B
  1138. @abstractmethod
  1139. def switch_plugins(self, pluginIdA, pluginIdB):
  1140. raise NotImplementedError
  1141. # Load a plugin state.
  1142. # @param pluginId Plugin
  1143. # @param filename Path to plugin state
  1144. # @see carla_save_plugin_state()
  1145. @abstractmethod
  1146. def load_plugin_state(self, pluginId, filename):
  1147. raise NotImplementedError
  1148. # Save a plugin state.
  1149. # @param pluginId Plugin
  1150. # @param filename Path to plugin state
  1151. # @see carla_load_plugin_state()
  1152. @abstractmethod
  1153. def save_plugin_state(self, pluginId, filename):
  1154. raise NotImplementedError
  1155. # Export plugin as LV2.
  1156. # @param pluginId Plugin
  1157. # @param lv2path Path to lv2 plugin folder
  1158. def export_plugin_lv2(self, pluginId, lv2path):
  1159. raise NotImplementedError
  1160. # Get information from a plugin.
  1161. # @param pluginId Plugin
  1162. @abstractmethod
  1163. def get_plugin_info(self, pluginId):
  1164. raise NotImplementedError
  1165. # Get audio port count information from a plugin.
  1166. # @param pluginId Plugin
  1167. @abstractmethod
  1168. def get_audio_port_count_info(self, pluginId):
  1169. raise NotImplementedError
  1170. # Get MIDI port count information from a plugin.
  1171. # @param pluginId Plugin
  1172. @abstractmethod
  1173. def get_midi_port_count_info(self, pluginId):
  1174. raise NotImplementedError
  1175. # Get parameter count information from a plugin.
  1176. # @param pluginId Plugin
  1177. @abstractmethod
  1178. def get_parameter_count_info(self, pluginId):
  1179. raise NotImplementedError
  1180. # Get parameter information from a plugin.
  1181. # @param pluginId Plugin
  1182. # @param parameterId Parameter index
  1183. # @see carla_get_parameter_count()
  1184. @abstractmethod
  1185. def get_parameter_info(self, pluginId, parameterId):
  1186. raise NotImplementedError
  1187. # Get parameter scale point information from a plugin.
  1188. # @param pluginId Plugin
  1189. # @param parameterId Parameter index
  1190. # @param scalePointId Parameter scale-point index
  1191. # @see CarlaParameterInfo::scalePointCount
  1192. @abstractmethod
  1193. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  1194. raise NotImplementedError
  1195. # Get a plugin's parameter data.
  1196. # @param pluginId Plugin
  1197. # @param parameterId Parameter index
  1198. # @see carla_get_parameter_count()
  1199. @abstractmethod
  1200. def get_parameter_data(self, pluginId, parameterId):
  1201. raise NotImplementedError
  1202. # Get a plugin's parameter ranges.
  1203. # @param pluginId Plugin
  1204. # @param parameterId Parameter index
  1205. # @see carla_get_parameter_count()
  1206. @abstractmethod
  1207. def get_parameter_ranges(self, pluginId, parameterId):
  1208. raise NotImplementedError
  1209. # Get a plugin's MIDI program data.
  1210. # @param pluginId Plugin
  1211. # @param midiProgramId MIDI Program index
  1212. # @see carla_get_midi_program_count()
  1213. @abstractmethod
  1214. def get_midi_program_data(self, pluginId, midiProgramId):
  1215. raise NotImplementedError
  1216. # Get a plugin's custom data.
  1217. # @param pluginId Plugin
  1218. # @param customDataId Custom data index
  1219. # @see carla_get_custom_data_count()
  1220. @abstractmethod
  1221. def get_custom_data(self, pluginId, customDataId):
  1222. raise NotImplementedError
  1223. # Get a plugin's chunk data.
  1224. # @param pluginId Plugin
  1225. # @see PLUGIN_OPTION_USE_CHUNKS
  1226. @abstractmethod
  1227. def get_chunk_data(self, pluginId):
  1228. raise NotImplementedError
  1229. # Get how many parameters a plugin has.
  1230. # @param pluginId Plugin
  1231. @abstractmethod
  1232. def get_parameter_count(self, pluginId):
  1233. raise NotImplementedError
  1234. # Get how many programs a plugin has.
  1235. # @param pluginId Plugin
  1236. # @see carla_get_program_name()
  1237. @abstractmethod
  1238. def get_program_count(self, pluginId):
  1239. raise NotImplementedError
  1240. # Get how many MIDI programs a plugin has.
  1241. # @param pluginId Plugin
  1242. # @see carla_get_midi_program_name() and carla_get_midi_program_data()
  1243. @abstractmethod
  1244. def get_midi_program_count(self, pluginId):
  1245. raise NotImplementedError
  1246. # Get how many custom data sets a plugin has.
  1247. # @param pluginId Plugin
  1248. # @see carla_get_custom_data()
  1249. @abstractmethod
  1250. def get_custom_data_count(self, pluginId):
  1251. raise NotImplementedError
  1252. # Get a plugin's parameter text (custom display of internal values).
  1253. # @param pluginId Plugin
  1254. # @param parameterId Parameter index
  1255. # @see PARAMETER_USES_CUSTOM_TEXT
  1256. @abstractmethod
  1257. def get_parameter_text(self, pluginId, parameterId):
  1258. raise NotImplementedError
  1259. # Get a plugin's program name.
  1260. # @param pluginId Plugin
  1261. # @param programId Program index
  1262. # @see carla_get_program_count()
  1263. @abstractmethod
  1264. def get_program_name(self, pluginId, programId):
  1265. raise NotImplementedError
  1266. # Get a plugin's MIDI program name.
  1267. # @param pluginId Plugin
  1268. # @param midiProgramId MIDI Program index
  1269. # @see carla_get_midi_program_count()
  1270. @abstractmethod
  1271. def get_midi_program_name(self, pluginId, midiProgramId):
  1272. raise NotImplementedError
  1273. # Get a plugin's real name.
  1274. # This is the name the plugin uses to identify itself; may not be unique.
  1275. # @param pluginId Plugin
  1276. @abstractmethod
  1277. def get_real_plugin_name(self, pluginId):
  1278. raise NotImplementedError
  1279. # Get a plugin's program index.
  1280. # @param pluginId Plugin
  1281. @abstractmethod
  1282. def get_current_program_index(self, pluginId):
  1283. raise NotImplementedError
  1284. # Get a plugin's midi program index.
  1285. # @param pluginId Plugin
  1286. @abstractmethod
  1287. def get_current_midi_program_index(self, pluginId):
  1288. raise NotImplementedError
  1289. # Get a plugin's default parameter value.
  1290. # @param pluginId Plugin
  1291. # @param parameterId Parameter index
  1292. @abstractmethod
  1293. def get_default_parameter_value(self, pluginId, parameterId):
  1294. raise NotImplementedError
  1295. # Get a plugin's current parameter value.
  1296. # @param pluginId Plugin
  1297. # @param parameterId Parameter index
  1298. @abstractmethod
  1299. def get_current_parameter_value(self, pluginId, parameterId):
  1300. raise NotImplementedError
  1301. # Get a plugin's internal parameter value.
  1302. # @param pluginId Plugin
  1303. # @param parameterId Parameter index, maybe be negative
  1304. # @see InternalParameterIndex
  1305. @abstractmethod
  1306. def get_internal_parameter_value(self, pluginId, parameterId):
  1307. raise NotImplementedError
  1308. # Get a plugin's input peak value.
  1309. # @param pluginId Plugin
  1310. # @param isLeft Wherever to get the left/mono value, otherwise right.
  1311. @abstractmethod
  1312. def get_input_peak_value(self, pluginId, isLeft):
  1313. raise NotImplementedError
  1314. # Get a plugin's output peak value.
  1315. # @param pluginId Plugin
  1316. # @param isLeft Wherever to get the left/mono value, otherwise right.
  1317. @abstractmethod
  1318. def get_output_peak_value(self, pluginId, isLeft):
  1319. raise NotImplementedError
  1320. # Render a plugin's inline display.
  1321. # @param pluginId Plugin
  1322. @abstractmethod
  1323. def render_inline_display(self, pluginId, width, height):
  1324. raise NotImplementedError
  1325. # Enable a plugin's option.
  1326. # @param pluginId Plugin
  1327. # @param option An option from PluginOptions
  1328. # @param yesNo New enabled state
  1329. @abstractmethod
  1330. def set_option(self, pluginId, option, yesNo):
  1331. raise NotImplementedError
  1332. # Enable or disable a plugin.
  1333. # @param pluginId Plugin
  1334. # @param onOff New active state
  1335. @abstractmethod
  1336. def set_active(self, pluginId, onOff):
  1337. raise NotImplementedError
  1338. # Change a plugin's internal dry/wet.
  1339. # @param pluginId Plugin
  1340. # @param value New dry/wet value
  1341. @abstractmethod
  1342. def set_drywet(self, pluginId, value):
  1343. raise NotImplementedError
  1344. # Change a plugin's internal volume.
  1345. # @param pluginId Plugin
  1346. # @param value New volume
  1347. @abstractmethod
  1348. def set_volume(self, pluginId, value):
  1349. raise NotImplementedError
  1350. # Change a plugin's internal stereo balance, left channel.
  1351. # @param pluginId Plugin
  1352. # @param value New value
  1353. @abstractmethod
  1354. def set_balance_left(self, pluginId, value):
  1355. raise NotImplementedError
  1356. # Change a plugin's internal stereo balance, right channel.
  1357. # @param pluginId Plugin
  1358. # @param value New value
  1359. @abstractmethod
  1360. def set_balance_right(self, pluginId, value):
  1361. raise NotImplementedError
  1362. # Change a plugin's internal mono panning value.
  1363. # @param pluginId Plugin
  1364. # @param value New value
  1365. @abstractmethod
  1366. def set_panning(self, pluginId, value):
  1367. raise NotImplementedError
  1368. # Change a plugin's internal control channel.
  1369. # @param pluginId Plugin
  1370. # @param channel New channel
  1371. @abstractmethod
  1372. def set_ctrl_channel(self, pluginId, channel):
  1373. raise NotImplementedError
  1374. # Change a plugin's parameter value.
  1375. # @param pluginId Plugin
  1376. # @param parameterId Parameter index
  1377. # @param value New value
  1378. @abstractmethod
  1379. def set_parameter_value(self, pluginId, parameterId, value):
  1380. raise NotImplementedError
  1381. # Change a plugin's parameter MIDI cc.
  1382. # @param pluginId Plugin
  1383. # @param parameterId Parameter index
  1384. # @param cc New MIDI cc
  1385. @abstractmethod
  1386. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  1387. raise NotImplementedError
  1388. # Change a plugin's parameter MIDI channel.
  1389. # @param pluginId Plugin
  1390. # @param parameterId Parameter index
  1391. # @param channel New MIDI channel
  1392. @abstractmethod
  1393. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  1394. raise NotImplementedError
  1395. # Change a plugin's current program.
  1396. # @param pluginId Plugin
  1397. # @param programId New program
  1398. @abstractmethod
  1399. def set_program(self, pluginId, programId):
  1400. raise NotImplementedError
  1401. # Change a plugin's current MIDI program.
  1402. # @param pluginId Plugin
  1403. # @param midiProgramId New value
  1404. @abstractmethod
  1405. def set_midi_program(self, pluginId, midiProgramId):
  1406. raise NotImplementedError
  1407. # Set a plugin's custom data set.
  1408. # @param pluginId Plugin
  1409. # @param type Type
  1410. # @param key Key
  1411. # @param value New value
  1412. # @see CustomDataTypes and CustomDataKeys
  1413. @abstractmethod
  1414. def set_custom_data(self, pluginId, type_, key, value):
  1415. raise NotImplementedError
  1416. # Set a plugin's chunk data.
  1417. # @param pluginId Plugin
  1418. # @param chunkData New chunk data
  1419. # @see PLUGIN_OPTION_USE_CHUNKS and carla_get_chunk_data()
  1420. @abstractmethod
  1421. def set_chunk_data(self, pluginId, chunkData):
  1422. raise NotImplementedError
  1423. # Tell a plugin to prepare for save.
  1424. # This should be called before saving custom data sets.
  1425. # @param pluginId Plugin
  1426. @abstractmethod
  1427. def prepare_for_save(self, pluginId):
  1428. raise NotImplementedError
  1429. # Reset all plugin's parameters.
  1430. # @param pluginId Plugin
  1431. @abstractmethod
  1432. def reset_parameters(self, pluginId):
  1433. raise NotImplementedError
  1434. # Randomize all plugin's parameters.
  1435. # @param pluginId Plugin
  1436. @abstractmethod
  1437. def randomize_parameters(self, pluginId):
  1438. raise NotImplementedError
  1439. # Send a single note of a plugin.
  1440. # If velocity is 0, note-off is sent; note-on otherwise.
  1441. # @param pluginId Plugin
  1442. # @param channel Note channel
  1443. # @param note Note pitch
  1444. # @param velocity Note velocity
  1445. @abstractmethod
  1446. def send_midi_note(self, pluginId, channel, note, velocity):
  1447. raise NotImplementedError
  1448. # Tell a plugin to show its own custom UI.
  1449. # @param pluginId Plugin
  1450. # @param yesNo New UI state, visible or not
  1451. # @see PLUGIN_HAS_CUSTOM_UI
  1452. @abstractmethod
  1453. def show_custom_ui(self, pluginId, yesNo):
  1454. raise NotImplementedError
  1455. # Get the current engine buffer size.
  1456. @abstractmethod
  1457. def get_buffer_size(self):
  1458. raise NotImplementedError
  1459. # Get the current engine sample rate.
  1460. @abstractmethod
  1461. def get_sample_rate(self):
  1462. raise NotImplementedError
  1463. # Get the last error.
  1464. @abstractmethod
  1465. def get_last_error(self):
  1466. raise NotImplementedError
  1467. # Get the current engine OSC URL (TCP).
  1468. @abstractmethod
  1469. def get_host_osc_url_tcp(self):
  1470. raise NotImplementedError
  1471. # Get the current engine OSC URL (UDP).
  1472. @abstractmethod
  1473. def get_host_osc_url_udp(self):
  1474. raise NotImplementedError
  1475. # ------------------------------------------------------------------------------------------------------------
  1476. # Carla Host object (dummy/null, does nothing)
  1477. class CarlaHostNull(CarlaHostMeta):
  1478. def __init__(self):
  1479. CarlaHostMeta.__init__(self)
  1480. self.fEngineCallback = None
  1481. self.fEngineRunning = False
  1482. def get_engine_driver_count(self):
  1483. return 0
  1484. def get_engine_driver_name(self, index):
  1485. return ""
  1486. def get_engine_driver_device_names(self, index):
  1487. return []
  1488. def get_engine_driver_device_info(self, index, name):
  1489. return PyEngineDriverDeviceInfo
  1490. def engine_init(self, driverName, clientName):
  1491. self.fEngineRunning = True
  1492. if self.fEngineCallback is not None:
  1493. self.fEngineCallback(None, ENGINE_CALLBACK_ENGINE_STARTED, 0, self.processMode, self.transportMode, 0.0, driverName)
  1494. return True
  1495. def engine_close(self):
  1496. self.fEngineRunning = False
  1497. if self.fEngineCallback is not None:
  1498. self.fEngineCallback(None, ENGINE_CALLBACK_ENGINE_STOPPED, 0, 0, 0, 0.0, "")
  1499. return True
  1500. def engine_idle(self):
  1501. return
  1502. def is_engine_running(self):
  1503. return False
  1504. def set_engine_about_to_close(self):
  1505. return True
  1506. def set_engine_callback(self, func):
  1507. self.fEngineCallback = func
  1508. def set_engine_option(self, option, value, valueStr):
  1509. return
  1510. def set_file_callback(self, func):
  1511. return
  1512. def load_file(self, filename):
  1513. return False
  1514. def load_project(self, filename):
  1515. return False
  1516. def save_project(self, filename):
  1517. return False
  1518. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  1519. return False
  1520. def patchbay_disconnect(self, connectionId):
  1521. return False
  1522. def patchbay_refresh(self, external):
  1523. return False
  1524. def transport_play(self):
  1525. return
  1526. def transport_pause(self):
  1527. return
  1528. def transport_relocate(self, frame):
  1529. return
  1530. def get_current_transport_frame(self):
  1531. return 0
  1532. def get_transport_info(self):
  1533. return PyCarlaTransportInfo
  1534. def get_current_plugin_count(self):
  1535. return 0
  1536. def get_max_plugin_number(self):
  1537. return 0
  1538. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr, options):
  1539. return False
  1540. def remove_plugin(self, pluginId):
  1541. return False
  1542. def remove_all_plugins(self):
  1543. return False
  1544. def rename_plugin(self, pluginId, newName):
  1545. return ""
  1546. def clone_plugin(self, pluginId):
  1547. return False
  1548. def replace_plugin(self, pluginId):
  1549. return False
  1550. def switch_plugins(self, pluginIdA, pluginIdB):
  1551. return False
  1552. def load_plugin_state(self, pluginId, filename):
  1553. return False
  1554. def save_plugin_state(self, pluginId, filename):
  1555. return False
  1556. def export_plugin_lv2(self, pluginId, lv2path):
  1557. return False
  1558. def get_plugin_info(self, pluginId):
  1559. return PyCarlaPluginInfo
  1560. def get_audio_port_count_info(self, pluginId):
  1561. return PyCarlaPortCountInfo
  1562. def get_midi_port_count_info(self, pluginId):
  1563. return PyCarlaPortCountInfo
  1564. def get_parameter_count_info(self, pluginId):
  1565. return PyCarlaPortCountInfo
  1566. def get_parameter_info(self, pluginId, parameterId):
  1567. return PyCarlaParameterInfo
  1568. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  1569. return PyCarlaScalePointInfo
  1570. def get_parameter_data(self, pluginId, parameterId):
  1571. return PyParameterData
  1572. def get_parameter_ranges(self, pluginId, parameterId):
  1573. return PyParameterRanges
  1574. def get_midi_program_data(self, pluginId, midiProgramId):
  1575. return PyMidiProgramData
  1576. def get_custom_data(self, pluginId, customDataId):
  1577. return PyCustomData
  1578. def get_chunk_data(self, pluginId):
  1579. return ""
  1580. def get_parameter_count(self, pluginId):
  1581. return 0
  1582. def get_program_count(self, pluginId):
  1583. return 0
  1584. def get_midi_program_count(self, pluginId):
  1585. return 0
  1586. def get_custom_data_count(self, pluginId):
  1587. return 0
  1588. def get_parameter_text(self, pluginId, parameterId):
  1589. return ""
  1590. def get_program_name(self, pluginId, programId):
  1591. return ""
  1592. def get_midi_program_name(self, pluginId, midiProgramId):
  1593. return ""
  1594. def get_real_plugin_name(self, pluginId):
  1595. return ""
  1596. def get_current_program_index(self, pluginId):
  1597. return 0
  1598. def get_current_midi_program_index(self, pluginId):
  1599. return 0
  1600. def get_default_parameter_value(self, pluginId, parameterId):
  1601. return 0.0
  1602. def get_current_parameter_value(self, pluginId, parameterId):
  1603. return 0.0
  1604. def get_internal_parameter_value(self, pluginId, parameterId):
  1605. return 0.0
  1606. def get_input_peak_value(self, pluginId, isLeft):
  1607. return 0.0
  1608. def get_output_peak_value(self, pluginId, isLeft):
  1609. return 0.0
  1610. def render_inline_display(self, pluginId, width, height):
  1611. return None
  1612. def set_option(self, pluginId, option, yesNo):
  1613. return
  1614. def set_active(self, pluginId, onOff):
  1615. return
  1616. def set_drywet(self, pluginId, value):
  1617. return
  1618. def set_volume(self, pluginId, value):
  1619. return
  1620. def set_balance_left(self, pluginId, value):
  1621. return
  1622. def set_balance_right(self, pluginId, value):
  1623. return
  1624. def set_panning(self, pluginId, value):
  1625. return
  1626. def set_ctrl_channel(self, pluginId, channel):
  1627. return
  1628. def set_parameter_value(self, pluginId, parameterId, value):
  1629. return
  1630. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  1631. return
  1632. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  1633. return
  1634. def set_program(self, pluginId, programId):
  1635. return
  1636. def set_midi_program(self, pluginId, midiProgramId):
  1637. return
  1638. def set_custom_data(self, pluginId, type_, key, value):
  1639. return
  1640. def set_chunk_data(self, pluginId, chunkData):
  1641. return
  1642. def prepare_for_save(self, pluginId):
  1643. return
  1644. def reset_parameters(self, pluginId):
  1645. return
  1646. def randomize_parameters(self, pluginId):
  1647. return
  1648. def send_midi_note(self, pluginId, channel, note, velocity):
  1649. return
  1650. def show_custom_ui(self, pluginId, yesNo):
  1651. return
  1652. def get_buffer_size(self):
  1653. return 0
  1654. def get_sample_rate(self):
  1655. return 0.0
  1656. def get_last_error(self):
  1657. return ""
  1658. def get_host_osc_url_tcp(self):
  1659. return ""
  1660. def get_host_osc_url_udp(self):
  1661. return ""
  1662. def nsm_init(self, pid, executableName):
  1663. return False
  1664. def nsm_ready(self, action):
  1665. return
  1666. # ------------------------------------------------------------------------------------------------------------
  1667. # Carla Host object using a DLL
  1668. class CarlaHostDLL(CarlaHostMeta):
  1669. def __init__(self, libName, loadGlobal):
  1670. CarlaHostMeta.__init__(self)
  1671. # info about this host object
  1672. self.isPlugin = False
  1673. self.lib = CDLL(libName, RTLD_GLOBAL if loadGlobal else RTLD_LOCAL)
  1674. self.lib.carla_get_engine_driver_count.argtypes = None
  1675. self.lib.carla_get_engine_driver_count.restype = c_uint
  1676. self.lib.carla_get_engine_driver_name.argtypes = [c_uint]
  1677. self.lib.carla_get_engine_driver_name.restype = c_char_p
  1678. self.lib.carla_get_engine_driver_device_names.argtypes = [c_uint]
  1679. self.lib.carla_get_engine_driver_device_names.restype = POINTER(c_char_p)
  1680. self.lib.carla_get_engine_driver_device_info.argtypes = [c_uint, c_char_p]
  1681. self.lib.carla_get_engine_driver_device_info.restype = POINTER(EngineDriverDeviceInfo)
  1682. self.lib.carla_engine_init.argtypes = [c_char_p, c_char_p]
  1683. self.lib.carla_engine_init.restype = c_bool
  1684. self.lib.carla_engine_close.argtypes = None
  1685. self.lib.carla_engine_close.restype = c_bool
  1686. self.lib.carla_engine_idle.argtypes = None
  1687. self.lib.carla_engine_idle.restype = None
  1688. self.lib.carla_is_engine_running.argtypes = None
  1689. self.lib.carla_is_engine_running.restype = c_bool
  1690. self.lib.carla_set_engine_about_to_close.argtypes = None
  1691. self.lib.carla_set_engine_about_to_close.restype = c_bool
  1692. self.lib.carla_set_engine_callback.argtypes = [EngineCallbackFunc, c_void_p]
  1693. self.lib.carla_set_engine_callback.restype = None
  1694. self.lib.carla_set_engine_option.argtypes = [c_enum, c_int, c_char_p]
  1695. self.lib.carla_set_engine_option.restype = None
  1696. self.lib.carla_set_file_callback.argtypes = [FileCallbackFunc, c_void_p]
  1697. self.lib.carla_set_file_callback.restype = None
  1698. self.lib.carla_load_file.argtypes = [c_char_p]
  1699. self.lib.carla_load_file.restype = c_bool
  1700. self.lib.carla_load_project.argtypes = [c_char_p]
  1701. self.lib.carla_load_project.restype = c_bool
  1702. self.lib.carla_save_project.argtypes = [c_char_p]
  1703. self.lib.carla_save_project.restype = c_bool
  1704. self.lib.carla_patchbay_connect.argtypes = [c_uint, c_uint, c_uint, c_uint]
  1705. self.lib.carla_patchbay_connect.restype = c_bool
  1706. self.lib.carla_patchbay_disconnect.argtypes = [c_uint]
  1707. self.lib.carla_patchbay_disconnect.restype = c_bool
  1708. self.lib.carla_patchbay_refresh.argtypes = [c_bool]
  1709. self.lib.carla_patchbay_refresh.restype = c_bool
  1710. self.lib.carla_transport_play.argtypes = None
  1711. self.lib.carla_transport_play.restype = None
  1712. self.lib.carla_transport_pause.argtypes = None
  1713. self.lib.carla_transport_pause.restype = None
  1714. self.lib.carla_transport_relocate.argtypes = [c_uint64]
  1715. self.lib.carla_transport_relocate.restype = None
  1716. self.lib.carla_get_current_transport_frame.argtypes = None
  1717. self.lib.carla_get_current_transport_frame.restype = c_uint64
  1718. self.lib.carla_get_transport_info.argtypes = None
  1719. self.lib.carla_get_transport_info.restype = POINTER(CarlaTransportInfo)
  1720. self.lib.carla_get_current_plugin_count.argtypes = None
  1721. self.lib.carla_get_current_plugin_count.restype = c_uint32
  1722. self.lib.carla_get_max_plugin_number.argtypes = None
  1723. self.lib.carla_get_max_plugin_number.restype = c_uint32
  1724. 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]
  1725. self.lib.carla_add_plugin.restype = c_bool
  1726. self.lib.carla_remove_plugin.argtypes = [c_uint]
  1727. self.lib.carla_remove_plugin.restype = c_bool
  1728. self.lib.carla_remove_all_plugins.argtypes = None
  1729. self.lib.carla_remove_all_plugins.restype = c_bool
  1730. self.lib.carla_rename_plugin.argtypes = [c_uint, c_char_p]
  1731. self.lib.carla_rename_plugin.restype = c_char_p
  1732. self.lib.carla_clone_plugin.argtypes = [c_uint]
  1733. self.lib.carla_clone_plugin.restype = c_bool
  1734. self.lib.carla_replace_plugin.argtypes = [c_uint]
  1735. self.lib.carla_replace_plugin.restype = c_bool
  1736. self.lib.carla_switch_plugins.argtypes = [c_uint, c_uint]
  1737. self.lib.carla_switch_plugins.restype = c_bool
  1738. self.lib.carla_load_plugin_state.argtypes = [c_uint, c_char_p]
  1739. self.lib.carla_load_plugin_state.restype = c_bool
  1740. self.lib.carla_save_plugin_state.argtypes = [c_uint, c_char_p]
  1741. self.lib.carla_save_plugin_state.restype = c_bool
  1742. self.lib.carla_export_plugin_lv2.argtypes = [c_uint, c_char_p]
  1743. self.lib.carla_export_plugin_lv2.restype = c_bool
  1744. self.lib.carla_get_plugin_info.argtypes = [c_uint]
  1745. self.lib.carla_get_plugin_info.restype = POINTER(CarlaPluginInfo)
  1746. self.lib.carla_get_audio_port_count_info.argtypes = [c_uint]
  1747. self.lib.carla_get_audio_port_count_info.restype = POINTER(CarlaPortCountInfo)
  1748. self.lib.carla_get_midi_port_count_info.argtypes = [c_uint]
  1749. self.lib.carla_get_midi_port_count_info.restype = POINTER(CarlaPortCountInfo)
  1750. self.lib.carla_get_parameter_count_info.argtypes = [c_uint]
  1751. self.lib.carla_get_parameter_count_info.restype = POINTER(CarlaPortCountInfo)
  1752. self.lib.carla_get_parameter_info.argtypes = [c_uint, c_uint32]
  1753. self.lib.carla_get_parameter_info.restype = POINTER(CarlaParameterInfo)
  1754. self.lib.carla_get_parameter_scalepoint_info.argtypes = [c_uint, c_uint32, c_uint32]
  1755. self.lib.carla_get_parameter_scalepoint_info.restype = POINTER(CarlaScalePointInfo)
  1756. self.lib.carla_get_parameter_data.argtypes = [c_uint, c_uint32]
  1757. self.lib.carla_get_parameter_data.restype = POINTER(ParameterData)
  1758. self.lib.carla_get_parameter_ranges.argtypes = [c_uint, c_uint32]
  1759. self.lib.carla_get_parameter_ranges.restype = POINTER(ParameterRanges)
  1760. self.lib.carla_get_midi_program_data.argtypes = [c_uint, c_uint32]
  1761. self.lib.carla_get_midi_program_data.restype = POINTER(MidiProgramData)
  1762. self.lib.carla_get_custom_data.argtypes = [c_uint, c_uint32]
  1763. self.lib.carla_get_custom_data.restype = POINTER(CustomData)
  1764. self.lib.carla_get_chunk_data.argtypes = [c_uint]
  1765. self.lib.carla_get_chunk_data.restype = c_char_p
  1766. self.lib.carla_get_parameter_count.argtypes = [c_uint]
  1767. self.lib.carla_get_parameter_count.restype = c_uint32
  1768. self.lib.carla_get_program_count.argtypes = [c_uint]
  1769. self.lib.carla_get_program_count.restype = c_uint32
  1770. self.lib.carla_get_midi_program_count.argtypes = [c_uint]
  1771. self.lib.carla_get_midi_program_count.restype = c_uint32
  1772. self.lib.carla_get_custom_data_count.argtypes = [c_uint]
  1773. self.lib.carla_get_custom_data_count.restype = c_uint32
  1774. self.lib.carla_get_parameter_text.argtypes = [c_uint, c_uint32]
  1775. self.lib.carla_get_parameter_text.restype = c_char_p
  1776. self.lib.carla_get_program_name.argtypes = [c_uint, c_uint32]
  1777. self.lib.carla_get_program_name.restype = c_char_p
  1778. self.lib.carla_get_midi_program_name.argtypes = [c_uint, c_uint32]
  1779. self.lib.carla_get_midi_program_name.restype = c_char_p
  1780. self.lib.carla_get_real_plugin_name.argtypes = [c_uint]
  1781. self.lib.carla_get_real_plugin_name.restype = c_char_p
  1782. self.lib.carla_get_current_program_index.argtypes = [c_uint]
  1783. self.lib.carla_get_current_program_index.restype = c_int32
  1784. self.lib.carla_get_current_midi_program_index.argtypes = [c_uint]
  1785. self.lib.carla_get_current_midi_program_index.restype = c_int32
  1786. self.lib.carla_get_default_parameter_value.argtypes = [c_uint, c_uint32]
  1787. self.lib.carla_get_default_parameter_value.restype = c_float
  1788. self.lib.carla_get_current_parameter_value.argtypes = [c_uint, c_uint32]
  1789. self.lib.carla_get_current_parameter_value.restype = c_float
  1790. self.lib.carla_get_internal_parameter_value.argtypes = [c_uint, c_int32]
  1791. self.lib.carla_get_internal_parameter_value.restype = c_float
  1792. self.lib.carla_get_input_peak_value.argtypes = [c_uint, c_bool]
  1793. self.lib.carla_get_input_peak_value.restype = c_float
  1794. self.lib.carla_get_output_peak_value.argtypes = [c_uint, c_bool]
  1795. self.lib.carla_get_output_peak_value.restype = c_float
  1796. self.lib.carla_render_inline_display.argtypes = [c_uint, c_uint, c_uint]
  1797. self.lib.carla_render_inline_display.restype = POINTER(CarlaInlineDisplayImageSurface)
  1798. self.lib.carla_set_option.argtypes = [c_uint, c_uint, c_bool]
  1799. self.lib.carla_set_option.restype = None
  1800. self.lib.carla_set_active.argtypes = [c_uint, c_bool]
  1801. self.lib.carla_set_active.restype = None
  1802. self.lib.carla_set_drywet.argtypes = [c_uint, c_float]
  1803. self.lib.carla_set_drywet.restype = None
  1804. self.lib.carla_set_volume.argtypes = [c_uint, c_float]
  1805. self.lib.carla_set_volume.restype = None
  1806. self.lib.carla_set_balance_left.argtypes = [c_uint, c_float]
  1807. self.lib.carla_set_balance_left.restype = None
  1808. self.lib.carla_set_balance_right.argtypes = [c_uint, c_float]
  1809. self.lib.carla_set_balance_right.restype = None
  1810. self.lib.carla_set_panning.argtypes = [c_uint, c_float]
  1811. self.lib.carla_set_panning.restype = None
  1812. self.lib.carla_set_ctrl_channel.argtypes = [c_uint, c_int8]
  1813. self.lib.carla_set_ctrl_channel.restype = None
  1814. self.lib.carla_set_parameter_value.argtypes = [c_uint, c_uint32, c_float]
  1815. self.lib.carla_set_parameter_value.restype = None
  1816. self.lib.carla_set_parameter_midi_channel.argtypes = [c_uint, c_uint32, c_uint8]
  1817. self.lib.carla_set_parameter_midi_channel.restype = None
  1818. self.lib.carla_set_parameter_midi_cc.argtypes = [c_uint, c_uint32, c_int16]
  1819. self.lib.carla_set_parameter_midi_cc.restype = None
  1820. self.lib.carla_set_program.argtypes = [c_uint, c_uint32]
  1821. self.lib.carla_set_program.restype = None
  1822. self.lib.carla_set_midi_program.argtypes = [c_uint, c_uint32]
  1823. self.lib.carla_set_midi_program.restype = None
  1824. self.lib.carla_set_custom_data.argtypes = [c_uint, c_char_p, c_char_p, c_char_p]
  1825. self.lib.carla_set_custom_data.restype = None
  1826. self.lib.carla_set_chunk_data.argtypes = [c_uint, c_char_p]
  1827. self.lib.carla_set_chunk_data.restype = None
  1828. self.lib.carla_prepare_for_save.argtypes = [c_uint]
  1829. self.lib.carla_prepare_for_save.restype = None
  1830. self.lib.carla_reset_parameters.argtypes = [c_uint]
  1831. self.lib.carla_reset_parameters.restype = None
  1832. self.lib.carla_randomize_parameters.argtypes = [c_uint]
  1833. self.lib.carla_randomize_parameters.restype = None
  1834. self.lib.carla_send_midi_note.argtypes = [c_uint, c_uint8, c_uint8, c_uint8]
  1835. self.lib.carla_send_midi_note.restype = None
  1836. self.lib.carla_show_custom_ui.argtypes = [c_uint, c_bool]
  1837. self.lib.carla_show_custom_ui.restype = None
  1838. self.lib.carla_get_buffer_size.argtypes = None
  1839. self.lib.carla_get_buffer_size.restype = c_uint32
  1840. self.lib.carla_get_sample_rate.argtypes = None
  1841. self.lib.carla_get_sample_rate.restype = c_double
  1842. self.lib.carla_get_last_error.argtypes = None
  1843. self.lib.carla_get_last_error.restype = c_char_p
  1844. self.lib.carla_get_host_osc_url_tcp.argtypes = None
  1845. self.lib.carla_get_host_osc_url_tcp.restype = c_char_p
  1846. self.lib.carla_get_host_osc_url_udp.argtypes = None
  1847. self.lib.carla_get_host_osc_url_udp.restype = c_char_p
  1848. self.lib.carla_nsm_init.argtypes = [c_int, c_char_p]
  1849. self.lib.carla_nsm_init.restype = c_bool
  1850. self.lib.carla_nsm_ready.argtypes = [c_int]
  1851. self.lib.carla_nsm_ready.restype = None
  1852. # --------------------------------------------------------------------------------------------------------
  1853. def get_engine_driver_count(self):
  1854. return int(self.lib.carla_get_engine_driver_count())
  1855. def get_engine_driver_name(self, index):
  1856. return charPtrToString(self.lib.carla_get_engine_driver_name(index))
  1857. def get_engine_driver_device_names(self, index):
  1858. return charPtrPtrToStringList(self.lib.carla_get_engine_driver_device_names(index))
  1859. def get_engine_driver_device_info(self, index, name):
  1860. return structToDict(self.lib.carla_get_engine_driver_device_info(index, name.encode("utf-8")).contents)
  1861. def engine_init(self, driverName, clientName):
  1862. return bool(self.lib.carla_engine_init(driverName.encode("utf-8"), clientName.encode("utf-8")))
  1863. def engine_close(self):
  1864. return bool(self.lib.carla_engine_close())
  1865. def engine_idle(self):
  1866. self.lib.carla_engine_idle()
  1867. def is_engine_running(self):
  1868. return bool(self.lib.carla_is_engine_running())
  1869. def set_engine_about_to_close(self):
  1870. return bool(self.lib.carla_set_engine_about_to_close())
  1871. def set_engine_callback(self, func):
  1872. self._engineCallback = EngineCallbackFunc(func)
  1873. self.lib.carla_set_engine_callback(self._engineCallback, None)
  1874. def set_engine_option(self, option, value, valueStr):
  1875. self.lib.carla_set_engine_option(option, value, valueStr.encode("utf-8"))
  1876. def set_file_callback(self, func):
  1877. self._fileCallback = FileCallbackFunc(func)
  1878. self.lib.carla_set_file_callback(self._fileCallback, None)
  1879. def load_file(self, filename):
  1880. return bool(self.lib.carla_load_file(filename.encode("utf-8")))
  1881. def load_project(self, filename):
  1882. return bool(self.lib.carla_load_project(filename.encode("utf-8")))
  1883. def save_project(self, filename):
  1884. return bool(self.lib.carla_save_project(filename.encode("utf-8")))
  1885. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  1886. return bool(self.lib.carla_patchbay_connect(groupIdA, portIdA, groupIdB, portIdB))
  1887. def patchbay_disconnect(self, connectionId):
  1888. return bool(self.lib.carla_patchbay_disconnect(connectionId))
  1889. def patchbay_refresh(self, external):
  1890. return bool(self.lib.carla_patchbay_refresh(external))
  1891. def transport_play(self):
  1892. self.lib.carla_transport_play()
  1893. def transport_pause(self):
  1894. self.lib.carla_transport_pause()
  1895. def transport_relocate(self, frame):
  1896. self.lib.carla_transport_relocate(frame)
  1897. def get_current_transport_frame(self):
  1898. return int(self.lib.carla_get_current_transport_frame())
  1899. def get_transport_info(self):
  1900. return structToDict(self.lib.carla_get_transport_info().contents)
  1901. def get_current_plugin_count(self):
  1902. return int(self.lib.carla_get_current_plugin_count())
  1903. def get_max_plugin_number(self):
  1904. return int(self.lib.carla_get_max_plugin_number())
  1905. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr, options):
  1906. cfilename = filename.encode("utf-8") if filename else None
  1907. cname = name.encode("utf-8") if name else None
  1908. clabel = label.encode("utf-8") if label else None
  1909. return bool(self.lib.carla_add_plugin(btype, ptype, cfilename, cname, clabel, uniqueId, cast(extraPtr, c_void_p), options))
  1910. def remove_plugin(self, pluginId):
  1911. return bool(self.lib.carla_remove_plugin(pluginId))
  1912. def remove_all_plugins(self):
  1913. return bool(self.lib.carla_remove_all_plugins())
  1914. def rename_plugin(self, pluginId, newName):
  1915. return charPtrToString(self.lib.carla_rename_plugin(pluginId, newName.encode("utf-8")))
  1916. def clone_plugin(self, pluginId):
  1917. return bool(self.lib.carla_clone_plugin(pluginId))
  1918. def replace_plugin(self, pluginId):
  1919. return bool(self.lib.carla_replace_plugin(pluginId))
  1920. def switch_plugins(self, pluginIdA, pluginIdB):
  1921. return bool(self.lib.carla_switch_plugins(pluginIdA, pluginIdB))
  1922. def load_plugin_state(self, pluginId, filename):
  1923. return bool(self.lib.carla_load_plugin_state(pluginId, filename.encode("utf-8")))
  1924. def save_plugin_state(self, pluginId, filename):
  1925. return bool(self.lib.carla_save_plugin_state(pluginId, filename.encode("utf-8")))
  1926. def export_plugin_lv2(self, pluginId, lv2path):
  1927. return bool(self.lib.carla_export_plugin_lv2(pluginId, lv2path.encode("utf-8")))
  1928. def get_plugin_info(self, pluginId):
  1929. return structToDict(self.lib.carla_get_plugin_info(pluginId).contents)
  1930. def get_audio_port_count_info(self, pluginId):
  1931. return structToDict(self.lib.carla_get_audio_port_count_info(pluginId).contents)
  1932. def get_midi_port_count_info(self, pluginId):
  1933. return structToDict(self.lib.carla_get_midi_port_count_info(pluginId).contents)
  1934. def get_parameter_count_info(self, pluginId):
  1935. return structToDict(self.lib.carla_get_parameter_count_info(pluginId).contents)
  1936. def get_parameter_info(self, pluginId, parameterId):
  1937. return structToDict(self.lib.carla_get_parameter_info(pluginId, parameterId).contents)
  1938. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  1939. return structToDict(self.lib.carla_get_parameter_scalepoint_info(pluginId, parameterId, scalePointId).contents)
  1940. def get_parameter_data(self, pluginId, parameterId):
  1941. return structToDict(self.lib.carla_get_parameter_data(pluginId, parameterId).contents)
  1942. def get_parameter_ranges(self, pluginId, parameterId):
  1943. return structToDict(self.lib.carla_get_parameter_ranges(pluginId, parameterId).contents)
  1944. def get_midi_program_data(self, pluginId, midiProgramId):
  1945. return structToDict(self.lib.carla_get_midi_program_data(pluginId, midiProgramId).contents)
  1946. def get_custom_data(self, pluginId, customDataId):
  1947. return structToDict(self.lib.carla_get_custom_data(pluginId, customDataId).contents)
  1948. def get_chunk_data(self, pluginId):
  1949. return charPtrToString(self.lib.carla_get_chunk_data(pluginId))
  1950. def get_parameter_count(self, pluginId):
  1951. return int(self.lib.carla_get_parameter_count(pluginId))
  1952. def get_program_count(self, pluginId):
  1953. return int(self.lib.carla_get_program_count(pluginId))
  1954. def get_midi_program_count(self, pluginId):
  1955. return int(self.lib.carla_get_midi_program_count(pluginId))
  1956. def get_custom_data_count(self, pluginId):
  1957. return int(self.lib.carla_get_custom_data_count(pluginId))
  1958. def get_parameter_text(self, pluginId, parameterId):
  1959. return charPtrToString(self.lib.carla_get_parameter_text(pluginId, parameterId))
  1960. def get_program_name(self, pluginId, programId):
  1961. return charPtrToString(self.lib.carla_get_program_name(pluginId, programId))
  1962. def get_midi_program_name(self, pluginId, midiProgramId):
  1963. return charPtrToString(self.lib.carla_get_midi_program_name(pluginId, midiProgramId))
  1964. def get_real_plugin_name(self, pluginId):
  1965. return charPtrToString(self.lib.carla_get_real_plugin_name(pluginId))
  1966. def get_current_program_index(self, pluginId):
  1967. return int(self.lib.carla_get_current_program_index(pluginId))
  1968. def get_current_midi_program_index(self, pluginId):
  1969. return int(self.lib.carla_get_current_midi_program_index(pluginId))
  1970. def get_default_parameter_value(self, pluginId, parameterId):
  1971. return float(self.lib.carla_get_default_parameter_value(pluginId, parameterId))
  1972. def get_current_parameter_value(self, pluginId, parameterId):
  1973. return float(self.lib.carla_get_current_parameter_value(pluginId, parameterId))
  1974. def get_internal_parameter_value(self, pluginId, parameterId):
  1975. return float(self.lib.carla_get_internal_parameter_value(pluginId, parameterId))
  1976. def get_input_peak_value(self, pluginId, isLeft):
  1977. return float(self.lib.carla_get_input_peak_value(pluginId, isLeft))
  1978. def get_output_peak_value(self, pluginId, isLeft):
  1979. return float(self.lib.carla_get_output_peak_value(pluginId, isLeft))
  1980. def render_inline_display(self, pluginId, width, height):
  1981. return structToDict(self.lib.carla_render_inline_display(pluginId, width, height))
  1982. def set_option(self, pluginId, option, yesNo):
  1983. self.lib.carla_set_option(pluginId, option, yesNo)
  1984. def set_active(self, pluginId, onOff):
  1985. self.lib.carla_set_active(pluginId, onOff)
  1986. def set_drywet(self, pluginId, value):
  1987. self.lib.carla_set_drywet(pluginId, value)
  1988. def set_volume(self, pluginId, value):
  1989. self.lib.carla_set_volume(pluginId, value)
  1990. def set_balance_left(self, pluginId, value):
  1991. self.lib.carla_set_balance_left(pluginId, value)
  1992. def set_balance_right(self, pluginId, value):
  1993. self.lib.carla_set_balance_right(pluginId, value)
  1994. def set_panning(self, pluginId, value):
  1995. self.lib.carla_set_panning(pluginId, value)
  1996. def set_ctrl_channel(self, pluginId, channel):
  1997. self.lib.carla_set_ctrl_channel(pluginId, channel)
  1998. def set_parameter_value(self, pluginId, parameterId, value):
  1999. self.lib.carla_set_parameter_value(pluginId, parameterId, value)
  2000. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  2001. self.lib.carla_set_parameter_midi_channel(pluginId, parameterId, channel)
  2002. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  2003. self.lib.carla_set_parameter_midi_cc(pluginId, parameterId, cc)
  2004. def set_program(self, pluginId, programId):
  2005. self.lib.carla_set_program(pluginId, programId)
  2006. def set_midi_program(self, pluginId, midiProgramId):
  2007. self.lib.carla_set_midi_program(pluginId, midiProgramId)
  2008. def set_custom_data(self, pluginId, type_, key, value):
  2009. self.lib.carla_set_custom_data(pluginId, type_.encode("utf-8"), key.encode("utf-8"), value.encode("utf-8"))
  2010. def set_chunk_data(self, pluginId, chunkData):
  2011. self.lib.carla_set_chunk_data(pluginId, chunkData.encode("utf-8"))
  2012. def prepare_for_save(self, pluginId):
  2013. self.lib.carla_prepare_for_save(pluginId)
  2014. def reset_parameters(self, pluginId):
  2015. self.lib.carla_reset_parameters(pluginId)
  2016. def randomize_parameters(self, pluginId):
  2017. self.lib.carla_randomize_parameters(pluginId)
  2018. def send_midi_note(self, pluginId, channel, note, velocity):
  2019. self.lib.carla_send_midi_note(pluginId, channel, note, velocity)
  2020. def show_custom_ui(self, pluginId, yesNo):
  2021. self.lib.carla_show_custom_ui(pluginId, yesNo)
  2022. def get_buffer_size(self):
  2023. return int(self.lib.carla_get_buffer_size())
  2024. def get_sample_rate(self):
  2025. return float(self.lib.carla_get_sample_rate())
  2026. def get_last_error(self):
  2027. return charPtrToString(self.lib.carla_get_last_error())
  2028. def get_host_osc_url_tcp(self):
  2029. return charPtrToString(self.lib.carla_get_host_osc_url_tcp())
  2030. def get_host_osc_url_udp(self):
  2031. return charPtrToString(self.lib.carla_get_host_osc_url_udp())
  2032. def nsm_init(self, pid, executableName):
  2033. return bool(self.lib.carla_nsm_init(pid, executableName.encode("utf-8")))
  2034. def nsm_ready(self, action):
  2035. self.lib.carla_nsm_ready(action)
  2036. # ------------------------------------------------------------------------------------------------------------
  2037. # Helper object for CarlaHostPlugin
  2038. class PluginStoreInfo(object):
  2039. __slots__ = [
  2040. 'pluginInfo',
  2041. 'pluginRealName',
  2042. 'internalValues',
  2043. 'audioCountInfo',
  2044. 'midiCountInfo',
  2045. 'parameterCount',
  2046. 'parameterCountInfo',
  2047. 'parameterInfo',
  2048. 'parameterData',
  2049. 'parameterRanges',
  2050. 'parameterValues',
  2051. 'programCount',
  2052. 'programCurrent',
  2053. 'programNames',
  2054. 'midiProgramCount',
  2055. 'midiProgramCurrent',
  2056. 'midiProgramData',
  2057. 'customDataCount',
  2058. 'customData',
  2059. 'peaks'
  2060. ]
  2061. # ------------------------------------------------------------------------------------------------------------
  2062. # Carla Host object for plugins (using pipes)
  2063. class CarlaHostPlugin(CarlaHostMeta):
  2064. #class CarlaHostPlugin(CarlaHostMeta, metaclass=ABCMeta):
  2065. def __init__(self):
  2066. CarlaHostMeta.__init__(self)
  2067. # info about this host object
  2068. self.isPlugin = True
  2069. self.processModeForced = True
  2070. # text data to return when requested
  2071. self.fMaxPluginNumber = 0
  2072. self.fLastError = ""
  2073. # plugin info
  2074. self.fPluginsInfo = []
  2075. # transport info
  2076. self.fTransportInfo = {
  2077. "playing": False,
  2078. "frame": 0,
  2079. "bar": 0,
  2080. "beat": 0,
  2081. "tick": 0,
  2082. "bpm": 0.0
  2083. }
  2084. # some other vars
  2085. self.fBufferSize = 0
  2086. self.fSampleRate = 0.0
  2087. self.fOscTCP = ""
  2088. self.fOscUDP = ""
  2089. # --------------------------------------------------------------------------------------------------------
  2090. # Needs to be reimplemented
  2091. @abstractmethod
  2092. def sendMsg(self, lines):
  2093. raise NotImplementedError
  2094. # internal, sets error if sendMsg failed
  2095. def sendMsgAndSetError(self, lines):
  2096. if self.sendMsg(lines):
  2097. return True
  2098. self.fLastError = "Communication error with backend"
  2099. return False
  2100. # --------------------------------------------------------------------------------------------------------
  2101. def get_engine_driver_count(self):
  2102. return 1
  2103. def get_engine_driver_name(self, index):
  2104. return "Plugin"
  2105. def get_engine_driver_device_names(self, index):
  2106. return []
  2107. def get_engine_driver_device_info(self, index, name):
  2108. return PyEngineDriverDeviceInfo
  2109. def set_engine_callback(self, func):
  2110. return # TODO
  2111. def set_engine_option(self, option, value, valueStr):
  2112. self.sendMsg(["set_engine_option", option, int(value), valueStr])
  2113. def set_file_callback(self, func):
  2114. return # TODO
  2115. def load_file(self, filename):
  2116. return self.sendMsgAndSetError(["load_file", filename])
  2117. def load_project(self, filename):
  2118. return self.sendMsgAndSetError(["load_project", filename])
  2119. def save_project(self, filename):
  2120. return self.sendMsgAndSetError(["save_project", filename])
  2121. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  2122. return self.sendMsgAndSetError(["patchbay_connect", groupIdA, portIdA, groupIdB, portIdB])
  2123. def patchbay_disconnect(self, connectionId):
  2124. return self.sendMsgAndSetError(["patchbay_disconnect", connectionId])
  2125. def patchbay_refresh(self, external):
  2126. # don't send external param, never used in plugins
  2127. return self.sendMsgAndSetError(["patchbay_refresh"])
  2128. def transport_play(self):
  2129. self.sendMsg(["transport_play"])
  2130. def transport_pause(self):
  2131. self.sendMsg(["transport_pause"])
  2132. def transport_relocate(self, frame):
  2133. self.sendMsg(["transport_relocate"])
  2134. def get_current_transport_frame(self):
  2135. return self.fTransportInfo['frame']
  2136. def get_transport_info(self):
  2137. return self.fTransportInfo
  2138. def get_current_plugin_count(self):
  2139. return len(self.fPluginsInfo)
  2140. def get_max_plugin_number(self):
  2141. return self.fMaxPluginNumber
  2142. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr, options):
  2143. return self.sendMsgAndSetError(["add_plugin", btype, ptype, filename, name, label, uniqueId, options])
  2144. def remove_plugin(self, pluginId):
  2145. return self.sendMsgAndSetError(["remove_plugin", pluginId])
  2146. def remove_all_plugins(self):
  2147. return self.sendMsgAndSetError(["remove_all_plugins"])
  2148. def rename_plugin(self, pluginId, newName):
  2149. if self.sendMsg(["rename_plugin", pluginId, newName]):
  2150. return newName
  2151. self.fLastError = "Communication error with backend"
  2152. return ""
  2153. def clone_plugin(self, pluginId):
  2154. return self.sendMsgAndSetError(["clone_plugin", pluginId])
  2155. def replace_plugin(self, pluginId):
  2156. return self.sendMsgAndSetError(["replace_plugin", pluginId])
  2157. def switch_plugins(self, pluginIdA, pluginIdB):
  2158. return self.sendMsgAndSetError(["switch_plugins", pluginIdA, pluginIdB])
  2159. def load_plugin_state(self, pluginId, filename):
  2160. return self.sendMsgAndSetError(["load_plugin_state", pluginId, filename])
  2161. def save_plugin_state(self, pluginId, filename):
  2162. return self.sendMsgAndSetError(["save_plugin_state", pluginId, filename])
  2163. def export_plugin_lv2(self, pluginId, lv2path):
  2164. self.fLastError = "Operation unavailable in plugin version"
  2165. return False
  2166. def get_plugin_info(self, pluginId):
  2167. return self.fPluginsInfo[pluginId].pluginInfo
  2168. def get_audio_port_count_info(self, pluginId):
  2169. return self.fPluginsInfo[pluginId].audioCountInfo
  2170. def get_midi_port_count_info(self, pluginId):
  2171. return self.fPluginsInfo[pluginId].midiCountInfo
  2172. def get_parameter_count_info(self, pluginId):
  2173. return self.fPluginsInfo[pluginId].parameterCountInfo
  2174. def get_parameter_info(self, pluginId, parameterId):
  2175. return self.fPluginsInfo[pluginId].parameterInfo[parameterId]
  2176. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  2177. return PyCarlaScalePointInfo
  2178. def get_parameter_data(self, pluginId, parameterId):
  2179. return self.fPluginsInfo[pluginId].parameterData[parameterId]
  2180. def get_parameter_ranges(self, pluginId, parameterId):
  2181. return self.fPluginsInfo[pluginId].parameterRanges[parameterId]
  2182. def get_midi_program_data(self, pluginId, midiProgramId):
  2183. return self.fPluginsInfo[pluginId].midiProgramData[midiProgramId]
  2184. def get_custom_data(self, pluginId, customDataId):
  2185. return self.fPluginsInfo[pluginId].customData[customDataId]
  2186. def get_chunk_data(self, pluginId):
  2187. return ""
  2188. def get_parameter_count(self, pluginId):
  2189. return self.fPluginsInfo[pluginId].parameterCount
  2190. def get_program_count(self, pluginId):
  2191. return self.fPluginsInfo[pluginId].programCount
  2192. def get_midi_program_count(self, pluginId):
  2193. return self.fPluginsInfo[pluginId].midiProgramCount
  2194. def get_custom_data_count(self, pluginId):
  2195. return self.fPluginsInfo[pluginId].customDataCount
  2196. def get_parameter_text(self, pluginId, parameterId):
  2197. return ""
  2198. def get_program_name(self, pluginId, programId):
  2199. return self.fPluginsInfo[pluginId].programNames[programId]
  2200. def get_midi_program_name(self, pluginId, midiProgramId):
  2201. return self.fPluginsInfo[pluginId].midiProgramData[midiProgramId]['label']
  2202. def get_real_plugin_name(self, pluginId):
  2203. return self.fPluginsInfo[pluginId].pluginRealName
  2204. def get_current_program_index(self, pluginId):
  2205. return self.fPluginsInfo[pluginId].programCurrent
  2206. def get_current_midi_program_index(self, pluginId):
  2207. return self.fPluginsInfo[pluginId].midiProgramCurrent
  2208. def get_default_parameter_value(self, pluginId, parameterId):
  2209. return self.fPluginsInfo[pluginId].parameterRanges[parameterId]['def']
  2210. def get_current_parameter_value(self, pluginId, parameterId):
  2211. return self.fPluginsInfo[pluginId].parameterValues[parameterId]
  2212. def get_internal_parameter_value(self, pluginId, parameterId):
  2213. if parameterId == PARAMETER_NULL or parameterId <= PARAMETER_MAX:
  2214. return 0.0
  2215. if parameterId < 0:
  2216. return self.fPluginsInfo[pluginId].internalValues[abs(parameterId)-2]
  2217. return self.fPluginsInfo[pluginId].parameterValues[parameterId]
  2218. def get_input_peak_value(self, pluginId, isLeft):
  2219. return self.fPluginsInfo[pluginId].peaks[0 if isLeft else 1]
  2220. def get_output_peak_value(self, pluginId, isLeft):
  2221. return self.fPluginsInfo[pluginId].peaks[2 if isLeft else 3]
  2222. def render_inline_display(self, pluginId, width, height):
  2223. return None
  2224. def set_option(self, pluginId, option, yesNo):
  2225. self.sendMsg(["set_option", pluginId, option, yesNo])
  2226. def set_active(self, pluginId, onOff):
  2227. self.sendMsg(["set_active", pluginId, onOff])
  2228. self.fPluginsInfo[pluginId].internalValues[0] = 1.0 if onOff else 0.0
  2229. def set_drywet(self, pluginId, value):
  2230. self.sendMsg(["set_drywet", pluginId, value])
  2231. self.fPluginsInfo[pluginId].internalValues[1] = value
  2232. def set_volume(self, pluginId, value):
  2233. self.sendMsg(["set_volume", pluginId, value])
  2234. self.fPluginsInfo[pluginId].internalValues[2] = value
  2235. def set_balance_left(self, pluginId, value):
  2236. self.sendMsg(["set_balance_left", pluginId, value])
  2237. self.fPluginsInfo[pluginId].internalValues[3] = value
  2238. def set_balance_right(self, pluginId, value):
  2239. self.sendMsg(["set_balance_right", pluginId, value])
  2240. self.fPluginsInfo[pluginId].internalValues[4] = value
  2241. def set_panning(self, pluginId, value):
  2242. self.sendMsg(["set_panning", pluginId, value])
  2243. self.fPluginsInfo[pluginId].internalValues[5] = value
  2244. def set_ctrl_channel(self, pluginId, channel):
  2245. self.sendMsg(["set_ctrl_channel", pluginId, channel])
  2246. self.fPluginsInfo[pluginId].internalValues[6] = float(channel)
  2247. def set_parameter_value(self, pluginId, parameterId, value):
  2248. self.sendMsg(["set_parameter_value", pluginId, parameterId, value])
  2249. self.fPluginsInfo[pluginId].parameterValues[parameterId] = value
  2250. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  2251. self.sendMsg(["set_parameter_midi_channel", pluginId, parameterId, channel])
  2252. self.fPluginsInfo[pluginId].parameterData[parameterId]['midiCC'] = channel
  2253. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  2254. self.sendMsg(["set_parameter_midi_cc", pluginId, parameterId, cc])
  2255. self.fPluginsInfo[pluginId].parameterData[parameterId]['midiCC'] = cc
  2256. def set_program(self, pluginId, programId):
  2257. self.sendMsg(["set_program", pluginId, programId])
  2258. self.fPluginsInfo[pluginId].programCurrent = programId
  2259. def set_midi_program(self, pluginId, midiProgramId):
  2260. self.sendMsg(["set_midi_program", pluginId, midiProgramId])
  2261. self.fPluginsInfo[pluginId].midiProgramCurrent = midiProgramId
  2262. def set_custom_data(self, pluginId, type_, key, value):
  2263. self.sendMsg(["set_custom_data", pluginId, type_, key, value])
  2264. for cdata in self.fPluginsInfo[pluginId].customData:
  2265. if cdata['type'] != type_:
  2266. continue
  2267. if cdata['key'] != key:
  2268. continue
  2269. cdata['value'] = value
  2270. break
  2271. def set_chunk_data(self, pluginId, chunkData):
  2272. self.sendMsg(["set_chunk_data", pluginId, chunkData])
  2273. def prepare_for_save(self, pluginId):
  2274. self.sendMsg(["prepare_for_save", pluginId])
  2275. def reset_parameters(self, pluginId):
  2276. self.sendMsg(["reset_parameters", pluginId])
  2277. def randomize_parameters(self, pluginId):
  2278. self.sendMsg(["randomize_parameters", pluginId])
  2279. def send_midi_note(self, pluginId, channel, note, velocity):
  2280. self.sendMsg(["send_midi_note", pluginId, channel, note, velocity])
  2281. def show_custom_ui(self, pluginId, yesNo):
  2282. self.sendMsg(["show_custom_ui", pluginId, yesNo])
  2283. def get_buffer_size(self):
  2284. return self.fBufferSize
  2285. def get_sample_rate(self):
  2286. return self.fSampleRate
  2287. def get_last_error(self):
  2288. return self.fLastError
  2289. def get_host_osc_url_tcp(self):
  2290. return self.fOscTCP
  2291. def get_host_osc_url_udp(self):
  2292. return self.fOscUDP
  2293. # --------------------------------------------------------------------------------------------------------
  2294. def _set_transport(self, playing, frame, bar, beat, tick, bpm):
  2295. self.fTransportInfo = {
  2296. "playing": playing,
  2297. "frame": frame,
  2298. "bar": bar,
  2299. "beat": beat,
  2300. "tick": tick,
  2301. "bpm": bpm
  2302. }
  2303. def _add(self, pluginId):
  2304. if len(self.fPluginsInfo) != pluginId:
  2305. self._reset_info(self.fPluginsInfo[pluginId])
  2306. return
  2307. info = PluginStoreInfo()
  2308. self._reset_info(info)
  2309. self.fPluginsInfo.append(info)
  2310. def _reset_info(self, info):
  2311. info.pluginInfo = PyCarlaPluginInfo.copy()
  2312. info.pluginRealName = ""
  2313. info.internalValues = [0.0, 1.0, 1.0, -1.0, 1.0, 0.0, -1.0]
  2314. info.audioCountInfo = PyCarlaPortCountInfo.copy()
  2315. info.midiCountInfo = PyCarlaPortCountInfo.copy()
  2316. info.parameterCount = 0
  2317. info.parameterCountInfo = PyCarlaPortCountInfo.copy()
  2318. info.parameterInfo = []
  2319. info.parameterData = []
  2320. info.parameterRanges = []
  2321. info.parameterValues = []
  2322. info.programCount = 0
  2323. info.programCurrent = -1
  2324. info.programNames = []
  2325. info.midiProgramCount = 0
  2326. info.midiProgramCurrent = -1
  2327. info.midiProgramData = []
  2328. info.customDataCount = 0
  2329. info.customData = []
  2330. info.peaks = [0.0, 0.0, 0.0, 0.0]
  2331. def _set_pluginInfo(self, pluginId, info):
  2332. self.fPluginsInfo[pluginId].pluginInfo = info
  2333. def _set_pluginInfoUpdate(self, pluginId, info):
  2334. self.fPluginsInfo[pluginId].pluginInfo.update(info)
  2335. def _set_pluginName(self, pluginId, name):
  2336. self.fPluginsInfo[pluginId].pluginInfo['name'] = name
  2337. def _set_pluginRealName(self, pluginId, realName):
  2338. self.fPluginsInfo[pluginId].pluginRealName = realName
  2339. def _set_internalValue(self, pluginId, paramIndex, value):
  2340. if pluginId < len(self.fPluginsInfo) and PARAMETER_NULL > paramIndex > PARAMETER_MAX:
  2341. self.fPluginsInfo[pluginId].internalValues[abs(paramIndex)-2] = float(value)
  2342. def _set_audioCountInfo(self, pluginId, info):
  2343. self.fPluginsInfo[pluginId].audioCountInfo = info
  2344. def _set_midiCountInfo(self, pluginId, info):
  2345. self.fPluginsInfo[pluginId].midiCountInfo = info
  2346. def _set_parameterCountInfo(self, pluginId, count, info):
  2347. self.fPluginsInfo[pluginId].parameterCount = count
  2348. self.fPluginsInfo[pluginId].parameterCountInfo = info
  2349. # clear
  2350. self.fPluginsInfo[pluginId].parameterInfo = []
  2351. self.fPluginsInfo[pluginId].parameterData = []
  2352. self.fPluginsInfo[pluginId].parameterRanges = []
  2353. self.fPluginsInfo[pluginId].parameterValues = []
  2354. # add placeholders
  2355. for x in range(count):
  2356. self.fPluginsInfo[pluginId].parameterInfo.append(PyCarlaParameterInfo.copy())
  2357. self.fPluginsInfo[pluginId].parameterData.append(PyParameterData.copy())
  2358. self.fPluginsInfo[pluginId].parameterRanges.append(PyParameterRanges.copy())
  2359. self.fPluginsInfo[pluginId].parameterValues.append(0.0)
  2360. def _set_programCount(self, pluginId, count):
  2361. self.fPluginsInfo[pluginId].programCount = count
  2362. # clear
  2363. self.fPluginsInfo[pluginId].programNames = []
  2364. # add placeholders
  2365. for x in range(count):
  2366. self.fPluginsInfo[pluginId].programNames.append("")
  2367. def _set_midiProgramCount(self, pluginId, count):
  2368. self.fPluginsInfo[pluginId].midiProgramCount = count
  2369. # clear
  2370. self.fPluginsInfo[pluginId].midiProgramData = []
  2371. # add placeholders
  2372. for x in range(count):
  2373. self.fPluginsInfo[pluginId].midiProgramData.append(PyMidiProgramData.copy())
  2374. def _set_customDataCount(self, pluginId, count):
  2375. self.fPluginsInfo[pluginId].customDataCount = count
  2376. # clear
  2377. self.fPluginsInfo[pluginId].customData = []
  2378. # add placeholders
  2379. for x in range(count):
  2380. self.fPluginsInfo[pluginId].customData.append(PyCustomData)
  2381. def _set_parameterInfo(self, pluginId, paramIndex, info):
  2382. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2383. self.fPluginsInfo[pluginId].parameterInfo[paramIndex] = info
  2384. def _set_parameterData(self, pluginId, paramIndex, data):
  2385. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2386. self.fPluginsInfo[pluginId].parameterData[paramIndex] = data
  2387. def _set_parameterRanges(self, pluginId, paramIndex, ranges):
  2388. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2389. self.fPluginsInfo[pluginId].parameterRanges[paramIndex] = ranges
  2390. def _set_parameterRangesUpdate(self, pluginId, paramIndex, ranges):
  2391. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2392. self.fPluginsInfo[pluginId].parameterRanges[paramIndex].update(ranges)
  2393. def _set_parameterValue(self, pluginId, paramIndex, value):
  2394. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2395. self.fPluginsInfo[pluginId].parameterValues[paramIndex] = value
  2396. def _set_parameterDefault(self, pluginId, paramIndex, value):
  2397. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2398. self.fPluginsInfo[pluginId].parameterRanges[paramIndex]['def'] = value
  2399. def _set_parameterMidiChannel(self, pluginId, paramIndex, channel):
  2400. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2401. self.fPluginsInfo[pluginId].parameterData[paramIndex]['midiChannel'] = channel
  2402. def _set_parameterMidiCC(self, pluginId, paramIndex, cc):
  2403. if pluginId < len(self.fPluginsInfo) and paramIndex < self.fPluginsInfo[pluginId].parameterCount:
  2404. self.fPluginsInfo[pluginId].parameterData[paramIndex]['midiCC'] = cc
  2405. def _set_currentProgram(self, pluginId, pIndex):
  2406. self.fPluginsInfo[pluginId].programCurrent = pIndex
  2407. def _set_currentMidiProgram(self, pluginId, mpIndex):
  2408. self.fPluginsInfo[pluginId].midiProgramCurrent = mpIndex
  2409. def _set_programName(self, pluginId, pIndex, name):
  2410. if pIndex < self.fPluginsInfo[pluginId].programCount:
  2411. self.fPluginsInfo[pluginId].programNames[pIndex] = name
  2412. def _set_midiProgramData(self, pluginId, mpIndex, data):
  2413. if mpIndex < self.fPluginsInfo[pluginId].midiProgramCount:
  2414. self.fPluginsInfo[pluginId].midiProgramData[mpIndex] = data
  2415. def _set_customData(self, pluginId, cdIndex, data):
  2416. if cdIndex < self.fPluginsInfo[pluginId].customDataCount:
  2417. self.fPluginsInfo[pluginId].customData[cdIndex] = data
  2418. def _set_peaks(self, pluginId, in1, in2, out1, out2):
  2419. self.fPluginsInfo[pluginId].peaks = [in1, in2, out1, out2]
  2420. # ------------------------------------------------------------------------------------------------------------