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.

991 lines
33KB

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