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.

3311 lines
129KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Common Carla 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. import os
  20. import json
  21. import sys
  22. from copy import deepcopy
  23. from subprocess import Popen, PIPE
  24. from PyQt4.QtCore import pyqtSlot, qWarning, Qt, QByteArray, QSettings, QThread, QTimer, SIGNAL, SLOT
  25. from PyQt4.QtGui import QColor, QCursor, QDialog, QIcon, QInputDialog, QFileDialog, QFontMetrics, QFrame, QMenu
  26. from PyQt4.QtGui import QLineEdit, QMessageBox, QPainter, QPainterPath, QTableWidgetItem, QVBoxLayout, QWidget
  27. # ------------------------------------------------------------------------------------------------------------
  28. # Imports (Custom)
  29. import ui_carla_about
  30. import ui_carla_database
  31. import ui_carla_edit
  32. import ui_carla_parameter
  33. import ui_carla_plugin
  34. import ui_carla_refresh
  35. from carla_backend import *
  36. # ------------------------------------------------------------------------------------------------------------
  37. # Try Import LADSPA-RDF
  38. try:
  39. import ladspa_rdf
  40. haveLRDF = True
  41. except:
  42. print("LRDF Support not available (LADSPA-RDF will be disabled)")
  43. haveLRDF = False
  44. # ------------------------------------------------------------------------------------------------------------
  45. # Try Import Signal
  46. try:
  47. from signal import signal, SIGINT, SIGTERM, SIGUSR1
  48. haveSignal = True
  49. except:
  50. haveSignal = False
  51. # ------------------------------------------------------------------------------------------------------------
  52. # Platform specific stuff
  53. if MACOS:
  54. from PyQt4.QtGui import qt_mac_set_menubar_icons
  55. qt_mac_set_menubar_icons(False)
  56. elif WINDOWS:
  57. WINDIR = os.getenv("WINDIR")
  58. # ------------------------------------------------------------------------------------------------------------
  59. # Set Version
  60. VERSION = "0.8.0"
  61. # ------------------------------------------------------------------------------------------------------------
  62. # Set TMP
  63. TMP = os.getenv("TMP")
  64. if TMP is None:
  65. if WINDOWS:
  66. qWarning("TMP variable not set")
  67. TMP = os.path.join(WINDIR, "temp")
  68. else:
  69. TMP = "/tmp"
  70. # ------------------------------------------------------------------------------------------------------------
  71. # Set HOME
  72. HOME = os.getenv("HOME")
  73. if HOME is None:
  74. HOME = os.path.expanduser("~")
  75. if LINUX or MACOS:
  76. qWarning("HOME variable not set")
  77. if not os.path.exists(HOME):
  78. qWarning("HOME does not exist")
  79. HOME = TMP
  80. # ------------------------------------------------------------------------------------------------------------
  81. # Set PATH
  82. PATH = os.getenv("PATH")
  83. if PATH is None:
  84. qWarning("PATH variable not set")
  85. if MACOS:
  86. PATH = ("/opt/local/bin", "/usr/local/bin", "/usr/bin", "/bin")
  87. elif WINDOWS:
  88. PATH = (os.path.join(WINDIR, "system32"), WINDIR)
  89. else:
  90. PATH = ("/usr/local/bin", "/usr/bin", "/bin")
  91. else:
  92. PATH = PATH.split(os.pathsep)
  93. # ------------------------------------------------------------------------------------------------------------
  94. # Global Carla object
  95. class CarlaObject(object):
  96. __slots__ = [
  97. 'host',
  98. 'gui',
  99. 'isControl',
  100. 'isLocal',
  101. 'processMode',
  102. 'maxParameters',
  103. 'LADSPA_PATH',
  104. 'DSSI_PATH',
  105. 'LV2_PATH',
  106. 'VST_PATH',
  107. 'GIG_PATH',
  108. 'SF2_PATH',
  109. 'SFZ_PATH'
  110. ]
  111. Carla = CarlaObject()
  112. Carla.host = None
  113. Carla.gui = None
  114. Carla.isControl = False
  115. Carla.isLocal = True
  116. Carla.processMode = PROCESS_MODE_CONTINUOUS_RACK
  117. Carla.maxParameters = MAX_DEFAULT_PARAMETERS
  118. # ------------------------------------------------------------------------------------------------------------
  119. # Carla GUI defines
  120. ICON_STATE_NULL = 0
  121. ICON_STATE_OFF = 1
  122. ICON_STATE_WAIT = 2
  123. ICON_STATE_ON = 3
  124. PALETTE_COLOR_NONE = 0
  125. PALETTE_COLOR_WHITE = 1
  126. PALETTE_COLOR_RED = 2
  127. PALETTE_COLOR_GREEN = 3
  128. PALETTE_COLOR_BLUE = 4
  129. PALETTE_COLOR_YELLOW = 5
  130. PALETTE_COLOR_ORANGE = 6
  131. PALETTE_COLOR_BROWN = 7
  132. PALETTE_COLOR_PINK = 8
  133. # ------------------------------------------------------------------------------------------------------------
  134. # Static MIDI CC list
  135. MIDI_CC_LIST = (
  136. "0x01 Modulation",
  137. "0x02 Breath",
  138. "0x03 (Undefined)",
  139. "0x04 Foot",
  140. "0x05 Portamento",
  141. "0x07 Volume",
  142. "0x08 Balance",
  143. "0x09 (Undefined)",
  144. "0x0A Pan",
  145. "0x0B Expression",
  146. "0x0C FX Control 1",
  147. "0x0D FX Control 2",
  148. "0x0E (Undefined)",
  149. "0x0F (Undefined)",
  150. "0x10 General Purpose 1",
  151. "0x11 General Purpose 2",
  152. "0x12 General Purpose 3",
  153. "0x13 General Purpose 4",
  154. "0x14 (Undefined)",
  155. "0x15 (Undefined)",
  156. "0x16 (Undefined)",
  157. "0x17 (Undefined)",
  158. "0x18 (Undefined)",
  159. "0x19 (Undefined)",
  160. "0x1A (Undefined)",
  161. "0x1B (Undefined)",
  162. "0x1C (Undefined)",
  163. "0x1D (Undefined)",
  164. "0x1E (Undefined)",
  165. "0x1F (Undefined)",
  166. "0x46 Control 1 [Variation]",
  167. "0x47 Control 2 [Timbre]",
  168. "0x48 Control 3 [Release]",
  169. "0x49 Control 4 [Attack]",
  170. "0x4A Control 5 [Brightness]",
  171. "0x4B Control 6 [Decay]",
  172. "0x4C Control 7 [Vib Rate]",
  173. "0x4D Control 8 [Vib Depth]",
  174. "0x4E Control 9 [Vib Delay]",
  175. "0x4F Control 10 [Undefined]",
  176. "0x50 General Purpose 5",
  177. "0x51 General Purpose 6",
  178. "0x52 General Purpose 7",
  179. "0x53 General Purpose 8",
  180. "0x54 Portamento Control",
  181. "0x5B FX 1 Depth [Reverb]",
  182. "0x5C FX 2 Depth [Tremolo]",
  183. "0x5D FX 3 Depth [Chorus]",
  184. "0x5E FX 4 Depth [Detune]",
  185. "0x5F FX 5 Depth [Phaser]"
  186. )
  187. # ------------------------------------------------------------------------------------------------------------
  188. # Default Plugin Folders
  189. if WINDOWS:
  190. splitter = ";"
  191. APPDATA = os.getenv("APPDATA")
  192. PROGRAMFILES = os.getenv("PROGRAMFILES")
  193. PROGRAMFILESx86 = os.getenv("PROGRAMFILES(x86)")
  194. COMMONPROGRAMFILES = os.getenv("COMMONPROGRAMFILES")
  195. # Small integrity tests
  196. if not APPDATA:
  197. print("APPDATA variable not set, cannot continue")
  198. sys.exit(1)
  199. if not PROGRAMFILES:
  200. print("PROGRAMFILES variable not set, cannot continue")
  201. sys.exit(1)
  202. if not COMMONPROGRAMFILES:
  203. print("COMMONPROGRAMFILES variable not set, cannot continue")
  204. sys.exit(1)
  205. DEFAULT_LADSPA_PATH = ";".join((os.path.join(APPDATA, "LADSPA"),
  206. os.path.join(PROGRAMFILES, "LADSPA")))
  207. DEFAULT_DSSI_PATH = ";".join((os.path.join(APPDATA, "DSSI"),
  208. os.path.join(PROGRAMFILES, "DSSI")))
  209. DEFAULT_LV2_PATH = ";".join((os.path.join(APPDATA, "LV2"),
  210. os.path.join(COMMONPROGRAMFILES, "LV2")))
  211. DEFAULT_VST_PATH = ";".join((os.path.join(PROGRAMFILES, "VstPlugins"),
  212. os.path.join(PROGRAMFILES, "Steinberg", "VstPlugins")))
  213. DEFAULT_GIG_PATH = ";".join((os.path.join(APPDATA, "GIG"),))
  214. DEFAULT_SF2_PATH = ";".join((os.path.join(APPDATA, "SF2"),))
  215. DEFAULT_SFZ_PATH = ";".join((os.path.join(APPDATA, "SFZ"),))
  216. if PROGRAMFILESx86:
  217. DEFAULT_LADSPA_PATH += ";"+os.path.join(PROGRAMFILESx86, "LADSPA")
  218. DEFAULT_DSSI_PATH += ";"+os.path.join(PROGRAMFILESx86, "DSSI")
  219. DEFAULT_VST_PATH += ";"+os.path.join(PROGRAMFILESx86, "VstPlugins")
  220. DEFAULT_VST_PATH += ";"+os.path.join(PROGRAMFILESx86, "Steinberg", "VstPlugins")
  221. elif HAIKU:
  222. splitter = ":"
  223. DEFAULT_LADSPA_PATH = ":".join((os.path.join(HOME, ".ladspa"),
  224. os.path.join("/", "boot", "common", "add-ons", "ladspa")))
  225. DEFAULT_DSSI_PATH = ":".join((os.path.join(HOME, ".dssi"),
  226. os.path.join("/", "boot", "common", "add-ons", "dssi")))
  227. DEFAULT_LV2_PATH = ":".join((os.path.join(HOME, ".lv2"),
  228. os.path.join("/", "boot", "common", "add-ons", "lv2")))
  229. DEFAULT_VST_PATH = ":".join((os.path.join(HOME, ".vst"),
  230. os.path.join("/", "boot", "common", "add-ons", "vst")))
  231. # TODO
  232. DEFAULT_GIG_PATH = ""
  233. DEFAULT_SF2_PATH = ""
  234. DEFAULT_SFZ_PATH = ""
  235. elif MACOS:
  236. splitter = ":"
  237. DEFAULT_LADSPA_PATH = ":".join((os.path.join(HOME, "Library", "Audio", "Plug-Ins", "LADSPA"),
  238. os.path.join("/", "Library", "Audio", "Plug-Ins", "LADSPA")))
  239. DEFAULT_DSSI_PATH = ":".join((os.path.join(HOME, "Library", "Audio", "Plug-Ins", "DSSI"),
  240. os.path.join("/", "Library", "Audio", "Plug-Ins", "DSSI")))
  241. DEFAULT_LV2_PATH = ":".join((os.path.join(HOME, "Library", "Audio", "Plug-Ins", "LV2"),
  242. os.path.join("/", "Library", "Audio", "Plug-Ins", "LV2")))
  243. DEFAULT_VST_PATH = ":".join((os.path.join(HOME, "Library", "Audio", "Plug-Ins", "VST"),
  244. os.path.join("/", "Library", "Audio", "Plug-Ins", "VST")))
  245. # TODO
  246. DEFAULT_GIG_PATH = ""
  247. DEFAULT_SF2_PATH = ""
  248. DEFAULT_SFZ_PATH = ""
  249. else:
  250. splitter = ":"
  251. DEFAULT_LADSPA_PATH = ":".join((os.path.join(HOME, ".ladspa"),
  252. os.path.join("/", "usr", "lib", "ladspa"),
  253. os.path.join("/", "usr", "local", "lib", "ladspa")))
  254. DEFAULT_DSSI_PATH = ":".join((os.path.join(HOME, ".dssi"),
  255. os.path.join("/", "usr", "lib", "dssi"),
  256. os.path.join("/", "usr", "local", "lib", "dssi")))
  257. DEFAULT_LV2_PATH = ":".join((os.path.join(HOME, ".lv2"),
  258. os.path.join("/", "usr", "lib", "lv2"),
  259. os.path.join("/", "usr", "local", "lib", "lv2")))
  260. DEFAULT_VST_PATH = ":".join((os.path.join(HOME, ".vst"),
  261. os.path.join("/", "usr", "lib", "vst"),
  262. os.path.join("/", "usr", "local", "lib", "vst")))
  263. DEFAULT_GIG_PATH = ":".join((os.path.join(HOME, ".sounds"),
  264. os.path.join("/", "usr", "share", "sounds", "gig")))
  265. DEFAULT_SF2_PATH = ":".join((os.path.join(HOME, ".sounds"),
  266. os.path.join("/", "usr", "share", "sounds", "sf2")))
  267. DEFAULT_SFZ_PATH = ":".join((os.path.join(HOME, ".sounds"),
  268. os.path.join("/", "usr", "share", "sounds", "sfz")))
  269. # ------------------------------------------------------------------------------------------------------------
  270. # Default Plugin Folders (set)
  271. readEnvVars = True
  272. if WINDOWS:
  273. # Check if running Wine. If yes, ignore env vars
  274. from winreg import ConnectRegistry, OpenKey, CloseKey, HKEY_CURRENT_USER
  275. reg = ConnectRegistry(None, HKEY_CURRENT_USER)
  276. try:
  277. key = OpenKey(reg, r"SOFTWARE\Wine")
  278. CloseKey(key)
  279. readEnvVars = False
  280. except:
  281. pass
  282. CloseKey(reg)
  283. del reg
  284. if readEnvVars:
  285. Carla.LADSPA_PATH = os.getenv("LADSPA_PATH", DEFAULT_LADSPA_PATH).split(splitter)
  286. Carla.DSSI_PATH = os.getenv("DSSI_PATH", DEFAULT_DSSI_PATH).split(splitter)
  287. Carla.LV2_PATH = os.getenv("LV2_PATH", DEFAULT_LV2_PATH).split(splitter)
  288. Carla.VST_PATH = os.getenv("VST_PATH", DEFAULT_VST_PATH).split(splitter)
  289. Carla.GIG_PATH = os.getenv("GIG_PATH", DEFAULT_GIG_PATH).split(splitter)
  290. Carla.SF2_PATH = os.getenv("SF2_PATH", DEFAULT_SF2_PATH).split(splitter)
  291. Carla.SFZ_PATH = os.getenv("SFZ_PATH", DEFAULT_SFZ_PATH).split(splitter)
  292. if haveLRDF:
  293. LADSPA_RDF_PATH_env = os.getenv("LADSPA_RDF_PATH")
  294. if LADSPA_RDF_PATH_env:
  295. ladspa_rdf.set_rdf_path(LADSPA_RDF_PATH_env.split(splitter))
  296. del LADSPA_RDF_PATH_env
  297. else:
  298. Carla.LADSPA_PATH = DEFAULT_LADSPA_PATH.split(splitter)
  299. Carla.DSSI_PATH = DEFAULT_DSSI_PATH.split(splitter)
  300. Carla.LV2_PATH = DEFAULT_LV2_PATH.split(splitter)
  301. Carla.VST_PATH = DEFAULT_VST_PATH.split(splitter)
  302. Carla.GIG_PATH = DEFAULT_GIG_PATH.split(splitter)
  303. Carla.SF2_PATH = DEFAULT_SF2_PATH.split(splitter)
  304. Carla.SFZ_PATH = DEFAULT_SFZ_PATH.split(splitter)
  305. # ------------------------------------------------------------------------------------------------------------
  306. # Search for Carla library and tools
  307. global carla_library_path
  308. carla_library_path = ""
  309. carla_discovery_native = ""
  310. carla_discovery_posix32 = ""
  311. carla_discovery_posix64 = ""
  312. carla_discovery_win32 = ""
  313. carla_discovery_win64 = ""
  314. carla_bridge_native = ""
  315. carla_bridge_posix32 = ""
  316. carla_bridge_posix64 = ""
  317. carla_bridge_win32 = ""
  318. carla_bridge_win64 = ""
  319. carla_bridge_lv2_gtk2 = ""
  320. carla_bridge_lv2_gtk3 = ""
  321. carla_bridge_lv2_qt4 = ""
  322. carla_bridge_lv2_qt5 = ""
  323. carla_bridge_lv2_cocoa = ""
  324. carla_bridge_lv2_windows = ""
  325. carla_bridge_lv2_x11 = ""
  326. carla_bridge_vst_cocoa = ""
  327. carla_bridge_vst_hwnd = ""
  328. carla_bridge_vst_x11 = ""
  329. if WINDOWS:
  330. carla_libname = "libcarla_standalone.dll"
  331. elif MACOS:
  332. carla_libname = "libcarla_standalone.dylib"
  333. else:
  334. carla_libname = "libcarla_standalone.so"
  335. CWD = sys.path[0]
  336. # make it work with cxfreeze
  337. if CWD.endswith("%scarla" % os.sep):
  338. CWD = CWD.rsplit("%scarla" % os.sep, 1)[0]
  339. elif CWD.endswith("carla.exe"):
  340. CWD = CWD.rsplit("carla.exe", 1)[0]
  341. # find carla_library_path
  342. if os.path.exists(os.path.join(CWD, "backend", carla_libname)):
  343. carla_library_path = os.path.join(CWD, "backend", carla_libname)
  344. else:
  345. if WINDOWS:
  346. CARLA_PATH = (os.path.join(PROGRAMFILES, "Carla"),)
  347. elif MACOS:
  348. CARLA_PATH = ("/opt/local/lib", "/usr/local/lib/", "/usr/lib")
  349. else:
  350. CARLA_PATH = ("/usr/local/lib/", "/usr/lib")
  351. for path in CARLA_PATH:
  352. if os.path.exists(os.path.join(path, "carla", carla_libname)):
  353. carla_library_path = os.path.join(path, "carla", carla_libname)
  354. break
  355. # find tool
  356. def findTool(tdir, tname):
  357. if os.path.exists(os.path.join(CWD, tdir, tname)):
  358. return os.path.join(CWD, tdir, tname)
  359. for p in PATH:
  360. if os.path.exists(os.path.join(p, tname)):
  361. return os.path.join(p, tname)
  362. return ""
  363. # find windows tools
  364. carla_discovery_win32 = findTool("discovery", "carla-discovery-win32.exe")
  365. carla_discovery_win64 = findTool("discovery", "carla-discovery-win64.exe")
  366. carla_bridge_win32 = findTool("bridges", "carla-bridge-win32.exe")
  367. carla_bridge_win64 = findTool("bridges", "carla-bridge-win64.exe")
  368. # find native and posix tools
  369. if not WINDOWS:
  370. carla_discovery_native = findTool("discovery", "carla-discovery-native")
  371. carla_discovery_posix32 = findTool("discovery", "carla-discovery-posix32")
  372. carla_discovery_posix64 = findTool("discovery", "carla-discovery-posix64")
  373. carla_bridge_native = findTool("bridges", "carla-bridge-native")
  374. carla_bridge_posix32 = findTool("bridges", "carla-bridge-posix32")
  375. carla_bridge_posix64 = findTool("bridges", "carla-bridge-posix64")
  376. # find windows only tools
  377. if WINDOWS:
  378. carla_bridge_lv2_windows = findTool("bridges", "carla-bridge-lv2-windows.exe")
  379. carla_bridge_vst_hwnd = findTool("bridges", "carla-bridge-vst-hwnd.exe")
  380. # find mac os only tools
  381. elif MACOS:
  382. carla_bridge_lv2_cocoa = findTool("bridges", "carla-bridge-lv2-cocoa")
  383. carla_bridge_vst_cocoa = findTool("bridges", "carla-bridge-vst-cocoa")
  384. # find generic tools
  385. else:
  386. carla_bridge_lv2_gtk2 = findTool("bridges", "carla-bridge-lv2-gtk2")
  387. carla_bridge_lv2_gtk3 = findTool("bridges", "carla-bridge-lv2-gtk3")
  388. carla_bridge_lv2_qt4 = findTool("bridges", "carla-bridge-lv2-qt4")
  389. carla_bridge_lv2_qt5 = findTool("bridges", "carla-bridge-lv2-qt5")
  390. carla_bridge_lv2_x11 = findTool("bridges", "carla-bridge-lv2-x11")
  391. carla_bridge_vst_x11 = findTool("bridges", "carla-bridge-vst-x11")
  392. # ------------------------------------------------------------------------------------------------------------
  393. # Convert a ctypes c_char_p into a python string
  394. def cString(value):
  395. if not value:
  396. return ""
  397. if isinstance(value, str):
  398. return value
  399. return value.decode("utf-8", errors="ignore")
  400. # ------------------------------------------------------------------------------------------------------------
  401. # Check if a value is a number (float support)
  402. def isNumber(value):
  403. try:
  404. float(value)
  405. return True
  406. except:
  407. return False
  408. # ------------------------------------------------------------------------------------------------------------
  409. # Convert a value to a list
  410. def toList(value):
  411. if value is None:
  412. return []
  413. elif not isinstance(value, list):
  414. return [value]
  415. else:
  416. return value
  417. # ------------------------------------------------------------------------------------------------------------
  418. # Get Icon from user theme, using our own as backup (Oxygen)
  419. def getIcon(icon, size=16):
  420. return QIcon.fromTheme(icon, QIcon(":/%ix%i/%s.png" % (size, size, icon)))
  421. # ------------------------------------------------------------------------------------------------------------
  422. # Signal handler
  423. def signalHandler(sig, frame):
  424. if Carla.gui is None:
  425. return
  426. if sig in (SIGINT, SIGTERM):
  427. Carla.gui.emit(SIGNAL("SIGTERM()"))
  428. elif sig == SIGUSR1:
  429. Carla.gui.emit(SIGNAL("SIGUSR1()"))
  430. def setUpSignals():
  431. if not haveSignal:
  432. return
  433. signal(SIGINT, signalHandler)
  434. signal(SIGTERM, signalHandler)
  435. signal(SIGUSR1, signalHandler)
  436. # ------------------------------------------------------------------------------------------------------------
  437. # QLineEdit and QPushButton combo
  438. def getAndSetPath(self_, currentPath, lineEdit):
  439. newPath = QFileDialog.getExistingDirectory(self_, self_.tr("Set Path"), currentPath, QFileDialog.ShowDirsOnly)
  440. if newPath:
  441. lineEdit.setText(newPath)
  442. return newPath
  443. # ------------------------------------------------------------------------------------------------------------
  444. # Custom MessageBox
  445. def CustomMessageBox(self_, icon, title, text, extraText="", buttons=QMessageBox.Yes|QMessageBox.No, defButton=QMessageBox.No):
  446. msgBox = QMessageBox(self_)
  447. msgBox.setIcon(icon)
  448. msgBox.setWindowTitle(title)
  449. msgBox.setText(text)
  450. msgBox.setInformativeText(extraText)
  451. msgBox.setStandardButtons(buttons)
  452. msgBox.setDefaultButton(defButton)
  453. return msgBox.exec_()
  454. # ------------------------------------------------------------------------------------------------------------
  455. # Plugin Query (helper functions)
  456. def findBinaries(bPATH, OS):
  457. binaries = []
  458. if OS == "WINDOWS":
  459. extensions = (".dll",)
  460. elif OS == "MACOS":
  461. extensions = (".dylib", ".so")
  462. else:
  463. extensions = (".so",)
  464. for root, dirs, files in os.walk(bPATH):
  465. for name in [name for name in files if name.lower().endswith(extensions)]:
  466. binaries.append(os.path.join(root, name))
  467. return binaries
  468. def findLV2Bundles(bPATH):
  469. bundles = []
  470. for root, dirs, files in os.walk(bPATH):
  471. if os.path.exists(os.path.join(root, "manifest.ttl")):
  472. bundles.append(root)
  473. return bundles
  474. def findSoundKits(bPATH, stype):
  475. soundfonts = []
  476. if stype == "gig":
  477. extensions = (".gig",)
  478. elif stype == "sf2":
  479. extensions = (".sf2",)
  480. elif stype == "sfz":
  481. extensions = (".sfz",)
  482. else:
  483. return []
  484. for root, dirs, files in os.walk(bPATH):
  485. for name in [name for name in files if name.lower().endswith(extensions)]:
  486. soundfonts.append(os.path.join(root, name))
  487. return soundfonts
  488. def findDSSIGUI(filename, name, label):
  489. pluginDir = filename.rsplit(".", 1)[0]
  490. shortName = os.path.basename(pluginDir)
  491. guiFilename = ""
  492. checkName = name.replace(" ", "_")
  493. checkLabel = label
  494. checkSName = shortName
  495. if checkName[-1] != "_": checkName += "_"
  496. if checkLabel[-1] != "_": checkLabel += "_"
  497. if checkSName[-1] != "_": checkSName += "_"
  498. for root, dirs, files in os.walk(pluginDir):
  499. guiFiles = files
  500. break
  501. else:
  502. guiFiles = []
  503. for guiFile in guiFiles:
  504. if guiFile.startswith(checkName) or guiFile.startswith(checkLabel) or guiFile.startswith(checkSName):
  505. guiFilename = os.path.join(pluginDir, guiFile)
  506. break
  507. return guiFilename
  508. # ------------------------------------------------------------------------------------------------------------
  509. # Plugin Query
  510. PLUGIN_QUERY_API_VERSION = 1
  511. PyPluginInfo = {
  512. 'API': PLUGIN_QUERY_API_VERSION,
  513. 'build': BINARY_NONE,
  514. 'type': PLUGIN_NONE,
  515. 'hints': 0x0,
  516. 'binary': "",
  517. 'name': "",
  518. 'label': "",
  519. 'maker': "",
  520. 'copyright': "",
  521. 'uniqueId': 0,
  522. 'audio.ins': 0,
  523. 'audio.outs': 0,
  524. 'audio.total': 0,
  525. 'midi.ins': 0,
  526. 'midi.outs': 0,
  527. 'midi.total': 0,
  528. 'parameters.ins': 0,
  529. 'parameters.outs': 0,
  530. 'parameters.total': 0,
  531. 'programs.total': 0
  532. }
  533. def runCarlaDiscovery(itype, stype, filename, tool, isWine=False):
  534. fakeLabel = os.path.basename(filename).rsplit(".", 1)[0]
  535. plugins = []
  536. command = []
  537. if LINUX or MACOS:
  538. command.append("env")
  539. command.append("LANG=C")
  540. if isWine:
  541. command.append("WINEDEBUG=-all")
  542. command.append(tool)
  543. command.append(stype)
  544. command.append(filename)
  545. Ps = Popen(command, stdout=PIPE)
  546. Ps.wait()
  547. output = Ps.stdout.read().decode("utf-8", errors="ignore").split("\n")
  548. pinfo = None
  549. for line in output:
  550. line = line.strip()
  551. if line == "carla-discovery::init::-----------":
  552. pinfo = deepcopy(PyPluginInfo)
  553. pinfo['type'] = itype
  554. pinfo['binary'] = filename
  555. elif line == "carla-discovery::end::------------":
  556. if pinfo != None:
  557. plugins.append(pinfo)
  558. pinfo = None
  559. elif line == "Segmentation fault":
  560. print("carla-discovery::crash::%s crashed during discovery" % filename)
  561. elif line.startswith("err:module:import_dll Library"):
  562. print(line)
  563. elif line.startswith("carla-discovery::error::"):
  564. print("%s - %s" % (line, filename))
  565. elif line.startswith("carla-discovery::"):
  566. if pinfo == None:
  567. continue
  568. prop, value = line.replace("carla-discovery::", "").split("::", 1)
  569. if prop == "name":
  570. pinfo['name'] = value if value else fakeLabel
  571. elif prop in ("label", "uri"):
  572. pinfo['label'] = value if value else fakeLabel
  573. elif prop == "maker":
  574. pinfo['maker'] = value
  575. elif prop == "copyright":
  576. pinfo['copyright'] = value
  577. elif prop == "uniqueId":
  578. if value.isdigit(): pinfo['uniqueId'] = int(value)
  579. elif prop == "hints":
  580. if value.isdigit(): pinfo['hints'] = int(value)
  581. elif prop == "audio.ins":
  582. if value.isdigit(): pinfo['audio.ins'] = int(value)
  583. elif prop == "audio.outs":
  584. if value.isdigit(): pinfo['audio.outs'] = int(value)
  585. elif prop == "audio.total":
  586. if value.isdigit(): pinfo['audio.total'] = int(value)
  587. elif prop == "midi.ins":
  588. if value.isdigit(): pinfo['midi.ins'] = int(value)
  589. elif prop == "midi.outs":
  590. if value.isdigit(): pinfo['midi.outs'] = int(value)
  591. elif prop == "midi.total":
  592. if value.isdigit(): pinfo['midi.total'] = int(value)
  593. elif prop == "parameters.ins":
  594. if value.isdigit(): pinfo['parameters.ins'] = int(value)
  595. elif prop == "parameters.outs":
  596. if value.isdigit(): pinfo['parameters.outs'] = int(value)
  597. elif prop == "parameters.total":
  598. if value.isdigit(): pinfo['parameters.total'] = int(value)
  599. elif prop == "programs.total":
  600. if value.isdigit(): pinfo['programs.total'] = int(value)
  601. elif prop == "build":
  602. if value.isdigit(): pinfo['build'] = int(value)
  603. # Additional checks
  604. for pinfo in plugins:
  605. if itype == PLUGIN_DSSI:
  606. if findDSSIGUI(pinfo['binary'], pinfo['name'], pinfo['label']):
  607. pinfo['hints'] |= PLUGIN_HAS_GUI
  608. return plugins
  609. def checkPluginInternal(desc):
  610. plugins = []
  611. pinfo = deepcopy(PyPluginInfo)
  612. pinfo['build'] = BINARY_NATIVE
  613. pinfo['type'] = PLUGIN_INTERNAL
  614. pinfo['hints'] = int(desc['hints'])
  615. pinfo['name'] = cString(desc['name'])
  616. pinfo['label'] = cString(desc['label'])
  617. pinfo['maker'] = cString(desc['maker'])
  618. pinfo['copyright'] = cString(desc['copyright'])
  619. pinfo['audio.ins'] = int(desc['audioIns'])
  620. pinfo['audio.outs'] = int(desc['audioOuts'])
  621. pinfo['audio.total'] = pinfo['audio.ins'] + pinfo['audio.outs']
  622. pinfo['midi.ins'] = int(desc['midiIns'])
  623. pinfo['midi.outs'] = int(desc['midiOuts'])
  624. pinfo['midi.total'] = pinfo['midi.ins'] + pinfo['midi.outs']
  625. pinfo['parameters.ins'] = int(desc['parameterIns'])
  626. pinfo['parameters.outs'] = int(desc['parameterOuts'])
  627. pinfo['parameters.total'] = pinfo['parameters.ins'] + pinfo['parameters.outs']
  628. plugins.append(pinfo)
  629. return plugins
  630. def checkPluginLADSPA(filename, tool, isWine=False):
  631. return runCarlaDiscovery(PLUGIN_LADSPA, "LADSPA", filename, tool, isWine)
  632. def checkPluginDSSI(filename, tool, isWine=False):
  633. return runCarlaDiscovery(PLUGIN_DSSI, "DSSI", filename, tool, isWine)
  634. def checkPluginLV2(filename, tool, isWine=False):
  635. return runCarlaDiscovery(PLUGIN_LV2, "LV2", filename, tool, isWine)
  636. def checkPluginVST(filename, tool, isWine=False):
  637. return runCarlaDiscovery(PLUGIN_VST, "VST", filename, tool, isWine)
  638. def checkPluginGIG(filename, tool):
  639. return runCarlaDiscovery(PLUGIN_GIG, "GIG", filename, tool)
  640. def checkPluginSF2(filename, tool):
  641. return runCarlaDiscovery(PLUGIN_SF2, "SF2", filename, tool)
  642. def checkPluginSFZ(filename, tool):
  643. return runCarlaDiscovery(PLUGIN_SFZ, "SFZ", filename, tool)
  644. # ------------------------------------------------------------------------------------------------------------
  645. # Carla About dialog
  646. class CarlaAboutW(QDialog):
  647. def __init__(self, parent):
  648. QDialog.__init__(self, parent)
  649. self.ui = ui_carla_about.Ui_CarlaAboutW()
  650. self.ui.setupUi(self)
  651. if Carla.isControl:
  652. extraInfo = " - <b>%s</b>" % self.tr("OSC Bridge Version")
  653. else:
  654. extraInfo = ""
  655. self.ui.l_about.setText(self.tr(""
  656. "<br>Version %s"
  657. "<br>Carla is a Multi-Plugin Host for JACK%s.<br>"
  658. "<br>Copyright (C) 2011-2013 falkTX<br>"
  659. "" % (VERSION, extraInfo)))
  660. if Carla.isControl:
  661. self.ui.l_extended.hide()
  662. self.ui.tabWidget.removeTab(1)
  663. self.ui.tabWidget.removeTab(1)
  664. self.adjustSize()
  665. else:
  666. self.ui.l_extended.setText(cString(Carla.host.get_extended_license_text()))
  667. if Carla.host.is_engine_running():
  668. self.ui.le_osc_url_tcp.setText(cString(Carla.host.get_host_osc_url_tcp()))
  669. self.ui.le_osc_url_udp.setText(cString(Carla.host.get_host_osc_url_udp()))
  670. else:
  671. self.ui.le_osc_url_tcp.setText(self.tr("(Engine not running)"))
  672. self.ui.le_osc_url_udp.setText(self.tr("(Engine not running)"))
  673. self.ui.l_osc_cmds.setText(""
  674. " /set_active <i-value>\n"
  675. " /set_drywet <f-value>\n"
  676. " /set_volume <f-value>\n"
  677. " /set_balance_left <f-value>\n"
  678. " /set_balance_right <f-value>\n"
  679. " /set_panning <f-value>\n"
  680. " /set_parameter_value <i-index> <f-value>\n"
  681. " /set_parameter_midi_cc <i-index> <i-cc>\n"
  682. " /set_parameter_midi_channel <i-index> <i-channel>\n"
  683. " /set_program <i-index>\n"
  684. " /set_midi_program <i-index>\n"
  685. " /note_on <i-note> <i-velo>\n"
  686. " /note_off <i-note>\n"
  687. )
  688. self.ui.l_example.setText("/Carla/2/set_parameter_value 5 1.0")
  689. self.ui.l_example_help.setText("<i>(as in this example, \"2\" is the plugin number and \"5\" the parameter)</i>")
  690. self.ui.l_ladspa.setText(self.tr("Everything! (Including LRDF)"))
  691. self.ui.l_dssi.setText(self.tr("Everything! (Including CustomData/Chunks)"))
  692. self.ui.l_lv2.setText(self.tr("About 80&#37; complete (using custom extensions)<br/>"
  693. "Implemented Feature/Extensions:"
  694. "<ul>"
  695. "<li>http://lv2plug.in/ns/ext/atom</li>"
  696. "<li>http://lv2plug.in/ns/ext/buf-size</li>"
  697. "<li>http://lv2plug.in/ns/ext/data-access</li>"
  698. #"<li>http://lv2plug.in/ns/ext/dynmanifest</li>"
  699. "<li>http://lv2plug.in/ns/ext/event</li>"
  700. "<li>http://lv2plug.in/ns/ext/instance-access</li>"
  701. "<li>http://lv2plug.in/ns/ext/log</li>"
  702. "<li>http://lv2plug.in/ns/ext/midi</li>"
  703. "<li>http://lv2plug.in/ns/ext/options</li>"
  704. "<li>http://lv2plug.in/ns/ext/parameters</li>"
  705. #"<li>http://lv2plug.in/ns/ext/patch</li>"
  706. #"<li>http://lv2plug.in/ns/ext/port-groups</li>"
  707. #"<li>http://lv2plug.in/ns/ext/port-props</li>"
  708. "<li>http://lv2plug.in/ns/ext/presets</li>"
  709. "<li>http://lv2plug.in/ns/ext/state</li>"
  710. "<li>http://lv2plug.in/ns/ext/time</li>"
  711. "<li>http://lv2plug.in/ns/ext/uri-map</li>"
  712. "<li>http://lv2plug.in/ns/ext/urid</li>"
  713. #"<li>http://lv2plug.in/ns/ext/worker</li>"
  714. "<li>http://lv2plug.in/ns/extensions/ui</li>"
  715. "<li>http://lv2plug.in/ns/extensions/units</li>"
  716. "<li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li>"
  717. "<li>http://kxstudio.sf.net/ns/lv2ext/programs</li>"
  718. "<li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li>"
  719. "<li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li>"
  720. "<li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li>"
  721. "</ul>"))
  722. self.ui.l_vst.setText(self.tr("<p>About 85&#37; complete (missing vst bank/presets and some minor stuff)</p>"))
  723. def done(self, r):
  724. QDialog.done(self, r)
  725. self.close()
  726. # ------------------------------------------------------------------------------------------------------------
  727. # Plugin Parameter
  728. class PluginParameter(QWidget):
  729. def __init__(self, parent, pInfo, pluginId, tabIndex):
  730. QWidget.__init__(self, parent)
  731. self.ui = ui_carla_parameter.Ui_PluginParameter()
  732. self.ui.setupUi(self)
  733. # -------------------------------------------------------------
  734. # Internal stuff
  735. self.fMidiControl = -1
  736. self.fMidiChannel = 1
  737. self.fParameterId = pInfo['index']
  738. self.fPluginId = pluginId
  739. self.fTabIndex = tabIndex
  740. # -------------------------------------------------------------
  741. # Set-up GUI
  742. pType = pInfo['type']
  743. pHints = pInfo['hints']
  744. self.ui.label.setText(pInfo['name'])
  745. self.ui.widget.setName(pInfo['name'])
  746. if pType == PARAMETER_INPUT:
  747. self.ui.widget.setMinimum(pInfo['minimum'])
  748. self.ui.widget.setMaximum(pInfo['maximum'])
  749. self.ui.widget.setDefault(pInfo['default'])
  750. self.ui.widget.setValue(pInfo['current'], False)
  751. self.ui.widget.setLabel(pInfo['unit'])
  752. self.ui.widget.setStep(pInfo['step'])
  753. self.ui.widget.setStepSmall(pInfo['stepSmall'])
  754. self.ui.widget.setStepLarge(pInfo['stepLarge'])
  755. self.ui.widget.setScalePoints(pInfo['scalePoints'], bool(pHints & PARAMETER_USES_SCALEPOINTS))
  756. if not pHints & PARAMETER_IS_ENABLED:
  757. self.ui.widget.setReadOnly(True)
  758. self.ui.sb_control.setEnabled(False)
  759. self.ui.sb_channel.setEnabled(False)
  760. elif not pHints & PARAMETER_IS_AUTOMABLE:
  761. self.ui.sb_control.setEnabled(False)
  762. self.ui.sb_channel.setEnabled(False)
  763. elif pType == PARAMETER_OUTPUT:
  764. self.ui.widget.setMinimum(pInfo['minimum'])
  765. self.ui.widget.setMaximum(pInfo['maximum'])
  766. self.ui.widget.setValue(pInfo['current'], False)
  767. self.ui.widget.setLabel(pInfo['unit'])
  768. self.ui.widget.setReadOnly(True)
  769. if not pHints & PARAMETER_IS_AUTOMABLE:
  770. self.ui.sb_control.setEnabled(False)
  771. self.ui.sb_channel.setEnabled(False)
  772. else:
  773. self.ui.widget.setVisible(False)
  774. self.ui.sb_control.setVisible(False)
  775. self.ui.sb_channel.setVisible(False)
  776. if pHints & PARAMETER_USES_CUSTOM_TEXT:
  777. self.ui.widget.setTextCallback(self._textCallBack)
  778. self.ui.widget.updateAll()
  779. self.setMidiControl(pInfo['midiCC'])
  780. self.setMidiChannel(pInfo['midiChannel'])
  781. # -------------------------------------------------------------
  782. # Set-up connections
  783. self.connect(self.ui.sb_control, SIGNAL("customContextMenuRequested(QPoint)"), SLOT("slot_controlSpinboxCustomMenu()"))
  784. self.connect(self.ui.sb_channel, SIGNAL("customContextMenuRequested(QPoint)"), SLOT("slot_channelSpinboxCustomMenu()"))
  785. self.connect(self.ui.sb_control, SIGNAL("valueChanged(int)"), SLOT("slot_controlSpinboxChanged(int)"))
  786. self.connect(self.ui.sb_channel, SIGNAL("valueChanged(int)"), SLOT("slot_channelSpinboxChanged(int)"))
  787. self.connect(self.ui.widget, SIGNAL("valueChanged(double)"), SLOT("slot_widgetValueChanged(double)"))
  788. # -------------------------------------------------------------
  789. def pluginId(self):
  790. return self.fPluginId
  791. def tabIndex(self):
  792. return self.fTabIndex
  793. def setDefault(self, value):
  794. self.ui.widget.setDefault(value)
  795. def setValue(self, value, send=True):
  796. self.ui.widget.setValue(value, send)
  797. def setMidiControl(self, control):
  798. self.fMidiControl = control
  799. self.ui.sb_control.blockSignals(True)
  800. self.ui.sb_control.setValue(control)
  801. self.ui.sb_control.blockSignals(False)
  802. def setMidiChannel(self, channel):
  803. self.fMidiChannel = channel
  804. self.ui.sb_channel.blockSignals(True)
  805. self.ui.sb_channel.setValue(channel)
  806. self.ui.sb_channel.blockSignals(False)
  807. def setLabelWidth(self, width):
  808. self.ui.label.setMinimumWidth(width)
  809. self.ui.label.setMaximumWidth(width)
  810. @pyqtSlot()
  811. def slot_controlSpinboxCustomMenu(self):
  812. menu = QMenu(self)
  813. actNone = menu.addAction(self.tr("None"))
  814. if self.fMidiControl == -1:
  815. actNone.setCheckable(True)
  816. actNone.setChecked(True)
  817. for cc in MIDI_CC_LIST:
  818. action = menu.addAction(cc)
  819. if self.fMidiControl != -1 and int(cc.split(" ")[0], 16) == self.fMidiControl:
  820. action.setCheckable(True)
  821. action.setChecked(True)
  822. actSel = menu.exec_(QCursor.pos())
  823. if not actSel:
  824. pass
  825. elif actSel == actNone:
  826. self.ui.sb_control.setValue(-1)
  827. else:
  828. selControlStr = actSel.text()
  829. selControl = int(selControlStr.split(" ")[0], 16)
  830. self.ui.sb_control.setValue(selControl)
  831. @pyqtSlot()
  832. def slot_channelSpinboxCustomMenu(self):
  833. menu = QMenu(self)
  834. for i in range(1, 16+1):
  835. action = menu.addAction("%i" % i)
  836. if self.fMidiChannel == i:
  837. action.setCheckable(True)
  838. action.setChecked(True)
  839. actSel = menu.exec_(QCursor.pos())
  840. if actSel:
  841. selChannel = int(actSel.text())
  842. self.ui.sb_channel.setValue(selChannel)
  843. @pyqtSlot(int)
  844. def slot_controlSpinboxChanged(self, control):
  845. if self.fMidiControl != control:
  846. self.emit(SIGNAL("midiControlChanged(int, int)"), self.fParameterId, control)
  847. self.fMidiControl = control
  848. @pyqtSlot(int)
  849. def slot_channelSpinboxChanged(self, channel):
  850. if self.fMidiChannel != channel:
  851. self.emit(SIGNAL("midiChannelChanged(int, int)"), self.fParameterId, channel)
  852. self.fMidiChannel = channel
  853. @pyqtSlot(float)
  854. def slot_widgetValueChanged(self, value):
  855. self.emit(SIGNAL("valueChanged(int, double)"), self.fParameterId, value)
  856. def _textCallBack(self):
  857. return cString(Carla.host.get_parameter_text(self.fPluginId, self.fParameterId))
  858. # ------------------------------------------------------------------------------------------------------------
  859. # Plugin Editor (Built-in)
  860. class PluginEdit(QDialog):
  861. def __init__(self, parent, pluginId):
  862. QDialog.__init__(self, Carla.gui)
  863. self.ui = ui_carla_edit.Ui_PluginEdit()
  864. self.ui.setupUi(self)
  865. # -------------------------------------------------------------
  866. # Internal stuff
  867. self.fGeometry = QByteArray()
  868. self.fPluginId = pluginId
  869. self.fPuginInfo = None
  870. self.fRealParent = parent
  871. self.fCurrentProgram = -1
  872. self.fCurrentMidiProgram = -1
  873. self.fCurrentStateFilename = None
  874. self.fControlChannel = 0
  875. self.fScrollAreaSetup = False
  876. self.fParameterCount = 0
  877. self.fParameterList = [] # (type, id, widget)
  878. self.fParametersToUpdate = [] # (id, value)
  879. self.fPlayingNotes = [] # (channel, note)
  880. self.fTabIconOff = QIcon(":/bitmaps/led_off.png")
  881. self.fTabIconOn = QIcon(":/bitmaps/led_yellow.png")
  882. self.fTabIconCount = 0
  883. self.fTabIconTimers = []
  884. # -------------------------------------------------------------
  885. # Set-up GUI
  886. self.ui.dial_drywet.setCustomPaint(self.ui.dial_drywet.CUSTOM_PAINT_CARLA_WET)
  887. self.ui.dial_drywet.setPixmap(3)
  888. self.ui.dial_drywet.setLabel("Dry/Wet")
  889. self.ui.dial_vol.setCustomPaint(self.ui.dial_vol.CUSTOM_PAINT_CARLA_VOL)
  890. self.ui.dial_vol.setPixmap(3)
  891. self.ui.dial_vol.setLabel("Volume")
  892. self.ui.dial_b_left.setCustomPaint(self.ui.dial_b_left.CUSTOM_PAINT_CARLA_L)
  893. self.ui.dial_b_left.setPixmap(4)
  894. self.ui.dial_b_left.setLabel("L")
  895. self.ui.dial_b_right.setCustomPaint(self.ui.dial_b_right.CUSTOM_PAINT_CARLA_R)
  896. self.ui.dial_b_right.setPixmap(4)
  897. self.ui.dial_b_right.setLabel("R")
  898. self.ui.keyboard.setMode(self.ui.keyboard.HORIZONTAL)
  899. self.ui.keyboard.setOctaves(10)
  900. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  901. self.ui.scrollArea.ensureVisible(self.ui.keyboard.width() / 3, 0)
  902. self.ui.scrollArea.setEnabled(False)
  903. self.ui.scrollArea.setVisible(False)
  904. self.reloadAll()
  905. # -------------------------------------------------------------
  906. # Set-up connections
  907. self.connect(self, SIGNAL("finished(int)"), SLOT("slot_finished()"))
  908. self.connect(self.ui.ch_fixed_buffer, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  909. self.connect(self.ui.ch_force_stereo, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  910. self.connect(self.ui.ch_map_program_changes, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  911. self.connect(self.ui.ch_use_chunks, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  912. self.connect(self.ui.ch_send_control_changes, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  913. self.connect(self.ui.ch_send_channel_pressure, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  914. self.connect(self.ui.ch_send_note_aftertouch, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  915. self.connect(self.ui.ch_send_pitchbend, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  916. self.connect(self.ui.ch_send_all_sound_off, SIGNAL("clicked(bool)"), SLOT("slot_optionChanged(bool)"))
  917. self.connect(self.ui.dial_drywet, SIGNAL("valueChanged(int)"), SLOT("slot_dryWetChanged(int)"))
  918. self.connect(self.ui.dial_vol, SIGNAL("valueChanged(int)"), SLOT("slot_volumeChanged(int)"))
  919. self.connect(self.ui.dial_b_left, SIGNAL("valueChanged(int)"), SLOT("slot_balanceLeftChanged(int)"))
  920. self.connect(self.ui.dial_b_right, SIGNAL("valueChanged(int)"), SLOT("slot_balanceRightChanged(int)"))
  921. self.connect(self.ui.sb_ctrl_channel, SIGNAL("valueChanged(int)"), SLOT("slot_ctrlChannelChanged(int)"))
  922. self.connect(self.ui.dial_drywet, SIGNAL("customContextMenuRequested(QPoint)"), SLOT("slot_knobCustomMenu()"))
  923. self.connect(self.ui.dial_vol, SIGNAL("customContextMenuRequested(QPoint)"), SLOT("slot_knobCustomMenu()"))
  924. self.connect(self.ui.dial_b_left, SIGNAL("customContextMenuRequested(QPoint)"), SLOT("slot_knobCustomMenu()"))
  925. self.connect(self.ui.dial_b_right, SIGNAL("customContextMenuRequested(QPoint)"), SLOT("slot_knobCustomMenu()"))
  926. self.connect(self.ui.sb_ctrl_channel, SIGNAL("customContextMenuRequested(QPoint)"), SLOT("slot_channelCustomMenu()"))
  927. self.connect(self.ui.keyboard, SIGNAL("noteOn(int)"), SLOT("slot_noteOn(int)"))
  928. self.connect(self.ui.keyboard, SIGNAL("noteOff(int)"), SLOT("slot_noteOff(int)"))
  929. self.connect(self.ui.cb_programs, SIGNAL("currentIndexChanged(int)"), SLOT("slot_programIndexChanged(int)"))
  930. self.connect(self.ui.cb_midi_programs, SIGNAL("currentIndexChanged(int)"), SLOT("slot_midiProgramIndexChanged(int)"))
  931. if Carla.isLocal:
  932. self.connect(self.ui.b_save_state, SIGNAL("clicked()"), SLOT("slot_stateSave()"))
  933. self.connect(self.ui.b_load_state, SIGNAL("clicked()"), SLOT("slot_stateLoad()"))
  934. else:
  935. self.ui.b_load_state.setEnabled(False)
  936. self.ui.b_save_state.setEnabled(False)
  937. # -------------------------------------------------------------
  938. def reloadAll(self):
  939. self.fPluginInfo = Carla.host.get_plugin_info(self.fPluginId)
  940. self.fPluginInfo['binary'] = cString(self.fPluginInfo['binary'])
  941. self.fPluginInfo['name'] = cString(self.fPluginInfo['name'])
  942. self.fPluginInfo['label'] = cString(self.fPluginInfo['label'])
  943. self.fPluginInfo['maker'] = cString(self.fPluginInfo['maker'])
  944. self.fPluginInfo['copyright'] = cString(self.fPluginInfo['copyright'])
  945. if not Carla.isLocal:
  946. self.fPluginInfo['hints'] &= ~PLUGIN_HAS_GUI
  947. self.reloadInfo()
  948. self.reloadParameters()
  949. self.reloadPrograms()
  950. if self.fPluginInfo['type'] == PLUGIN_LV2:
  951. self.ui.b_save_state.setEnabled(False)
  952. if not self.ui.scrollArea.isEnabled():
  953. self.resize(self.width(), self.height()-self.ui.scrollArea.height())
  954. def reloadInfo(self):
  955. pluginName = cString(Carla.host.get_real_plugin_name(self.fPluginId))
  956. pluginType = self.fPluginInfo['type']
  957. pluginHints = self.fPluginInfo['hints']
  958. audioCountInfo = Carla.host.get_audio_port_count_info(self.fPluginId)
  959. midiCountInfo = Carla.host.get_midi_port_count_info(self.fPluginId)
  960. paramCountInfo = Carla.host.get_parameter_count_info(self.fPluginId)
  961. if pluginType == PLUGIN_INTERNAL:
  962. self.ui.le_type.setText(self.tr("Internal"))
  963. elif pluginType == PLUGIN_LADSPA:
  964. self.ui.le_type.setText("LADSPA")
  965. elif pluginType == PLUGIN_DSSI:
  966. self.ui.le_type.setText("DSSI")
  967. elif pluginType == PLUGIN_LV2:
  968. self.ui.le_type.setText("LV2")
  969. elif pluginType == PLUGIN_VST:
  970. self.ui.le_type.setText("VST")
  971. elif pluginType == PLUGIN_VST3:
  972. self.ui.le_type.setText("VST3")
  973. elif pluginType == PLUGIN_GIG:
  974. self.ui.le_type.setText("GIG")
  975. elif pluginType == PLUGIN_SF2:
  976. self.ui.le_type.setText("SF2")
  977. elif pluginType == PLUGIN_SFZ:
  978. self.ui.le_type.setText("SFZ")
  979. else:
  980. self.ui.le_type.setText(self.tr("Unknown"))
  981. self.ui.le_name.setText(pluginName)
  982. self.ui.le_name.setToolTip(pluginName)
  983. self.ui.le_label.setText(self.fPluginInfo['label'])
  984. self.ui.le_label.setToolTip(self.fPluginInfo['label'])
  985. self.ui.le_maker.setText(self.fPluginInfo['maker'])
  986. self.ui.le_maker.setToolTip(self.fPluginInfo['maker'])
  987. self.ui.le_copyright.setText(self.fPluginInfo['copyright'])
  988. self.ui.le_copyright.setToolTip(self.fPluginInfo['copyright'])
  989. self.ui.le_unique_id.setText(str(self.fPluginInfo['uniqueId']))
  990. self.ui.le_unique_id.setToolTip(str(self.fPluginInfo['uniqueId']))
  991. self.ui.le_ains.setText(str(audioCountInfo['ins']))
  992. self.ui.le_aouts.setText(str(audioCountInfo['outs']))
  993. self.ui.le_params.setText(str(paramCountInfo['ins']))
  994. self.ui.label_plugin.setText("\n%s\n" % self.fPluginInfo['name'])
  995. self.setWindowTitle(self.fPluginInfo['name'])
  996. if self.fPluginInfo['latency'] > 0:
  997. self.ui.le_latency.setText("%i samples" % self.fPluginInfo['latency'])
  998. else:
  999. self.ui.le_latency.setText(self.tr("None"))
  1000. self.ui.dial_drywet.setEnabled(pluginHints & PLUGIN_CAN_DRYWET)
  1001. self.ui.dial_vol.setEnabled(pluginHints & PLUGIN_CAN_VOLUME)
  1002. self.ui.dial_b_left.setEnabled(pluginHints & PLUGIN_CAN_BALANCE)
  1003. self.ui.dial_b_right.setEnabled(pluginHints & PLUGIN_CAN_BALANCE)
  1004. self.ui.ch_fixed_buffer.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_FIXED_BUFFER)
  1005. self.ui.ch_fixed_buffer.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_FIXED_BUFFER)
  1006. self.ui.ch_force_stereo.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_FORCE_STEREO)
  1007. self.ui.ch_force_stereo.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_FORCE_STEREO)
  1008. self.ui.ch_map_program_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  1009. self.ui.ch_map_program_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  1010. self.ui.ch_use_chunks.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_USE_CHUNKS)
  1011. self.ui.ch_use_chunks.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_USE_CHUNKS)
  1012. self.ui.ch_send_control_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  1013. self.ui.ch_send_control_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  1014. self.ui.ch_send_channel_pressure.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE)
  1015. self.ui.ch_send_channel_pressure.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE)
  1016. self.ui.ch_send_note_aftertouch.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH)
  1017. self.ui.ch_send_note_aftertouch.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH)
  1018. self.ui.ch_send_pitchbend.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_PITCHBEND)
  1019. self.ui.ch_send_pitchbend.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_PITCHBEND)
  1020. self.ui.ch_send_all_sound_off.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1021. self.ui.ch_send_all_sound_off.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1022. if self.fPluginInfo['type'] != PLUGIN_VST:
  1023. self.ui.tab_programs.setCurrentIndex(1)
  1024. # Show/hide keyboard
  1025. showKeyboard = (pluginHints & PLUGIN_IS_SYNTH) != 0 or (midiCountInfo['ins'] > 0 < midiCountInfo['outs'])
  1026. self.ui.scrollArea.setEnabled(showKeyboard)
  1027. self.ui.scrollArea.setVisible(showKeyboard)
  1028. # Force-Update parent for new hints
  1029. if self.fRealParent:
  1030. self.fRealParent.recheckPluginHints(pluginHints)
  1031. def reloadParameters(self):
  1032. parameterCount = Carla.host.get_parameter_count(self.fPluginId)
  1033. # Reset
  1034. self.fParameterCount = 0
  1035. self.fParameterList = []
  1036. self.fParametersToUpdate = []
  1037. self.fTabIconCount = 0
  1038. self.fTabIconTimers = []
  1039. # Remove all previous parameters
  1040. for x in range(self.ui.tabWidget.count()-1):
  1041. self.ui.tabWidget.widget(1).deleteLater()
  1042. self.ui.tabWidget.removeTab(1)
  1043. if parameterCount <= 0:
  1044. pass
  1045. elif parameterCount <= Carla.maxParameters:
  1046. paramInputListFull = []
  1047. paramOutputListFull = []
  1048. paramInputList = [] # ([params], width)
  1049. paramInputWidth = 0
  1050. paramOutputList = [] # ([params], width)
  1051. paramOutputWidth = 0
  1052. for i in range(parameterCount):
  1053. paramInfo = Carla.host.get_parameter_info(self.fPluginId, i)
  1054. paramData = Carla.host.get_parameter_data(self.fPluginId, i)
  1055. paramRanges = Carla.host.get_parameter_ranges(self.fPluginId, i)
  1056. paramValue = Carla.host.get_current_parameter_value(self.fPluginId, i)
  1057. if paramData['type'] not in (PARAMETER_INPUT, PARAMETER_OUTPUT):
  1058. continue
  1059. parameter = {
  1060. 'type': paramData['type'],
  1061. 'hints': paramData['hints'],
  1062. 'name': cString(paramInfo['name']),
  1063. 'unit': cString(paramInfo['unit']),
  1064. 'scalePoints': [],
  1065. 'index': paramData['index'],
  1066. 'default': paramRanges['def'],
  1067. 'minimum': paramRanges['min'],
  1068. 'maximum': paramRanges['max'],
  1069. 'step': paramRanges['step'],
  1070. 'stepSmall': paramRanges['stepSmall'],
  1071. 'stepLarge': paramRanges['stepLarge'],
  1072. 'midiCC': paramData['midiCC'],
  1073. 'midiChannel': paramData['midiChannel']+1,
  1074. 'current': paramValue
  1075. }
  1076. for j in range(paramInfo['scalePointCount']):
  1077. scalePointInfo = Carla.host.get_parameter_scalepoint_info(self.fPluginId, i, j)
  1078. parameter['scalePoints'].append({
  1079. 'value': scalePointInfo['value'],
  1080. 'label': cString(scalePointInfo['label'])
  1081. })
  1082. #parameter['name'] = parameter['name'][:30] + (parameter['name'][30:] and "...")
  1083. # -----------------------------------------------------------------
  1084. # Get width values, in packs of 10
  1085. if parameter['type'] == PARAMETER_INPUT:
  1086. paramInputWidthTMP = QFontMetrics(self.font()).width(parameter['name'])
  1087. if paramInputWidthTMP > paramInputWidth:
  1088. paramInputWidth = paramInputWidthTMP
  1089. paramInputList.append(parameter)
  1090. if len(paramInputList) == 10:
  1091. paramInputListFull.append((paramInputList, paramInputWidth))
  1092. paramInputList = []
  1093. paramInputWidth = 0
  1094. else:
  1095. paramOutputWidthTMP = QFontMetrics(self.font()).width(parameter['name'])
  1096. if paramOutputWidthTMP > paramOutputWidth:
  1097. paramOutputWidth = paramOutputWidthTMP
  1098. paramOutputList.append(parameter)
  1099. if len(paramOutputList) == 10:
  1100. paramOutputListFull.append((paramOutputList, paramOutputWidth))
  1101. paramOutputList = []
  1102. paramOutputWidth = 0
  1103. # for i in range(parameterCount)
  1104. else:
  1105. # Final page width values
  1106. if 0 < len(paramInputList) < 10:
  1107. paramInputListFull.append((paramInputList, paramInputWidth))
  1108. if 0 < len(paramOutputList) < 10:
  1109. paramOutputListFull.append((paramOutputList, paramOutputWidth))
  1110. # -----------------------------------------------------------------
  1111. # Create parameter tabs + widgets
  1112. self._createParameterWidgets(PARAMETER_INPUT, paramInputListFull, self.tr("Parameters"))
  1113. self._createParameterWidgets(PARAMETER_OUTPUT, paramOutputListFull, self.tr("Outputs"))
  1114. else: # > Carla.maxParameters
  1115. fakeName = self.tr("This plugin has too many parameters to display here!")
  1116. paramFakeListFull = []
  1117. paramFakeList = []
  1118. paramFakeWidth = QFontMetrics(self.font()).width(fakeName)
  1119. parameter = {
  1120. 'type': PARAMETER_UNKNOWN,
  1121. 'hints': 0,
  1122. 'name': fakeName,
  1123. 'unit': "",
  1124. 'scalePoints': [],
  1125. 'index': 0,
  1126. 'default': 0.0,
  1127. 'minimum': 0.0,
  1128. 'maximum': 0.0,
  1129. 'step': 0.0,
  1130. 'stepSmall': 0.0,
  1131. 'stepLarge': 0.0,
  1132. 'midiCC': -1,
  1133. 'midiChannel': 1,
  1134. 'current': 0.0
  1135. }
  1136. paramFakeList.append(parameter)
  1137. paramFakeListFull.append((paramFakeList, paramFakeWidth))
  1138. self._createParameterWidgets(PARAMETER_UNKNOWN, paramFakeListFull, self.tr("Information"))
  1139. def reloadPrograms(self):
  1140. # Programs
  1141. self.ui.cb_programs.blockSignals(True)
  1142. self.ui.cb_programs.clear()
  1143. programCount = Carla.host.get_program_count(self.fPluginId)
  1144. if programCount > 0:
  1145. self.ui.cb_programs.setEnabled(True)
  1146. self.ui.label_programs.setEnabled(True)
  1147. for i in range(programCount):
  1148. pName = cString(Carla.host.get_program_name(self.fPluginId, i))
  1149. #pName = pName[:40] + (pName[40:] and "...")
  1150. self.ui.cb_programs.addItem(pName)
  1151. self.fCurrentProgram = Carla.host.get_current_program_index(self.fPluginId)
  1152. self.ui.cb_programs.setCurrentIndex(self.fCurrentProgram)
  1153. else:
  1154. self.fCurrentProgram = -1
  1155. self.ui.cb_programs.setEnabled(False)
  1156. self.ui.label_programs.setEnabled(False)
  1157. self.ui.cb_programs.blockSignals(False)
  1158. # MIDI Programs
  1159. self.ui.cb_midi_programs.blockSignals(True)
  1160. self.ui.cb_midi_programs.clear()
  1161. midiProgramCount = Carla.host.get_midi_program_count(self.fPluginId)
  1162. if midiProgramCount > 0:
  1163. self.ui.cb_midi_programs.setEnabled(True)
  1164. self.ui.label_midi_programs.setEnabled(True)
  1165. for i in range(midiProgramCount):
  1166. mpData = Carla.host.get_midi_program_data(self.fPluginId, i)
  1167. mpBank = int(mpData['bank'])
  1168. mpProg = int(mpData['program'])
  1169. mpName = cString(mpData['name'])
  1170. #mpName = mpName[:40] + (mpName[40:] and "...")
  1171. self.ui.cb_midi_programs.addItem("%03i:%03i - %s" % (mpBank+1, mpProg+1, mpName))
  1172. self.fCurrentMidiProgram = Carla.host.get_current_midi_program_index(self.fPluginId)
  1173. self.ui.cb_midi_programs.setCurrentIndex(self.fCurrentMidiProgram)
  1174. else:
  1175. self.fCurrentMidiProgram = -1
  1176. self.ui.cb_midi_programs.setEnabled(False)
  1177. self.ui.label_midi_programs.setEnabled(False)
  1178. self.ui.cb_midi_programs.blockSignals(False)
  1179. if self.fPluginInfo['type'] == PLUGIN_LV2:
  1180. self.ui.b_load_state.setEnabled(programCount > 0)
  1181. def updateInfo(self):
  1182. # Update current program text
  1183. if self.ui.cb_programs.count() > 0:
  1184. pIndex = self.ui.cb_programs.currentIndex()
  1185. pName = cString(Carla.host.get_program_name(self.fPluginId, pIndex))
  1186. #pName = pName[:40] + (pName[40:] and "...")
  1187. self.ui.cb_programs.setItemText(pIndex, pName)
  1188. # Update current midi program text
  1189. if self.ui.cb_midi_programs.count() > 0:
  1190. mpIndex = self.ui.cb_midi_programs.currentIndex()
  1191. mpData = Carla.host.get_midi_program_data(self.fPluginId, mpIndex)
  1192. mpBank = int(mpData['bank'])
  1193. mpProg = int(mpData['program'])
  1194. mpName = cString(mpData['name'])
  1195. #mpName = mpName[:40] + (mpName[40:] and "...")
  1196. self.ui.cb_midi_programs.setItemText(mpIndex, "%03i:%03i - %s" % (mpBank+1, mpProg+1, mpName))
  1197. # Update all parameter values
  1198. for paramType, paramId, paramWidget in self.fParameterList:
  1199. paramWidget.setValue(Carla.host.get_current_parameter_value(self.fPluginId, paramId), False)
  1200. paramWidget.update()
  1201. self.fParametersToUpdate = []
  1202. def clearNotes(self):
  1203. self.fPlayingNotes = []
  1204. self.ui.keyboard.allNotesOff()
  1205. def setParameterValue(self, parameterId, value):
  1206. for paramItem in self.fParametersToUpdate:
  1207. if paramItem[0] == parameterId:
  1208. paramItem[1] = value
  1209. break
  1210. else:
  1211. self.fParametersToUpdate.append([parameterId, value])
  1212. def setParameterDefault(self, parameterId, value):
  1213. for paramType, paramId, paramWidget in self.fParameterList:
  1214. if paramId == parameterId:
  1215. paramWidget.setDefault(value)
  1216. break
  1217. def setParameterMidiControl(self, parameterId, control):
  1218. for paramType, paramId, paramWidget in self.fParameterList:
  1219. if paramId == parameterId:
  1220. paramWidget.setMidiControl(control)
  1221. break
  1222. def setParameterMidiChannel(self, parameterId, channel):
  1223. for paramType, paramId, paramWidget in self.fParameterList:
  1224. if paramId == parameterId:
  1225. paramWidget.setMidiChannel(channel+1)
  1226. break
  1227. def setProgram(self, index):
  1228. self.ui.cb_programs.blockSignals(True)
  1229. self.ui.cb_programs.setCurrentIndex(index)
  1230. self.ui.cb_programs.blockSignals(False)
  1231. def setMidiProgram(self, index):
  1232. self.ui.cb_midi_programs.blockSignals(True)
  1233. self.ui.cb_midi_programs.setCurrentIndex(index)
  1234. self.ui.cb_midi_programs.blockSignals(False)
  1235. def sendNoteOn(self, channel, note):
  1236. if self.fControlChannel == channel:
  1237. self.ui.keyboard.sendNoteOn(note, False)
  1238. if len(self.fPlayingNotes) == 0 and self.fRealParent:
  1239. self.fRealParent.ui.led_midi.setChecked(True)
  1240. playItem = (channel, note)
  1241. if playItem not in self.fPlayingNotes:
  1242. self.fPlayingNotes.append(playItem)
  1243. def sendNoteOff(self, channel, note):
  1244. if self.fControlChannel == channel:
  1245. self.ui.keyboard.sendNoteOff(note, False)
  1246. if len(self.fPlayingNotes) == 1 and self.fRealParent:
  1247. self.fRealParent.ui.led_midi.setChecked(False)
  1248. playItem = (channel, note)
  1249. if playItem in self.fPlayingNotes:
  1250. self.fPlayingNotes.remove(playItem)
  1251. def setVisible(self, yesNo):
  1252. if yesNo:
  1253. if not self.fGeometry.isNull():
  1254. self.restoreGeometry(self.fGeometry)
  1255. else:
  1256. self.fGeometry = self.saveGeometry()
  1257. QDialog.setVisible(self, yesNo)
  1258. def idleSlow(self):
  1259. # Check Tab icons
  1260. for i in range(len(self.fTabIconTimers)):
  1261. if self.fTabIconTimers[i] == ICON_STATE_ON:
  1262. self.fTabIconTimers[i] = ICON_STATE_WAIT
  1263. elif self.fTabIconTimers[i] == ICON_STATE_WAIT:
  1264. self.fTabIconTimers[i] = ICON_STATE_OFF
  1265. elif self.fTabIconTimers[i] == ICON_STATE_OFF:
  1266. self.fTabIconTimers[i] = ICON_STATE_NULL
  1267. self.ui.tabWidget.setTabIcon(i+1, self.fTabIconOff)
  1268. # Check parameters needing update
  1269. for index, value in self.fParametersToUpdate:
  1270. if index == PARAMETER_DRYWET:
  1271. self.ui.dial_drywet.blockSignals(True)
  1272. self.ui.dial_drywet.setValue(value * 1000)
  1273. self.ui.dial_drywet.blockSignals(False)
  1274. elif index == PARAMETER_VOLUME:
  1275. self.ui.dial_vol.blockSignals(True)
  1276. self.ui.dial_vol.setValue(value * 1000)
  1277. self.ui.dial_vol.blockSignals(False)
  1278. elif index == PARAMETER_BALANCE_LEFT:
  1279. self.ui.dial_b_left.blockSignals(True)
  1280. self.ui.dial_b_left.setValue(value * 1000)
  1281. self.ui.dial_b_left.blockSignals(False)
  1282. elif index == PARAMETER_BALANCE_RIGHT:
  1283. self.ui.dial_b_right.blockSignals(True)
  1284. self.ui.dial_b_right.setValue(value * 1000)
  1285. self.ui.dial_b_right.blockSignals(False)
  1286. #elif index == PARAMETER_PANNING:
  1287. #self.ui.dial_pan.blockSignals(True)
  1288. #self.ui.dial_pan.setValue(value * 1000, True, False)
  1289. #self.ui.dial_pan.blockSignals(False)
  1290. elif index == PARAMETER_CTRL_CHANNEL:
  1291. self.fControlChannel = int(value)
  1292. self.ui.sb_ctrl_channel.blockSignals(True)
  1293. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  1294. self.ui.sb_ctrl_channel.blockSignals(False)
  1295. self.ui.keyboard.allNotesOff()
  1296. self._updateCtrlMidiProgram()
  1297. elif index >= 0:
  1298. for paramType, paramId, paramWidget in self.fParameterList:
  1299. if paramId != index:
  1300. continue
  1301. paramWidget.setValue(value, False)
  1302. if paramType == PARAMETER_INPUT:
  1303. tabIndex = paramWidget.tabIndex()
  1304. if self.fTabIconTimers[tabIndex-1] == ICON_STATE_NULL:
  1305. self.ui.tabWidget.setTabIcon(tabIndex, self.fTabIconOn)
  1306. self.fTabIconTimers[tabIndex-1] = ICON_STATE_ON
  1307. break
  1308. # Clear all parameters
  1309. self.fParametersToUpdate = []
  1310. # Update parameter outputs
  1311. for paramType, paramId, paramWidget in self.fParameterList:
  1312. if paramType == PARAMETER_OUTPUT:
  1313. value = Carla.host.get_current_parameter_value(self.fPluginId, paramId)
  1314. paramWidget.setValue(value, False)
  1315. @pyqtSlot()
  1316. def slot_stateSave(self):
  1317. if self.fPluginInfo['type'] == PLUGIN_LV2:
  1318. # TODO
  1319. return
  1320. if self.fCurrentStateFilename:
  1321. askTry = QMessageBox.question(self, self.tr("Overwrite?"), self.tr("Overwrite previously created file?"), QMessageBox.Ok|QMessageBox.Cancel)
  1322. if askTry == QMessageBox.Ok:
  1323. Carla.host.save_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  1324. return
  1325. self.fCurrentStateFilename = None
  1326. fileFilter = self.tr("Carla State File (*.carxs)")
  1327. filenameTry = QFileDialog.getSaveFileName(self, self.tr("Save Plugin State File"), filter=fileFilter)
  1328. if filenameTry:
  1329. if not filenameTry.lower().endswith(".carxs"):
  1330. filenameTry += ".carxs"
  1331. self.fCurrentStateFilename = filenameTry
  1332. Carla.host.save_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  1333. @pyqtSlot()
  1334. def slot_stateLoad(self):
  1335. if self.fPluginInfo['type'] == PLUGIN_LV2:
  1336. presetList = []
  1337. for i in range(Carla.host.get_program_count(self.fPluginId)):
  1338. presetList.append("%03i - %s" % (i+1, cString(Carla.host.get_program_name(self.fPluginId, i))))
  1339. ret = QInputDialog.getItem(self, self.tr("Open LV2 Preset"), self.tr("Select an LV2 Preset:"), presetList, 0, False)
  1340. if ret[1]:
  1341. index = int(ret[0].split(" - ", 1)[0])-1
  1342. Carla.host.set_midi_program(self.fPluginId, -1)
  1343. Carla.host.set_program(self.fPluginId, index)
  1344. self.setMidiProgram(-1)
  1345. return
  1346. fileFilter = self.tr("Carla State File (*.carxs)")
  1347. filenameTry = QFileDialog.getOpenFileName(self, self.tr("Open Plugin State File"), filter=fileFilter)
  1348. if filenameTry:
  1349. self.fCurrentStateFilename = filenameTry
  1350. Carla.host.load_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  1351. @pyqtSlot(bool)
  1352. def slot_optionChanged(self, clicked):
  1353. sender = self.sender()
  1354. if sender == self.ui.ch_fixed_buffer:
  1355. option = PLUGIN_OPTION_FIXED_BUFFER
  1356. elif sender == self.ui.ch_force_stereo:
  1357. option = PLUGIN_OPTION_FORCE_STEREO
  1358. elif sender == self.ui.ch_map_program_changes:
  1359. option = PLUGIN_OPTION_MAP_PROGRAM_CHANGES
  1360. elif sender == self.ui.ch_use_chunks:
  1361. option = PLUGIN_OPTION_USE_CHUNKS
  1362. elif sender == self.ui.ch_send_control_changes:
  1363. option = PLUGIN_OPTION_SEND_CONTROL_CHANGES
  1364. elif sender == self.ui.ch_send_channel_pressure:
  1365. option = PLUGIN_OPTION_SEND_CHANNEL_PRESSURE
  1366. elif sender == self.ui.ch_send_note_aftertouch:
  1367. option = PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH
  1368. elif sender == self.ui.ch_send_pitchbend:
  1369. option = PLUGIN_OPTION_SEND_PITCHBEND
  1370. elif sender == self.ui.ch_send_all_sound_off:
  1371. option = PLUGIN_OPTION_SEND_ALL_SOUND_OFF
  1372. else:
  1373. return
  1374. Carla.host.set_option(self.fPluginId, option, clicked)
  1375. @pyqtSlot(int)
  1376. def slot_dryWetChanged(self, value):
  1377. Carla.host.set_drywet(self.fPluginId, float(value)/1000)
  1378. @pyqtSlot(int)
  1379. def slot_volumeChanged(self, value):
  1380. Carla.host.set_volume(self.fPluginId, float(value)/1000)
  1381. @pyqtSlot(int)
  1382. def slot_balanceLeftChanged(self, value):
  1383. Carla.host.set_balance_left(self.fPluginId, float(value)/1000)
  1384. @pyqtSlot(int)
  1385. def slot_balanceRightChanged(self, value):
  1386. Carla.host.set_balance_right(self.fPluginId, float(value)/1000)
  1387. @pyqtSlot(int)
  1388. def slot_panningChanged(self, value):
  1389. Carla.host.set_panning(self.fPluginId, float(value)/1000)
  1390. @pyqtSlot(int)
  1391. def slot_ctrlChannelChanged(self, value):
  1392. self.fControlChannel = value-1
  1393. Carla.host.set_ctrl_channel(self.fPluginId, self.fControlChannel)
  1394. self.ui.keyboard.allNotesOff()
  1395. self._updateCtrlMidiProgram()
  1396. @pyqtSlot(int, float)
  1397. def slot_parameterValueChanged(self, parameterId, value):
  1398. Carla.host.set_parameter_value(self.fPluginId, parameterId, value)
  1399. @pyqtSlot(int, int)
  1400. def slot_parameterMidiControlChanged(self, parameterId, control):
  1401. Carla.host.set_parameter_midi_cc(self.fPluginId, parameterId, control)
  1402. @pyqtSlot(int, int)
  1403. def slot_parameterMidiChannelChanged(self, parameterId, channel):
  1404. Carla.host.set_parameter_midi_channel(self.fPluginId, parameterId, channel-1)
  1405. @pyqtSlot(int)
  1406. def slot_programIndexChanged(self, index):
  1407. self.fCurrentProgram = index
  1408. Carla.host.set_program(self.fPluginId, index)
  1409. @pyqtSlot(int)
  1410. def slot_midiProgramIndexChanged(self, index):
  1411. self.fCurrentMidiProgram = index
  1412. Carla.host.set_midi_program(self.fPluginId, index)
  1413. @pyqtSlot(int)
  1414. def slot_noteOn(self, note):
  1415. if self.fControlChannel >= 0:
  1416. Carla.host.send_midi_note(self.fPluginId, self.fControlChannel, note, 100)
  1417. @pyqtSlot(int)
  1418. def slot_noteOff(self, note):
  1419. if self.fControlChannel >= 0:
  1420. Carla.host.send_midi_note(self.fPluginId, self.fControlChannel, note, 0)
  1421. @pyqtSlot()
  1422. def slot_finished(self):
  1423. if self.fRealParent:
  1424. self.fRealParent.editClosed()
  1425. @pyqtSlot()
  1426. def slot_knobCustomMenu(self):
  1427. dialName = self.sender().objectName()
  1428. if dialName == "dial_drywet":
  1429. minimum = 0
  1430. maximum = 100
  1431. default = 100
  1432. label = "Dry/Wet"
  1433. elif dialName == "dial_vol":
  1434. minimum = 0
  1435. maximum = 127
  1436. default = 100
  1437. label = "Volume"
  1438. elif dialName == "dial_b_left":
  1439. minimum = -100
  1440. maximum = 100
  1441. default = -100
  1442. label = "Balance-Left"
  1443. elif dialName == "dial_b_right":
  1444. minimum = -100
  1445. maximum = 100
  1446. default = 100
  1447. label = "Balance-Right"
  1448. elif dialName == "dial_panning":
  1449. minimum = -100
  1450. maximum = 100
  1451. default = 0
  1452. label = "Panning"
  1453. else:
  1454. minimum = 0
  1455. maximum = 100
  1456. default = 100
  1457. label = "Unknown"
  1458. current = self.sender().value() / 10
  1459. menu = QMenu(self)
  1460. actReset = menu.addAction(self.tr("Reset (%i%%)" % default))
  1461. menu.addSeparator()
  1462. actMinimum = menu.addAction(self.tr("Set to Minimum (%i%%)" % minimum))
  1463. actCenter = menu.addAction(self.tr("Set to Center"))
  1464. actMaximum = menu.addAction(self.tr("Set to Maximum (%i%%)" % maximum))
  1465. menu.addSeparator()
  1466. actSet = menu.addAction(self.tr("Set value..."))
  1467. if label not in ("Balance-Left", "Balance-Right"):
  1468. menu.removeAction(actCenter)
  1469. actSelected = menu.exec_(QCursor.pos())
  1470. if actSelected == actSet:
  1471. valueTry = QInputDialog.getInteger(self, self.tr("Set value"), label, current, minimum, maximum, 1)
  1472. if valueTry[1]:
  1473. value = valueTry[0] * 10
  1474. else:
  1475. return
  1476. elif actSelected == actMinimum:
  1477. value = minimum * 10
  1478. elif actSelected == actMaximum:
  1479. value = maximum * 10
  1480. elif actSelected == actReset:
  1481. value = default * 10
  1482. elif actSelected == actCenter:
  1483. value = 0
  1484. else:
  1485. return
  1486. if label == "Dry/Wet":
  1487. self.ui.dial_drywet.setValue(value)
  1488. elif label == "Volume":
  1489. self.ui.dial_vol.setValue(value)
  1490. elif label == "Balance-Left":
  1491. self.ui.dial_b_left.setValue(value)
  1492. elif label == "Balance-Right":
  1493. self.ui.dial_b_right.setValue(value)
  1494. #elif label == "Panning":
  1495. #self.ui.dial_panning.setValue(value)
  1496. @pyqtSlot()
  1497. def slot_channelCustomMenu(self):
  1498. menu = QMenu(self)
  1499. actNone = menu.addAction(self.tr("None"))
  1500. if self.fControlChannel+1 == 0:
  1501. actNone.setCheckable(True)
  1502. actNone.setChecked(True)
  1503. for i in range(1, 16+1):
  1504. action = menu.addAction("%i" % i)
  1505. if self.fControlChannel+1 == i:
  1506. action.setCheckable(True)
  1507. action.setChecked(True)
  1508. actSel = menu.exec_(QCursor.pos())
  1509. if not actSel:
  1510. pass
  1511. elif actSel == actNone:
  1512. self.ui.sb_ctrl_channel.setValue(0)
  1513. elif actSel:
  1514. selChannel = int(actSel.text())
  1515. self.ui.sb_ctrl_channel.setValue(selChannel)
  1516. def _createParameterWidgets(self, paramType, paramListFull, tabPageName):
  1517. i = 1
  1518. for paramList, width in paramListFull:
  1519. if len(paramList) == 0:
  1520. break
  1521. tabIndex = self.ui.tabWidget.count()
  1522. tabPageContainer = QWidget(self.ui.tabWidget)
  1523. tabPageLayout = QVBoxLayout(tabPageContainer)
  1524. tabPageContainer.setLayout(tabPageLayout)
  1525. for paramInfo in paramList:
  1526. paramWidget = PluginParameter(tabPageContainer, paramInfo, self.fPluginId, tabIndex)
  1527. paramWidget.setLabelWidth(width)
  1528. tabPageLayout.addWidget(paramWidget)
  1529. self.fParameterList.append((paramType, paramInfo['index'], paramWidget))
  1530. if paramType == PARAMETER_INPUT:
  1531. self.connect(paramWidget, SIGNAL("valueChanged(int, double)"), SLOT("slot_parameterValueChanged(int, double)"))
  1532. self.connect(paramWidget, SIGNAL("midiControlChanged(int, int)"), SLOT("slot_parameterMidiControlChanged(int, int)"))
  1533. self.connect(paramWidget, SIGNAL("midiChannelChanged(int, int)"), SLOT("slot_parameterMidiChannelChanged(int, int)"))
  1534. tabPageLayout.addStretch()
  1535. self.ui.tabWidget.addTab(tabPageContainer, "%s (%i)" % (tabPageName, i))
  1536. i += 1
  1537. if paramType == PARAMETER_INPUT:
  1538. self.ui.tabWidget.setTabIcon(tabIndex, self.fTabIconOff)
  1539. self.fTabIconTimers.append(ICON_STATE_NULL)
  1540. def _updateCtrlMidiProgram(self):
  1541. if self.fPluginInfo['type'] not in (PLUGIN_INTERNAL, PLUGIN_SF2):
  1542. return
  1543. elif not self.fPluginInfo['hints'] & PLUGIN_IS_SYNTH:
  1544. return
  1545. if self.fControlChannel < 0:
  1546. self.ui.cb_midi_programs.setEnabled(False)
  1547. return
  1548. self.ui.cb_midi_programs.setEnabled(True)
  1549. mpIndex = Carla.host.get_current_midi_program_index(self.fPluginId)
  1550. if self.ui.cb_midi_programs.currentIndex() != mpIndex:
  1551. self.setMidiProgram(mpIndex)
  1552. def showEvent(self, event):
  1553. if not self.fScrollAreaSetup:
  1554. self.fScrollAreaSetup = True
  1555. minHeight = self.ui.scrollArea.height()+2
  1556. self.ui.scrollArea.setMinimumHeight(minHeight)
  1557. self.ui.scrollArea.setMaximumHeight(minHeight)
  1558. QDialog.showEvent(self, event)
  1559. def done(self, r):
  1560. QDialog.done(self, r)
  1561. self.close()
  1562. # ------------------------------------------------------------------------------------------------------------
  1563. # Plugin Widget
  1564. class PluginWidget(QFrame):
  1565. def __init__(self, parent, pluginId):
  1566. QFrame.__init__(self, parent)
  1567. self.ui = ui_carla_plugin.Ui_PluginWidget()
  1568. self.ui.setupUi(self)
  1569. # -------------------------------------------------------------
  1570. # Internal stuff
  1571. self.fPluginId = pluginId
  1572. self.fPluginInfo = Carla.host.get_plugin_info(self.fPluginId)
  1573. self.fPluginInfo['binary'] = cString(self.fPluginInfo['binary'])
  1574. self.fPluginInfo['name'] = cString(self.fPluginInfo['name'])
  1575. self.fPluginInfo['label'] = cString(self.fPluginInfo['label'])
  1576. self.fPluginInfo['maker'] = cString(self.fPluginInfo['maker'])
  1577. self.fPluginInfo['copyright'] = cString(self.fPluginInfo['copyright'])
  1578. if not Carla.isLocal:
  1579. self.fPluginInfo['hints'] &= ~PLUGIN_HAS_GUI
  1580. self.fLastGreenLedState = False
  1581. self.fLastBlueLedState = False
  1582. self.fParameterIconTimer = ICON_STATE_NULL
  1583. if Carla.processMode == PROCESS_MODE_CONTINUOUS_RACK:
  1584. self.fPeaksInputCount = 2
  1585. self.fPeaksOutputCount = 2
  1586. else:
  1587. audioCountInfo = Carla.host.get_audio_port_count_info(self.fPluginId)
  1588. self.fPeaksInputCount = int(audioCountInfo['ins'])
  1589. self.fPeaksOutputCount = int(audioCountInfo['outs'])
  1590. if self.fPeaksInputCount > 2:
  1591. self.fPeaksInputCount = 2
  1592. if self.fPeaksOutputCount > 2:
  1593. self.fPeaksOutputCount = 2
  1594. if self.palette().window().color().lightness() > 100:
  1595. # Light background
  1596. labelColor = "333"
  1597. self.fColorTop = QColor(60, 60, 60)
  1598. self.fColorBottom = QColor(47, 47, 47)
  1599. self.fColorSeprtr = QColor(70, 70, 70)
  1600. else:
  1601. # Dark background
  1602. labelColor = "BBB"
  1603. self.fColorTop = QColor(60, 60, 60)
  1604. self.fColorBottom = QColor(47, 47, 47)
  1605. self.fColorSeprtr = QColor(70, 70, 70)
  1606. # -------------------------------------------------------------
  1607. # Set-up GUI
  1608. self.setStyleSheet("""
  1609. QLabel#label_name {
  1610. color: #%s;
  1611. }""" % labelColor)
  1612. self.ui.b_enable.setPixmaps(":/bitmaps/button_off.png", ":/bitmaps/button_on.png", ":/bitmaps/button_off.png")
  1613. self.ui.b_edit.setPixmaps(":/bitmaps/button_edit.png", ":/bitmaps/button_edit_down.png", ":/bitmaps/button_edit_hover.png")
  1614. if self.fPluginInfo['hints'] & PLUGIN_HAS_GUI_AS_FILE:
  1615. self.ui.b_gui.setPixmaps(":/bitmaps/button_file.png", ":/bitmaps/button_file_down.png", ":/bitmaps/button_file_hover.png")
  1616. else:
  1617. self.ui.b_gui.setPixmaps(":/bitmaps/button_gui.png", ":/bitmaps/button_gui_down.png", ":/bitmaps/button_gui_hover.png")
  1618. self.ui.led_control.setColor(self.ui.led_control.YELLOW)
  1619. self.ui.led_control.setEnabled(False)
  1620. self.ui.led_midi.setColor(self.ui.led_midi.RED)
  1621. self.ui.led_midi.setEnabled(False)
  1622. self.ui.led_audio_in.setColor(self.ui.led_audio_in.GREEN)
  1623. self.ui.led_audio_in.setEnabled(False)
  1624. self.ui.led_audio_out.setColor(self.ui.led_audio_out.BLUE)
  1625. self.ui.led_audio_out.setEnabled(False)
  1626. self.ui.peak_in.setColor(self.ui.peak_in.GREEN)
  1627. self.ui.peak_in.setChannels(self.fPeaksInputCount)
  1628. self.ui.peak_in.setOrientation(self.ui.peak_in.HORIZONTAL)
  1629. self.ui.peak_out.setColor(self.ui.peak_in.BLUE)
  1630. self.ui.peak_out.setChannels(self.fPeaksOutputCount)
  1631. self.ui.peak_out.setOrientation(self.ui.peak_out.HORIZONTAL)
  1632. self.ui.label_name.setText(self.fPluginInfo['name'])
  1633. self.ui.edit_dialog = PluginEdit(self, self.fPluginId)
  1634. self.ui.edit_dialog.hide()
  1635. self.setMinimumHeight(32)
  1636. self.setMaximumHeight(32)
  1637. # -------------------------------------------------------------
  1638. # Set-up connections
  1639. self.connect(self, SIGNAL("customContextMenuRequested(QPoint)"), SLOT("slot_showCustomMenu()"))
  1640. self.connect(self.ui.b_enable, SIGNAL("clicked(bool)"), SLOT("slot_enableClicked(bool)"))
  1641. self.connect(self.ui.b_gui, SIGNAL("clicked(bool)"), SLOT("slot_guiClicked(bool)"))
  1642. self.connect(self.ui.b_edit, SIGNAL("clicked(bool)"), SLOT("slot_editClicked(bool)"))
  1643. # -------------------------------------------------------------
  1644. def idleFast(self):
  1645. # Input peaks
  1646. if self.fPeaksInputCount > 0:
  1647. if self.fPeaksInputCount > 1:
  1648. peak1 = Carla.host.get_input_peak_value(self.fPluginId, 1)
  1649. peak2 = Carla.host.get_input_peak_value(self.fPluginId, 2)
  1650. ledState = bool(peak1 != 0.0 or peak2 != 0.0)
  1651. self.ui.peak_in.displayMeter(1, peak1)
  1652. self.ui.peak_in.displayMeter(2, peak2)
  1653. else:
  1654. peak = Carla.host.get_input_peak_value(self.fPluginId, 1)
  1655. ledState = bool(peak != 0.0)
  1656. self.ui.peak_in.displayMeter(1, peak)
  1657. if self.fLastGreenLedState != ledState:
  1658. self.fLastGreenLedState = ledState
  1659. self.ui.led_audio_in.setChecked(ledState)
  1660. # Output peaks
  1661. if self.fPeaksOutputCount > 0:
  1662. if self.fPeaksOutputCount > 1:
  1663. peak1 = Carla.host.get_output_peak_value(self.fPluginId, 1)
  1664. peak2 = Carla.host.get_output_peak_value(self.fPluginId, 2)
  1665. ledState = bool(peak1 != 0.0 or peak2 != 0.0)
  1666. self.ui.peak_out.displayMeter(1, peak1)
  1667. self.ui.peak_out.displayMeter(2, peak2)
  1668. else:
  1669. peak = Carla.host.get_output_peak_value(self.fPluginId, 1)
  1670. ledState = bool(peak != 0.0)
  1671. self.ui.peak_out.displayMeter(1, peak)
  1672. if self.fLastBlueLedState != ledState:
  1673. self.fLastBlueLedState = ledState
  1674. self.ui.led_audio_out.setChecked(ledState)
  1675. def idleSlow(self):
  1676. # Parameter Activity LED
  1677. if self.fParameterIconTimer == ICON_STATE_ON:
  1678. self.fParameterIconTimer = ICON_STATE_WAIT
  1679. self.ui.led_control.setChecked(True)
  1680. elif self.fParameterIconTimer == ICON_STATE_WAIT:
  1681. self.fParameterIconTimer = ICON_STATE_OFF
  1682. elif self.fParameterIconTimer == ICON_STATE_OFF:
  1683. self.fParameterIconTimer = ICON_STATE_NULL
  1684. self.ui.led_control.setChecked(False)
  1685. # Update edit dialog
  1686. self.ui.edit_dialog.idleSlow()
  1687. def editClosed(self):
  1688. self.ui.b_edit.setChecked(False)
  1689. def recheckPluginHints(self, hints):
  1690. self.fPluginInfo['hints'] = hints
  1691. self.ui.b_gui.setEnabled(hints & PLUGIN_HAS_GUI)
  1692. def setActive(self, active, sendGui=False, sendCallback=True):
  1693. if sendGui: self.ui.b_enable.setChecked(active)
  1694. if sendCallback: Carla.host.set_active(self.fPluginId, active)
  1695. if active:
  1696. self.ui.edit_dialog.clearNotes()
  1697. self.ui.led_midi.setChecked(False)
  1698. def setParameterDefault(self, parameterId, value):
  1699. self.ui.edit_dialog.setParameterDefault(parameterId, value)
  1700. def setParameterValue(self, parameterId, value):
  1701. self.fParameterIconTimer = ICON_STATE_ON
  1702. if parameterId == PARAMETER_ACTIVE:
  1703. return self.setActive(bool(value), True, False)
  1704. self.ui.edit_dialog.setParameterValue(parameterId, value)
  1705. def setParameterMidiControl(self, parameterId, control):
  1706. self.ui.edit_dialog.setParameterMidiControl(parameterId, control)
  1707. def setParameterMidiChannel(self, parameterId, channel):
  1708. self.ui.edit_dialog.setParameterMidiChannel(parameterId, channel)
  1709. def setProgram(self, index):
  1710. self.fParameterIconTimer = ICON_STATE_ON
  1711. self.ui.edit_dialog.setProgram(index)
  1712. def setMidiProgram(self, index):
  1713. self.fParameterIconTimer = ICON_STATE_ON
  1714. self.ui.edit_dialog.setMidiProgram(index)
  1715. def sendNoteOn(self, channel, note):
  1716. self.ui.edit_dialog.sendNoteOn(channel, note)
  1717. def sendNoteOff(self, channel, note):
  1718. self.ui.edit_dialog.sendNoteOff(channel, note)
  1719. def setId(self, idx):
  1720. self.fPluginId = idx
  1721. self.ui.edit_dialog.fPluginId = idx
  1722. @pyqtSlot()
  1723. def slot_showCustomMenu(self):
  1724. menu = QMenu(self)
  1725. actActive = menu.addAction(self.tr("Disable") if self.ui.b_enable.isChecked() else self.tr("Enable"))
  1726. menu.addSeparator()
  1727. actGui = menu.addAction(self.tr("Show GUI"))
  1728. actGui.setCheckable(True)
  1729. actGui.setChecked(self.ui.b_gui.isChecked())
  1730. actGui.setEnabled(self.ui.b_gui.isEnabled())
  1731. actEdit = menu.addAction(self.tr("Edit"))
  1732. actEdit.setCheckable(True)
  1733. actEdit.setChecked(self.ui.b_edit.isChecked())
  1734. menu.addSeparator()
  1735. actClone = menu.addAction(self.tr("Clone"))
  1736. actRename = menu.addAction(self.tr("Rename..."))
  1737. actRemove = menu.addAction(self.tr("Remove"))
  1738. actSel = menu.exec_(QCursor.pos())
  1739. if not actSel:
  1740. return
  1741. if actSel == actActive:
  1742. self.setActive(not self.ui.b_enable.isChecked(), True, True)
  1743. elif actSel == actGui:
  1744. self.ui.b_gui.click()
  1745. elif actSel == actEdit:
  1746. self.ui.b_edit.click()
  1747. elif actSel == actClone:
  1748. if not Carla.host.clone_plugin(self.fPluginId):
  1749. CustomMessageBox(self, QMessageBox.Warning, self.tr("Error"), self.tr("Operation failed"),
  1750. cString(Carla.host.get_last_error()), QMessageBox.Ok, QMessageBox.Ok)
  1751. elif actSel == actRename:
  1752. oldName = self.fPluginInfo['name']
  1753. newNameTry = QInputDialog.getText(self, self.tr("Rename Plugin"), self.tr("New plugin name:"), QLineEdit.Normal, oldName)
  1754. if not (newNameTry[1] and newNameTry[0] and oldName != newNameTry[0]):
  1755. return
  1756. newName = newNameTry[0]
  1757. if Carla.host.rename_plugin(self.fPluginId, newName):
  1758. self.fPluginInfo['name'] = newName
  1759. self.ui.edit_dialog.fPluginInfo['name'] = newName
  1760. self.ui.edit_dialog.reloadInfo()
  1761. self.ui.label_name.setText(newName)
  1762. else:
  1763. CustomMessageBox(self, QMessageBox.Warning, self.tr("Error"), self.tr("Operation failed"),
  1764. cString(Carla.host.get_last_error()), QMessageBox.Ok, QMessageBox.Ok)
  1765. elif actSel == actRemove:
  1766. if not Carla.host.remove_plugin(self.fPluginId):
  1767. CustomMessageBox(self, QMessageBox.Warning, self.tr("Error"), self.tr("Operation failed"),
  1768. cString(Carla.host.get_last_error()), QMessageBox.Ok, QMessageBox.Ok)
  1769. @pyqtSlot(bool)
  1770. def slot_enableClicked(self, yesNo):
  1771. self.setActive(yesNo, False, True)
  1772. @pyqtSlot(bool)
  1773. def slot_guiClicked(self, show):
  1774. Carla.host.show_gui(self.fPluginId, show)
  1775. @pyqtSlot(bool)
  1776. def slot_editClicked(self, show):
  1777. self.ui.edit_dialog.setVisible(show)
  1778. def paintEvent(self, event):
  1779. painter = QPainter(self)
  1780. painter.save()
  1781. areaX = self.ui.area_right.x()+7
  1782. painter.setPen(self.fColorSeprtr.lighter(110))
  1783. painter.setBrush(self.fColorBottom)
  1784. painter.setRenderHint(QPainter.Antialiasing, True)
  1785. # name -> leds arc
  1786. path = QPainterPath()
  1787. path.moveTo(areaX-20, self.height()-4)
  1788. path.cubicTo(areaX, self.height()-5, areaX-20, 4.75, areaX, 4.75)
  1789. path.lineTo(areaX, self.height()-5)
  1790. painter.drawPath(path)
  1791. painter.setPen(self.fColorSeprtr)
  1792. painter.setRenderHint(QPainter.Antialiasing, False)
  1793. # separator lines
  1794. painter.drawLine(0, self.height()-5, areaX-20, self.height()-5)
  1795. painter.drawLine(areaX, 4, self.width(), 4)
  1796. painter.setPen(self.fColorBottom)
  1797. painter.setBrush(self.fColorBottom)
  1798. # top, bottom and left lines
  1799. painter.drawLine(0, 0, self.width(), 0)
  1800. painter.drawRect(0, self.height()-4, areaX, 4)
  1801. painter.drawRoundedRect(areaX-20, self.height()-5, areaX, 5, 22, 22)
  1802. painter.drawLine(0, 0, 0, self.height())
  1803. # fill the rest
  1804. painter.drawRect(areaX-1, 5, self.width(), self.height())
  1805. # bottom 1px line
  1806. painter.setPen(self.fColorSeprtr)
  1807. painter.drawLine(0, self.height()-1, self.width(), self.height()-1)
  1808. painter.restore()
  1809. QFrame.paintEvent(self, event)
  1810. # ------------------------------------------------------------------------------------------------------------
  1811. # Separate Thread for Plugin Search
  1812. class SearchPluginsThread(QThread):
  1813. def __init__(self, parent):
  1814. QThread.__init__(self, parent)
  1815. self.fCheckNative = False
  1816. self.fCheckPosix32 = False
  1817. self.fCheckPosix64 = False
  1818. self.fCheckWin32 = False
  1819. self.fCheckWin64 = False
  1820. self.fCheckLADSPA = False
  1821. self.fCheckDSSI = False
  1822. self.fCheckLV2 = False
  1823. self.fCheckVST = False
  1824. self.fCheckGIG = False
  1825. self.fCheckSF2 = False
  1826. self.fCheckSFZ = False
  1827. self.fToolNative = carla_discovery_native
  1828. self.fCurCount = 0
  1829. self.fCurPercentValue = 0
  1830. self.fLastCheckValue = 0
  1831. self.fSomethingChanged = False
  1832. self.fLadspaPlugins = []
  1833. self.fDssiPlugins = []
  1834. self.fLv2Plugins = []
  1835. self.fVstPlugins = []
  1836. self.fKitPlugins = []
  1837. # -------------------------------------------------------------
  1838. def somethingChanged(self):
  1839. return self.fSomethingChanged
  1840. def skipPlugin(self):
  1841. # TODO - windows and mac support
  1842. apps = " carla-discovery"
  1843. apps += " carla-discovery-native"
  1844. apps += " carla-discovery-posix32"
  1845. apps += " carla-discovery-posix64"
  1846. apps += " carla-discovery-win32.exe"
  1847. apps += " carla-discovery-win64.exe"
  1848. if LINUX:
  1849. os.system("killall -KILL %s" % apps)
  1850. def setSearchBinaryTypes(self, native, posix32, posix64, win32, win64):
  1851. self.fCheckNative = native
  1852. self.fCheckPosix32 = posix32
  1853. self.fCheckPosix64 = posix64
  1854. self.fCheckWin32 = win32
  1855. self.fCheckWin64 = win64
  1856. def setSearchPluginTypes(self, ladspa, dssi, lv2, vst, gig, sf2, sfz):
  1857. self.fCheckLADSPA = ladspa
  1858. self.fCheckDSSI = dssi
  1859. self.fCheckLV2 = lv2
  1860. self.fCheckVST = vst
  1861. self.fCheckGIG = gig
  1862. self.fCheckSF2 = sf2
  1863. self.fCheckSFZ = sfz
  1864. def setSearchToolNative(self, tool):
  1865. self.fToolNative = tool
  1866. def run(self):
  1867. self.fCurCount = 0
  1868. pluginCount = 0
  1869. settingsDB = QSettings("falkTX", "CarlaPlugins")
  1870. if self.fCheckLADSPA: pluginCount += 1
  1871. if self.fCheckDSSI: pluginCount += 1
  1872. if self.fCheckLV2: pluginCount += 1
  1873. if self.fCheckVST: pluginCount += 1
  1874. if self.fCheckNative:
  1875. self.fCurCount += pluginCount
  1876. if self.fCheckPosix32:
  1877. self.fCurCount += pluginCount
  1878. if self.fCheckPosix64:
  1879. self.fCurCount += pluginCount
  1880. if self.fCheckWin32:
  1881. self.fCurCount += pluginCount
  1882. if self.fCheckWin64:
  1883. self.fCurCount += pluginCount
  1884. if self.fToolNative:
  1885. if self.fCheckGIG: self.fCurCount += 1
  1886. if self.fCheckSF2: self.fCurCount += 1
  1887. if self.fCheckSFZ: self.fCurCount += 1
  1888. else:
  1889. self.fCheckGIG = False
  1890. self.fCheckSF2 = False
  1891. self.fCheckSFZ = False
  1892. if self.fCurCount == 0:
  1893. return
  1894. self.fCurPercentValue = 100 / self.fCurCount
  1895. self.fLastCheckValue = 0
  1896. if HAIKU:
  1897. OS = "HAIKU"
  1898. elif LINUX:
  1899. OS = "LINUX"
  1900. elif MACOS:
  1901. OS = "MACOS"
  1902. elif WINDOWS:
  1903. OS = "WINDOWS"
  1904. else:
  1905. OS = "UNKNOWN"
  1906. if self.fCheckLADSPA:
  1907. checkValue = 0
  1908. if haveLRDF:
  1909. if self.fCheckNative: checkValue += 0.1
  1910. if self.fCheckPosix32: checkValue += 0.1
  1911. if self.fCheckPosix64: checkValue += 0.1
  1912. if self.fCheckWin32: checkValue += 0.1
  1913. if self.fCheckWin64: checkValue += 0.1
  1914. rdfPadValue = self.fCurPercentValue * checkValue
  1915. if self.fCheckNative:
  1916. self._checkLADSPA(OS, self.fToolNative)
  1917. settingsDB.setValue("Plugins/LADSPA_native", self.fLadspaPlugins)
  1918. if self.fCheckPosix32:
  1919. self._checkLADSPA(OS, carla_discovery_posix32)
  1920. settingsDB.setValue("Plugins/LADSPA_posix32", self.fLadspaPlugins)
  1921. if self.fCheckPosix64:
  1922. self._checkLADSPA(OS, carla_discovery_posix64)
  1923. settingsDB.setValue("Plugins/LADSPA_posix64", self.fLadspaPlugins)
  1924. if self.fCheckWin32:
  1925. self._checkLADSPA("WINDOWS", carla_discovery_win32, not WINDOWS)
  1926. settingsDB.setValue("Plugins/LADSPA_win32", self.fLadspaPlugins)
  1927. if self.fCheckWin64:
  1928. self._checkLADSPA("WINDOWS", carla_discovery_win64, not WINDOWS)
  1929. settingsDB.setValue("Plugins/LADSPA_win64", self.fLadspaPlugins)
  1930. if haveLRDF and checkValue > 0:
  1931. startValue = self.fLastCheckValue - rdfPadValue
  1932. self._pluginLook(startValue, "LADSPA RDFs...")
  1933. ladspaRdfInfo = ladspa_rdf.recheck_all_plugins(self, startValue, self.fCurPercentValue, checkValue)
  1934. SettingsDir = os.path.join(HOME, ".config", "falkTX")
  1935. fLadspa = open(os.path.join(SettingsDir, "ladspa_rdf.db"), 'w')
  1936. json.dump(ladspaRdfInfo, fLadspa)
  1937. fLadspa.close()
  1938. if self.fCheckDSSI:
  1939. if self.fCheckNative:
  1940. self._checkDSSI(OS, self.fToolNative)
  1941. settingsDB.setValue("Plugins/DSSI_native", self.fDssiPlugins)
  1942. if self.fCheckPosix32:
  1943. self._checkDSSI(OS, carla_discovery_posix32)
  1944. settingsDB.setValue("Plugins/DSSI_posix32", self.fDssiPlugins)
  1945. if self.fCheckPosix64:
  1946. self._checkDSSI(OS, carla_discovery_posix64)
  1947. settingsDB.setValue("Plugins/DSSI_posix64", self.fDssiPlugins)
  1948. if self.fCheckWin32:
  1949. self._checkDSSI("WINDOWS", carla_discovery_win32, not WINDOWS)
  1950. settingsDB.setValue("Plugins/DSSI_win32", self.fDssiPlugins)
  1951. if self.fCheckWin64:
  1952. self._checkDSSI("WINDOWS", carla_discovery_win64, not WINDOWS)
  1953. settingsDB.setValue("Plugins/DSSI_win64", self.fDssiPlugins)
  1954. if self.fCheckLV2:
  1955. if self.fCheckNative:
  1956. self._checkLV2(self.fToolNative)
  1957. settingsDB.setValue("Plugins/LV2_native", self.fLv2Plugins)
  1958. if self.fCheckPosix32:
  1959. self._checkLV2(carla_discovery_posix32)
  1960. settingsDB.setValue("Plugins/LV2_posix32", self.fLv2Plugins)
  1961. if self.fCheckPosix64:
  1962. self._checkLV2(carla_discovery_posix64)
  1963. settingsDB.setValue("Plugins/LV2_posix64", self.fLv2Plugins)
  1964. if self.fCheckWin32:
  1965. self._checkLV2(carla_discovery_win32, not WINDOWS)
  1966. settingsDB.setValue("Plugins/LV2_win32", self.fLv2Plugins)
  1967. if self.fCheckWin64:
  1968. self._checkLV2(carla_discovery_win64, not WINDOWS)
  1969. settingsDB.setValue("Plugins/LV2_win64", self.fLv2Plugins)
  1970. if self.fCheckVST:
  1971. if self.fCheckNative:
  1972. self._checkVST(OS, self.fToolNative)
  1973. settingsDB.setValue("Plugins/VST_native", self.fVstPlugins)
  1974. if self.fCheckPosix32:
  1975. self._checkVST(OS, carla_discovery_posix32)
  1976. settingsDB.setValue("Plugins/VST_posix32", self.fVstPlugins)
  1977. if self.fCheckPosix64:
  1978. self._checkVST(OS, carla_discovery_posix64)
  1979. settingsDB.setValue("Plugins/VST_posix64", self.fVstPlugins)
  1980. if self.fCheckWin32:
  1981. self._checkVST("WINDOWS", carla_discovery_win32, not WINDOWS)
  1982. settingsDB.setValue("Plugins/VST_win32", self.fVstPlugins)
  1983. if self.fCheckWin64:
  1984. self._checkVST("WINDOWS", carla_discovery_win64, not WINDOWS)
  1985. settingsDB.setValue("Plugins/VST_win64", self.fVstPlugins)
  1986. if self.fCheckGIG:
  1987. self._checkKIT(Carla.GIG_PATH, "gig")
  1988. settingsDB.setValue("Plugins/GIG", self.fKitPlugins)
  1989. if self.fCheckSF2:
  1990. self._checkKIT(Carla.SF2_PATH, "sf2")
  1991. settingsDB.setValue("Plugins/SF2", self.fKitPlugins)
  1992. if self.fCheckSFZ:
  1993. self._checkKIT(Carla.SFZ_PATH, "sfz")
  1994. settingsDB.setValue("Plugins/SFZ", self.fKitPlugins)
  1995. settingsDB.sync()
  1996. def _checkLADSPA(self, OS, tool, isWine=False):
  1997. ladspaBinaries = []
  1998. self.fLadspaPlugins = []
  1999. for iPATH in Carla.LADSPA_PATH:
  2000. binaries = findBinaries(iPATH, OS)
  2001. for binary in binaries:
  2002. if binary not in ladspaBinaries:
  2003. ladspaBinaries.append(binary)
  2004. ladspaBinaries.sort()
  2005. for i in range(len(ladspaBinaries)):
  2006. ladspa = ladspaBinaries[i]
  2007. percent = ( float(i) / len(ladspaBinaries) ) * self.fCurPercentValue
  2008. self._pluginLook((self.fLastCheckValue + percent) * 0.9, ladspa)
  2009. plugins = checkPluginLADSPA(ladspa, tool, isWine)
  2010. if plugins:
  2011. self.fLadspaPlugins.append(plugins)
  2012. self.fSomethingChanged = True
  2013. self.fLastCheckValue += self.fCurPercentValue
  2014. def _checkDSSI(self, OS, tool, isWine=False):
  2015. dssiBinaries = []
  2016. self.fDssiPlugins = []
  2017. for iPATH in Carla.DSSI_PATH:
  2018. binaries = findBinaries(iPATH, OS)
  2019. for binary in binaries:
  2020. if binary not in dssiBinaries:
  2021. dssiBinaries.append(binary)
  2022. dssiBinaries.sort()
  2023. for i in range(len(dssiBinaries)):
  2024. dssi = dssiBinaries[i]
  2025. percent = ( float(i) / len(dssiBinaries) ) * self.fCurPercentValue
  2026. self._pluginLook(self.fLastCheckValue + percent, dssi)
  2027. plugins = checkPluginDSSI(dssi, tool, isWine)
  2028. if plugins:
  2029. self.fDssiPlugins.append(plugins)
  2030. self.fSomethingChanged = True
  2031. self.fLastCheckValue += self.fCurPercentValue
  2032. def _checkLV2(self, tool, isWine=False):
  2033. lv2Bundles = []
  2034. self.fLv2Plugins = []
  2035. self._pluginLook(self.fLastCheckValue, "LV2 bundles...")
  2036. for iPATH in Carla.LV2_PATH:
  2037. bundles = findLV2Bundles(iPATH)
  2038. for bundle in bundles:
  2039. if bundle not in lv2Bundles:
  2040. lv2Bundles.append(bundle)
  2041. lv2Bundles.sort()
  2042. for i in range(len(lv2Bundles)):
  2043. lv2 = lv2Bundles[i]
  2044. percent = ( float(i) / len(lv2Bundles) ) * self.fCurPercentValue
  2045. self._pluginLook(self.fLastCheckValue + percent, lv2)
  2046. plugins = checkPluginLV2(lv2, tool, isWine)
  2047. if plugins:
  2048. self.fLv2Plugins.append(plugins)
  2049. self.fSomethingChanged = True
  2050. self.fLastCheckValue += self.fCurPercentValue
  2051. def _checkVST(self, OS, tool, isWine=False):
  2052. vstBinaries = []
  2053. self.fVstPlugins = []
  2054. for iPATH in Carla.VST_PATH:
  2055. binaries = findBinaries(iPATH, OS)
  2056. for binary in binaries:
  2057. if binary not in vstBinaries:
  2058. vstBinaries.append(binary)
  2059. vstBinaries.sort()
  2060. for i in range(len(vstBinaries)):
  2061. vst = vstBinaries[i]
  2062. percent = ( float(i) / len(vstBinaries) ) * self.fCurPercentValue
  2063. self._pluginLook(self.fLastCheckValue + percent, vst)
  2064. plugins = checkPluginVST(vst, tool, isWine)
  2065. if plugins:
  2066. self.fVstPlugins.append(plugins)
  2067. self.fSomethingChanged = True
  2068. self.fLastCheckValue += self.fCurPercentValue
  2069. def _checkKIT(self, kPATH, kType):
  2070. kitFiles = []
  2071. self.fKitPlugins = []
  2072. for iPATH in kPATH:
  2073. files = findSoundKits(iPATH, kType)
  2074. for file_ in files:
  2075. if file_ not in kitFiles:
  2076. kitFiles.append(file_)
  2077. kitFiles.sort()
  2078. for i in range(len(kitFiles)):
  2079. kit = kitFiles[i]
  2080. percent = ( float(i) / len(kitFiles) ) * self.fCurPercentValue
  2081. self._pluginLook(self.fLastCheckValue + percent, kit)
  2082. if kType == "gig":
  2083. plugins = checkPluginGIG(kit, self.fToolNative)
  2084. elif kType == "sf2":
  2085. plugins = checkPluginSF2(kit, self.fToolNative)
  2086. elif kType == "sfz":
  2087. plugins = checkPluginSFZ(kit, self.fToolNative)
  2088. else:
  2089. plugins = None
  2090. if plugins:
  2091. self.fKitPlugins.append(plugins)
  2092. self.fSomethingChanged = True
  2093. self.fLastCheckValue += self.fCurPercentValue
  2094. def _pluginLook(self, percent, plugin):
  2095. self.emit(SIGNAL("pluginLook(int, QString)"), percent, plugin)
  2096. # ------------------------------------------------------------------------------------------------------------
  2097. # Plugin Refresh Dialog
  2098. class PluginRefreshW(QDialog):
  2099. def __init__(self, parent):
  2100. QDialog.__init__(self, parent)
  2101. self.ui = ui_carla_refresh.Ui_PluginRefreshW()
  2102. self.ui.setupUi(self)
  2103. # -------------------------------------------------------------
  2104. # Internal stuff
  2105. self.fThread = SearchPluginsThread(self)
  2106. # -------------------------------------------------------------
  2107. # Set-up GUI
  2108. self.fIconYes = getIcon("dialog-ok-apply").pixmap(16, 16)
  2109. self.fIconNo = getIcon("dialog-error").pixmap(16, 16)
  2110. self.ui.b_skip.setVisible(False)
  2111. if HAIKU:
  2112. self.ui.ch_posix32.setText("Haiku 32bit")
  2113. self.ui.ch_posix64.setText("Haiku 64bit")
  2114. elif LINUX:
  2115. self.ui.ch_posix32.setText("Linux 32bit")
  2116. self.ui.ch_posix64.setText("Linux 64bit")
  2117. elif MACOS:
  2118. self.ui.ch_posix32.setText("MacOS 32bit")
  2119. self.ui.ch_posix64.setText("MacOS 64bit")
  2120. if carla_discovery_posix32 and not WINDOWS:
  2121. self.ui.ico_posix32.setPixmap(self.fIconYes)
  2122. else:
  2123. self.ui.ico_posix32.setPixmap(self.fIconNo)
  2124. self.ui.ch_posix32.setChecked(False)
  2125. self.ui.ch_posix32.setEnabled(False)
  2126. if carla_discovery_posix64 and not WINDOWS:
  2127. self.ui.ico_posix64.setPixmap(self.fIconYes)
  2128. else:
  2129. self.ui.ico_posix64.setPixmap(self.fIconNo)
  2130. self.ui.ch_posix64.setChecked(False)
  2131. self.ui.ch_posix64.setEnabled(False)
  2132. if carla_discovery_win32:
  2133. self.ui.ico_win32.setPixmap(self.fIconYes)
  2134. else:
  2135. self.ui.ico_win32.setPixmap(self.fIconNo)
  2136. self.ui.ch_win32.setChecked(False)
  2137. self.ui.ch_win32.setEnabled(False)
  2138. if carla_discovery_win64:
  2139. self.ui.ico_win64.setPixmap(self.fIconYes)
  2140. else:
  2141. self.ui.ico_win64.setPixmap(self.fIconNo)
  2142. self.ui.ch_win64.setChecked(False)
  2143. self.ui.ch_win64.setEnabled(False)
  2144. if haveLRDF:
  2145. self.ui.ico_rdflib.setPixmap(self.fIconYes)
  2146. else:
  2147. self.ui.ico_rdflib.setPixmap(self.fIconNo)
  2148. hasNative = bool(carla_discovery_native)
  2149. hasNonNative = False
  2150. if WINDOWS:
  2151. if kIs64bit:
  2152. hasNative = bool(carla_discovery_win64)
  2153. hasNonNative = bool(carla_discovery_win32)
  2154. self.fThread.setSearchToolNative(carla_discovery_win64)
  2155. self.ui.ch_win64.setChecked(False)
  2156. self.ui.ch_win64.setVisible(False)
  2157. self.ui.ico_win64.setVisible(False)
  2158. self.ui.label_win64.setVisible(False)
  2159. else:
  2160. hasNative = bool(carla_discovery_win32)
  2161. hasNonNative = bool(carla_discovery_win64)
  2162. self.fThread.setSearchToolNative(carla_discovery_win32)
  2163. self.ui.ch_win32.setChecked(False)
  2164. self.ui.ch_win32.setVisible(False)
  2165. self.ui.ico_win32.setVisible(False)
  2166. self.ui.label_win32.setVisible(False)
  2167. elif LINUX or MACOS:
  2168. if kIs64bit:
  2169. hasNonNative = bool(carla_discovery_posix32 or carla_discovery_win32 or carla_discovery_win64)
  2170. self.ui.ch_posix64.setChecked(False)
  2171. self.ui.ch_posix64.setVisible(False)
  2172. self.ui.ico_posix64.setVisible(False)
  2173. self.ui.label_posix64.setVisible(False)
  2174. else:
  2175. hasNonNative = bool(carla_discovery_posix64 or carla_discovery_win32 or carla_discovery_win64)
  2176. self.ui.ch_posix32.setChecked(False)
  2177. self.ui.ch_posix32.setVisible(False)
  2178. self.ui.ico_posix32.setVisible(False)
  2179. self.ui.label_posix32.setVisible(False)
  2180. if hasNative:
  2181. self.ui.ico_native.setPixmap(self.fIconYes)
  2182. else:
  2183. self.ui.ico_native.setPixmap(self.fIconNo)
  2184. self.ui.ch_native.setChecked(False)
  2185. self.ui.ch_native.setEnabled(False)
  2186. self.ui.ch_gig.setChecked(False)
  2187. self.ui.ch_gig.setEnabled(False)
  2188. self.ui.ch_sf2.setChecked(False)
  2189. self.ui.ch_sf2.setEnabled(False)
  2190. self.ui.ch_sfz.setChecked(False)
  2191. self.ui.ch_sfz.setEnabled(False)
  2192. if not hasNonNative:
  2193. self.ui.ch_ladspa.setChecked(False)
  2194. self.ui.ch_ladspa.setEnabled(False)
  2195. self.ui.ch_dssi.setChecked(False)
  2196. self.ui.ch_dssi.setEnabled(False)
  2197. self.ui.ch_lv2.setChecked(False)
  2198. self.ui.ch_lv2.setEnabled(False)
  2199. self.ui.ch_vst.setChecked(False)
  2200. self.ui.ch_vst.setEnabled(False)
  2201. self.ui.b_start.setEnabled(False)
  2202. # -------------------------------------------------------------
  2203. # Load settings
  2204. self.loadSettings()
  2205. # -------------------------------------------------------------
  2206. # Set-up connections
  2207. self.connect(self.ui.b_start, SIGNAL("clicked()"), SLOT("slot_start()"))
  2208. self.connect(self.ui.b_skip, SIGNAL("clicked()"), SLOT("slot_skip()"))
  2209. self.connect(self.fThread, SIGNAL("pluginLook(int, QString)"), SLOT("slot_handlePluginLook(int, QString)"))
  2210. self.connect(self.fThread, SIGNAL("finished()"), SLOT("slot_handlePluginThreadFinished()"))
  2211. # -------------------------------------------------------------
  2212. @pyqtSlot()
  2213. def slot_start(self):
  2214. self.ui.progressBar.setMinimum(0)
  2215. self.ui.progressBar.setMaximum(100)
  2216. self.ui.progressBar.setValue(0)
  2217. self.ui.b_start.setEnabled(False)
  2218. self.ui.b_skip.setVisible(True)
  2219. self.ui.b_close.setVisible(False)
  2220. native, posix32, posix64, win32, win64 = (self.ui.ch_native.isChecked(), self.ui.ch_posix32.isChecked(), self.ui.ch_posix64.isChecked(), self.ui.ch_win32.isChecked(), self.ui.ch_win64.isChecked())
  2221. ladspa, dssi, lv2, vst, gig, sf2, sfz = (self.ui.ch_ladspa.isChecked(), self.ui.ch_dssi.isChecked(), self.ui.ch_lv2.isChecked(), self.ui.ch_vst.isChecked(),
  2222. self.ui.ch_gig.isChecked(), self.ui.ch_sf2.isChecked(), self.ui.ch_sfz.isChecked())
  2223. self.fThread.setSearchBinaryTypes(native, posix32, posix64, win32, win64)
  2224. self.fThread.setSearchPluginTypes(ladspa, dssi, lv2, vst, gig, sf2, sfz)
  2225. self.fThread.start()
  2226. @pyqtSlot()
  2227. def slot_skip(self):
  2228. self.fThread.skipPlugin()
  2229. @pyqtSlot(int, str)
  2230. def slot_handlePluginLook(self, percent, plugin):
  2231. self.ui.progressBar.setFormat("%s" % plugin)
  2232. self.ui.progressBar.setValue(percent)
  2233. @pyqtSlot()
  2234. def slot_handlePluginThreadFinished(self):
  2235. self.ui.progressBar.setMinimum(0)
  2236. self.ui.progressBar.setMaximum(1)
  2237. self.ui.progressBar.setValue(1)
  2238. self.ui.progressBar.setFormat(self.tr("Done"))
  2239. self.ui.b_start.setEnabled(True)
  2240. self.ui.b_skip.setVisible(False)
  2241. self.ui.b_close.setVisible(True)
  2242. def loadSettings(self):
  2243. settings = QSettings()
  2244. self.ui.ch_ladspa.setChecked(settings.value("PluginDatabase/SearchLADSPA", True, type=bool))
  2245. self.ui.ch_dssi.setChecked(settings.value("PluginDatabase/SearchDSSI", True, type=bool))
  2246. self.ui.ch_lv2.setChecked(settings.value("PluginDatabase/SearchLV2", True, type=bool))
  2247. self.ui.ch_vst.setChecked(settings.value("PluginDatabase/SearchVST", True, type=bool))
  2248. self.ui.ch_gig.setChecked(settings.value("PluginDatabase/SearchGIG", False, type=bool))
  2249. self.ui.ch_sf2.setChecked(settings.value("PluginDatabase/SearchSF2", False, type=bool))
  2250. self.ui.ch_sfz.setChecked(settings.value("PluginDatabase/SearchSFZ", False, type=bool))
  2251. self.ui.ch_native.setChecked(settings.value("PluginDatabase/SearchNative", True, type=bool))
  2252. self.ui.ch_posix32.setChecked(settings.value("PluginDatabase/SearchPOSIX32", False, type=bool))
  2253. self.ui.ch_posix64.setChecked(settings.value("PluginDatabase/SearchPOSIX64", False, type=bool))
  2254. self.ui.ch_win32.setChecked(settings.value("PluginDatabase/SearchWin32", False, type=bool))
  2255. self.ui.ch_win64.setChecked(settings.value("PluginDatabase/SearchWin64", False, type=bool))
  2256. def saveSettings(self):
  2257. settings = QSettings()
  2258. settings.setValue("PluginDatabase/SearchLADSPA", self.ui.ch_ladspa.isChecked())
  2259. settings.setValue("PluginDatabase/SearchDSSI", self.ui.ch_dssi.isChecked())
  2260. settings.setValue("PluginDatabase/SearchLV2", self.ui.ch_lv2.isChecked())
  2261. settings.setValue("PluginDatabase/SearchVST", self.ui.ch_vst.isChecked())
  2262. settings.setValue("PluginDatabase/SearchGIG", self.ui.ch_gig.isChecked())
  2263. settings.setValue("PluginDatabase/SearchSF2", self.ui.ch_sf2.isChecked())
  2264. settings.setValue("PluginDatabase/SearchSFZ", self.ui.ch_sfz.isChecked())
  2265. settings.setValue("PluginDatabase/SearchNative", self.ui.ch_native.isChecked())
  2266. settings.setValue("PluginDatabase/SearchPOSIX32", self.ui.ch_posix32.isChecked())
  2267. settings.setValue("PluginDatabase/SearchPOSIX64", self.ui.ch_posix64.isChecked())
  2268. settings.setValue("PluginDatabase/SearchWin32", self.ui.ch_win32.isChecked())
  2269. settings.setValue("PluginDatabase/SearchWin64", self.ui.ch_win64.isChecked())
  2270. def closeEvent(self, event):
  2271. self.saveSettings()
  2272. if self.fThread.isRunning():
  2273. self.fThread.terminate()
  2274. self.fThread.wait()
  2275. if self.fThread.somethingChanged():
  2276. self.accept()
  2277. else:
  2278. self.reject()
  2279. QDialog.closeEvent(self, event)
  2280. def done(self, r):
  2281. QDialog.done(self, r)
  2282. self.close()
  2283. # ------------------------------------------------------------------------------------------------------------
  2284. # Plugin Database Dialog
  2285. class PluginDatabaseW(QDialog):
  2286. def __init__(self, parent):
  2287. QDialog.__init__(self, parent)
  2288. self.ui = ui_carla_database.Ui_PluginDatabaseW()
  2289. self.ui.setupUi(self)
  2290. # -------------------------------------------------------------
  2291. # Internal stuff
  2292. self.fLastTableIndex = 0
  2293. self.fRetPlugin = None
  2294. self.fRealParent = parent
  2295. # -------------------------------------------------------------
  2296. # Set-up GUI
  2297. self.ui.b_add.setEnabled(False)
  2298. if BINARY_NATIVE in (BINARY_POSIX32, BINARY_WIN32):
  2299. self.ui.ch_bridged.setText(self.tr("Bridged (64bit)"))
  2300. else:
  2301. self.ui.ch_bridged.setText(self.tr("Bridged (32bit)"))
  2302. if not (LINUX or MACOS):
  2303. self.ui.ch_bridged_wine.setChecked(False)
  2304. self.ui.ch_bridged_wine.setEnabled(False)
  2305. # -------------------------------------------------------------
  2306. # Load settings
  2307. self.loadSettings()
  2308. # -------------------------------------------------------------
  2309. # Set-up connections
  2310. self.connect(self.ui.b_add, SIGNAL("clicked()"), SLOT("slot_addPlugin()"))
  2311. self.connect(self.ui.b_refresh, SIGNAL("clicked()"), SLOT("slot_refreshPlugins()"))
  2312. self.connect(self.ui.tb_filters, SIGNAL("clicked()"), SLOT("slot_maybeShowFilters()"))
  2313. self.connect(self.ui.lineEdit, SIGNAL("textChanged(QString)"), SLOT("slot_checkFilters()"))
  2314. self.connect(self.ui.tableWidget, SIGNAL("currentCellChanged(int, int, int, int)"), SLOT("slot_checkPlugin(int)"))
  2315. self.connect(self.ui.tableWidget, SIGNAL("cellDoubleClicked(int, int)"), SLOT("slot_addPlugin()"))
  2316. self.connect(self.ui.ch_effects, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2317. self.connect(self.ui.ch_instruments, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2318. self.connect(self.ui.ch_midi, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2319. self.connect(self.ui.ch_other, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2320. self.connect(self.ui.ch_kits, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2321. self.connect(self.ui.ch_internal, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2322. self.connect(self.ui.ch_ladspa, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2323. self.connect(self.ui.ch_dssi, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2324. self.connect(self.ui.ch_lv2, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2325. self.connect(self.ui.ch_vst, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2326. self.connect(self.ui.ch_native, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2327. self.connect(self.ui.ch_bridged, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2328. self.connect(self.ui.ch_bridged_wine, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2329. self.connect(self.ui.ch_gui, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2330. self.connect(self.ui.ch_stereo, SIGNAL("clicked()"), SLOT("slot_checkFilters()"))
  2331. # -------------------------------------------------------------
  2332. @pyqtSlot()
  2333. def slot_addPlugin(self):
  2334. if self.ui.tableWidget.currentRow() >= 0:
  2335. self.fRetPlugin = self.ui.tableWidget.item(self.ui.tableWidget.currentRow(), 0).data(Qt.UserRole)
  2336. self.accept()
  2337. else:
  2338. self.reject()
  2339. @pyqtSlot(int)
  2340. def slot_checkPlugin(self, row):
  2341. self.ui.b_add.setEnabled(row >= 0)
  2342. @pyqtSlot()
  2343. def slot_checkFilters(self):
  2344. self._checkFilters()
  2345. @pyqtSlot()
  2346. def slot_maybeShowFilters(self):
  2347. self._showFilters(not self.ui.frame.isVisible())
  2348. @pyqtSlot()
  2349. def slot_refreshPlugins(self):
  2350. if PluginRefreshW(self).exec_():
  2351. self._reAddPlugins()
  2352. if self.fRealParent:
  2353. self.fRealParent.loadRDFsNeeded()
  2354. def _checkFilters(self):
  2355. text = self.ui.lineEdit.text().lower()
  2356. hideEffects = not self.ui.ch_effects.isChecked()
  2357. hideInstruments = not self.ui.ch_instruments.isChecked()
  2358. hideMidi = not self.ui.ch_midi.isChecked()
  2359. hideOther = not self.ui.ch_other.isChecked()
  2360. hideInternal = not self.ui.ch_internal.isChecked()
  2361. hideLadspa = not self.ui.ch_ladspa.isChecked()
  2362. hideDssi = not self.ui.ch_dssi.isChecked()
  2363. hideLV2 = not self.ui.ch_lv2.isChecked()
  2364. hideVST = not self.ui.ch_vst.isChecked()
  2365. hideKits = not self.ui.ch_kits.isChecked()
  2366. hideNative = not self.ui.ch_native.isChecked()
  2367. hideBridged = not self.ui.ch_bridged.isChecked()
  2368. hideBridgedWine = not self.ui.ch_bridged_wine.isChecked()
  2369. hideNonGui = self.ui.ch_gui.isChecked()
  2370. hideNonStereo = self.ui.ch_stereo.isChecked()
  2371. if HAIKU or LINUX or MACOS:
  2372. nativeBins = [BINARY_POSIX32, BINARY_POSIX64]
  2373. wineBins = [BINARY_WIN32, BINARY_WIN64]
  2374. elif WINDOWS:
  2375. nativeBins = [BINARY_WIN32, BINARY_WIN64]
  2376. wineBins = []
  2377. else:
  2378. nativeBins = []
  2379. wineBins = []
  2380. rowCount = self.ui.tableWidget.rowCount()
  2381. for i in range(rowCount):
  2382. self.ui.tableWidget.showRow(i)
  2383. plugin = self.ui.tableWidget.item(i, 0).data(Qt.UserRole)
  2384. aIns = plugin['audio.ins']
  2385. aOuts = plugin['audio.outs']
  2386. mIns = plugin['midi.ins']
  2387. mOuts = plugin['midi.outs']
  2388. ptype = self.ui.tableWidget.item(i, 12).text()
  2389. isSynth = bool(plugin['hints'] & PLUGIN_IS_SYNTH)
  2390. isEffect = bool(aIns > 0 < aOuts and not isSynth)
  2391. isMidi = bool(aIns == 0 and aOuts == 0 and mIns > 0 < mOuts)
  2392. isKit = bool(ptype in ("GIG", "SF2", "SFZ"))
  2393. isOther = bool(not (isEffect or isSynth or isMidi or isKit))
  2394. isNative = bool(plugin['build'] == BINARY_NATIVE)
  2395. isStereo = bool(aIns == 2 and aOuts == 2) or (isSynth and aOuts == 2)
  2396. hasGui = bool(plugin['hints'] & PLUGIN_HAS_GUI)
  2397. isBridged = bool(not isNative and plugin['build'] in nativeBins)
  2398. isBridgedWine = bool(not isNative and plugin['build'] in wineBins)
  2399. if (hideEffects and isEffect):
  2400. self.ui.tableWidget.hideRow(i)
  2401. elif (hideInstruments and isSynth):
  2402. self.ui.tableWidget.hideRow(i)
  2403. elif (hideMidi and isMidi):
  2404. self.ui.tableWidget.hideRow(i)
  2405. elif (hideOther and isOther):
  2406. self.ui.tableWidget.hideRow(i)
  2407. elif (hideKits and isKit):
  2408. self.ui.tableWidget.hideRow(i)
  2409. elif (hideInternal and ptype == self.tr("Internal")):
  2410. self.ui.tableWidget.hideRow(i)
  2411. elif (hideLadspa and ptype == "LADSPA"):
  2412. self.ui.tableWidget.hideRow(i)
  2413. elif (hideDssi and ptype == "DSSI"):
  2414. self.ui.tableWidget.hideRow(i)
  2415. elif (hideLV2 and ptype == "LV2"):
  2416. self.ui.tableWidget.hideRow(i)
  2417. elif (hideVST and ptype == "VST"):
  2418. self.ui.tableWidget.hideRow(i)
  2419. elif (hideNative and isNative):
  2420. self.ui.tableWidget.hideRow(i)
  2421. elif (hideBridged and isBridged):
  2422. self.ui.tableWidget.hideRow(i)
  2423. elif (hideBridgedWine and isBridgedWine):
  2424. self.ui.tableWidget.hideRow(i)
  2425. elif (hideNonGui and not hasGui):
  2426. self.ui.tableWidget.hideRow(i)
  2427. elif (hideNonStereo and not isStereo):
  2428. self.ui.tableWidget.hideRow(i)
  2429. elif (text and not (
  2430. text in self.ui.tableWidget.item(i, 0).text().lower() or
  2431. text in self.ui.tableWidget.item(i, 1).text().lower() or
  2432. text in self.ui.tableWidget.item(i, 2).text().lower() or
  2433. text in self.ui.tableWidget.item(i, 3).text().lower() or
  2434. text in self.ui.tableWidget.item(i, 13).text().lower())):
  2435. self.ui.tableWidget.hideRow(i)
  2436. def _showFilters(self, yesNo):
  2437. self.ui.tb_filters.setArrowType(Qt.UpArrow if yesNo else Qt.DownArrow)
  2438. self.ui.frame.setVisible(yesNo)
  2439. def _addPluginToTable(self, plugin, ptype):
  2440. index = self.fLastTableIndex
  2441. if plugin['build'] == BINARY_NATIVE:
  2442. bridgeText = self.tr("No")
  2443. else:
  2444. if LINUX or MACOS:
  2445. if plugin['build'] == BINARY_WIN32:
  2446. typeText = "32bit"
  2447. elif plugin['build'] == BINARY_WIN64:
  2448. typeText = "64bit"
  2449. else:
  2450. typeText = self.tr("Unknown")
  2451. else:
  2452. if plugin['build'] == BINARY_POSIX32:
  2453. typeText = "32bit"
  2454. elif plugin['build'] == BINARY_POSIX64:
  2455. typeText = "64bit"
  2456. elif plugin['build'] == BINARY_WIN32:
  2457. typeText = "Windows 32bit"
  2458. elif plugin['build'] == BINARY_WIN64:
  2459. typeText = "Windows 64bit"
  2460. else:
  2461. typeText = self.tr("Unknown")
  2462. bridgeText = self.tr("Yes (%s)" % typeText)
  2463. self.ui.tableWidget.insertRow(index)
  2464. self.ui.tableWidget.setItem(index, 0, QTableWidgetItem(str(plugin['name'])))
  2465. self.ui.tableWidget.setItem(index, 1, QTableWidgetItem(str(plugin['label'])))
  2466. self.ui.tableWidget.setItem(index, 2, QTableWidgetItem(str(plugin['maker'])))
  2467. self.ui.tableWidget.setItem(index, 3, QTableWidgetItem(str(plugin['uniqueId'])))
  2468. self.ui.tableWidget.setItem(index, 4, QTableWidgetItem(str(plugin['audio.ins'])))
  2469. self.ui.tableWidget.setItem(index, 5, QTableWidgetItem(str(plugin['audio.outs'])))
  2470. self.ui.tableWidget.setItem(index, 6, QTableWidgetItem(str(plugin['parameters.ins'])))
  2471. self.ui.tableWidget.setItem(index, 7, QTableWidgetItem(str(plugin['parameters.outs'])))
  2472. self.ui.tableWidget.setItem(index, 8, QTableWidgetItem(str(plugin['programs.total'])))
  2473. self.ui.tableWidget.setItem(index, 9, QTableWidgetItem(self.tr("Yes") if (plugin['hints'] & PLUGIN_HAS_GUI) else self.tr("No")))
  2474. self.ui.tableWidget.setItem(index, 10, QTableWidgetItem(self.tr("Yes") if (plugin['hints'] & PLUGIN_IS_SYNTH) else self.tr("No")))
  2475. self.ui.tableWidget.setItem(index, 11, QTableWidgetItem(bridgeText))
  2476. self.ui.tableWidget.setItem(index, 12, QTableWidgetItem(ptype))
  2477. self.ui.tableWidget.setItem(index, 13, QTableWidgetItem(str(plugin['binary'])))
  2478. self.ui.tableWidget.item(index, 0).setData(Qt.UserRole, plugin)
  2479. self.fLastTableIndex += 1
  2480. def _reAddPlugins(self):
  2481. settingsDB = QSettings("falkTX", "CarlaPlugins")
  2482. for x in range(self.ui.tableWidget.rowCount()):
  2483. self.ui.tableWidget.removeRow(0)
  2484. self.fLastTableIndex = 0
  2485. self.ui.tableWidget.setSortingEnabled(False)
  2486. internalCount = 0
  2487. ladspaCount = 0
  2488. dssiCount = 0
  2489. lv2Count = 0
  2490. vstCount = 0
  2491. kitCount = 0
  2492. # ---------------------------------------------------------------------------
  2493. # Internal
  2494. internalPlugins = toList(settingsDB.value("Plugins/Internal", []))
  2495. for plugins in internalPlugins:
  2496. for plugin in plugins:
  2497. internalCount += 1
  2498. if (not Carla.isControl) and internalCount != Carla.host.get_internal_plugin_count():
  2499. internalCount = Carla.host.get_internal_plugin_count()
  2500. internalPlugins = []
  2501. for i in range(Carla.host.get_internal_plugin_count()):
  2502. descInfo = Carla.host.get_internal_plugin_info(i)
  2503. plugins = checkPluginInternal(descInfo)
  2504. if plugins:
  2505. internalPlugins.append(plugins)
  2506. settingsDB.setValue("Plugins/Internal", internalPlugins)
  2507. for plugins in internalPlugins:
  2508. for plugin in plugins:
  2509. self._addPluginToTable(plugin, self.tr("Internal"))
  2510. # ---------------------------------------------------------------------------
  2511. # LADSPA
  2512. ladspaPlugins = []
  2513. ladspaPlugins += toList(settingsDB.value("Plugins/LADSPA_native", []))
  2514. ladspaPlugins += toList(settingsDB.value("Plugins/LADSPA_posix32", []))
  2515. ladspaPlugins += toList(settingsDB.value("Plugins/LADSPA_posix64", []))
  2516. ladspaPlugins += toList(settingsDB.value("Plugins/LADSPA_win32", []))
  2517. ladspaPlugins += toList(settingsDB.value("Plugins/LADSPA_win64", []))
  2518. for plugins in ladspaPlugins:
  2519. for plugin in plugins:
  2520. self._addPluginToTable(plugin, "LADSPA")
  2521. ladspaCount += 1
  2522. # ---------------------------------------------------------------------------
  2523. # DSSI
  2524. dssiPlugins = []
  2525. dssiPlugins += toList(settingsDB.value("Plugins/DSSI_native", []))
  2526. dssiPlugins += toList(settingsDB.value("Plugins/DSSI_posix32", []))
  2527. dssiPlugins += toList(settingsDB.value("Plugins/DSSI_posix64", []))
  2528. dssiPlugins += toList(settingsDB.value("Plugins/DSSI_win32", []))
  2529. dssiPlugins += toList(settingsDB.value("Plugins/DSSI_win64", []))
  2530. for plugins in dssiPlugins:
  2531. for plugin in plugins:
  2532. self._addPluginToTable(plugin, "DSSI")
  2533. dssiCount += 1
  2534. # ---------------------------------------------------------------------------
  2535. # LV2
  2536. lv2Plugins = []
  2537. lv2Plugins += toList(settingsDB.value("Plugins/LV2_native", []))
  2538. lv2Plugins += toList(settingsDB.value("Plugins/LV2_posix32", []))
  2539. lv2Plugins += toList(settingsDB.value("Plugins/LV2_posix64", []))
  2540. lv2Plugins += toList(settingsDB.value("Plugins/LV2_win32", []))
  2541. lv2Plugins += toList(settingsDB.value("Plugins/LV2_win64", []))
  2542. for plugins in lv2Plugins:
  2543. for plugin in plugins:
  2544. self._addPluginToTable(plugin, "LV2")
  2545. lv2Count += 1
  2546. # ---------------------------------------------------------------------------
  2547. # VST
  2548. vstPlugins = []
  2549. vstPlugins += toList(settingsDB.value("Plugins/VST_native", []))
  2550. vstPlugins += toList(settingsDB.value("Plugins/VST_posix32", []))
  2551. vstPlugins += toList(settingsDB.value("Plugins/VST_posix64", []))
  2552. vstPlugins += toList(settingsDB.value("Plugins/VST_win32", []))
  2553. vstPlugins += toList(settingsDB.value("Plugins/VST_win64", []))
  2554. for plugins in vstPlugins:
  2555. for plugin in plugins:
  2556. self._addPluginToTable(plugin, "VST")
  2557. vstCount += 1
  2558. # ---------------------------------------------------------------------------
  2559. # Kits
  2560. gigs = toList(settingsDB.value("Plugins/GIG", []))
  2561. sf2s = toList(settingsDB.value("Plugins/SF2", []))
  2562. sfzs = toList(settingsDB.value("Plugins/SFZ", []))
  2563. for gig in gigs:
  2564. for gig_i in gig:
  2565. self._addPluginToTable(gig_i, "GIG")
  2566. kitCount += 1
  2567. for sf2 in sf2s:
  2568. for sf2_i in sf2:
  2569. self._addPluginToTable(sf2_i, "SF2")
  2570. kitCount += 1
  2571. for sfz in sfzs:
  2572. for sfz_i in sfz:
  2573. self._addPluginToTable(sfz_i, "SFZ")
  2574. kitCount += 1
  2575. # ---------------------------------------------------------------------------
  2576. self.ui.tableWidget.setSortingEnabled(True)
  2577. self.ui.tableWidget.sortByColumn(0, Qt.AscendingOrder)
  2578. self.ui.label.setText(self.tr("Have %i Internal, %i LADSPA, %i DSSI, %i LV2, %i VST and %i Sound Kits" % (internalCount, ladspaCount, dssiCount, lv2Count, vstCount, kitCount)))
  2579. self._checkFilters()
  2580. def loadSettings(self):
  2581. settings = QSettings()
  2582. self.restoreGeometry(settings.value("PluginDatabase/Geometry", ""))
  2583. self.ui.tableWidget.horizontalHeader().restoreState(settings.value("PluginDatabase/TableGeometry", ""))
  2584. self.ui.ch_effects.setChecked(settings.value("PluginDatabase/ShowEffects", True, type=bool))
  2585. self.ui.ch_instruments.setChecked(settings.value("PluginDatabase/ShowInstruments", True, type=bool))
  2586. self.ui.ch_midi.setChecked(settings.value("PluginDatabase/ShowMIDI", True, type=bool))
  2587. self.ui.ch_other.setChecked(settings.value("PluginDatabase/ShowOther", True, type=bool))
  2588. self.ui.ch_internal.setChecked(settings.value("PluginDatabase/ShowInternal", True, type=bool))
  2589. self.ui.ch_ladspa.setChecked(settings.value("PluginDatabase/ShowLADSPA", True, type=bool))
  2590. self.ui.ch_dssi.setChecked(settings.value("PluginDatabase/ShowDSSI", True, type=bool))
  2591. self.ui.ch_lv2.setChecked(settings.value("PluginDatabase/ShowLV2", True, type=bool))
  2592. self.ui.ch_vst.setChecked(settings.value("PluginDatabase/ShowVST", True, type=bool))
  2593. self.ui.ch_kits.setChecked(settings.value("PluginDatabase/ShowKits", True, type=bool))
  2594. self.ui.ch_native.setChecked(settings.value("PluginDatabase/ShowNative", True, type=bool))
  2595. self.ui.ch_bridged.setChecked(settings.value("PluginDatabase/ShowBridged", True, type=bool))
  2596. self.ui.ch_bridged_wine.setChecked(settings.value("PluginDatabase/ShowBridgedWine", True, type=bool))
  2597. self.ui.ch_gui.setChecked(settings.value("PluginDatabase/ShowHasGUI", False, type=bool))
  2598. self.ui.ch_stereo.setChecked(settings.value("PluginDatabase/ShowStereoOnly", False, type=bool))
  2599. self._showFilters(settings.value("PluginDatabase/ShowFilters", False, type=bool))
  2600. self._reAddPlugins()
  2601. def saveSettings(self):
  2602. settings = QSettings()
  2603. settings.setValue("PluginDatabase/Geometry", self.saveGeometry())
  2604. settings.setValue("PluginDatabase/TableGeometry", self.ui.tableWidget.horizontalHeader().saveState())
  2605. settings.setValue("PluginDatabase/ShowFilters", (self.ui.tb_filters.arrowType() == Qt.UpArrow))
  2606. settings.setValue("PluginDatabase/ShowEffects", self.ui.ch_effects.isChecked())
  2607. settings.setValue("PluginDatabase/ShowInstruments", self.ui.ch_instruments.isChecked())
  2608. settings.setValue("PluginDatabase/ShowMIDI", self.ui.ch_midi.isChecked())
  2609. settings.setValue("PluginDatabase/ShowOther", self.ui.ch_other.isChecked())
  2610. settings.setValue("PluginDatabase/ShowInternal", self.ui.ch_internal.isChecked())
  2611. settings.setValue("PluginDatabase/ShowLADSPA", self.ui.ch_ladspa.isChecked())
  2612. settings.setValue("PluginDatabase/ShowDSSI", self.ui.ch_dssi.isChecked())
  2613. settings.setValue("PluginDatabase/ShowLV2", self.ui.ch_lv2.isChecked())
  2614. settings.setValue("PluginDatabase/ShowVST", self.ui.ch_vst.isChecked())
  2615. settings.setValue("PluginDatabase/ShowKits", self.ui.ch_kits.isChecked())
  2616. settings.setValue("PluginDatabase/ShowNative", self.ui.ch_native.isChecked())
  2617. settings.setValue("PluginDatabase/ShowBridged", self.ui.ch_bridged.isChecked())
  2618. settings.setValue("PluginDatabase/ShowBridgedWine", self.ui.ch_bridged_wine.isChecked())
  2619. settings.setValue("PluginDatabase/ShowHasGUI", self.ui.ch_gui.isChecked())
  2620. settings.setValue("PluginDatabase/ShowStereoOnly", self.ui.ch_stereo.isChecked())
  2621. def closeEvent(self, event):
  2622. self.saveSettings()
  2623. QDialog.closeEvent(self, event)
  2624. def done(self, r):
  2625. QDialog.done(self, r)
  2626. self.close()