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.

3344 lines
105KB

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