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.

1425 lines
56KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla widgets code
  4. # Copyright (C) 2011-2013 Filipe Coelho <falktx@falktx.com>
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as
  8. # published by the Free Software Foundation; either version 2 of
  9. # the License, or any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # For a full copy of the GNU General Public License see the doc/GPL.txt file.
  17. # ------------------------------------------------------------------------------------------------------------
  18. # Imports (Global)
  19. from PyQt4.QtCore import pyqtSignal, pyqtSlot, QByteArray, QSettings
  20. from PyQt4.QtGui import QColor, QCursor, QFontMetrics, QPainter, QPainterPath
  21. from PyQt4.QtGui import QDialog, QInputDialog, QLineEdit, QMenu, QVBoxLayout, QWidget
  22. # ------------------------------------------------------------------------------------------------------------
  23. # Imports (Custom)
  24. import ui_carla_about
  25. import ui_carla_edit
  26. import ui_carla_parameter
  27. from carla_shared import *
  28. # ------------------------------------------------------------------------------------------------------------
  29. # Carla GUI defines
  30. ICON_STATE_NULL = 0
  31. ICON_STATE_OFF = 1
  32. ICON_STATE_WAIT = 2
  33. ICON_STATE_ON = 3
  34. # ------------------------------------------------------------------------------------------------------------
  35. # Fake plugin info for easy testing
  36. gFakePluginInfo = {
  37. "type": PLUGIN_NONE,
  38. "category": PLUGIN_CATEGORY_SYNTH,
  39. "hints": PLUGIN_IS_SYNTH|PLUGIN_CAN_DRYWET|PLUGIN_CAN_VOLUME|PLUGIN_CAN_PANNING,
  40. "optionsAvailable": 0x1FF, # all
  41. "optionsEnabled": 0x1FF, # all
  42. "filename": "AwesoomeFilename.what",
  43. "name": "Awesoome Name",
  44. "label": "awesoomeLabel",
  45. "maker": "Awesoome Maker",
  46. "copyright": "Awesoome Copyright",
  47. "iconName": "plugin",
  48. "uniqueId": 0
  49. }
  50. gFakeParamInfo = {
  51. "type": PARAMETER_INPUT,
  52. "hints": PARAMETER_IS_ENABLED|PARAMETER_IS_AUTOMABLE,
  53. "name": "Parameter Name",
  54. "unit": "",
  55. "scalePoints": [],
  56. "index": 0,
  57. "default": 0.0,
  58. "minimum": 0.0,
  59. "maximum": 1.0,
  60. "step": 0.01,
  61. "stepSmall": 0.01,
  62. "stepLarge": 0.01, # FIXME
  63. "midiCC": -1,
  64. "midiChannel": 1,
  65. "current": 0.0
  66. }
  67. gFakePortCountInfo = {
  68. "ins": 0,
  69. "outs": 0
  70. }
  71. # ------------------------------------------------------------------------------------------------------------
  72. # Carla About dialog
  73. class CarlaAboutW(QDialog):
  74. def __init__(self, parent):
  75. QDialog.__init__(self, parent)
  76. self.ui = ui_carla_about.Ui_CarlaAboutW()
  77. self.ui.setupUi(self)
  78. if Carla.isControl:
  79. extraInfo = " - <b>%s</b>" % self.tr("OSC Bridge Version")
  80. elif Carla.isPlugin:
  81. extraInfo = " - <b>%s</b>" % self.tr("Plugin Version")
  82. else:
  83. extraInfo = ""
  84. self.ui.l_about.setText(self.tr(""
  85. "<br>Version %s"
  86. "<br>Carla is a Multi-Plugin Host for JACK%s.<br>"
  87. "<br>Copyright (C) 2011-2013 falkTX<br>"
  88. "" % (VERSION, extraInfo)))
  89. if Carla.isControl or Carla.isPlugin or Carla.host is None:
  90. self.ui.l_extended.hide()
  91. self.ui.tabWidget.removeTab(1)
  92. self.ui.tabWidget.removeTab(1)
  93. self.adjustSize()
  94. else:
  95. self.ui.l_extended.setText(Carla.host.get_complete_license_text())
  96. if Carla.host.is_engine_running():
  97. self.ui.le_osc_url_tcp.setText(Carla.host.get_host_osc_url_tcp())
  98. self.ui.le_osc_url_udp.setText(Carla.host.get_host_osc_url_udp())
  99. else:
  100. self.ui.le_osc_url_tcp.setText(self.tr("(Engine not running)"))
  101. self.ui.le_osc_url_udp.setText(self.tr("(Engine not running)"))
  102. self.ui.l_osc_cmds.setText(""
  103. " /set_active <i-value>\n"
  104. " /set_drywet <f-value>\n"
  105. " /set_volume <f-value>\n"
  106. " /set_balance_left <f-value>\n"
  107. " /set_balance_right <f-value>\n"
  108. " /set_panning <f-value>\n"
  109. " /set_parameter_value <i-index> <f-value>\n"
  110. " /set_parameter_midi_cc <i-index> <i-cc>\n"
  111. " /set_parameter_midi_channel <i-index> <i-channel>\n"
  112. " /set_program <i-index>\n"
  113. " /set_midi_program <i-index>\n"
  114. " /note_on <i-note> <i-velo>\n"
  115. " /note_off <i-note>\n"
  116. )
  117. self.ui.l_example.setText("/Carla/2/set_parameter_value 5 1.0")
  118. self.ui.l_example_help.setText("<i>(as in this example, \"2\" is the plugin number and \"5\" the parameter)</i>")
  119. self.ui.l_ladspa.setText(self.tr("Everything! (Including LRDF)"))
  120. self.ui.l_dssi.setText(self.tr("Everything! (Including CustomData/Chunks)"))
  121. self.ui.l_lv2.setText(self.tr("About 80&#37; complete (using custom extensions)<br/>"
  122. "Implemented Feature/Extensions:"
  123. "<ul>"
  124. "<li>http://lv2plug.in/ns/ext/atom</li>"
  125. "<li>http://lv2plug.in/ns/ext/buf-size</li>"
  126. "<li>http://lv2plug.in/ns/ext/data-access</li>"
  127. #"<li>http://lv2plug.in/ns/ext/dynmanifest</li>"
  128. "<li>http://lv2plug.in/ns/ext/event</li>"
  129. "<li>http://lv2plug.in/ns/ext/instance-access</li>"
  130. "<li>http://lv2plug.in/ns/ext/log</li>"
  131. "<li>http://lv2plug.in/ns/ext/midi</li>"
  132. #"<li>http://lv2plug.in/ns/ext/morph</li>"
  133. "<li>http://lv2plug.in/ns/ext/options</li>"
  134. "<li>http://lv2plug.in/ns/ext/parameters</li>"
  135. #"<li>http://lv2plug.in/ns/ext/patch</li>"
  136. #"<li>http://lv2plug.in/ns/ext/port-groups</li>"
  137. #"<li>http://lv2plug.in/ns/ext/port-props</li>"
  138. "<li>http://lv2plug.in/ns/ext/presets</li>"
  139. #"<li>http://lv2plug.in/ns/ext/resize-port</li>"
  140. "<li>http://lv2plug.in/ns/ext/state</li>"
  141. "<li>http://lv2plug.in/ns/ext/time</li>"
  142. "<li>http://lv2plug.in/ns/ext/uri-map</li>"
  143. "<li>http://lv2plug.in/ns/ext/urid</li>"
  144. #"<li>http://lv2plug.in/ns/ext/worker</li>"
  145. "<li>http://lv2plug.in/ns/extensions/ui</li>"
  146. "<li>http://lv2plug.in/ns/extensions/units</li>"
  147. "<li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li>"
  148. "<li>http://kxstudio.sf.net/ns/lv2ext/programs</li>"
  149. "<li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li>"
  150. "<li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li>"
  151. "<li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li>"
  152. "</ul>"))
  153. self.ui.l_vst.setText(self.tr("<p>About 85&#37; complete (missing vst bank/presets and some minor stuff)</p>"))
  154. def done(self, r):
  155. QDialog.done(self, r)
  156. self.close()
  157. # ------------------------------------------------------------------------------------------------------------
  158. # Plugin Parameter
  159. class PluginParameter(QWidget):
  160. midiControlChanged = pyqtSignal(int, int)
  161. midiChannelChanged = pyqtSignal(int, int)
  162. valueChanged = pyqtSignal(int, float)
  163. def __init__(self, parent, pInfo, pluginId, tabIndex):
  164. QWidget.__init__(self, parent)
  165. self.ui = ui_carla_parameter.Ui_PluginParameter()
  166. self.ui.setupUi(self)
  167. # -------------------------------------------------------------
  168. # Internal stuff
  169. self.fMidiControl = -1
  170. self.fMidiChannel = 1
  171. self.fParameterId = pInfo['index']
  172. self.fPluginId = pluginId
  173. self.fTabIndex = tabIndex
  174. # -------------------------------------------------------------
  175. # Set-up GUI
  176. pType = pInfo['type']
  177. pHints = pInfo['hints']
  178. self.ui.label.setText(pInfo['name'])
  179. self.ui.widget.setName(pInfo['name'])
  180. if pType == PARAMETER_INPUT:
  181. self.ui.widget.setMinimum(pInfo['minimum'])
  182. self.ui.widget.setMaximum(pInfo['maximum'])
  183. self.ui.widget.setDefault(pInfo['default'])
  184. self.ui.widget.setValue(pInfo['current'], False)
  185. self.ui.widget.setLabel(pInfo['unit'])
  186. self.ui.widget.setStep(pInfo['step'])
  187. self.ui.widget.setStepSmall(pInfo['stepSmall'])
  188. self.ui.widget.setStepLarge(pInfo['stepLarge'])
  189. self.ui.widget.setScalePoints(pInfo['scalePoints'], bool(pHints & PARAMETER_USES_SCALEPOINTS))
  190. if not pHints & PARAMETER_IS_ENABLED:
  191. self.ui.label.setEnabled(False)
  192. self.ui.widget.setEnabled(False)
  193. self.ui.widget.setReadOnly(True)
  194. self.ui.sb_control.setEnabled(False)
  195. self.ui.sb_channel.setEnabled(False)
  196. elif not pHints & PARAMETER_IS_AUTOMABLE:
  197. self.ui.sb_control.setEnabled(False)
  198. self.ui.sb_channel.setEnabled(False)
  199. if pHints & PARAMETER_IS_READ_ONLY:
  200. self.ui.widget.setReadOnly(True)
  201. elif pType == PARAMETER_OUTPUT:
  202. self.ui.widget.setMinimum(pInfo['minimum'])
  203. self.ui.widget.setMaximum(pInfo['maximum'])
  204. self.ui.widget.setValue(pInfo['current'], False)
  205. self.ui.widget.setLabel(pInfo['unit'])
  206. self.ui.widget.setReadOnly(True)
  207. if not pHints & PARAMETER_IS_AUTOMABLE:
  208. self.ui.sb_control.setEnabled(False)
  209. self.ui.sb_channel.setEnabled(False)
  210. else:
  211. self.ui.widget.setVisible(False)
  212. self.ui.sb_control.setVisible(False)
  213. self.ui.sb_channel.setVisible(False)
  214. if pHints & PARAMETER_USES_CUSTOM_TEXT:
  215. self.ui.widget.setTextCallback(self._textCallBack)
  216. self.ui.widget.updateAll()
  217. self.setMidiControl(pInfo['midiCC'])
  218. self.setMidiChannel(pInfo['midiChannel'])
  219. # -------------------------------------------------------------
  220. # Set-up connections
  221. self.ui.sb_control.customContextMenuRequested.connect(self.slot_controlSpinboxCustomMenu)
  222. self.ui.sb_channel.customContextMenuRequested.connect(self.slot_channelSpinboxCustomMenu)
  223. self.ui.sb_control.valueChanged.connect(self.slot_controlSpinboxChanged)
  224. self.ui.sb_channel.valueChanged.connect(self.slot_channelSpinboxChanged)
  225. self.ui.widget.valueChanged.connect(self.slot_widgetValueChanged)
  226. # -------------------------------------------------------------
  227. def getPluginId(self):
  228. return self.fPluginId
  229. def getTabIndex(self):
  230. return self.fTabIndex
  231. def setDefault(self, value):
  232. self.ui.widget.setDefault(value)
  233. def setValue(self, value, send=True):
  234. self.ui.widget.setValue(value, send)
  235. def setMidiControl(self, control):
  236. self.fMidiControl = control
  237. self.ui.sb_control.blockSignals(True)
  238. self.ui.sb_control.setValue(control)
  239. self.ui.sb_control.blockSignals(False)
  240. def setMidiChannel(self, channel):
  241. self.fMidiChannel = channel
  242. self.ui.sb_channel.blockSignals(True)
  243. self.ui.sb_channel.setValue(channel)
  244. self.ui.sb_channel.blockSignals(False)
  245. def setLabelWidth(self, width):
  246. self.ui.label.setMinimumWidth(width)
  247. self.ui.label.setMaximumWidth(width)
  248. @pyqtSlot()
  249. def slot_controlSpinboxCustomMenu(self):
  250. menu = QMenu(self)
  251. actNone = menu.addAction(self.tr("None"))
  252. if self.fMidiControl == -1:
  253. actNone.setCheckable(True)
  254. actNone.setChecked(True)
  255. for cc in MIDI_CC_LIST:
  256. action = menu.addAction(cc)
  257. if self.fMidiControl != -1 and int(cc.split(" ")[0], 16) == self.fMidiControl:
  258. action.setCheckable(True)
  259. action.setChecked(True)
  260. actSel = menu.exec_(QCursor.pos())
  261. if not actSel:
  262. pass
  263. elif actSel == actNone:
  264. self.ui.sb_control.setValue(-1)
  265. else:
  266. selControlStr = actSel.text()
  267. selControl = int(selControlStr.split(" ")[0], 16)
  268. self.ui.sb_control.setValue(selControl)
  269. @pyqtSlot()
  270. def slot_channelSpinboxCustomMenu(self):
  271. menu = QMenu(self)
  272. for i in range(1, 16+1):
  273. action = menu.addAction("%i" % i)
  274. if self.fMidiChannel == i:
  275. action.setCheckable(True)
  276. action.setChecked(True)
  277. actSel = menu.exec_(QCursor.pos())
  278. if actSel:
  279. selChannel = int(actSel.text())
  280. self.ui.sb_channel.setValue(selChannel)
  281. @pyqtSlot(int)
  282. def slot_controlSpinboxChanged(self, control):
  283. if self.fMidiControl != control:
  284. self.midiControlChanged.emit(self.fParameterId, control)
  285. self.fMidiControl = control
  286. @pyqtSlot(int)
  287. def slot_channelSpinboxChanged(self, channel):
  288. if self.fMidiChannel != channel:
  289. self.midiChannelChanged.emit(self.fParameterId, channel)
  290. self.fMidiChannel = channel
  291. @pyqtSlot(float)
  292. def slot_widgetValueChanged(self, value):
  293. self.valueChanged.emit(self.fParameterId, value)
  294. def _textCallBack(self):
  295. return Carla.host.get_parameter_text(self.fPluginId, self.fParameterId)
  296. # ------------------------------------------------------------------------------------------------------------
  297. # Plugin Editor (Built-in)
  298. class PluginEdit(QDialog):
  299. kParamsPerPage = 8
  300. def __init__(self, parent, pluginId):
  301. QDialog.__init__(self, Carla.gui)
  302. self.ui = ui_carla_edit.Ui_PluginEdit()
  303. self.ui.setupUi(self)
  304. # -------------------------------------------------------------
  305. # Internal stuff
  306. self.fGeometry = QByteArray()
  307. self.fPluginId = pluginId
  308. self.fPuginInfo = None
  309. self.fRealParent = parent
  310. self.fCurrentProgram = -1
  311. self.fCurrentMidiProgram = -1
  312. self.fCurrentStateFilename = None
  313. self.fControlChannel = 0
  314. self.fFirstInit = True
  315. self.fScrollAreaSetup = False
  316. self.fParameterCount = 0
  317. self.fParameterList = [] # (type, id, widget)
  318. self.fParametersToUpdate = [] # (id, value)
  319. self.fPlayingNotes = [] # (channel, note)
  320. self.fTabIconOff = QIcon(":/bitmaps/led_off.png")
  321. self.fTabIconOn = QIcon(":/bitmaps/led_yellow.png")
  322. self.fTabIconCount = 0
  323. self.fTabIconTimers = []
  324. # -------------------------------------------------------------
  325. # Set-up GUI
  326. self.ui.dial_drywet.setCustomPaint(self.ui.dial_drywet.CUSTOM_PAINT_CARLA_WET)
  327. self.ui.dial_drywet.setPixmap(3)
  328. self.ui.dial_drywet.setLabel("Dry/Wet")
  329. self.ui.dial_vol.setCustomPaint(self.ui.dial_vol.CUSTOM_PAINT_CARLA_VOL)
  330. self.ui.dial_vol.setPixmap(3)
  331. self.ui.dial_vol.setLabel("Volume")
  332. self.ui.dial_b_left.setCustomPaint(self.ui.dial_b_left.CUSTOM_PAINT_CARLA_L)
  333. self.ui.dial_b_left.setPixmap(4)
  334. self.ui.dial_b_left.setLabel("L")
  335. self.ui.dial_b_right.setCustomPaint(self.ui.dial_b_right.CUSTOM_PAINT_CARLA_R)
  336. self.ui.dial_b_right.setPixmap(4)
  337. self.ui.dial_b_right.setLabel("R")
  338. self.ui.dial_pan.setCustomPaint(self.ui.dial_b_right.CUSTOM_PAINT_CARLA_R) # FIXME
  339. self.ui.dial_pan.setPixmap(4)
  340. self.ui.dial_pan.setLabel("Pan")
  341. self.ui.keyboard.setMode(self.ui.keyboard.HORIZONTAL)
  342. self.ui.keyboard.setOctaves(10)
  343. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  344. self.ui.scrollArea.ensureVisible(self.ui.keyboard.width() / 3, 0)
  345. self.ui.scrollArea.setEnabled(False)
  346. self.ui.scrollArea.setVisible(False)
  347. self.reloadAll()
  348. # -------------------------------------------------------------
  349. # Set-up connections
  350. self.finished.connect(self.slot_finished)
  351. self.ui.ch_fixed_buffer.clicked.connect(self.slot_optionChanged)
  352. self.ui.ch_force_stereo.clicked.connect(self.slot_optionChanged)
  353. self.ui.ch_map_program_changes.clicked.connect(self.slot_optionChanged)
  354. self.ui.ch_use_chunks.clicked.connect(self.slot_optionChanged)
  355. self.ui.ch_send_control_changes.clicked.connect(self.slot_optionChanged)
  356. self.ui.ch_send_channel_pressure.clicked.connect(self.slot_optionChanged)
  357. self.ui.ch_send_note_aftertouch.clicked.connect(self.slot_optionChanged)
  358. self.ui.ch_send_pitchbend.clicked.connect(self.slot_optionChanged)
  359. self.ui.ch_send_all_sound_off.clicked.connect(self.slot_optionChanged)
  360. self.ui.dial_drywet.valueChanged.connect(self.slot_dryWetChanged)
  361. self.ui.dial_vol.valueChanged.connect(self.slot_volumeChanged)
  362. self.ui.dial_b_left.valueChanged.connect(self.slot_balanceLeftChanged)
  363. self.ui.dial_b_right.valueChanged.connect(self.slot_balanceRightChanged)
  364. self.ui.sb_ctrl_channel.valueChanged.connect(self.slot_ctrlChannelChanged)
  365. self.ui.dial_drywet.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  366. self.ui.dial_vol.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  367. self.ui.dial_b_left.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  368. self.ui.dial_b_right.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  369. self.ui.sb_ctrl_channel.customContextMenuRequested.connect(self.slot_channelCustomMenu)
  370. self.ui.keyboard.noteOn.connect(self.slot_noteOn)
  371. self.ui.keyboard.noteOff.connect(self.slot_noteOff)
  372. self.ui.cb_programs.currentIndexChanged.connect(self.slot_programIndexChanged)
  373. self.ui.cb_midi_programs.currentIndexChanged.connect(self.slot_midiProgramIndexChanged)
  374. if Carla.isLocal:
  375. self.ui.b_save_state.clicked.connect(self.slot_stateSave)
  376. self.ui.b_load_state.clicked.connect(self.slot_stateLoad)
  377. else:
  378. self.ui.b_load_state.setEnabled(False)
  379. self.ui.b_save_state.setEnabled(False)
  380. #------------------------------------------------------------------
  381. def updateInfo(self):
  382. # Update current program text
  383. if self.ui.cb_programs.count() > 0:
  384. pIndex = self.ui.cb_programs.currentIndex()
  385. pName = charPtrToString(Carla.host.get_program_name(self.fPluginId, pIndex))
  386. #pName = pName[:40] + (pName[40:] and "...")
  387. self.ui.cb_programs.setItemText(pIndex, pName)
  388. # Update current midi program text
  389. if self.ui.cb_midi_programs.count() > 0:
  390. mpIndex = self.ui.cb_midi_programs.currentIndex()
  391. mpData = Carla.host.get_midi_program_data(self.fPluginId, mpIndex)
  392. mpBank = int(mpData['bank'])
  393. mpProg = int(mpData['program'])
  394. mpName = charPtrToString(mpData['name'])
  395. #mpName = mpName[:40] + (mpName[40:] and "...")
  396. self.ui.cb_midi_programs.setItemText(mpIndex, "%03i:%03i - %s" % (mpBank+1, mpProg+1, mpName))
  397. # Update all parameter values
  398. for paramType, paramId, paramWidget in self.fParameterList:
  399. paramWidget.setValue(Carla.host.get_current_parameter_value(self.fPluginId, paramId), False)
  400. paramWidget.update()
  401. self.fParametersToUpdate = []
  402. #------------------------------------------------------------------
  403. def reloadAll(self):
  404. if Carla.host is not None:
  405. self.fPluginInfo = Carla.host.get_plugin_info(self.fPluginId)
  406. self.fPluginInfo['filename'] = charPtrToString(self.fPluginInfo['filename'])
  407. self.fPluginInfo['name'] = charPtrToString(self.fPluginInfo['name'])
  408. self.fPluginInfo['label'] = charPtrToString(self.fPluginInfo['label'])
  409. self.fPluginInfo['maker'] = charPtrToString(self.fPluginInfo['maker'])
  410. self.fPluginInfo['copyright'] = charPtrToString(self.fPluginInfo['copyright'])
  411. self.fPluginInfo['iconName'] = charPtrToString(self.fPluginInfo['iconName'])
  412. if not Carla.isLocal:
  413. self.fPluginInfo['hints'] &= ~PLUGIN_HAS_CUSTOM_UI
  414. else:
  415. self.fPluginInfo = gFakePluginInfo
  416. self.reloadInfo()
  417. self.reloadParameters()
  418. self.reloadPrograms()
  419. if self.fPluginInfo['type'] == PLUGIN_LV2:
  420. self.ui.b_save_state.setEnabled(False)
  421. if not self.ui.scrollArea.isEnabled():
  422. self.resize(self.width(), self.height()-self.ui.scrollArea.height())
  423. self.fFirstInit = False
  424. #------------------------------------------------------------------
  425. def reloadInfo(self):
  426. if Carla.host is not None:
  427. pluginName = Carla.host.get_real_plugin_name(self.fPluginId)
  428. audioCountInfo = Carla.host.get_audio_port_count_info(self.fPluginId)
  429. midiCountInfo = Carla.host.get_midi_port_count_info(self.fPluginId)
  430. paramCountInfo = Carla.host.get_parameter_count_info(self.fPluginId)
  431. else:
  432. pluginName = ""
  433. audioCountInfo = gFakePortCountInfo
  434. midiCountInfo = gFakePortCountInfo
  435. paramCountInfo = gFakePortCountInfo
  436. pluginType = self.fPluginInfo['type']
  437. pluginHints = self.fPluginInfo['hints']
  438. if pluginType == PLUGIN_INTERNAL:
  439. self.ui.le_type.setText(self.tr("Internal"))
  440. elif pluginType == PLUGIN_LADSPA:
  441. self.ui.le_type.setText("LADSPA")
  442. elif pluginType == PLUGIN_DSSI:
  443. self.ui.le_type.setText("DSSI")
  444. elif pluginType == PLUGIN_LV2:
  445. self.ui.le_type.setText("LV2")
  446. elif pluginType == PLUGIN_VST:
  447. self.ui.le_type.setText("VST")
  448. elif pluginType == PLUGIN_AU:
  449. self.ui.le_type.setText("AU")
  450. elif pluginType == PLUGIN_FILE_CSD:
  451. self.ui.le_type.setText("CSD")
  452. elif pluginType == PLUGIN_FILE_GIG:
  453. self.ui.le_type.setText("GIG")
  454. elif pluginType == PLUGIN_FILE_SF2:
  455. self.ui.le_type.setText("SF2")
  456. elif pluginType == PLUGIN_FILE_SFZ:
  457. self.ui.le_type.setText("SFZ")
  458. else:
  459. self.ui.le_type.setText(self.tr("Unknown"))
  460. if pluginName:
  461. self.ui.label_name.setEnabled(True)
  462. self.ui.le_name.setEnabled(True)
  463. self.ui.le_name.setText(pluginName)
  464. self.ui.le_name.setToolTip(pluginName)
  465. else:
  466. self.ui.label_name.setEnabled(False)
  467. self.ui.le_name.setEnabled(False)
  468. self.ui.le_name.setText("")
  469. self.ui.le_name.setToolTip("")
  470. if self.fPluginInfo['label']:
  471. self.ui.label_label.setEnabled(True)
  472. self.ui.le_label.setEnabled(True)
  473. self.ui.le_label.setText(self.fPluginInfo['label'])
  474. self.ui.le_label.setToolTip(self.fPluginInfo['label'])
  475. else:
  476. self.ui.label_label.setEnabled(False)
  477. self.ui.le_label.setEnabled(False)
  478. self.ui.le_label.setText("")
  479. self.ui.le_label.setToolTip("")
  480. if self.fPluginInfo['maker']:
  481. self.ui.label_maker.setEnabled(True)
  482. self.ui.le_maker.setEnabled(True)
  483. self.ui.le_maker.setText(self.fPluginInfo['maker'])
  484. self.ui.le_maker.setToolTip(self.fPluginInfo['maker'])
  485. else:
  486. self.ui.label_maker.setEnabled(False)
  487. self.ui.le_maker.setEnabled(False)
  488. self.ui.le_maker.setText("")
  489. self.ui.le_maker.setToolTip("")
  490. if self.fPluginInfo['copyright']:
  491. self.ui.label_copyright.setEnabled(True)
  492. self.ui.le_copyright.setEnabled(True)
  493. self.ui.le_copyright.setText(self.fPluginInfo['copyright'])
  494. self.ui.le_copyright.setToolTip(self.fPluginInfo['copyright'])
  495. else:
  496. self.ui.label_copyright.setEnabled(False)
  497. self.ui.le_copyright.setEnabled(False)
  498. self.ui.le_copyright.setText("")
  499. self.ui.le_copyright.setToolTip("")
  500. if self.fPluginInfo['uniqueId'] != 0:
  501. self.ui.label_unique_id.setEnabled(True)
  502. self.ui.le_unique_id.setEnabled(True)
  503. self.ui.le_unique_id.setText(str(self.fPluginInfo['uniqueId']))
  504. self.ui.le_unique_id.setToolTip(str(self.fPluginInfo['uniqueId']))
  505. else:
  506. self.ui.label_unique_id.setEnabled(False)
  507. self.ui.le_unique_id.setEnabled(False)
  508. self.ui.le_unique_id.setText("")
  509. self.ui.le_unique_id.setToolTip("")
  510. self.ui.label_plugin.setText("\n%s\n" % self.fPluginInfo['name'])
  511. self.setWindowTitle(self.fPluginInfo['name'])
  512. self.ui.dial_drywet.setEnabled(pluginHints & PLUGIN_CAN_DRYWET)
  513. self.ui.dial_vol.setEnabled(pluginHints & PLUGIN_CAN_VOLUME)
  514. self.ui.dial_b_left.setEnabled(pluginHints & PLUGIN_CAN_BALANCE)
  515. self.ui.dial_b_right.setEnabled(pluginHints & PLUGIN_CAN_BALANCE)
  516. self.ui.dial_pan.setEnabled(pluginHints & PLUGIN_CAN_PANNING)
  517. self.ui.ch_fixed_buffer.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_FIXED_BUFFERS)
  518. self.ui.ch_fixed_buffer.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_FIXED_BUFFERS)
  519. self.ui.ch_force_stereo.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_FORCE_STEREO)
  520. self.ui.ch_force_stereo.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_FORCE_STEREO)
  521. self.ui.ch_map_program_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  522. self.ui.ch_map_program_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  523. self.ui.ch_use_chunks.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_USE_CHUNKS)
  524. self.ui.ch_use_chunks.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_USE_CHUNKS)
  525. self.ui.ch_send_control_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  526. self.ui.ch_send_control_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  527. self.ui.ch_send_channel_pressure.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE)
  528. self.ui.ch_send_channel_pressure.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE)
  529. self.ui.ch_send_note_aftertouch.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH)
  530. self.ui.ch_send_note_aftertouch.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH)
  531. self.ui.ch_send_pitchbend.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_PITCHBEND)
  532. self.ui.ch_send_pitchbend.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_PITCHBEND)
  533. self.ui.ch_send_all_sound_off.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  534. self.ui.ch_send_all_sound_off.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  535. self.ui.sw_programs.setCurrentIndex(0 if self.fPluginInfo['type'] == PLUGIN_VST else 1)
  536. # Show/hide keyboard
  537. showKeyboard = (self.fPluginInfo['category'] == PLUGIN_CATEGORY_SYNTH or midiCountInfo['ins'] > 0 < midiCountInfo['outs'])
  538. self.ui.scrollArea.setEnabled(showKeyboard)
  539. self.ui.scrollArea.setVisible(showKeyboard)
  540. # Force-Update parent for new hints
  541. if self.fRealParent and not self.fFirstInit:
  542. self.fRealParent.recheckPluginHints(pluginHints)
  543. def reloadParameters(self):
  544. # Reset
  545. self.fParameterCount = 0
  546. self.fParameterList = []
  547. self.fParametersToUpdate = []
  548. self.fTabIconCount = 0
  549. self.fTabIconTimers = []
  550. # Remove all previous parameters
  551. for x in range(self.ui.tabWidget.count()-1):
  552. self.ui.tabWidget.widget(1).deleteLater()
  553. self.ui.tabWidget.removeTab(1)
  554. if Carla.host is None:
  555. paramFakeListFull = []
  556. paramFakeList = []
  557. paramFakeWidth = QFontMetrics(self.font()).width(gFakeParamInfo['name'])
  558. paramFakeList.append(gFakeParamInfo)
  559. paramFakeListFull.append((paramFakeList, paramFakeWidth))
  560. self._createParameterWidgets(PARAMETER_INPUT, paramFakeListFull, self.tr("Parameters"))
  561. return
  562. parameterCount = Carla.host.get_parameter_count(self.fPluginId)
  563. if parameterCount <= 0:
  564. pass
  565. elif parameterCount <= Carla.maxParameters:
  566. paramInputListFull = []
  567. paramOutputListFull = []
  568. paramInputList = [] # ([params], width)
  569. paramInputWidth = 0
  570. paramOutputList = [] # ([params], width)
  571. paramOutputWidth = 0
  572. for i in range(parameterCount):
  573. paramInfo = Carla.host.get_parameter_info(self.fPluginId, i)
  574. paramData = Carla.host.get_parameter_data(self.fPluginId, i)
  575. paramRanges = Carla.host.get_parameter_ranges(self.fPluginId, i)
  576. paramValue = Carla.host.get_current_parameter_value(self.fPluginId, i)
  577. if paramData['type'] not in (PARAMETER_INPUT, PARAMETER_OUTPUT):
  578. continue
  579. if (paramData['hints'] & PARAMETER_IS_ENABLED) == 0:
  580. continue
  581. parameter = {
  582. 'type': paramData['type'],
  583. 'hints': paramData['hints'],
  584. 'name': charPtrToString(paramInfo['name']),
  585. 'unit': charPtrToString(paramInfo['unit']),
  586. 'scalePoints': [],
  587. 'index': paramData['index'],
  588. 'default': paramRanges['def'],
  589. 'minimum': paramRanges['min'],
  590. 'maximum': paramRanges['max'],
  591. 'step': paramRanges['step'],
  592. 'stepSmall': paramRanges['stepSmall'],
  593. 'stepLarge': paramRanges['stepLarge'],
  594. 'midiCC': paramData['midiCC'],
  595. 'midiChannel': paramData['midiChannel']+1,
  596. 'current': paramValue
  597. }
  598. for j in range(paramInfo['scalePointCount']):
  599. scalePointInfo = Carla.host.get_parameter_scalepoint_info(self.fPluginId, i, j)
  600. parameter['scalePoints'].append({
  601. 'value': scalePointInfo['value'],
  602. 'label': charPtrToString(scalePointInfo['label'])
  603. })
  604. #parameter['name'] = parameter['name'][:30] + (parameter['name'][30:] and "...")
  605. # -----------------------------------------------------------------
  606. # Get width values, in packs of 10
  607. if parameter['type'] == PARAMETER_INPUT:
  608. paramInputWidthTMP = QFontMetrics(self.font()).width(parameter['name'])
  609. if paramInputWidthTMP > paramInputWidth:
  610. paramInputWidth = paramInputWidthTMP
  611. paramInputList.append(parameter)
  612. if len(paramInputList) == self.kParamsPerPage:
  613. paramInputListFull.append((paramInputList, paramInputWidth))
  614. paramInputList = []
  615. paramInputWidth = 0
  616. else:
  617. paramOutputWidthTMP = QFontMetrics(self.font()).width(parameter['name'])
  618. if paramOutputWidthTMP > paramOutputWidth:
  619. paramOutputWidth = paramOutputWidthTMP
  620. paramOutputList.append(parameter)
  621. if len(paramOutputList) == self.kParamsPerPage:
  622. paramOutputListFull.append((paramOutputList, paramOutputWidth))
  623. paramOutputList = []
  624. paramOutputWidth = 0
  625. # for i in range(parameterCount)
  626. else:
  627. # Final page width values
  628. if 0 < len(paramInputList) < 10:
  629. paramInputListFull.append((paramInputList, paramInputWidth))
  630. if 0 < len(paramOutputList) < 10:
  631. paramOutputListFull.append((paramOutputList, paramOutputWidth))
  632. # -----------------------------------------------------------------
  633. # Create parameter tabs + widgets
  634. self._createParameterWidgets(PARAMETER_INPUT, paramInputListFull, self.tr("Parameters"))
  635. self._createParameterWidgets(PARAMETER_OUTPUT, paramOutputListFull, self.tr("Outputs"))
  636. else: # > Carla.maxParameters
  637. fakeName = self.tr("This plugin has too many parameters to display here!")
  638. paramFakeListFull = []
  639. paramFakeList = []
  640. paramFakeWidth = QFontMetrics(self.font()).width(fakeName)
  641. parameter = {
  642. 'type': PARAMETER_UNKNOWN,
  643. 'hints': 0x0,
  644. 'name': fakeName,
  645. 'unit': "",
  646. 'scalePoints': [],
  647. 'index': 0,
  648. 'default': 0.0,
  649. 'minimum': 0.0,
  650. 'maximum': 0.0,
  651. 'step': 0.0,
  652. 'stepSmall': 0.0,
  653. 'stepLarge': 0.0,
  654. 'midiCC': -1,
  655. 'midiChannel': 1,
  656. 'current': 0.0
  657. }
  658. paramFakeList.append(parameter)
  659. paramFakeListFull.append((paramFakeList, paramFakeWidth))
  660. self._createParameterWidgets(PARAMETER_UNKNOWN, paramFakeListFull, self.tr("Information"))
  661. def reloadPrograms(self):
  662. # Programs
  663. self.ui.cb_programs.blockSignals(True)
  664. self.ui.cb_programs.clear()
  665. programCount = Carla.host.get_program_count(self.fPluginId) if Carla.host is not None else 0
  666. if programCount > 0:
  667. self.ui.cb_programs.setEnabled(True)
  668. self.ui.label_programs.setEnabled(True)
  669. for i in range(programCount):
  670. pName = charPtrToString(Carla.host.get_program_name(self.fPluginId, i))
  671. #pName = pName[:40] + (pName[40:] and "...")
  672. self.ui.cb_programs.addItem(pName)
  673. self.fCurrentProgram = Carla.host.get_current_program_index(self.fPluginId)
  674. self.ui.cb_programs.setCurrentIndex(self.fCurrentProgram)
  675. else:
  676. self.fCurrentProgram = -1
  677. self.ui.cb_programs.setEnabled(False)
  678. self.ui.label_programs.setEnabled(False)
  679. self.ui.cb_programs.blockSignals(False)
  680. # MIDI Programs
  681. self.ui.cb_midi_programs.blockSignals(True)
  682. self.ui.cb_midi_programs.clear()
  683. midiProgramCount = Carla.host.get_midi_program_count(self.fPluginId) if Carla.host is not None else 0
  684. if midiProgramCount > 0:
  685. self.ui.cb_midi_programs.setEnabled(True)
  686. self.ui.label_midi_programs.setEnabled(True)
  687. for i in range(midiProgramCount):
  688. mpData = Carla.host.get_midi_program_data(self.fPluginId, i)
  689. mpBank = int(mpData['bank'])
  690. mpProg = int(mpData['program'])
  691. mpName = charPtrToString(mpData['name'])
  692. #mpName = mpName[:40] + (mpName[40:] and "...")
  693. self.ui.cb_midi_programs.addItem("%03i:%03i - %s" % (mpBank+1, mpProg+1, mpName))
  694. self.fCurrentMidiProgram = Carla.host.get_current_midi_program_index(self.fPluginId)
  695. self.ui.cb_midi_programs.setCurrentIndex(self.fCurrentMidiProgram)
  696. else:
  697. self.fCurrentMidiProgram = -1
  698. self.ui.cb_midi_programs.setEnabled(False)
  699. self.ui.label_midi_programs.setEnabled(False)
  700. self.ui.cb_midi_programs.blockSignals(False)
  701. self.ui.sw_programs.setEnabled(programCount > 0 or midiProgramCount > 0)
  702. if self.fPluginInfo['type'] == PLUGIN_LV2:
  703. self.ui.b_load_state.setEnabled(programCount > 0)
  704. #------------------------------------------------------------------
  705. def clearNotes(self):
  706. self.fPlayingNotes = []
  707. self.ui.keyboard.allNotesOff()
  708. #------------------------------------------------------------------
  709. def getHints(self):
  710. return self.fPluginInfo['hints']
  711. def setId(self, idx):
  712. self.fPluginId = idx
  713. def setName(self, name):
  714. self.fPluginInfo['name'] = name
  715. self.ui.label_plugin.setText("\n%s\n" % name)
  716. self.setWindowTitle(name)
  717. #------------------------------------------------------------------
  718. def setParameterValue(self, parameterId, value):
  719. for paramItem in self.fParametersToUpdate:
  720. if paramItem[0] == parameterId:
  721. paramItem[1] = value
  722. break
  723. else:
  724. self.fParametersToUpdate.append([parameterId, value])
  725. def setParameterDefault(self, parameterId, value):
  726. for paramType, paramId, paramWidget in self.fParameterList:
  727. if paramId == parameterId:
  728. paramWidget.setDefault(value)
  729. break
  730. def setParameterMidiControl(self, parameterId, control):
  731. for paramType, paramId, paramWidget in self.fParameterList:
  732. if paramId == parameterId:
  733. paramWidget.setMidiControl(control)
  734. break
  735. def setParameterMidiChannel(self, parameterId, channel):
  736. for paramType, paramId, paramWidget in self.fParameterList:
  737. if paramId == parameterId:
  738. paramWidget.setMidiChannel(channel+1)
  739. break
  740. def setProgram(self, index):
  741. self.ui.cb_programs.blockSignals(True)
  742. self.ui.cb_programs.setCurrentIndex(index)
  743. self.ui.cb_programs.blockSignals(False)
  744. def setMidiProgram(self, index):
  745. self.ui.cb_midi_programs.blockSignals(True)
  746. self.ui.cb_midi_programs.setCurrentIndex(index)
  747. self.ui.cb_midi_programs.blockSignals(False)
  748. #------------------------------------------------------------------
  749. def sendNoteOn(self, channel, note):
  750. if self.fControlChannel == channel:
  751. self.ui.keyboard.sendNoteOn(note, False)
  752. playItem = (channel, note)
  753. if playItem not in self.fPlayingNotes:
  754. self.fPlayingNotes.append(playItem)
  755. return bool(len(self.fPlayingNotes) == 1)
  756. def sendNoteOff(self, channel, note):
  757. if self.fControlChannel == channel:
  758. self.ui.keyboard.sendNoteOff(note, False)
  759. playItem = (channel, note)
  760. if playItem in self.fPlayingNotes:
  761. self.fPlayingNotes.remove(playItem)
  762. return bool(len(self.fPlayingNotes) == 0)
  763. #------------------------------------------------------------------
  764. def setVisible(self, yesNo):
  765. if yesNo:
  766. if not self.fGeometry.isNull():
  767. self.restoreGeometry(self.fGeometry)
  768. else:
  769. self.fGeometry = self.saveGeometry()
  770. QDialog.setVisible(self, yesNo)
  771. #------------------------------------------------------------------
  772. def idleSlow(self):
  773. # Check Tab icons
  774. for i in range(len(self.fTabIconTimers)):
  775. if self.fTabIconTimers[i] == ICON_STATE_ON:
  776. self.fTabIconTimers[i] = ICON_STATE_WAIT
  777. elif self.fTabIconTimers[i] == ICON_STATE_WAIT:
  778. self.fTabIconTimers[i] = ICON_STATE_OFF
  779. elif self.fTabIconTimers[i] == ICON_STATE_OFF:
  780. self.fTabIconTimers[i] = ICON_STATE_NULL
  781. self.ui.tabWidget.setTabIcon(i+1, self.fTabIconOff)
  782. # Check parameters needing update
  783. for index, value in self.fParametersToUpdate:
  784. if index == PARAMETER_DRYWET:
  785. self.ui.dial_drywet.blockSignals(True)
  786. self.ui.dial_drywet.setValue(value * 1000)
  787. self.ui.dial_drywet.blockSignals(False)
  788. elif index == PARAMETER_VOLUME:
  789. self.ui.dial_vol.blockSignals(True)
  790. self.ui.dial_vol.setValue(value * 1000)
  791. self.ui.dial_vol.blockSignals(False)
  792. elif index == PARAMETER_BALANCE_LEFT:
  793. self.ui.dial_b_left.blockSignals(True)
  794. self.ui.dial_b_left.setValue(value * 1000)
  795. self.ui.dial_b_left.blockSignals(False)
  796. elif index == PARAMETER_BALANCE_RIGHT:
  797. self.ui.dial_b_right.blockSignals(True)
  798. self.ui.dial_b_right.setValue(value * 1000)
  799. self.ui.dial_b_right.blockSignals(False)
  800. elif index == PARAMETER_PANNING:
  801. self.ui.dial_pan.blockSignals(True)
  802. self.ui.dial_pan.setValue(value * 1000)
  803. self.ui.dial_pan.blockSignals(False)
  804. elif index == PARAMETER_CTRL_CHANNEL:
  805. self.fControlChannel = int(value)
  806. self.ui.sb_ctrl_channel.blockSignals(True)
  807. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  808. self.ui.sb_ctrl_channel.blockSignals(False)
  809. self.ui.keyboard.allNotesOff()
  810. self._updateCtrlMidiProgram()
  811. elif index >= 0:
  812. for paramType, paramId, paramWidget in self.fParameterList:
  813. if paramId != index:
  814. continue
  815. paramWidget.setValue(value, False)
  816. if paramType == PARAMETER_INPUT:
  817. tabIndex = paramWidget.getTabIndex()
  818. if self.fTabIconTimers[tabIndex-1] == ICON_STATE_NULL:
  819. self.ui.tabWidget.setTabIcon(tabIndex, self.fTabIconOn)
  820. self.fTabIconTimers[tabIndex-1] = ICON_STATE_ON
  821. break
  822. # Clear all parameters
  823. self.fParametersToUpdate = []
  824. # Update parameter outputs
  825. for paramType, paramId, paramWidget in self.fParameterList:
  826. if paramType == PARAMETER_OUTPUT:
  827. value = Carla.host.get_current_parameter_value(self.fPluginId, paramId)
  828. paramWidget.setValue(value, False)
  829. #------------------------------------------------------------------
  830. @pyqtSlot()
  831. def slot_stateSave(self):
  832. if self.fPluginInfo['type'] == PLUGIN_LV2:
  833. # TODO
  834. return
  835. if self.fCurrentStateFilename:
  836. askTry = QMessageBox.question(self, self.tr("Overwrite?"), self.tr("Overwrite previously created file?"), QMessageBox.Ok|QMessageBox.Cancel)
  837. if askTry == QMessageBox.Ok:
  838. Carla.host.save_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  839. return
  840. self.fCurrentStateFilename = None
  841. fileFilter = self.tr("Carla State File (*.carxs)")
  842. filenameTry = QFileDialog.getSaveFileName(self, self.tr("Save Plugin State File"), filter=fileFilter)
  843. if filenameTry:
  844. if not filenameTry.lower().endswith(".carxs"):
  845. filenameTry += ".carxs"
  846. self.fCurrentStateFilename = filenameTry
  847. Carla.host.save_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  848. @pyqtSlot()
  849. def slot_stateLoad(self):
  850. if self.fPluginInfo['type'] == PLUGIN_LV2:
  851. presetList = []
  852. for i in range(Carla.host.get_program_count(self.fPluginId)):
  853. presetList.append("%03i - %s" % (i+1, charPtrToString(Carla.host.get_program_name(self.fPluginId, i))))
  854. ret = QInputDialog.getItem(self, self.tr("Open LV2 Preset"), self.tr("Select an LV2 Preset:"), presetList, 0, False)
  855. if ret[1]:
  856. index = int(ret[0].split(" - ", 1)[0])-1
  857. Carla.host.set_midi_program(self.fPluginId, -1)
  858. Carla.host.set_program(self.fPluginId, index)
  859. self.setMidiProgram(-1)
  860. return
  861. fileFilter = self.tr("Carla State File (*.carxs)")
  862. filenameTry = QFileDialog.getOpenFileName(self, self.tr("Open Plugin State File"), filter=fileFilter)
  863. if filenameTry:
  864. self.fCurrentStateFilename = filenameTry
  865. Carla.host.load_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  866. #------------------------------------------------------------------
  867. @pyqtSlot(bool)
  868. def slot_optionChanged(self, clicked):
  869. if Carla.host is None:
  870. return
  871. sender = self.sender()
  872. if sender == self.ui.ch_fixed_buffer:
  873. option = PLUGIN_OPTION_FIXED_BUFFERS
  874. elif sender == self.ui.ch_force_stereo:
  875. option = PLUGIN_OPTION_FORCE_STEREO
  876. elif sender == self.ui.ch_map_program_changes:
  877. option = PLUGIN_OPTION_MAP_PROGRAM_CHANGES
  878. elif sender == self.ui.ch_use_chunks:
  879. option = PLUGIN_OPTION_USE_CHUNKS
  880. elif sender == self.ui.ch_send_control_changes:
  881. option = PLUGIN_OPTION_SEND_CONTROL_CHANGES
  882. elif sender == self.ui.ch_send_channel_pressure:
  883. option = PLUGIN_OPTION_SEND_CHANNEL_PRESSURE
  884. elif sender == self.ui.ch_send_note_aftertouch:
  885. option = PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH
  886. elif sender == self.ui.ch_send_pitchbend:
  887. option = PLUGIN_OPTION_SEND_PITCHBEND
  888. elif sender == self.ui.ch_send_all_sound_off:
  889. option = PLUGIN_OPTION_SEND_ALL_SOUND_OFF
  890. else:
  891. return
  892. Carla.host.set_option(self.fPluginId, option, clicked)
  893. #------------------------------------------------------------------
  894. @pyqtSlot(int)
  895. def slot_dryWetChanged(self, value):
  896. if Carla.host is not None:
  897. Carla.host.set_drywet(self.fPluginId, float(value)/1000)
  898. @pyqtSlot(int)
  899. def slot_volumeChanged(self, value):
  900. if Carla.host is not None:
  901. Carla.host.set_volume(self.fPluginId, float(value)/1000)
  902. @pyqtSlot(int)
  903. def slot_balanceLeftChanged(self, value):
  904. if Carla.host is not None:
  905. Carla.host.set_balance_left(self.fPluginId, float(value)/1000)
  906. @pyqtSlot(int)
  907. def slot_balanceRightChanged(self, value):
  908. if Carla.host is not None:
  909. Carla.host.set_balance_right(self.fPluginId, float(value)/1000)
  910. @pyqtSlot(int)
  911. def slot_panningChanged(self, value):
  912. if Carla.host is not None:
  913. Carla.host.set_panning(self.fPluginId, float(value)/1000)
  914. @pyqtSlot(int)
  915. def slot_ctrlChannelChanged(self, value):
  916. self.fControlChannel = value-1
  917. if Carla.host is not None:
  918. Carla.host.set_ctrl_channel(self.fPluginId, self.fControlChannel)
  919. self.ui.keyboard.allNotesOff()
  920. self._updateCtrlMidiProgram()
  921. #------------------------------------------------------------------
  922. @pyqtSlot(int, float)
  923. def slot_parameterValueChanged(self, parameterId, value):
  924. if Carla.host is not None:
  925. Carla.host.set_parameter_value(self.fPluginId, parameterId, value)
  926. if self.fRealParent is not None:
  927. self.fRealParent.parameterValueChanged(parameterId, value)
  928. @pyqtSlot(int, int)
  929. def slot_parameterMidiControlChanged(self, parameterId, control):
  930. if Carla.host is not None:
  931. Carla.host.set_parameter_midi_cc(self.fPluginId, parameterId, control)
  932. @pyqtSlot(int, int)
  933. def slot_parameterMidiChannelChanged(self, parameterId, channel):
  934. if Carla.host is not None:
  935. Carla.host.set_parameter_midi_channel(self.fPluginId, parameterId, channel-1)
  936. #------------------------------------------------------------------
  937. @pyqtSlot(int)
  938. def slot_programIndexChanged(self, index):
  939. self.fCurrentProgram = index
  940. if Carla.host is not None:
  941. Carla.host.set_program(self.fPluginId, index)
  942. if self.fRealParent is not None:
  943. self.fRealParent.programChanged(index)
  944. @pyqtSlot(int)
  945. def slot_midiProgramIndexChanged(self, index):
  946. self.fCurrentMidiProgram = index
  947. if Carla.host is not None:
  948. Carla.host.set_midi_program(self.fPluginId, index)
  949. if self.fRealParent is not None:
  950. self.fRealParent.midiProgramChanged(index)
  951. #------------------------------------------------------------------
  952. @pyqtSlot(int)
  953. def slot_noteOn(self, note):
  954. if self.fControlChannel >= 0 and Carla.host is not None:
  955. Carla.host.send_midi_note(self.fPluginId, self.fControlChannel, note, 100)
  956. if self.fRealParent is not None:
  957. self.fRealParent.notePressed(note)
  958. @pyqtSlot(int)
  959. def slot_noteOff(self, note):
  960. if self.fControlChannel >= 0 and Carla.host is not None:
  961. Carla.host.send_midi_note(self.fPluginId, self.fControlChannel, note, 0)
  962. if self.fRealParent is not None:
  963. self.fRealParent.noteReleased(note)
  964. #------------------------------------------------------------------
  965. @pyqtSlot()
  966. def slot_finished(self):
  967. if self.fRealParent is not None:
  968. self.fRealParent.editDialogChanged(False)
  969. #------------------------------------------------------------------
  970. @pyqtSlot()
  971. def slot_knobCustomMenu(self):
  972. knobName = self.sender().objectName()
  973. if knobName == "dial_drywet":
  974. minimum = 0
  975. maximum = 100
  976. default = 100
  977. label = "Dry/Wet"
  978. elif knobName == "dial_vol":
  979. minimum = 0
  980. maximum = 127
  981. default = 100
  982. label = "Volume"
  983. elif knobName == "dial_b_left":
  984. minimum = -100
  985. maximum = 100
  986. default = -100
  987. label = "Balance-Left"
  988. elif knobName == "dial_b_right":
  989. minimum = -100
  990. maximum = 100
  991. default = 100
  992. label = "Balance-Right"
  993. elif knobName == "dial_pan":
  994. minimum = -100
  995. maximum = 100
  996. default = 0
  997. label = "Panning"
  998. else:
  999. minimum = 0
  1000. maximum = 100
  1001. default = 100
  1002. label = "Unknown"
  1003. current = self.sender().value() / 10
  1004. menu = QMenu(self)
  1005. actReset = menu.addAction(self.tr("Reset (%i%%)" % default))
  1006. menu.addSeparator()
  1007. actMinimum = menu.addAction(self.tr("Set to Minimum (%i%%)" % minimum))
  1008. actCenter = menu.addAction(self.tr("Set to Center"))
  1009. actMaximum = menu.addAction(self.tr("Set to Maximum (%i%%)" % maximum))
  1010. menu.addSeparator()
  1011. actSet = menu.addAction(self.tr("Set value..."))
  1012. if label not in ("Balance-Left", "Balance-Right"):
  1013. menu.removeAction(actCenter)
  1014. actSelected = menu.exec_(QCursor.pos())
  1015. if actSelected == actSet:
  1016. valueTry = QInputDialog.getInteger(self, self.tr("Set value"), label, current, minimum, maximum, 1)
  1017. if valueTry[1]:
  1018. value = valueTry[0] * 10
  1019. else:
  1020. return
  1021. elif actSelected == actMinimum:
  1022. value = minimum * 10
  1023. elif actSelected == actMaximum:
  1024. value = maximum * 10
  1025. elif actSelected == actReset:
  1026. value = default * 10
  1027. elif actSelected == actCenter:
  1028. value = 0
  1029. else:
  1030. return
  1031. if label == "Dry/Wet":
  1032. self.ui.dial_drywet.setValue(value)
  1033. elif label == "Volume":
  1034. self.ui.dial_vol.setValue(value)
  1035. elif label == "Balance-Left":
  1036. self.ui.dial_b_left.setValue(value)
  1037. elif label == "Balance-Right":
  1038. self.ui.dial_b_right.setValue(value)
  1039. elif label == "Panning":
  1040. self.ui.dial_pan.setValue(value)
  1041. #------------------------------------------------------------------
  1042. @pyqtSlot()
  1043. def slot_channelCustomMenu(self):
  1044. menu = QMenu(self)
  1045. actNone = menu.addAction(self.tr("None"))
  1046. if self.fControlChannel+1 == 0:
  1047. actNone.setCheckable(True)
  1048. actNone.setChecked(True)
  1049. for i in range(1, 16+1):
  1050. action = menu.addAction("%i" % i)
  1051. if self.fControlChannel+1 == i:
  1052. action.setCheckable(True)
  1053. action.setChecked(True)
  1054. actSel = menu.exec_(QCursor.pos())
  1055. if not actSel:
  1056. pass
  1057. elif actSel == actNone:
  1058. self.ui.sb_ctrl_channel.setValue(0)
  1059. elif actSel:
  1060. selChannel = int(actSel.text())
  1061. self.ui.sb_ctrl_channel.setValue(selChannel)
  1062. #------------------------------------------------------------------
  1063. def _createParameterWidgets(self, paramType, paramListFull, tabPageName):
  1064. i = 1
  1065. for paramList, width in paramListFull:
  1066. if len(paramList) == 0:
  1067. break
  1068. tabIndex = self.ui.tabWidget.count()
  1069. tabPageContainer = QWidget(self.ui.tabWidget)
  1070. tabPageLayout = QVBoxLayout(tabPageContainer)
  1071. tabPageContainer.setLayout(tabPageLayout)
  1072. for paramInfo in paramList:
  1073. paramWidget = PluginParameter(tabPageContainer, paramInfo, self.fPluginId, tabIndex)
  1074. paramWidget.setLabelWidth(width)
  1075. tabPageLayout.addWidget(paramWidget)
  1076. self.fParameterList.append((paramType, paramInfo['index'], paramWidget))
  1077. if paramType == PARAMETER_INPUT:
  1078. paramWidget.valueChanged.connect(self.slot_parameterValueChanged)
  1079. paramWidget.midiControlChanged.connect(self.slot_parameterMidiControlChanged)
  1080. paramWidget.midiChannelChanged.connect(self.slot_parameterMidiChannelChanged)
  1081. tabPageLayout.addStretch()
  1082. self.ui.tabWidget.addTab(tabPageContainer, "%s (%i)" % (tabPageName, i))
  1083. i += 1
  1084. if paramType == PARAMETER_INPUT:
  1085. self.ui.tabWidget.setTabIcon(tabIndex, self.fTabIconOff)
  1086. self.fTabIconTimers.append(ICON_STATE_NULL)
  1087. def _updateCtrlMidiProgram(self):
  1088. if self.fPluginInfo['type'] not in (PLUGIN_INTERNAL, PLUGIN_FILE_SF2):
  1089. return
  1090. elif self.fPluginInfo['category'] != PLUGIN_CATEGORY_SYNTH:
  1091. return
  1092. if self.fControlChannel < 0:
  1093. self.ui.cb_midi_programs.setEnabled(False)
  1094. return
  1095. self.ui.cb_midi_programs.setEnabled(True)
  1096. mpIndex = Carla.host.get_current_midi_program_index(self.fPluginId)
  1097. if self.ui.cb_midi_programs.currentIndex() != mpIndex:
  1098. self.setMidiProgram(mpIndex)
  1099. #------------------------------------------------------------------
  1100. def showEvent(self, event):
  1101. if not self.fScrollAreaSetup:
  1102. self.fScrollAreaSetup = True
  1103. minHeight = self.ui.scrollArea.height()+2
  1104. self.ui.scrollArea.setMinimumHeight(minHeight)
  1105. self.ui.scrollArea.setMaximumHeight(minHeight)
  1106. QDialog.showEvent(self, event)
  1107. def done(self, r):
  1108. QDialog.done(self, r)
  1109. self.close()
  1110. # ------------------------------------------------------------------------------------------------------------
  1111. # Main
  1112. if __name__ == '__main__':
  1113. from carla_style import *
  1114. app = CarlaApplication()
  1115. #gui = CarlaAboutW(None)
  1116. #gui = PluginParameter(None, gFakeParamInfo, 0, 0)
  1117. gui = PluginEdit(None, 0)
  1118. gui.show()
  1119. sys.exit(app.exec_())