root/trunk/libffado/support/mixer-qt4/ffado/mixer/rme.py

Revision 2008, 9.2 kB (checked in by jwoithe, 12 years ago)

rme: refine input matrix mixer channel names. Add low level support for mixer channel phase inversion and muting (untested). Add playback mixer to RME ffado-mixer.

  • Property svn:mergeinfo set to
Line 
1 #
2 # Copyright (C) 2009, 2011 by Jonathan Woithe
3 #
4 # This file is part of FFADO
5 # FFADO = Free Firewire (pro-)audio drivers for linux
6 #
7 # FFADO is based upon FreeBoB.
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 2 of the License, or
12 # (at your option) version 3 of the License.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 #
22
23 from PyQt4 import QtGui
24
25 from PyQt4.QtCore import SIGNAL, SLOT, QObject, Qt
26 from PyQt4.QtGui import QWidget, QApplication
27 from ffado.config import *
28
29 from ffado.widgets.matrixmixer import MatrixMixer
30
31 import logging
32 log = logging.getLogger('rme')
33
34 # Model defines.  These must agree with what is used in rme_avdevice.h.
35 RME_MODEL_NONE      = 0x0000
36 RME_MODEL_FF800     = 0x0001
37 RME_MODEL_FF400     = 0x0002
38
39 class Rme(QWidget):
40     def __init__(self,parent = None):
41         QWidget.__init__(self,parent)
42         uicLoad("ffado/mixer/rme", self)
43
44         self.init()
45
46     def init(self):
47
48         self.PhantomSwitches={
49             self.phantom_0: ['/Control/Phantom', 0],
50             self.phantom_1: ['/Control/Phantom', 1],
51             self.phantom_2: ['/Control/Phantom', 2],
52             self.phantom_3: ['/Control/Phantom', 3],
53         }
54
55         self.Switches={
56             self.ff400_chan3_opt_instr: ['/Control/Chan3_opt_instr'],
57             self.ff400_chan3_opt_pad:   ['/Control/Chan3_opt_pad'],
58             self.ff400_chan4_opt_instr: ['/Control/Chan4_opt_instr'],
59             self.ff400_chan4_opt_pad:   ['/Control/Chan4_opt_pad'],
60         }
61
62         self.Radiobuttons={
63             self.level_in_lo_gain: ['/Control/Input_level', 1],
64             self.level_in_p4dBu:   ['/Control/Input_level', 2],
65             self.level_in_m10dBV:  ['/Control/Input_level', 3],
66
67             self.level_out_hi_gain: ['/Control/Output_level', 1],
68             self.level_out_p4dBu:   ['/Control/Output_level', 2],
69             self.level_out_m10dBV:  ['/Control/Output_level', 3],
70
71             self.phones_hi_gain: ['/Control/Phones_level', 1],
72             self.phones_p4dBu:   ['/Control/Phones_level', 2],
73             self.phones_m10dBV:  ['/Control/Phones_level', 3],
74         }
75
76
77         self.Gains={
78             self.gain_mic1: ['/Control/Gains', 0],
79             self.gain_mic2: ['/Control/Gains', 1],
80             self.gain_input3: ['/Control/Gains', 2],
81             self.gain_input4: ['/Control/Gains', 3],
82         }
83
84         # Other mixer variables
85         self.is_streaming = 0
86         self.sample_rate = 0
87         self.model = 0
88         self.tco_present = 0
89
90     # Public slot: update phantom power hardware switches
91     def updatePhantomSwitch(self, a0):
92         sender = self.sender()
93         # Value is the phantom switch value, with a corresponding enable
94         # bit in the high 16 bit word
95         val = (a0 << self.PhantomSwitches[sender][1]) | (0x00010000 << self.PhantomSwitches[sender][1])
96         log.debug("phantom switch %d set to %d" % (self.PhantomSwitches[sender][1], a0))
97         self.hw.setDiscrete(self.PhantomSwitches[sender][0], val)
98
99     # Public slot: update generic switches
100     def updateSwitch(self, a0):
101         sender = self.sender()
102         log.debug("switch %s set to %d" % (self.Switches[sender][0], a0))
103         self.hw.setDiscrete(self.Switches[sender][0], a0)
104
105     # Public slot: update generic radiobuttons
106     def updateRadiobutton(self, a0):
107         sender = self.sender()
108         if (a0 != 0):
109             # Only change the control state on a button being "checked"
110             log.debug("radiobutton group %s set to %d" % (self.Radiobuttons[sender][0], self.Radiobuttons[sender][1]))
111             self.hw.setDiscrete(self.Radiobuttons[sender][0], self.Radiobuttons[sender][1])
112
113     # Public slot: update gains
114     def updateGain(self, a0):
115         sender = self.sender()
116         log.debug("gain %s[%d] set to %d" % (self.Gains[sender][0], self.Gains[sender][1], a0))
117         self.hw.setMatrixMixerValue(self.Gains[sender][0], 0, self.Gains[sender][1], a0)
118
119     # Hide and disable a control
120     def disable_hide(self,widget):
121         widget.hide()
122         widget.setEnabled(False)
123
124     def initValues(self):
125
126         # print self.hw.servername
127         # print self.hw.basepath
128         self.inputmatrix = MatrixMixer(self.hw.servername, self.hw.basepath+"/Mixer/InputFaders", self, 0x8000)
129         layout = QtGui.QVBoxLayout()
130         scrollarea = QtGui.QScrollArea()
131         scrollarea.setWidgetResizable(True)
132         scrollarea.setWidget(self.inputmatrix)
133         layout.addWidget(scrollarea)
134         self.mixer.setLayout(layout)
135
136         self.playbackmatrix = MatrixMixer(self.hw.servername, self.hw.basepath+"/Mixer/PlaybackFaders", self, 0x8000)
137         layout = QtGui.QVBoxLayout()
138         scrollarea = QtGui.QScrollArea()
139         scrollarea.setWidgetResizable(True)
140         scrollarea.setWidget(self.playbackmatrix)
141         layout.addWidget(scrollarea)
142         self.playbackmixer.setLayout(layout)
143
144         # Is the device streaming?
145         #self.is_streaming = self.hw.getDiscrete('/Mixer/Info/IsStreaming')
146         self.is_streaming = 0
147         #log.debug("device streaming flag: %d" % (self.is_streaming))
148
149         # Retrieve other device settings as needed and customise the UI
150         # based on these options.
151         self.model = self.hw.getDiscrete('/Control/Model')
152         log.debug("device model identifier: %d" % (self.model))
153         self.tco_present = self.hw.getDiscrete('/Control/TCO_present')
154         log.debug("device has TCO: %d" % (self.tco_present))
155         #self.sample_rate = self.hw.getDiscrete('/Mixer/Info/SampleRate')
156         #log.debug("device sample rate: %d" % (self.sample_rate))
157
158         # The Fireface-400 only has 2 phantom-capable channels
159         if (self.model == RME_MODEL_FF400):
160             self.disable_hide(self.phantom_2)
161             self.disable_hide(self.phantom_3)
162         else:
163             self.phantom_0.setText("Mic 7")
164             self.phantom_1.setText("Mic 8")
165             self.phantom_2.setText("Mic 9")
166             self.phantom_3.setText("Mic 10")
167
168         # Instrument options, input jack selection controls and an ADAT2
169         # input are applicable only to the FF800
170         if (self.model != RME_MODEL_FF800):
171             self.instrument_options_group.setEnabled(False)
172             self.input_plug_select_group.setEnabled(False)
173             self.sync_ref_adat2.setEnabled(False)
174             self.sync_check_adat2_label.setEnabled(False)
175             self.sync_check_adat2_status.setEnabled(False)
176
177         # Only the FF400 has specific channel 3/4 options, input gain
178         # controls and switchable phones level
179         if (self.model != RME_MODEL_FF400):
180             self.disable_hide(self.input_gains_group)
181             self.disable_hide(self.channel_3_4_options_group)
182             self.phones_level_group.setEnabled(False)
183
184         # Get current hardware values and connect GUI element signals to
185         # their respective slots
186         for ctrl, info in self.PhantomSwitches.iteritems():
187             if (not(ctrl.isEnabled())):
188                 continue
189             val = (self.hw.getDiscrete(info[0]) >> info[1]) & 0x01
190             log.debug("phantom switch %d is %d" % (info[1], val))
191             if val:
192                 ctrl.setChecked(True)
193             else:
194                 ctrl.setChecked(False)
195             QObject.connect(ctrl, SIGNAL('toggled(bool)'), self.updatePhantomSwitch)
196
197         for ctrl, info in self.Switches.iteritems():
198             if (not(ctrl.isEnabled())):
199                 continue
200             val = self.hw.getDiscrete(info[0])
201             log.debug("switch %s is %d" % (info[0], val))
202             if val:
203                 ctrl.setChecked(True)
204             else:
205                 ctrl.setChecked(False)
206             QObject.connect(ctrl, SIGNAL('toggled(bool)'), self.updateSwitch)
207
208         for ctrl, info in self.Radiobuttons.iteritems():
209             if (not(ctrl.isEnabled())):
210                 continue;
211             # This is a touch wasteful since it means we retrieve the control
212             # value once per radio button rather than once per radio button
213             # group.  In time we might introduce radiobutton groupings in the
214             # self.* datastructures to avoid this, but for the moment this is
215             # easy and it works.
216             val = self.hw.getDiscrete(info[0])
217             if (val == info[1]):
218                 val = 1
219             else:
220                 val = 0
221             ctrl.setChecked(val)
222             log.debug("Radiobutton %s[%d] is %d" % (info[0], info[1], val))
223             QObject.connect(ctrl, SIGNAL('toggled(bool)'), self.updateRadiobutton)
224
225         for ctrl, info in self.Gains.iteritems():
226             if (not(ctrl.isEnabled())):
227                 continue
228             val = self.hw.getMatrixMixerValue(info[0], 0, info[1])
229             log.debug("gain %s[%d] is %d" % (info[0], info[1], val))
230             ctrl.setValue(val);
231             QObject.connect(ctrl, SIGNAL('valueChanged(int)'), self.updateGain)
232
233 # vim: et
Note: See TracBrowser for help on using the browser.