|
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
-
- # Carla plugin host
- # Copyright (C) 2011-2013 Filipe Coelho <falktx@falktx.com>
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU General Public License as
- # published by the Free Software Foundation; either version 2 of
- # the License, or any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # For a full copy of the GNU General Public License see the GPL.txt file
-
- # ------------------------------------------------------------------------------------------------------------
- # Imports (Global)
-
- try:
- from PyQt5.QtWidgets import QLabel, QTabWidget
- except:
- from PyQt4.QtGui import QLabel, QTabWidget
-
- # ------------------------------------------------------------------------------------------------------------
- # Imports (Custom Stuff)
-
- from carla_host import *
- from carla_patchbay import CarlaPatchbayW
- from carla_rack import CarlaRackW
-
- # ------------------------------------------------------------------------------------------------------------
- # Tab widget (rack + patchbay)
-
- class CarlaMultiW(QTabWidget):
- def __init__(self, parent):
- QTabWidget.__init__(self, parent)
-
- self.fRack = CarlaRackW(parent, False)
- self.fPatchbay = CarlaPatchbayW(parent, False)
- self.fParent = parent
-
- self.addTab(self.fRack, "Plugins")
- self.addTab(self.fPatchbay, "Patchbay")
-
- self.scene = self.fPatchbay.scene
-
- parent.ui.act_plugins_enable.triggered.connect(self.fRack.slot_pluginsEnable)
- parent.ui.act_plugins_disable.triggered.connect(self.fRack.slot_pluginsDisable)
- parent.ui.act_plugins_volume100.triggered.connect(self.fRack.slot_pluginsVolume100)
- parent.ui.act_plugins_mute.triggered.connect(self.fRack.slot_pluginsMute)
- parent.ui.act_plugins_wet100.triggered.connect(self.fRack.slot_pluginsWet100)
- parent.ui.act_plugins_bypass.triggered.connect(self.fRack.slot_pluginsBypass)
- parent.ui.act_plugins_center.triggered.connect(self.fRack.slot_pluginsCenter)
- parent.ui.act_plugins_panic.triggered.connect(self.fRack.slot_pluginsDisable)
-
- parent.ui.act_canvas_arrange.setEnabled(False) # TODO, later
- parent.ui.act_canvas_arrange.triggered.connect(self.fPatchbay.slot_canvasArrange)
- parent.ui.act_canvas_refresh.triggered.connect(self.fPatchbay.slot_canvasRefresh)
- parent.ui.act_canvas_zoom_fit.triggered.connect(self.fPatchbay.slot_canvasZoomFit)
- parent.ui.act_canvas_zoom_in.triggered.connect(self.fPatchbay.slot_canvasZoomIn)
- parent.ui.act_canvas_zoom_out.triggered.connect(self.fPatchbay.slot_canvasZoomOut)
- parent.ui.act_canvas_zoom_100.triggered.connect(self.fPatchbay.slot_canvasZoomReset)
- parent.ui.act_canvas_print.triggered.connect(self.fPatchbay.slot_canvasPrint)
- parent.ui.act_canvas_save_image.triggered.connect(self.fPatchbay.slot_canvasSaveImage)
-
- parent.ui.act_settings_configure.triggered.connect(self.fPatchbay.slot_configureCarla)
-
- parent.ParameterValueChangedCallback.connect(self.fRack.slot_handleParameterValueChangedCallback)
- parent.ParameterDefaultChangedCallback.connect(self.fRack.slot_handleParameterDefaultChangedCallback)
- parent.ParameterMidiChannelChangedCallback.connect(self.fRack.slot_handleParameterMidiChannelChangedCallback)
- parent.ParameterMidiCcChangedCallback.connect(self.fRack.slot_handleParameterMidiCcChangedCallback)
- parent.ProgramChangedCallback.connect(self.fRack.slot_handleProgramChangedCallback)
- parent.MidiProgramChangedCallback.connect(self.fRack.slot_handleMidiProgramChangedCallback)
- parent.NoteOnCallback.connect(self.fRack.slot_handleNoteOnCallback)
- parent.NoteOffCallback.connect(self.fRack.slot_handleNoteOffCallback)
- parent.ShowGuiCallback.connect(self.fRack.slot_handleShowGuiCallback)
- parent.UpdateCallback.connect(self.fRack.slot_handleUpdateCallback)
- parent.ReloadInfoCallback.connect(self.fRack.slot_handleReloadInfoCallback)
- parent.ReloadParametersCallback.connect(self.fRack.slot_handleReloadParametersCallback)
- parent.ReloadProgramsCallback.connect(self.fRack.slot_handleReloadProgramsCallback)
- parent.ReloadAllCallback.connect(self.fRack.slot_handleReloadAllCallback)
- parent.PatchbayClientAddedCallback.connect(self.fPatchbay.slot_handlePatchbayClientAddedCallback)
- parent.PatchbayClientRemovedCallback.connect(self.fPatchbay.slot_handlePatchbayClientRemovedCallback)
- parent.PatchbayClientRenamedCallback.connect(self.fPatchbay.slot_handlePatchbayClientRenamedCallback)
- parent.PatchbayPortAddedCallback.connect(self.fPatchbay.slot_handlePatchbayPortAddedCallback)
- parent.PatchbayPortRemovedCallback.connect(self.fPatchbay.slot_handlePatchbayPortRemovedCallback)
- parent.PatchbayPortRenamedCallback.connect(self.fPatchbay.slot_handlePatchbayPortRenamedCallback)
- parent.PatchbayConnectionAddedCallback.connect(self.fPatchbay.slot_handlePatchbayConnectionAddedCallback)
- parent.PatchbayConnectionRemovedCallback.connect(self.fPatchbay.slot_handlePatchbayConnectionRemovedCallback)
- parent.PatchbayIconChangedCallback.connect(self.fPatchbay.slot_handlePatchbayIconChangedCallback)
-
- # -----------------------------------------------------------------
-
- def getPluginCount(self):
- return self.fRack.getPluginCount()
-
- # -----------------------------------------------------------------
-
- def addPlugin(self, pluginId, isProjectLoading):
- self.fRack.addPlugin(pluginId, isProjectLoading)
-
- def removePlugin(self, pluginId):
- self.fRack.removePlugin(pluginId)
-
- def renamePlugin(self, pluginId, newName):
- self.fRack.renamePlugin(pluginId, newName)
- self.fPatchbay.renamePlugin(pluginId, newName)
-
- def removeAllPlugins(self):
- self.fRack.removeAllPlugins()
-
- # -----------------------------------------------------------------
-
- def engineStarted(self):
- #self.fRack.engineStarted()
- #self.fPatchbay.engineStarted()
- self.fParent.engineChanged()
-
- def engineStopped(self):
- #self.fRack.engineStopped()
- self.fPatchbay.engineStopped()
- self.fParent.engineStopped()
-
- def engineChanged(self):
- self.fParent.engineChanged()
-
- # -----------------------------------------------------------------
-
- def idleFast(self):
- self.fRack.idleFast()
-
- def idleSlow(self):
- self.fRack.idleSlow()
-
- # -----------------------------------------------------------------
-
- def saveSettings(self, settings):
- pass
- #self.fRack.saveSettings(settings)
- #self.fPatchbay.saveSettings(settings)
-
- # ------------------------------------------------------------------------------------------------------------
- # Main Window
-
- class CarlaHostW(HostWindow):
- def __init__(self, parent=None):
- HostWindow.__init__(self, parent)
-
- # -------------------------------------------------------------
- # Set-up container
-
- self.fContainer = CarlaMultiW(self)
- self.setupContainer(True)
-
- # -------------------------------------------------------------
- # Set-up GUI stuff
-
- self.fInfoText = ""
- self.fInfoLabel = QLabel(self)
- self.fInfoLabel.setText("Engine stopped")
-
- # -------------------------------------------------------------
-
- self.ui.act_settings_show_toolbar.triggered.connect(self.slot_toolbarShown)
- self.ui.splitter.splitterMoved.connect(self.slot_splitterMoved)
-
- QTimer.singleShot(0, self.slot_infoLabelInit)
-
- # -----------------------------------------------------------------
-
- def engineStopped(self):
- self.fInfoText = ""
- self.fInfoLabel.setText("Engine stopped")
-
- def engineChanged(self):
- self.fInfoText = "Engine running | SampleRate: %g | BufferSize: %i" % (self.fSampleRate, self.fBufferSize)
- self.fInfoLabel.setText("%s | %s" % (self.fInfoText, self.fTextTransport))
-
- # -----------------------------------------------------------------
-
- def updateInfoLabelPos(self):
- tabBar = self.fContainer.tabBar()
- y = tabBar.mapFromParent(self.ui.centralwidget.pos()).y() #+tabBar.height()/4
-
- if not self.ui.toolBar.isVisible():
- y -= self.ui.toolBar.height()
-
- self.fInfoLabel.move(self.fInfoLabel.x(), y)
-
- def updateInfoLabelSize(self):
- tabBar = self.fContainer.tabBar()
- self.fInfoLabel.resize(self.fContainer.width()-tabBar.width()-20, self.fInfoLabel.height())
-
- # -----------------------------------------------------------------
-
- @pyqtSlot()
- def slot_splitterMoved(self):
- self.updateInfoLabelSize()
-
- @pyqtSlot()
- def slot_toolbarShown(self):
- self.updateInfoLabelPos()
-
- @pyqtSlot()
- def slot_infoLabelInit(self):
- tabBar = self.fContainer.tabBar()
- x = tabBar.width()+20
- y = tabBar.mapFromParent(self.ui.centralwidget.pos()).y() #+ tabBar.height()/4
- self.fInfoLabel.move(x, y)
- self.fInfoLabel.resize(self.fContainer.width()-x, tabBar.height())
-
- # -----------------------------------------------------------------
-
- def resizeEvent(self, event):
- self.updateInfoLabelSize()
- HostWindow.resizeEvent(self, event)
-
- def timerEvent(self, event):
- HostWindow.timerEvent(self, event)
-
- if event.timerId() == self.fIdleTimerFast:
- self.fInfoLabel.setText("%s | %s" % (self.fInfoText, self.fTextTransport))
-
- # ------------------------------------------------------------------------------------------------------------
- # Main
-
- if __name__ == '__main__':
- # -------------------------------------------------------------
- # App initialization
-
- app = CarlaApplication()
-
- # -------------------------------------------------------------
- # Set-up custom signal handling
-
- setUpSignals()
-
- # -------------------------------------------------------------
- # Read CLI args
-
- appName = os.path.basename(__file__) if ("__file__" in dir() and os.path.dirname(__file__) in PATH) else sys.argv[0]
- libPrefix = None
- projectFilename = None
-
- argv = app.arguments()
- argc = len(argv)
-
- for i in range(argc):
- if i == 0: continue
- argument = argv[i]
-
- if argument.startswith("--with-appname="):
- appName = os.path.basename(argument.replace("--with-appname=", ""))
-
- elif argument.startswith("--with-libprefix="):
- libPrefix = argument.replace("--with-libprefix=", "")
-
- elif os.path.exists(argument):
- projectFilename = argument
-
- # -------------------------------------------------------------
- # Init host backend
-
- Carla.isControl = False
- Carla.isLocal = True
- Carla.isPlugin = False
-
- initHost(appName, libPrefix)
-
- # -------------------------------------------------------------
- # Create GUI
-
- Carla.gui = CarlaHostW()
-
- # -------------------------------------------------------------
- # Load project file if set
-
- if projectFilename is not None:
- Carla.gui.loadProjectLater(projectFilename)
-
- # -------------------------------------------------------------
- # Show GUI
-
- Carla.gui.show()
-
- # -------------------------------------------------------------
- # App-Loop
-
- sys.exit(app.exec_())
|