2012-07-09 14:49:47 +02:00
|
|
|
/******************************************************************************\
|
2013-01-23 11:41:13 +01:00
|
|
|
* Copyright (c) 2004-2013
|
2012-07-09 14:49:47 +02:00
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* 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 "util.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Implementation *************************************************************/
|
|
|
|
// Input level meter implementation --------------------------------------------
|
|
|
|
void CStereoSignalLevelMeter::Update ( CVector<short>& vecsAudio )
|
|
|
|
{
|
|
|
|
// get the stereo vector size
|
|
|
|
const int iStereoVecSize = vecsAudio.Size();
|
|
|
|
|
|
|
|
// Get maximum of current block
|
|
|
|
//
|
|
|
|
// Speed optimization:
|
|
|
|
// - we only make use of the positive values and ignore the negative ones
|
|
|
|
// -> we do not need to call the fabs() function
|
|
|
|
// - we only evaluate every third sample
|
|
|
|
//
|
|
|
|
// With these speed optimizations we might loose some information in
|
|
|
|
// special cases but for the average music signals the following code
|
|
|
|
// should give good results.
|
|
|
|
//
|
|
|
|
short sMaxL = 0;
|
|
|
|
short sMaxR = 0;
|
|
|
|
for ( int i = 0; i < iStereoVecSize; i += 6 ) // 2 * 3 = 6 -> stereo
|
|
|
|
{
|
|
|
|
// left channel
|
|
|
|
if ( sMaxL < vecsAudio[i] )
|
|
|
|
{
|
|
|
|
sMaxL = vecsAudio[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
// right channel
|
|
|
|
if ( sMaxR < vecsAudio[i + 1] )
|
|
|
|
{
|
|
|
|
sMaxR = vecsAudio[i + 1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dCurLevelL = UpdateCurLevel ( dCurLevelL, sMaxL );
|
|
|
|
dCurLevelR = UpdateCurLevel ( dCurLevelR, sMaxR );
|
|
|
|
}
|
|
|
|
|
2013-05-08 09:35:15 +02:00
|
|
|
double CStereoSignalLevelMeter::UpdateCurLevel ( double dCurLevel,
|
2012-07-09 14:49:47 +02:00
|
|
|
const short& sMax )
|
|
|
|
{
|
|
|
|
// decrease max with time
|
|
|
|
if ( dCurLevel >= METER_FLY_BACK )
|
|
|
|
{
|
|
|
|
// TODO calculate factor from sample rate
|
|
|
|
dCurLevel *= 0.95;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dCurLevel = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update current level -> only use maximum
|
|
|
|
if ( static_cast<double> ( sMax ) > dCurLevel )
|
|
|
|
{
|
|
|
|
return static_cast<double> ( sMax );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return dCurLevel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double CStereoSignalLevelMeter::CalcLogResult ( const double& dLinearLevel )
|
|
|
|
{
|
|
|
|
const double dNormMicLevel = dLinearLevel / _MAXSHORT;
|
|
|
|
|
|
|
|
// logarithmic measure
|
|
|
|
if ( dNormMicLevel > 0 )
|
|
|
|
{
|
|
|
|
return 20.0 * log10 ( dNormMicLevel );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -100000.0; // large negative value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CRC -------------------------------------------------------------------------
|
|
|
|
void CCRC::Reset()
|
|
|
|
{
|
|
|
|
// init state shift-register with ones. Set all registers to "1" with
|
|
|
|
// bit-wise not operation
|
|
|
|
iStateShiftReg = ~uint32_t ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCRC::AddByte ( const uint8_t byNewInput )
|
|
|
|
{
|
|
|
|
for ( int i = 0; i < 8; i++ )
|
|
|
|
{
|
|
|
|
// shift bits in shift-register for transistion
|
|
|
|
iStateShiftReg <<= 1;
|
|
|
|
|
|
|
|
// take bit, which was shifted out of the register-size and place it
|
|
|
|
// at the beginning (LSB)
|
|
|
|
// (If condition is not satisfied, implicitely a "0" is added)
|
|
|
|
if ( ( iStateShiftReg & iBitOutMask) > 0 )
|
|
|
|
{
|
|
|
|
iStateShiftReg |= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add new data bit to the LSB
|
|
|
|
if ( ( byNewInput & ( 1 << ( 8 - i - 1 ) ) ) > 0 )
|
|
|
|
{
|
|
|
|
iStateShiftReg ^= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add mask to shift-register if first bit is true
|
|
|
|
if ( iStateShiftReg & 1 )
|
|
|
|
{
|
|
|
|
iStateShiftReg ^= iPoly;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t CCRC::GetCRC()
|
|
|
|
{
|
|
|
|
// return inverted shift-register (1's complement)
|
|
|
|
iStateShiftReg = ~iStateShiftReg;
|
|
|
|
|
|
|
|
// remove bit which where shifted out of the shift-register frame
|
|
|
|
return iStateShiftReg & ( iBitOutMask - 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************\
|
|
|
|
* Audio Reverberation *
|
|
|
|
\******************************************************************************/
|
|
|
|
/*
|
|
|
|
The following code is based on "JCRev: John Chowning's reverberator class"
|
|
|
|
by Perry R. Cook and Gary P. Scavone, 1995 - 2004
|
|
|
|
which is in "The Synthesis ToolKit in C++ (STK)"
|
|
|
|
http://ccrma.stanford.edu/software/stk
|
|
|
|
|
|
|
|
Original description:
|
|
|
|
This class is derived from the CLM JCRev function, which is based on the use
|
|
|
|
of networks of simple allpass and comb delay filters. This class implements
|
|
|
|
three series allpass units, followed by four parallel comb filters, and two
|
|
|
|
decorrelation delay lines in parallel at the output.
|
|
|
|
*/
|
|
|
|
void CAudioReverb::Init ( const int iSampleRate, const double rT60 )
|
|
|
|
{
|
|
|
|
int delay, i;
|
|
|
|
|
|
|
|
// delay lengths for 44100 Hz sample rate
|
|
|
|
int lengths[9] = { 1777, 1847, 1993, 2137, 389, 127, 43, 211, 179 };
|
|
|
|
const double scaler = (double) iSampleRate / 44100.0;
|
|
|
|
|
|
|
|
if ( scaler != 1.0 )
|
|
|
|
{
|
|
|
|
for ( i = 0; i < 9; i++ )
|
|
|
|
{
|
|
|
|
delay = (int) floor ( scaler * lengths[i] );
|
|
|
|
|
|
|
|
if ( ( delay & 1 ) == 0 )
|
|
|
|
{
|
|
|
|
delay++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ( !isPrime ( delay ) )
|
|
|
|
{
|
|
|
|
delay += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
lengths[i] = delay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( i = 0; i < 3; i++ )
|
|
|
|
{
|
|
|
|
allpassDelays_[i].Init ( lengths[i + 4] );
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( i = 0; i < 4; i++ )
|
|
|
|
{
|
|
|
|
combDelays_[i].Init ( lengths[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
setT60 ( rT60, iSampleRate );
|
|
|
|
allpassCoefficient_ = (double) 0.7;
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CAudioReverb::isPrime ( const int number )
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
Returns true if argument value is prime. Taken from "class Effect" in
|
|
|
|
"STK abstract effects parent class".
|
|
|
|
*/
|
|
|
|
if ( number == 2 )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( number & 1 )
|
|
|
|
{
|
|
|
|
for ( int i = 3; i < (int) sqrt ( (double) number ) + 1; i += 2 )
|
|
|
|
{
|
|
|
|
if ( ( number % i ) == 0 )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true; // prime
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false; // even
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAudioReverb::Clear()
|
|
|
|
{
|
|
|
|
// reset and clear all internal state
|
|
|
|
allpassDelays_[0].Reset ( 0 );
|
|
|
|
allpassDelays_[1].Reset ( 0 );
|
|
|
|
allpassDelays_[2].Reset ( 0 );
|
|
|
|
combDelays_[0].Reset ( 0 );
|
|
|
|
combDelays_[1].Reset ( 0 );
|
|
|
|
combDelays_[2].Reset ( 0 );
|
|
|
|
combDelays_[3].Reset ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAudioReverb::setT60 ( const double rT60,
|
|
|
|
const int iSampleRate )
|
|
|
|
{
|
|
|
|
// set the reverberation T60 decay time
|
|
|
|
for ( int i = 0; i < 4; i++ )
|
|
|
|
{
|
|
|
|
combCoefficient_[i] = pow ( (double) 10.0, (double) ( -3.0 *
|
|
|
|
combDelays_[i].Size() / ( rT60 * iSampleRate ) ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double CAudioReverb::ProcessSample ( const double input )
|
|
|
|
{
|
|
|
|
// compute one output sample
|
|
|
|
double temp, temp0, temp1, temp2;
|
|
|
|
|
|
|
|
temp = allpassDelays_[0].Get();
|
|
|
|
temp0 = allpassCoefficient_ * temp;
|
|
|
|
temp0 += input;
|
|
|
|
allpassDelays_[0].Add ( (int) temp0 );
|
|
|
|
temp0 = - ( allpassCoefficient_ * temp0 ) + temp;
|
|
|
|
|
|
|
|
temp = allpassDelays_[1].Get();
|
|
|
|
temp1 = allpassCoefficient_ * temp;
|
|
|
|
temp1 += temp0;
|
|
|
|
allpassDelays_[1].Add ( (int) temp1 );
|
|
|
|
temp1 = - ( allpassCoefficient_ * temp1 ) + temp;
|
|
|
|
|
|
|
|
temp = allpassDelays_[2].Get();
|
|
|
|
temp2 = allpassCoefficient_ * temp;
|
|
|
|
temp2 += temp1;
|
|
|
|
allpassDelays_[2].Add ( (int) temp2 );
|
|
|
|
temp2 = - ( allpassCoefficient_ * temp2 ) + temp;
|
|
|
|
|
|
|
|
const double temp3 = temp2 + ( combCoefficient_[0] * combDelays_[0].Get() );
|
|
|
|
const double temp4 = temp2 + ( combCoefficient_[1] * combDelays_[1].Get() );
|
|
|
|
const double temp5 = temp2 + ( combCoefficient_[2] * combDelays_[2].Get() );
|
|
|
|
const double temp6 = temp2 + ( combCoefficient_[3] * combDelays_[3].Get() );
|
|
|
|
|
|
|
|
combDelays_[0].Add ( (int) temp3 );
|
|
|
|
combDelays_[1].Add ( (int) temp4 );
|
|
|
|
combDelays_[2].Add ( (int) temp5 );
|
|
|
|
combDelays_[3].Add ( (int) temp6 );
|
|
|
|
|
|
|
|
return ( temp3 + temp4 + temp5 + temp6 ) * (double) 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************\
|
|
|
|
* GUI Utilities *
|
|
|
|
\******************************************************************************/
|
|
|
|
// About dialog ----------------------------------------------------------------
|
|
|
|
CAboutDlg::CAboutDlg ( QWidget* parent ) : QDialog ( parent )
|
|
|
|
{
|
|
|
|
setupUi ( this );
|
|
|
|
|
|
|
|
// set the text for the about dialog html text control
|
|
|
|
txvCredits->setOpenExternalLinks ( true );
|
|
|
|
txvCredits->setText (
|
2013-03-24 11:49:25 +01:00
|
|
|
"<p>" // general description of software
|
2013-02-17 22:14:19 +01:00
|
|
|
"<big>" + tr( "The " ) + APP_NAME +
|
|
|
|
tr ( " software enables musicians to perform real-time jam sessions "
|
|
|
|
"over the internet. There is a " ) + APP_NAME + tr ( " "
|
|
|
|
"server which collects the audio data from each " ) +
|
|
|
|
APP_NAME + tr ( " client, mixes the audio data and sends the mix back "
|
|
|
|
"to each client.") + "</big></p><br>"
|
2012-07-09 14:49:47 +02:00
|
|
|
"<p><font face=\"courier\">" // GPL header text
|
|
|
|
"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.<br>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.<br>You should have received a copy of the GNU General Public "
|
|
|
|
"License along with his program; if not, write to the Free Software "
|
|
|
|
"Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 "
|
|
|
|
"USA"
|
|
|
|
"</font></p><br>"
|
2013-03-24 11:49:25 +01:00
|
|
|
"<p><b>" + APP_NAME + // libraries used by this compilation
|
2013-02-17 22:14:19 +01:00
|
|
|
tr ( " uses the following libraries, resources or code snippets:" ) +
|
2012-07-09 14:49:47 +02:00
|
|
|
"</b></p>"
|
|
|
|
"<ul>"
|
|
|
|
"<li>Qt cross-platform application framework: "
|
2013-02-10 09:51:22 +01:00
|
|
|
"<i><a href=""http://qt.digia.com"">http://qt.digia.com</a></i></li>"
|
2013-02-16 19:00:08 +01:00
|
|
|
"<li>Opus Interactive Audio Codec: "
|
|
|
|
"<i><a href=""http://www.opus-codec.org"">http://www.opus-codec.org</a></i></li>"
|
2012-07-09 14:49:47 +02:00
|
|
|
"<li>Audio reverberation code: by Perry R. Cook and Gary P. Scavone, "
|
|
|
|
"1995 - 2004 (taken from "
|
|
|
|
"<i><a href=""http://ccrma.stanford.edu/software/stk"">"
|
|
|
|
"The Synthesis ToolKit in C++ (STK)</a></i>)</li>"
|
2013-02-10 09:51:22 +01:00
|
|
|
"<li>Some pixmaps are from the Open Clip Art Library (OCAL): "
|
|
|
|
"<i><a href=""http://openclipart.org"">http://openclipart.org</a></i></li>"
|
2012-07-09 14:49:47 +02:00
|
|
|
"</ul>"
|
|
|
|
"</center><br>");
|
|
|
|
|
|
|
|
// set version number in about dialog
|
|
|
|
lblVersion->setText ( GetVersionAndNameStr() );
|
2013-02-17 22:26:29 +01:00
|
|
|
|
|
|
|
// set window title
|
|
|
|
setWindowTitle ( tr ( "About " ) + APP_NAME );
|
2012-07-09 14:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString CAboutDlg::GetVersionAndNameStr ( const bool bWithHtml )
|
|
|
|
{
|
|
|
|
QString strVersionText = "";
|
|
|
|
|
|
|
|
// name, short description and GPL hint
|
|
|
|
if ( bWithHtml )
|
|
|
|
{
|
|
|
|
strVersionText += "<center><b>";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strVersionText += " *** ";
|
|
|
|
}
|
|
|
|
|
2013-02-17 22:14:19 +01:00
|
|
|
strVersionText += APP_NAME + tr ( ", Version " ) + VERSION;
|
2012-07-09 14:49:47 +02:00
|
|
|
|
|
|
|
if ( bWithHtml )
|
|
|
|
{
|
|
|
|
strVersionText += "</b><br>";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strVersionText += "\n *** ";
|
|
|
|
}
|
|
|
|
|
2013-02-19 22:27:07 +01:00
|
|
|
strVersionText += tr ( "Internet Jam Session Software" );
|
2012-07-09 14:49:47 +02:00
|
|
|
|
|
|
|
if ( bWithHtml )
|
|
|
|
{
|
|
|
|
strVersionText += "<br>";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strVersionText += "\n *** ";
|
|
|
|
}
|
|
|
|
|
|
|
|
strVersionText += tr ( "Under the GNU General Public License (GPL)" );
|
|
|
|
|
|
|
|
if ( bWithHtml )
|
|
|
|
{
|
|
|
|
strVersionText += "</center>";
|
|
|
|
}
|
|
|
|
|
|
|
|
return strVersionText;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Help menu -------------------------------------------------------------------
|
2013-03-24 16:42:23 +01:00
|
|
|
CHelpMenu::CHelpMenu ( QWidget* parent ) : QMenu ( "&?", parent )
|
2012-07-09 14:49:47 +02:00
|
|
|
{
|
|
|
|
// standard help menu consists of about and what's this help
|
|
|
|
addAction ( tr ( "What's &This" ), this,
|
|
|
|
SLOT ( OnHelpWhatsThis() ), QKeySequence ( Qt::SHIFT + Qt::Key_F1 ) );
|
|
|
|
|
|
|
|
addSeparator();
|
|
|
|
addAction ( tr ( "&Download Link..." ), this,
|
|
|
|
SLOT ( OnHelpDownloadLink() ) );
|
|
|
|
|
|
|
|
addSeparator();
|
|
|
|
addAction ( tr ( "&About..." ), this, SLOT ( OnHelpAbout() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************\
|
|
|
|
* Other Classes *
|
|
|
|
\******************************************************************************/
|
2013-02-11 16:53:52 +01:00
|
|
|
// Network utility functions ---------------------------------------------------
|
2013-03-24 12:38:00 +01:00
|
|
|
bool NetworkUtil::ParseNetworkAddress ( QString strAddress,
|
|
|
|
CHostAddress& HostAddress )
|
2012-07-09 14:49:47 +02:00
|
|
|
{
|
|
|
|
QHostAddress InetAddr;
|
|
|
|
quint16 iNetPort = LLCON_DEFAULT_PORT_NUMBER;
|
|
|
|
|
|
|
|
// init requested host address with invalid address first
|
|
|
|
HostAddress = CHostAddress();
|
|
|
|
|
|
|
|
// parse input address for the type [IP address]:[port number]
|
|
|
|
QString strPort = strAddress.section ( ":", 1, 1 );
|
|
|
|
if ( !strPort.isEmpty() )
|
|
|
|
{
|
|
|
|
// a colon is present in the address string, try to extract port number
|
|
|
|
iNetPort = strPort.toInt();
|
|
|
|
|
|
|
|
// extract address port before colon (should be actual internet address)
|
|
|
|
strAddress = strAddress.section ( ":", 0, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// first try if this is an IP number an can directly applied to QHostAddress
|
|
|
|
if ( !InetAddr.setAddress ( strAddress ) )
|
|
|
|
{
|
|
|
|
// it was no vaild IP address, try to get host by name, assuming
|
|
|
|
// that the string contains a valid host name string
|
|
|
|
const QHostInfo HostInfo = QHostInfo::fromName ( strAddress );
|
|
|
|
|
|
|
|
if ( HostInfo.error() == QHostInfo::NoError )
|
|
|
|
{
|
|
|
|
// apply IP address to QT object
|
|
|
|
if ( !HostInfo.addresses().isEmpty() )
|
|
|
|
{
|
|
|
|
// use the first IP address
|
|
|
|
InetAddr = HostInfo.addresses().first();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false; // invalid address
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HostAddress = CHostAddress ( InetAddr, iNetPort );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-11 16:53:52 +01:00
|
|
|
// Instrument picture data base ------------------------------------------------
|
|
|
|
CVector<CInstPictures::CInstPictProps>& CInstPictures::GetTable()
|
|
|
|
{
|
|
|
|
// make sure we generate the table only once
|
|
|
|
static bool TableIsInitialized = false;
|
|
|
|
|
|
|
|
static CVector<CInstPictProps> vecDataBase;
|
|
|
|
|
|
|
|
if ( !TableIsInitialized )
|
|
|
|
{
|
|
|
|
// instrument picture data base initialization
|
|
|
|
// NOTE: Do not change the order of any instrument in the future!
|
|
|
|
// NOTE: The very first entry is the "not used" element per definition.
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "None", ":/png/instr/res/instrnone.png", IC_OTHER_INSTRUMENT ) ); // special first element
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Drum Set", ":/png/instr/res/instrdrumset.png", IC_PERCUSSION_INSTRUMENT ) );
|
2013-02-11 18:56:38 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "Djembe", ":/png/instr/res/instrdjembe.png", IC_PERCUSSION_INSTRUMENT ) );
|
2013-02-11 16:53:52 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "Electric Guitar", ":/png/instr/res/instreguitar.png", IC_PLUCKING_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Acoutic Guitar", ":/png/instr/res/instraguitar.png", IC_PLUCKING_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Bass Guitar", ":/png/instr/res/instrbassguitar.png", IC_PLUCKING_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Keyboard", ":/png/instr/res/instrkeyboard.png", IC_KEYBOARD_INSTRUMENT ) );
|
2013-02-11 18:56:38 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "Synthesizer", ":/png/instr/res/instrsynthesizer.png", IC_KEYBOARD_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Grand Piano", ":/png/instr/res/instrgrandpiano.png", IC_KEYBOARD_INSTRUMENT ) );
|
2013-02-11 16:53:52 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "Accordeon", ":/png/instr/res/instraccordeon.png", IC_KEYBOARD_INSTRUMENT ) );
|
2013-02-11 18:56:38 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "Vocal", ":/png/instr/res/instrvocal.png", IC_OTHER_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Microphone", ":/png/instr/res/instrmicrophone.png", IC_OTHER_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Harmonica", ":/png/instr/res/instrharmonica.png", IC_WIND_INSTRUMENT ) );
|
2013-02-11 16:53:52 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "Trumpet", ":/png/instr/res/instrtrumpet.png", IC_WIND_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Trombone", ":/png/instr/res/instrtrombone.png", IC_WIND_INSTRUMENT ) );
|
2013-02-11 18:56:38 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "French Horn", ":/png/instr/res/instrfrenchhorn.png", IC_WIND_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Tuba", ":/png/instr/res/instrtuba.png", IC_WIND_INSTRUMENT ) );
|
2013-02-11 16:53:52 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "Saxophone", ":/png/instr/res/instrsaxophone.png", IC_WIND_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Clarinet", ":/png/instr/res/instrclarinet.png", IC_WIND_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Flute", ":/png/instr/res/instrflute.png", IC_WIND_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Violin", ":/png/instr/res/instrviolin.png", IC_STRING_INSTRUMENT ) );
|
|
|
|
vecDataBase.Add ( CInstPictProps ( "Cello", ":/png/instr/res/instrcello.png", IC_STRING_INSTRUMENT ) );
|
2013-02-11 18:56:38 +01:00
|
|
|
vecDataBase.Add ( CInstPictProps ( "Double Bass", ":/png/instr/res/instrdoublebass.png", IC_STRING_INSTRUMENT ) );
|
2013-02-11 16:53:52 +01:00
|
|
|
|
|
|
|
// now the table is initialized
|
|
|
|
TableIsInitialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return vecDataBase;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CInstPictures::IsInstIndexInRange ( const int iIdx )
|
|
|
|
{
|
|
|
|
// check if index is in valid range
|
|
|
|
return ( iIdx >= 0 ) && ( iIdx < GetTable().Size() );
|
|
|
|
}
|
|
|
|
|
|
|
|
QString CInstPictures::GetResourceReference ( const int iInstrument )
|
|
|
|
{
|
|
|
|
// range check
|
|
|
|
if ( IsInstIndexInRange ( iInstrument ) )
|
|
|
|
{
|
|
|
|
// return the string of the resource reference for accessing the picture
|
|
|
|
return GetTable()[iInstrument].strResourceReference;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString CInstPictures::GetName ( const int iInstrument )
|
|
|
|
{
|
|
|
|
// range check
|
|
|
|
if ( IsInstIndexInRange ( iInstrument ) )
|
|
|
|
{
|
|
|
|
// return the name of the instrument
|
|
|
|
return GetTable()[iInstrument].strName;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-09 14:49:47 +02:00
|
|
|
/******************************************************************************\
|
|
|
|
* Global Functions Implementation *
|
|
|
|
\******************************************************************************/
|
|
|
|
void DebugError ( const QString& pchErDescr,
|
|
|
|
const QString& pchPar1Descr,
|
|
|
|
const double dPar1,
|
|
|
|
const QString& pchPar2Descr,
|
|
|
|
const double dPar2 )
|
|
|
|
{
|
|
|
|
QFile File ( "DebugError.dat" );
|
|
|
|
if ( File.open ( QIODevice::Append ) )
|
|
|
|
{
|
|
|
|
// append new line in logging file
|
|
|
|
QTextStream out ( &File );
|
|
|
|
out << pchErDescr << " ### " <<
|
|
|
|
pchPar1Descr << ": " << QString().setNum ( dPar1, 'f', 2 ) <<
|
|
|
|
" ### " <<
|
|
|
|
pchPar2Descr << ": " << QString().setNum ( dPar2, 'f', 2 ) <<
|
|
|
|
endl;
|
|
|
|
|
|
|
|
File.close();
|
|
|
|
}
|
|
|
|
printf ( "\nDebug error! For more information see test/DebugError.dat\n" );
|
|
|
|
exit ( 1 );
|
|
|
|
}
|