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.

927 lines
32KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla Backend code
  4. # Copyright (C) 2011-2013 Filipe Coelho <falktx@falktx.com>
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as
  8. # published by the Free Software Foundation; either version 2 of
  9. # the License, or any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # For a full copy of the GNU General Public License see the GPL.txt file
  17. # ------------------------------------------------------------------------------------------------------------
  18. # Imports (Global)
  19. from ctypes import *
  20. from platform import architecture
  21. from sys import platform, maxsize
  22. # ------------------------------------------------------------------------------------------------------------
  23. # 64bit check
  24. kIs64bit = bool(architecture()[0] == "64bit" and maxsize > 2**32)
  25. # ------------------------------------------------------------------------------------------------------------
  26. # Set Platform
  27. if platform == "darwin":
  28. HAIKU = False
  29. LINUX = False
  30. MACOS = True
  31. WINDOWS = False
  32. elif "haiku" in platform:
  33. HAIKU = True
  34. LINUX = False
  35. MACOS = False
  36. WINDOWS = False
  37. elif "linux" in platform:
  38. HAIKU = False
  39. LINUX = True
  40. MACOS = False
  41. WINDOWS = False
  42. elif platform in ("win32", "win64", "cygwin"):
  43. HAIKU = False
  44. LINUX = False
  45. MACOS = False
  46. WINDOWS = True
  47. else:
  48. HAIKU = False
  49. LINUX = False
  50. MACOS = False
  51. WINDOWS = False
  52. # ------------------------------------------------------------------------------------------------------------
  53. # Convert a ctypes char** into a python string list
  54. def charStringList(charPtr):
  55. i = 0
  56. retList = []
  57. if not charPtr:
  58. return retList
  59. while True:
  60. char_p = charPtr[i]
  61. if not char_p:
  62. break
  63. retList.append(char_p.decode("utf-8", errors="ignore"))
  64. i += 1
  65. return retList
  66. # ------------------------------------------------------------------------------------------------------------
  67. # Convert a ctypes struct into a python dict
  68. def structToDict(struct):
  69. return dict((attr, getattr(struct, attr)) for attr, value in struct._fields_)
  70. # ------------------------------------------------------------------------------------------------
  71. # Backend defines
  72. MAX_DEFAULT_PLUGINS = 99
  73. MAX_RACK_PLUGINS = 16
  74. MAX_PATCHBAY_PLUGINS = 999
  75. MAX_DEFAULT_PARAMETERS = 200
  76. # Plugin Hints
  77. PLUGIN_IS_BRIDGE = 0x001
  78. PLUGIN_IS_RTSAFE = 0x002
  79. PLUGIN_IS_SYNTH = 0x004
  80. PLUGIN_HAS_GUI = 0x010
  81. PLUGIN_HAS_GUI_AS_FILE = 0x020
  82. PLUGIN_HAS_SINGLE_THREAD = 0x040
  83. PLUGIN_CAN_DRYWET = 0x100
  84. PLUGIN_CAN_VOLUME = 0x200
  85. PLUGIN_CAN_BALANCE = 0x400
  86. PLUGIN_CAN_PANNING = 0x800
  87. # Plugin Options
  88. PLUGIN_OPTION_FIXED_BUFFER = 0x001
  89. PLUGIN_OPTION_FORCE_STEREO = 0x002
  90. PLUGIN_OPTION_MAP_PROGRAM_CHANGES = 0x004
  91. PLUGIN_OPTION_USE_CHUNKS = 0x008
  92. PLUGIN_OPTION_SEND_CONTROL_CHANGES = 0x010
  93. PLUGIN_OPTION_SEND_CHANNEL_PRESSURE = 0x020
  94. PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH = 0x040
  95. PLUGIN_OPTION_SEND_PITCHBEND = 0x080
  96. PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100
  97. # Parameter Hints
  98. PARAMETER_IS_BOOLEAN = 0x01
  99. PARAMETER_IS_INTEGER = 0x02
  100. PARAMETER_IS_LOGARITHMIC = 0x04
  101. PARAMETER_IS_ENABLED = 0x08
  102. PARAMETER_IS_AUTOMABLE = 0x10
  103. PARAMETER_USES_SAMPLERATE = 0x20
  104. PARAMETER_USES_SCALEPOINTS = 0x40
  105. PARAMETER_USES_CUSTOM_TEXT = 0x80
  106. # Custom Data types
  107. CUSTOM_DATA_INVALID = None
  108. CUSTOM_DATA_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk"
  109. CUSTOM_DATA_STRING = "http://kxstudio.sf.net/ns/carla/string"
  110. # Patchbay Port Hints
  111. PATCHBAY_PORT_IS_INPUT = 0x01
  112. PATCHBAY_PORT_IS_OUTPUT = 0x02
  113. PATCHBAY_PORT_IS_AUDIO = 0x04
  114. PATCHBAY_PORT_IS_CV = 0x08
  115. PATCHBAY_PORT_IS_MIDI = 0x10
  116. # Binary Type
  117. BINARY_NONE = 0
  118. BINARY_POSIX32 = 1
  119. BINARY_POSIX64 = 2
  120. BINARY_WIN32 = 3
  121. BINARY_WIN64 = 4
  122. BINARY_OTHER = 5
  123. # Plugin Type
  124. PLUGIN_NONE = 0
  125. PLUGIN_INTERNAL = 1
  126. PLUGIN_LADSPA = 2
  127. PLUGIN_DSSI = 3
  128. PLUGIN_LV2 = 4
  129. PLUGIN_VST = 5
  130. PLUGIN_VST3 = 6
  131. PLUGIN_GIG = 7
  132. PLUGIN_SF2 = 8
  133. PLUGIN_SFZ = 9
  134. # Plugin Category
  135. PLUGIN_CATEGORY_NONE = 0
  136. PLUGIN_CATEGORY_SYNTH = 1
  137. PLUGIN_CATEGORY_DELAY = 2 # also Reverb
  138. PLUGIN_CATEGORY_EQ = 3
  139. PLUGIN_CATEGORY_FILTER = 4
  140. PLUGIN_CATEGORY_DYNAMICS = 5 # Amplifier, Compressor, Gate
  141. PLUGIN_CATEGORY_MODULATOR = 6 # Chorus, Flanger, Phaser
  142. PLUGIN_CATEGORY_UTILITY = 7 # Analyzer, Converter, Mixer
  143. PLUGIN_CATEGORY_OTHER = 8 # used to check if a plugin has a category
  144. # Parameter Type
  145. PARAMETER_UNKNOWN = 0
  146. PARAMETER_INPUT = 1
  147. PARAMETER_OUTPUT = 2
  148. PARAMETER_LATENCY = 3
  149. PARAMETER_SAMPLE_RATE = 4
  150. PARAMETER_LV2_FREEWHEEL = 5
  151. PARAMETER_LV2_TIME = 6
  152. # Internal Parameters Index
  153. PARAMETER_NULL = -1
  154. PARAMETER_ACTIVE = -2
  155. PARAMETER_DRYWET = -3
  156. PARAMETER_VOLUME = -4
  157. PARAMETER_BALANCE_LEFT = -5
  158. PARAMETER_BALANCE_RIGHT = -6
  159. PARAMETER_PANNING = -7
  160. PARAMETER_CTRL_CHANNEL = -8
  161. PARAMETER_MAX = -9
  162. # Patchbay Icon Type
  163. PATCHBAY_ICON_APPLICATION = 0
  164. PATCHBAY_ICON_HARDWARE = 1
  165. PATCHBAY_ICON_CARLA = 2
  166. PATCHBAY_ICON_DISTRHO = 3
  167. PATCHBAY_ICON_FILE = 4
  168. PATCHBAY_ICON_PLUGIN = 5
  169. # Options Type
  170. OPTION_PROCESS_NAME = 0
  171. OPTION_PROCESS_MODE = 1
  172. OPTION_TRANSPORT_MODE = 2
  173. OPTION_FORCE_STEREO = 3
  174. OPTION_PREFER_PLUGIN_BRIDGES = 4
  175. OPTION_PREFER_UI_BRIDGES = 5
  176. OPTION_USE_DSSI_VST_CHUNKS = 6
  177. OPTION_MAX_PARAMETERS = 7
  178. OPTION_OSC_UI_TIMEOUT = 8
  179. OPTION_JACK_AUTOCONNECT = 9
  180. OPTION_JACK_TIMEMASTER = 10
  181. OPTION_RTAUDIO_BUFFER_SIZE = 11
  182. OPTION_RTAUDIO_SAMPLE_RATE = 12
  183. OPTION_RTAUDIO_DEVICE = 13
  184. OPTION_PATH_RESOURCES = 14
  185. OPTION_PATH_BRIDGE_NATIVE = 15
  186. OPTION_PATH_BRIDGE_POSIX32 = 16
  187. OPTION_PATH_BRIDGE_POSIX64 = 17
  188. OPTION_PATH_BRIDGE_WIN32 = 18
  189. OPTION_PATH_BRIDGE_WIN64 = 19
  190. OPTION_PATH_BRIDGE_LV2_GTK2 = 20
  191. OPTION_PATH_BRIDGE_LV2_GTK3 = 21
  192. OPTION_PATH_BRIDGE_LV2_QT4 = 22
  193. OPTION_PATH_BRIDGE_LV2_QT5 = 23
  194. OPTION_PATH_BRIDGE_LV2_COCOA = 24
  195. OPTION_PATH_BRIDGE_LV2_WINDOWS = 25
  196. OPTION_PATH_BRIDGE_LV2_X11 = 26
  197. OPTION_PATH_BRIDGE_VST_COCOA = 27
  198. OPTION_PATH_BRIDGE_VST_HWND = 28
  199. OPTION_PATH_BRIDGE_VST_X11 = 29
  200. # Callback Type
  201. CALLBACK_DEBUG = 0
  202. CALLBACK_PLUGIN_ADDED = 1
  203. CALLBACK_PLUGIN_REMOVED = 2
  204. CALLBACK_PLUGIN_RENAMED = 3
  205. CALLBACK_PARAMETER_VALUE_CHANGED = 4
  206. CALLBACK_PARAMETER_DEFAULT_CHANGED = 5
  207. CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED = 6
  208. CALLBACK_PARAMETER_MIDI_CC_CHANGED = 7
  209. CALLBACK_PROGRAM_CHANGED = 8
  210. CALLBACK_MIDI_PROGRAM_CHANGED = 9
  211. CALLBACK_NOTE_ON = 10
  212. CALLBACK_NOTE_OFF = 11
  213. CALLBACK_SHOW_GUI = 12
  214. CALLBACK_UPDATE = 13
  215. CALLBACK_RELOAD_INFO = 14
  216. CALLBACK_RELOAD_PARAMETERS = 15
  217. CALLBACK_RELOAD_PROGRAMS = 16
  218. CALLBACK_RELOAD_ALL = 17
  219. CALLBACK_PATCHBAY_CLIENT_ADDED = 18
  220. CALLBACK_PATCHBAY_CLIENT_REMOVED = 19
  221. CALLBACK_PATCHBAY_CLIENT_RENAMED = 20
  222. CALLBACK_PATCHBAY_PORT_ADDED = 21
  223. CALLBACK_PATCHBAY_PORT_REMOVED = 22
  224. CALLBACK_PATCHBAY_PORT_RENAMED = 23
  225. CALLBACK_PATCHBAY_CONNECTION_ADDED = 24
  226. CALLBACK_PATCHBAY_CONNECTION_REMOVED = 25
  227. CALLBACK_PATCHBAY_ICON_CHANGED = 26
  228. CALLBACK_BUFFER_SIZE_CHANGED = 27
  229. CALLBACK_SAMPLE_RATE_CHANGED = 28
  230. CALLBACK_PROCESS_MODE_CHANGED = 29
  231. CALLBACK_NSM_ANNOUNCE = 30
  232. CALLBACK_NSM_OPEN = 31
  233. CALLBACK_NSM_SAVE = 32
  234. CALLBACK_ERROR = 33
  235. CALLBACK_INFO = 34
  236. CALLBACK_QUIT = 35
  237. # Process Mode
  238. PROCESS_MODE_SINGLE_CLIENT = 0
  239. PROCESS_MODE_MULTIPLE_CLIENTS = 1
  240. PROCESS_MODE_CONTINUOUS_RACK = 2
  241. PROCESS_MODE_PATCHBAY = 3
  242. PROCESS_MODE_BRIDGE = 4
  243. # Transport Mode
  244. TRANSPORT_MODE_INTERNAL = 0
  245. TRANSPORT_MODE_JACK = 1
  246. TRANSPORT_MODE_PLUGIN = 2
  247. TRANSPORT_MODE_BRIDGE = 3
  248. # Set BINARY_NATIVE
  249. if HAIKU or LINUX or MACOS:
  250. BINARY_NATIVE = BINARY_POSIX64 if kIs64bit else BINARY_POSIX32
  251. elif WINDOWS:
  252. BINARY_NATIVE = BINARY_WIN64 if kIs64bit else BINARY_WIN32
  253. else:
  254. BINARY_NATIVE = BINARY_OTHER
  255. # ------------------------------------------------------------------------------------------------------------
  256. # Backend C++ -> Python variables
  257. c_enum = c_int
  258. c_nullptr = None
  259. CallbackFunc = CFUNCTYPE(None, c_void_p, c_enum, c_uint, c_int, c_int, c_float, c_char_p)
  260. class ParameterData(Structure):
  261. _fields_ = [
  262. ("type", c_enum),
  263. ("index", c_int32),
  264. ("rindex", c_int32),
  265. ("hints", c_uint32),
  266. ("midiChannel", c_uint8),
  267. ("midiCC", c_int16)
  268. ]
  269. class ParameterRanges(Structure):
  270. _fields_ = [
  271. ("def", c_float),
  272. ("min", c_float),
  273. ("max", c_float),
  274. ("step", c_float),
  275. ("stepSmall", c_float),
  276. ("stepLarge", c_float)
  277. ]
  278. class MidiProgramData(Structure):
  279. _fields_ = [
  280. ("bank", c_uint32),
  281. ("program", c_uint32),
  282. ("name", c_char_p)
  283. ]
  284. class CustomData(Structure):
  285. _fields_ = [
  286. ("type", c_char_p),
  287. ("key", c_char_p),
  288. ("value", c_char_p)
  289. ]
  290. # ------------------------------------------------------------------------------------------------------------
  291. # Standalone C++ -> Python variables
  292. class CarlaPluginInfo(Structure):
  293. _fields_ = [
  294. ("type", c_enum),
  295. ("category", c_enum),
  296. ("hints", c_uint),
  297. ("optionsAvailable", c_uint),
  298. ("optionsEnabled", c_uint),
  299. ("binary", c_char_p),
  300. ("name", c_char_p),
  301. ("label", c_char_p),
  302. ("maker", c_char_p),
  303. ("copyright", c_char_p),
  304. ("iconName", c_char_p),
  305. ("uniqueId", c_long),
  306. ("latency", c_uint32)
  307. ]
  308. class CarlaNativePluginInfo(Structure):
  309. _fields_ = [
  310. ("category", c_enum),
  311. ("hints", c_uint),
  312. ("audioIns", c_uint32),
  313. ("audioOuts", c_uint32),
  314. ("midiIns", c_uint32),
  315. ("midiOuts", c_uint32),
  316. ("parameterIns", c_uint32),
  317. ("parameterOuts", c_uint32),
  318. ("name", c_char_p),
  319. ("label", c_char_p),
  320. ("maker", c_char_p),
  321. ("copyright", c_char_p)
  322. ]
  323. class CarlaPortCountInfo(Structure):
  324. _fields_ = [
  325. ("ins", c_uint32),
  326. ("outs", c_uint32),
  327. ("total", c_uint32)
  328. ]
  329. class CarlaParameterInfo(Structure):
  330. _fields_ = [
  331. ("name", c_char_p),
  332. ("symbol", c_char_p),
  333. ("unit", c_char_p),
  334. ("scalePointCount", c_uint32)
  335. ]
  336. class CarlaScalePointInfo(Structure):
  337. _fields_ = [
  338. ("value", c_float),
  339. ("label", c_char_p)
  340. ]
  341. class CarlaTransportInfo(Structure):
  342. _fields_ = [
  343. ("playing", c_bool),
  344. ("frame", c_uint32),
  345. ("bar", c_int32),
  346. ("beat", c_int32),
  347. ("tick", c_int32),
  348. ("bpm", c_double)
  349. ]
  350. # ------------------------------------------------------------------------------------------------------------
  351. # Standalone Python object
  352. class Host(object):
  353. def __init__(self, libName):
  354. object.__init__(self)
  355. self.lib = cdll.LoadLibrary(libName)
  356. self.lib.carla_get_extended_license_text.argtypes = None
  357. self.lib.carla_get_extended_license_text.restype = c_char_p
  358. self.lib.carla_get_supported_file_types.argtypes = None
  359. self.lib.carla_get_supported_file_types.restype = c_char_p
  360. self.lib.carla_get_engine_driver_count.argtypes = None
  361. self.lib.carla_get_engine_driver_count.restype = c_uint
  362. self.lib.carla_get_engine_driver_name.argtypes = [c_uint]
  363. self.lib.carla_get_engine_driver_name.restype = c_char_p
  364. self.lib.carla_get_engine_driver_device_names.argtypes = [c_uint]
  365. self.lib.carla_get_engine_driver_device_names.restype = POINTER(c_char_p)
  366. self.lib.carla_get_internal_plugin_count.argtypes = None
  367. self.lib.carla_get_internal_plugin_count.restype = c_uint
  368. self.lib.carla_get_internal_plugin_info.argtypes = [c_uint]
  369. self.lib.carla_get_internal_plugin_info.restype = POINTER(CarlaNativePluginInfo)
  370. self.lib.carla_engine_init.argtypes = [c_char_p, c_char_p]
  371. self.lib.carla_engine_init.restype = c_bool
  372. self.lib.carla_engine_close.argtypes = None
  373. self.lib.carla_engine_close.restype = c_bool
  374. self.lib.carla_engine_idle.argtypes = None
  375. self.lib.carla_engine_idle.restype = None
  376. self.lib.carla_is_engine_running.argtypes = None
  377. self.lib.carla_is_engine_running.restype = c_bool
  378. self.lib.carla_set_engine_about_to_close.argtypes = None
  379. self.lib.carla_set_engine_about_to_close.restype = None
  380. self.lib.carla_set_engine_callback.argtypes = [CallbackFunc, c_void_p]
  381. self.lib.carla_set_engine_callback.restype = None
  382. self.lib.carla_set_engine_option.argtypes = [c_enum, c_int, c_char_p]
  383. self.lib.carla_set_engine_option.restype = None
  384. self.lib.carla_load_filename.argtypes = [c_char_p]
  385. self.lib.carla_load_filename.restype = c_bool
  386. self.lib.carla_load_project.argtypes = [c_char_p]
  387. self.lib.carla_load_project.restype = c_bool
  388. self.lib.carla_save_project.argtypes = [c_char_p]
  389. self.lib.carla_save_project.restype = c_bool
  390. self.lib.carla_patchbay_connect.argtypes = [c_int, c_int]
  391. self.lib.carla_patchbay_connect.restype = c_bool
  392. self.lib.carla_patchbay_disconnect.argtypes = [c_int]
  393. self.lib.carla_patchbay_disconnect.restype = c_bool
  394. self.lib.carla_patchbay_refresh.argtypes = None
  395. self.lib.carla_patchbay_refresh.restype = None
  396. self.lib.carla_transport_play.argtypes = None
  397. self.lib.carla_transport_play.restype = None
  398. self.lib.carla_transport_pause.argtypes = None
  399. self.lib.carla_transport_pause.restype = None
  400. self.lib.carla_transport_relocate.argtypes = [c_uint32]
  401. self.lib.carla_transport_relocate.restype = None
  402. self.lib.carla_get_current_transport_frame.argtypes = None
  403. self.lib.carla_get_current_transport_frame.restype = c_uint32
  404. self.lib.carla_get_transport_info.argtypes = None
  405. self.lib.carla_get_transport_info.restype = POINTER(CarlaTransportInfo)
  406. self.lib.carla_add_plugin.argtypes = [c_enum, c_enum, c_char_p, c_char_p, c_char_p, c_void_p]
  407. self.lib.carla_add_plugin.restype = c_bool
  408. self.lib.carla_remove_plugin.argtypes = [c_uint]
  409. self.lib.carla_remove_plugin.restype = c_bool
  410. self.lib.carla_remove_all_plugins.argtypes = None
  411. self.lib.carla_remove_all_plugins.restype = None
  412. self.lib.carla_rename_plugin.argtypes = [c_uint, c_char_p]
  413. self.lib.carla_rename_plugin.restype = c_char_p
  414. self.lib.carla_clone_plugin.argtypes = [c_uint]
  415. self.lib.carla_clone_plugin.restype = c_bool
  416. self.lib.carla_replace_plugin.argtypes = [c_uint]
  417. self.lib.carla_replace_plugin.restype = c_bool
  418. self.lib.carla_switch_plugins.argtypes = [c_uint, c_uint]
  419. self.lib.carla_switch_plugins.restype = c_bool
  420. self.lib.carla_load_plugin_state.argtypes = [c_uint, c_char_p]
  421. self.lib.carla_load_plugin_state.restype = c_bool
  422. self.lib.carla_save_plugin_state.argtypes = [c_uint, c_char_p]
  423. self.lib.carla_save_plugin_state.restype = c_bool
  424. self.lib.carla_get_plugin_info.argtypes = [c_uint]
  425. self.lib.carla_get_plugin_info.restype = POINTER(CarlaPluginInfo)
  426. self.lib.carla_get_audio_port_count_info.argtypes = [c_uint]
  427. self.lib.carla_get_audio_port_count_info.restype = POINTER(CarlaPortCountInfo)
  428. self.lib.carla_get_midi_port_count_info.argtypes = [c_uint]
  429. self.lib.carla_get_midi_port_count_info.restype = POINTER(CarlaPortCountInfo)
  430. self.lib.carla_get_parameter_count_info.argtypes = [c_uint]
  431. self.lib.carla_get_parameter_count_info.restype = POINTER(CarlaPortCountInfo)
  432. self.lib.carla_get_parameter_info.argtypes = [c_uint, c_uint32]
  433. self.lib.carla_get_parameter_info.restype = POINTER(CarlaParameterInfo)
  434. self.lib.carla_get_parameter_scalepoint_info.argtypes = [c_uint, c_uint32, c_uint32]
  435. self.lib.carla_get_parameter_scalepoint_info.restype = POINTER(CarlaScalePointInfo)
  436. self.lib.carla_get_parameter_data.argtypes = [c_uint, c_uint32]
  437. self.lib.carla_get_parameter_data.restype = POINTER(ParameterData)
  438. self.lib.carla_get_parameter_ranges.argtypes = [c_uint, c_uint32]
  439. self.lib.carla_get_parameter_ranges.restype = POINTER(ParameterRanges)
  440. self.lib.carla_get_midi_program_data.argtypes = [c_uint, c_uint32]
  441. self.lib.carla_get_midi_program_data.restype = POINTER(MidiProgramData)
  442. self.lib.carla_get_custom_data.argtypes = [c_uint, c_uint32]
  443. self.lib.carla_get_custom_data.restype = POINTER(CustomData)
  444. self.lib.carla_get_chunk_data.argtypes = [c_uint]
  445. self.lib.carla_get_chunk_data.restype = c_char_p
  446. self.lib.carla_get_parameter_count.argtypes = [c_uint]
  447. self.lib.carla_get_parameter_count.restype = c_uint32
  448. self.lib.carla_get_program_count.argtypes = [c_uint]
  449. self.lib.carla_get_program_count.restype = c_uint32
  450. self.lib.carla_get_midi_program_count.argtypes = [c_uint]
  451. self.lib.carla_get_midi_program_count.restype = c_uint32
  452. self.lib.carla_get_custom_data_count.argtypes = [c_uint]
  453. self.lib.carla_get_custom_data_count.restype = c_uint32
  454. self.lib.carla_get_parameter_text.argtypes = [c_uint, c_uint32]
  455. self.lib.carla_get_parameter_text.restype = c_char_p
  456. self.lib.carla_get_program_name.argtypes = [c_uint, c_uint32]
  457. self.lib.carla_get_program_name.restype = c_char_p
  458. self.lib.carla_get_midi_program_name.argtypes = [c_uint, c_uint32]
  459. self.lib.carla_get_midi_program_name.restype = c_char_p
  460. self.lib.carla_get_real_plugin_name.argtypes = [c_uint]
  461. self.lib.carla_get_real_plugin_name.restype = c_char_p
  462. self.lib.carla_get_current_program_index.argtypes = [c_uint]
  463. self.lib.carla_get_current_program_index.restype = c_int32
  464. self.lib.carla_get_current_midi_program_index.argtypes = [c_uint]
  465. self.lib.carla_get_current_midi_program_index.restype = c_int32
  466. self.lib.carla_get_default_parameter_value.argtypes = [c_uint, c_uint32]
  467. self.lib.carla_get_default_parameter_value.restype = c_float
  468. self.lib.carla_get_current_parameter_value.argtypes = [c_uint, c_uint32]
  469. self.lib.carla_get_current_parameter_value.restype = c_float
  470. self.lib.carla_get_input_peak_value.argtypes = [c_uint, c_ushort]
  471. self.lib.carla_get_input_peak_value.restype = c_float
  472. self.lib.carla_get_output_peak_value.argtypes = [c_uint, c_ushort]
  473. self.lib.carla_get_output_peak_value.restype = c_float
  474. self.lib.carla_set_option.argtypes = [c_uint, c_uint, c_bool]
  475. self.lib.carla_set_option.restype = None
  476. self.lib.carla_set_active.argtypes = [c_uint, c_bool]
  477. self.lib.carla_set_active.restype = None
  478. self.lib.carla_set_drywet.argtypes = [c_uint, c_float]
  479. self.lib.carla_set_drywet.restype = None
  480. self.lib.carla_set_volume.argtypes = [c_uint, c_float]
  481. self.lib.carla_set_volume.restype = None
  482. self.lib.carla_set_balance_left.argtypes = [c_uint, c_float]
  483. self.lib.carla_set_balance_left.restype = None
  484. self.lib.carla_set_balance_right.argtypes = [c_uint, c_float]
  485. self.lib.carla_set_balance_right.restype = None
  486. self.lib.carla_set_panning.argtypes = [c_uint, c_float]
  487. self.lib.carla_set_panning.restype = None
  488. self.lib.carla_set_ctrl_channel.argtypes = [c_uint, c_int8]
  489. self.lib.carla_set_ctrl_channel.restype = None
  490. self.lib.carla_set_parameter_value.argtypes = [c_uint, c_uint32, c_float]
  491. self.lib.carla_set_parameter_value.restype = None
  492. self.lib.carla_set_parameter_midi_cc.argtypes = [c_uint, c_uint32, c_int16]
  493. self.lib.carla_set_parameter_midi_cc.restype = None
  494. self.lib.carla_set_parameter_midi_channel.argtypes = [c_uint, c_uint32, c_uint8]
  495. self.lib.carla_set_parameter_midi_channel.restype = None
  496. self.lib.carla_set_program.argtypes = [c_uint, c_uint32]
  497. self.lib.carla_set_program.restype = None
  498. self.lib.carla_set_midi_program.argtypes = [c_uint, c_uint32]
  499. self.lib.carla_set_midi_program.restype = None
  500. self.lib.carla_set_custom_data.argtypes = [c_uint, c_char_p, c_char_p, c_char_p]
  501. self.lib.carla_set_custom_data.restype = None
  502. self.lib.carla_set_chunk_data.argtypes = [c_uint, c_char_p]
  503. self.lib.carla_set_chunk_data.restype = None
  504. self.lib.carla_prepare_for_save.argtypes = [c_uint]
  505. self.lib.carla_prepare_for_save.restype = None
  506. self.lib.carla_send_midi_note.argtypes = [c_uint, c_uint8, c_uint8, c_uint8]
  507. self.lib.carla_send_midi_note.restype = None
  508. self.lib.carla_show_gui.argtypes = [c_uint, c_bool]
  509. self.lib.carla_show_gui.restype = None
  510. self.lib.carla_get_buffer_size.argtypes = None
  511. self.lib.carla_get_buffer_size.restype = c_uint32
  512. self.lib.carla_get_sample_rate.argtypes = None
  513. self.lib.carla_get_sample_rate.restype = c_double
  514. self.lib.carla_get_last_error.argtypes = None
  515. self.lib.carla_get_last_error.restype = c_char_p
  516. self.lib.carla_get_host_osc_url_tcp.argtypes = None
  517. self.lib.carla_get_host_osc_url_tcp.restype = c_char_p
  518. self.lib.carla_get_host_osc_url_udp.argtypes = None
  519. self.lib.carla_get_host_osc_url_udp.restype = c_char_p
  520. self.lib.carla_nsm_announce.argtypes = [c_char_p, c_char_p, c_int]
  521. self.lib.carla_nsm_announce.restype = None
  522. self.lib.carla_nsm_ready.argtypes = None
  523. self.lib.carla_nsm_ready.restype = None
  524. self.lib.carla_nsm_reply_open.argtypes = None
  525. self.lib.carla_nsm_reply_open.restype = None
  526. self.lib.carla_nsm_reply_save.argtypes = None
  527. self.lib.carla_nsm_reply_save.restype = None
  528. def get_extended_license_text(self):
  529. return self.lib.carla_get_extended_license_text()
  530. def get_supported_file_types(self):
  531. return self.lib.carla_get_supported_file_types()
  532. def get_engine_driver_count(self):
  533. return self.lib.carla_get_engine_driver_count()
  534. def get_engine_driver_name(self, index):
  535. return self.lib.carla_get_engine_driver_name(index)
  536. def get_engine_driver_device_names(self, index):
  537. return charStringList(self.lib.carla_get_engine_driver_device_names(index))
  538. def get_internal_plugin_count(self):
  539. return self.lib.carla_get_internal_plugin_count()
  540. def get_internal_plugin_info(self, internalPluginId):
  541. return structToDict(self.lib.carla_get_internal_plugin_info(internalPluginId).contents)
  542. def engine_init(self, driverName, clientName):
  543. return self.lib.carla_engine_init(driverName.encode("utf-8"), clientName.encode("utf-8"))
  544. def engine_close(self):
  545. return self.lib.carla_engine_close()
  546. def engine_idle(self):
  547. self.lib.carla_engine_idle()
  548. def is_engine_running(self):
  549. return self.lib.carla_is_engine_running()
  550. def set_engine_about_to_close(self):
  551. self.lib.carla_set_engine_about_to_close()
  552. def set_engine_callback(self, func):
  553. self._callback = CallbackFunc(func)
  554. self.lib.carla_set_engine_callback(self._callback, c_nullptr)
  555. def set_engine_option(self, option, value, valueStr):
  556. self.lib.carla_set_engine_option(option, value, valueStr.encode("utf-8"))
  557. def load_filename(self, filename):
  558. return self.lib.carla_load_filename(filename.encode("utf-8"))
  559. def load_project(self, filename):
  560. return self.lib.carla_load_project(filename.encode("utf-8"))
  561. def save_project(self, filename):
  562. return self.lib.carla_save_project(filename.encode("utf-8"))
  563. def patchbay_connect(self, portIdA, portIdB):
  564. return self.lib.carla_patchbay_connect(portIdA, portIdB)
  565. def patchbay_disconnect(self, connectionId):
  566. return self.lib.carla_patchbay_disconnect(connectionId)
  567. def patchbay_refresh(self):
  568. self.lib.carla_patchbay_refresh()
  569. def transport_play(self):
  570. self.lib.carla_transport_play()
  571. def transport_pause(self):
  572. self.lib.carla_transport_pause()
  573. def transport_relocate(self, frames):
  574. self.lib.carla_transport_relocate(frames)
  575. def get_current_transport_frame(self):
  576. return self.lib.carla_get_current_transport_frame()
  577. def get_transport_info(self):
  578. return structToDict(self.lib.carla_get_transport_info().contents)
  579. def add_plugin(self, btype, ptype, filename, name, label, extraStuff):
  580. cfilename = filename.encode("utf-8") if filename else c_nullptr
  581. cname = name.encode("utf-8") if name else c_nullptr
  582. clabel = label.encode("utf-8") if label else c_nullptr
  583. return self.lib.carla_add_plugin(btype, ptype, cfilename, cname, clabel, cast(extraStuff, c_void_p))
  584. def remove_plugin(self, pluginId):
  585. return self.lib.carla_remove_plugin(pluginId)
  586. def remove_all_plugins(self):
  587. self.lib.carla_remove_all_plugins()
  588. def rename_plugin(self, pluginId, newName):
  589. return self.lib.carla_rename_plugin(pluginId, newName.encode("utf-8"))
  590. def clone_plugin(self, pluginId):
  591. return self.lib.carla_clone_plugin(pluginId)
  592. def replace_plugin(self, pluginId):
  593. return self.lib.carla_replace_plugin(pluginId)
  594. def switch_plugins(self, pluginIdA, pluginIdB):
  595. return self.lib.carla_switch_plugins(pluginIdA, pluginIdB)
  596. def load_plugin_state(self, pluginId, filename):
  597. return self.lib.carla_load_plugin_state(pluginId, filename.encode("utf-8"))
  598. def save_plugin_state(self, pluginId, filename):
  599. return self.lib.carla_save_plugin_state(pluginId, filename.encode("utf-8"))
  600. def get_plugin_info(self, pluginId):
  601. return structToDict(self.lib.carla_get_plugin_info(pluginId).contents)
  602. def get_audio_port_count_info(self, pluginId):
  603. return structToDict(self.lib.carla_get_audio_port_count_info(pluginId).contents)
  604. def get_midi_port_count_info(self, pluginId):
  605. return structToDict(self.lib.carla_get_midi_port_count_info(pluginId).contents)
  606. def get_parameter_count_info(self, pluginId):
  607. return structToDict(self.lib.carla_get_parameter_count_info(pluginId).contents)
  608. def get_parameter_info(self, pluginId, parameterId):
  609. return structToDict(self.lib.carla_get_parameter_info(pluginId, parameterId).contents)
  610. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  611. return structToDict(self.lib.carla_get_parameter_scalepoint_info(pluginId, parameterId, scalePointId).contents)
  612. def get_parameter_data(self, pluginId, parameterId):
  613. return structToDict(self.lib.carla_get_parameter_data(pluginId, parameterId).contents)
  614. def get_parameter_ranges(self, pluginId, parameterId):
  615. return structToDict(self.lib.carla_get_parameter_ranges(pluginId, parameterId).contents)
  616. def get_midi_program_data(self, pluginId, midiProgramId):
  617. return structToDict(self.lib.carla_get_midi_program_data(pluginId, midiProgramId).contents)
  618. def get_custom_data(self, pluginId, customDataId):
  619. return structToDict(self.lib.carla_get_custom_data(pluginId, customDataId).contents)
  620. def get_chunk_data(self, pluginId):
  621. return self.lib.carla_get_chunk_data(pluginId)
  622. def get_parameter_count(self, pluginId):
  623. return self.lib.carla_get_parameter_count(pluginId)
  624. def get_program_count(self, pluginId):
  625. return self.lib.carla_get_program_count(pluginId)
  626. def get_midi_program_count(self, pluginId):
  627. return self.lib.carla_get_midi_program_count(pluginId)
  628. def get_custom_data_count(self, pluginId):
  629. return self.lib.carla_get_custom_data_count(pluginId)
  630. def get_parameter_text(self, pluginId, parameterId):
  631. return self.lib.carla_get_parameter_text(pluginId, parameterId)
  632. def get_program_name(self, pluginId, programId):
  633. return self.lib.carla_get_program_name(pluginId, programId)
  634. def get_midi_program_name(self, pluginId, midiProgramId):
  635. return self.lib.carla_get_midi_program_name(pluginId, midiProgramId)
  636. def get_real_plugin_name(self, pluginId):
  637. return self.lib.carla_get_real_plugin_name(pluginId)
  638. def get_current_program_index(self, pluginId):
  639. return self.lib.carla_get_current_program_index(pluginId)
  640. def get_current_midi_program_index(self, pluginId):
  641. return self.lib.carla_get_current_midi_program_index(pluginId)
  642. def get_default_parameter_value(self, pluginId, parameterId):
  643. return self.lib.carla_get_default_parameter_value(pluginId, parameterId)
  644. def get_current_parameter_value(self, pluginId, parameterId):
  645. return self.lib.carla_get_current_parameter_value(pluginId, parameterId)
  646. def get_input_peak_value(self, pluginId, portId):
  647. return self.lib.carla_get_input_peak_value(pluginId, portId)
  648. def get_output_peak_value(self, pluginId, portId):
  649. return self.lib.carla_get_output_peak_value(pluginId, portId)
  650. def set_option(self, pluginId, option, yesNo):
  651. self.lib.carla_set_option(pluginId, option, yesNo)
  652. def set_active(self, pluginId, onOff):
  653. self.lib.carla_set_active(pluginId, onOff)
  654. def set_drywet(self, pluginId, value):
  655. self.lib.carla_set_drywet(pluginId, value)
  656. def set_volume(self, pluginId, value):
  657. self.lib.carla_set_volume(pluginId, value)
  658. def set_balance_left(self, pluginId, value):
  659. self.lib.carla_set_balance_left(pluginId, value)
  660. def set_balance_right(self, pluginId, value):
  661. self.lib.carla_set_balance_right(pluginId, value)
  662. def set_panning(self, pluginId, value):
  663. self.lib.carla_set_panning(pluginId, value)
  664. def set_ctrl_channel(self, pluginId, channel):
  665. self.lib.carla_set_ctrl_channel(pluginId, channel)
  666. def set_parameter_value(self, pluginId, parameterId, value):
  667. self.lib.carla_set_parameter_value(pluginId, parameterId, value)
  668. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  669. self.lib.carla_set_parameter_midi_cc(pluginId, parameterId, cc)
  670. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  671. self.lib.carla_set_parameter_midi_channel(pluginId, parameterId, channel)
  672. def set_program(self, pluginId, programId):
  673. self.lib.carla_set_program(pluginId, programId)
  674. def set_midi_program(self, pluginId, midiProgramId):
  675. self.lib.carla_set_midi_program(pluginId, midiProgramId)
  676. def set_custom_data(self, pluginId, type_, key, value):
  677. self.lib.carla_set_custom_data(pluginId, type_.encode("utf-8"), key.encode("utf-8"), value.encode("utf-8"))
  678. def set_chunk_data(self, pluginId, chunkData):
  679. self.lib.carla_set_chunk_data(pluginId, chunkData.encode("utf-8"))
  680. def prepare_for_save(self, pluginId):
  681. self.lib.carla_prepare_for_save(pluginId)
  682. def send_midi_note(self, pluginId, channel, note, velocity):
  683. self.lib.carla_send_midi_note(pluginId, channel, note, velocity)
  684. def show_gui(self, pluginId, yesNo):
  685. self.lib.carla_show_gui(pluginId, yesNo)
  686. def get_last_error(self):
  687. return self.lib.carla_get_last_error()
  688. def get_host_osc_url_tcp(self):
  689. return self.lib.carla_get_host_osc_url_tcp()
  690. def get_host_osc_url_udp(self):
  691. return self.lib.carla_get_host_osc_url_udp()
  692. def get_buffer_size(self):
  693. return self.lib.carla_get_buffer_size()
  694. def get_sample_rate(self):
  695. return self.lib.carla_get_sample_rate()
  696. def nsm_announce(self, url, appName_, pid):
  697. self.lib.carla_nsm_announce(url.encode("utf-8"), appName_.encode("utf-8"), pid)
  698. def nsm_ready(self):
  699. self.lib.carla_nsm_ready()
  700. def nsm_reply_open(self):
  701. self.lib.carla_nsm_reply_open()
  702. def nsm_reply_save(self):
  703. self.lib.carla_nsm_reply_save()