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.

899 lines
31KB

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