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.

841 lines
29KB

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