jamulus/src/audiomixerboard.cpp

258 lines
9.3 KiB
C++
Raw Normal View History

/******************************************************************************\
* Copyright (c) 2004-2009
*
* Author(s):
2009-05-01 12:25:32 +02:00
* Volker Fischer
*
******************************************************************************
*
* 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 (at your option) 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.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
\******************************************************************************/
#include "audiomixerboard.h"
2006-12-09 16:00:24 +01:00
/* Implementation *************************************************************/
CChannelFader::CChannelFader ( QWidget* pNW,
QHBoxLayout* pParentLayout )
2006-12-09 16:00:24 +01:00
{
// create new GUI control objects and store pointers to them
pMainGrid = new QVBoxLayout();
pFader = new QSlider ( Qt::Vertical, pNW );
pcbMute = new QCheckBox ( "Mute", pNW );
pcbSolo = new QCheckBox ( "Solo", pNW );
pLabel = new QLabel ( "", pNW );
// setup layout
pMainGrid->setSpacing ( 2 );
2006-12-09 16:00:24 +01:00
// setup slider
pFader->setPageStep ( 1 );
pFader->setTickPosition ( QSlider::TicksBothSides );
2006-12-09 16:00:24 +01:00
pFader->setRange ( 0, AUD_MIX_FADER_MAX );
pFader->setTickInterval ( AUD_MIX_FADER_MAX / 9 );
// TEST solo functionality is not yet implemented, disable control
pcbSolo->setEnabled ( false );
2006-12-09 16:00:24 +01:00
// add user controls to grid
pMainGrid->addWidget( pFader, 0, Qt::AlignHCenter );
pMainGrid->addWidget( pcbMute, 0, Qt::AlignHCenter );
pMainGrid->addWidget( pcbSolo, 0, Qt::AlignHCenter );
pMainGrid->addWidget( pLabel, 0, Qt::AlignHCenter );
2006-12-09 16:00:24 +01:00
// add fader layout to audio mixer board layout
pParentLayout->addLayout ( pMainGrid );
// reset current fader
Reset();
2006-12-09 19:37:40 +01:00
// add help text to controls
pFader->setWhatsThis ( "<b>Mixer Fader:</b> Adjusts the audio level of "
"this channel. All connected clients at the server will be assigned "
"an audio fader at each client." );
pcbMute->setWhatsThis ( "<b>Mute:</b> Mutes the current channel." );
pcbSolo->setWhatsThis ( "<b>Solo:</b> If Solo checkbox is checked, only "
"the current channel is active and all other channels are muted. Only "
"one channel at a time can be set to solo." );
pLabel->setWhatsThis ( "<b>Mixer Fader Label:</b> Label (fader tag) "
"identifying the connected client. The tag name can be set in the "
"clients main window." );
2006-12-09 19:37:40 +01:00
// connections -------------------------------------------------------------
QObject::connect ( pFader, SIGNAL ( valueChanged ( int ) ),
this, SLOT ( OnFaderValueChanged ( int ) ) );
QObject::connect ( pcbMute, SIGNAL ( stateChanged ( int ) ),
this, SLOT ( OnMuteStateChanged ( int ) ) );
2006-12-09 19:37:40 +01:00
}
void CChannelFader::Reset()
2006-12-09 19:37:40 +01:00
{
// init gain value -> maximum value as definition according to server
pFader->setValue ( AUD_MIX_FADER_MAX );
// reset mute/solo check boxes
pcbMute->setChecked ( false );
pcbSolo->setChecked ( false );
// clear label
pLabel->setText ( "" );
}
2006-12-09 19:37:40 +01:00
void CChannelFader::OnFaderValueChanged ( int value )
{
// if mute flag is set, do not apply the new fader value
if ( pcbMute->checkState() == Qt::Unchecked )
{
// emit signal for new fader gain value
emit faderValueChanged ( CalcFaderGain ( value ) );
}
}
void CChannelFader::OnMuteStateChanged ( int value )
{
if ( static_cast<Qt::CheckState> ( value ) == Qt::Checked )
{
// mute channel -> send gain of 0
emit faderValueChanged ( 0 );
}
else
{
// mute was unchecked, get current fader value and apply
emit faderValueChanged ( CalcFaderGain ( pFader->value() ) );
}
2006-12-09 16:00:24 +01:00
}
2008-01-22 22:15:04 +01:00
void CChannelFader::SetText ( const QString sText )
2006-12-09 16:00:24 +01:00
{
2006-12-10 13:36:43 +01:00
const int iBreakPos = 7;
2006-12-09 16:00:24 +01:00
2006-12-10 13:36:43 +01:00
// break text at predefined position, if text is too short, break anyway to
// make sure we have two lines for fader tag
2008-01-22 22:15:04 +01:00
QString sModText = sText;
2006-12-09 16:00:24 +01:00
if ( sModText.length() > iBreakPos )
{
sModText.insert ( iBreakPos, QString ( "<br>" ) );
}
2006-12-10 13:36:43 +01:00
else
{
// insert line break at the beginning of the string -> make sure
// if we only have one line that the text appears at the bottom line
sModText.insert ( 0, QString ( "<br>" ) );
2006-12-10 13:36:43 +01:00
}
2006-12-09 16:00:24 +01:00
// use bold text
sModText.prepend ( "<b>" );
sModText.append ( "</b>" );
pLabel->setText ( sModText );
}
double CChannelFader::CalcFaderGain ( const int value )
{
// convert actual slider range in gain values
// and normalize so that maximum gain is 1
return static_cast<double> ( value ) / AUD_MIX_FADER_MAX;
}
CAudioMixerBoard::CAudioMixerBoard ( QWidget* parent, Qt::WindowFlags f ) : QFrame ( parent, f )
2006-12-09 16:00:24 +01:00
{
// set modified style
setFrameShape ( QFrame::StyledPanel );
setFrameShadow ( QFrame::Sunken );
// add hboxlayout with horizontal spacer
pMainLayout = new QHBoxLayout ( this );
2006-12-09 16:00:24 +01:00
pMainLayout->addItem ( new QSpacerItem ( 0, 0, QSizePolicy::Expanding ) );
// create all mixer controls and make them invisible
vecpChanFader.Init ( MAX_NUM_CHANNELS );
for ( int i = 0; i < MAX_NUM_CHANNELS; i++ )
{
vecpChanFader[i] = new CChannelFader ( this, pMainLayout );
2006-12-09 16:00:24 +01:00
vecpChanFader[i]->Hide();
}
2006-12-09 19:37:40 +01:00
// connections -------------------------------------------------------------
// CODE TAG: MAX_NUM_CHANNELS_TAG
// make sure we have MAX_NUM_CHANNELS connections!!!
QObject::connect ( vecpChanFader[0], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh0 ( double ) ) );
QObject::connect ( vecpChanFader[1], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh1 ( double ) ) );
QObject::connect ( vecpChanFader[2], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh2 ( double ) ) );
QObject::connect ( vecpChanFader[3], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh3 ( double ) ) );
QObject::connect ( vecpChanFader[4], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh4 ( double ) ) );
QObject::connect ( vecpChanFader[5], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh5 ( double ) ) );
QObject::connect ( vecpChanFader[6], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh6 ( double ) ) );
QObject::connect ( vecpChanFader[7], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh7 ( double ) ) );
QObject::connect ( vecpChanFader[8], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh8 ( double ) ) );
QObject::connect ( vecpChanFader[9], SIGNAL ( faderValueChanged ( double ) ), this, SLOT ( OnFaderValueChangedCh9 ( double ) ) );
2006-12-09 16:00:24 +01:00
}
2006-12-09 19:37:40 +01:00
void CAudioMixerBoard::HideAll()
2006-12-09 16:00:24 +01:00
{
// make old controls invisible
for ( int i = 0; i < USED_NUM_CHANNELS; i++ )
2006-12-09 16:00:24 +01:00
{
vecpChanFader[i]->Hide();
}
}
void CAudioMixerBoard::ApplyNewConClientList ( CVector<CChannelShortInfo>& vecChanInfo )
{
2006-12-09 19:37:40 +01:00
// search for channels with are already present and preserver their gain
// setting, for all other channels, reset gain
for ( int i = 0; i < USED_NUM_CHANNELS; i++ )
2006-12-09 19:37:40 +01:00
{
bool bFaderIsUsed = false;
for ( int j = 0; j < vecChanInfo.Size(); j++ )
{
// search if current fader is used
if ( vecChanInfo[j].iChanID == i )
{
// check if fader was already in use -> preserve gain value
if ( !vecpChanFader[i]->IsVisible() )
{
vecpChanFader[i]->Reset();
2006-12-09 19:37:40 +01:00
// show fader
vecpChanFader[i]->Show();
}
// update text
vecpChanFader[i]->SetText ( GenFaderText ( vecChanInfo[j] ) );
bFaderIsUsed = true;
}
}
// if current fader is not used, hide it
if ( !bFaderIsUsed )
{
vecpChanFader[i]->Hide();
}
}
2006-12-09 16:00:24 +01:00
}
2008-01-22 22:15:04 +01:00
QString CAudioMixerBoard::GenFaderText ( CChannelShortInfo& ChanInfo )
2006-12-09 19:37:40 +01:00
{
// if text is empty, show IP address instead
2008-01-22 22:15:04 +01:00
if ( ChanInfo.strName.isEmpty() )
2006-12-09 19:37:40 +01:00
{
// convert IP address to text and show it (use dummy port number
// since it is not used here)
const CHostAddress TempAddr =
CHostAddress ( QHostAddress ( ChanInfo.iIpAddr ), 0 );
return TempAddr.GetIpAddressStringNoLastByte();
2006-12-09 19:37:40 +01:00
}
else
{
// show name of channel
return ChanInfo.strName;
}
2006-12-09 16:00:24 +01:00
}