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.

1028 lines
34KB

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