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.

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