os/mm/devsoundextensions/effects/EffectTest/EffectConsoleTest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/devsoundextensions/effects/EffectTest/EffectConsoleTest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,990 @@
     1.4 +/*
     1.5 +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:  Effects console test implementation
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +#include "EffectConsoleTest.h"
    1.24 +
    1.25 +_LIT(KNewLine,"\n");
    1.26 +
    1.27 +//////////////////////////////////////////////////////////////////////////////
    1.28 +//
    1.29 +// -----> CmyActiveScheduler (implementation)
    1.30 +//
    1.31 +//////////////////////////////////////////////////////////////////////////////
    1.32 +void CmyActiveScheduler::Error(TInt aError) const
    1.33 +	{
    1.34 +	_LIT(KMsgSchedErr,"CmyActiveScheduler-error");
    1.35 +	User::Panic(KMsgSchedErr,aError);
    1.36 +	}
    1.37 +
    1.38 +
    1.39 +//////////////////////////////////////////////////////////////////////////////
    1.40 +//
    1.41 +// -----> CActiveConsole (implementation)
    1.42 +//
    1.43 +//////////////////////////////////////////////////////////////////////////////
    1.44 +CActiveConsole::CActiveConsole( CConsoleBase* aConsole)
    1.45 +	: CActive(CActive::EPriorityStandard)
    1.46 +	  // Construct high-priority active object
    1.47 +	{
    1.48 +	iConsole = aConsole;
    1.49 +	}
    1.50 +
    1.51 +void CActiveConsole::ConstructL()
    1.52 +	{
    1.53 +	  // Add to active scheduler
    1.54 +	CActiveScheduler::Add(this);
    1.55 +	}
    1.56 +
    1.57 +CActiveConsole::~CActiveConsole()
    1.58 +	{
    1.59 +	// Make sure we're cancelled
    1.60 +	Cancel();
    1.61 +	}
    1.62 +
    1.63 +void  CActiveConsole::DoCancel()
    1.64 +	{
    1.65 +	iConsole->ReadCancel();
    1.66 +	}
    1.67 +
    1.68 +void  CActiveConsole::RunL()
    1.69 +	{
    1.70 +	  // Handle completed request
    1.71 +	ProcessKeyPress(TChar(iConsole->KeyCode()));
    1.72 +	}
    1.73 +
    1.74 +void CActiveConsole::RequestCharacter()
    1.75 +	{
    1.76 +	  // A request is issued to the CConsoleBase to accept a
    1.77 +	  // character from the keyboard.
    1.78 +	iConsole->Read(iStatus);
    1.79 +	SetActive();
    1.80 +	}
    1.81 +
    1.82 +
    1.83 +//////////////////////////////////////////////////////////////////////////////
    1.84 +//
    1.85 +// -----> CWriteKeyProcessor (implementation)
    1.86 +//
    1.87 +//////////////////////////////////////////////////////////////////////////////
    1.88 +CConsoleTest::CConsoleTest(CConsoleBase* aConsole)
    1.89 +	:	CActiveConsole(aConsole),
    1.90 +		iMenu(EMain)
    1.91 +	{
    1.92 +	iEqualizer = NULL;
    1.93 +	iEnvironmentalReverb = NULL;
    1.94 +	iStereoWidening = NULL;
    1.95 +	iInitStatus = -1;
    1.96 +	};
    1.97 +
    1.98 +CConsoleTest::~CConsoleTest()
    1.99 +{
   1.100 +	RDebug::Print(_L("CConsoleTest::~CConsoleTest\n"));
   1.101 +	// Make sure we're cancelled
   1.102 +	Cancel();
   1.103 +
   1.104 +	delete iPlayerAudioEqualizer;
   1.105 +	delete iPlayerEnvironmentalReverb;
   1.106 +	delete iPlayerStereoWidening;
   1.107 +	delete iRecorderAudioEqualizer;
   1.108 +	delete iRecorderEnvironmentalReverb;
   1.109 +	delete iRecorderStereoWidening;
   1.110 +
   1.111 +	delete iCIUtility;
   1.112 +
   1.113 +	delete iAudioPlayer;
   1.114 +	delete iAudioRecorder;
   1.115 +	delete iAudioConverter;
   1.116 +
   1.117 +	iGoodData.Close();
   1.118 +	iBadData.Close();
   1.119 +
   1.120 +	iFs.Close();
   1.121 +
   1.122 +}
   1.123 +
   1.124 +void CConsoleTest::ConstructL()
   1.125 +{
   1.126 +	User::LeaveIfError(iFs.Connect());
   1.127 +
   1.128 +	iAudioPlayer = CMdaAudioPlayerUtility::NewFilePlayerL(KAMRTestFile, *this);
   1.129 +	//iAudioRecorder = CMdaAudioRecorderUtility::NewL(*this);
   1.130 +	//iAudioConverter = CMdaAudioConvertUtility::NewL(*this);
   1.131 +
   1.132 +	//iAudioPlayer->OpenFileL(KWAVTestFile);
   1.133 +
   1.134 +	// Add to active scheduler
   1.135 +	CActiveScheduler::Add(this);
   1.136 +	InitializeTestData();
   1.137 +}
   1.138 +
   1.139 +CConsoleTest* CConsoleTest::NewLC(CConsoleBase* aConsole)
   1.140 +{
   1.141 +	CConsoleTest* self=new (ELeave) CConsoleTest(aConsole);
   1.142 +	CleanupStack::PushL(self);
   1.143 +	self->ConstructL();
   1.144 +	return self;
   1.145 +}
   1.146 +
   1.147 +CConsoleTest* CConsoleTest::NewL(CConsoleBase* aConsole)
   1.148 +{
   1.149 +	CConsoleTest* self=NewLC(aConsole);
   1.150 +	CleanupStack::Pop();
   1.151 +	return self;
   1.152 +}
   1.153 +
   1.154 +
   1.155 +
   1.156 +void CConsoleTest::ProcessKeyPress(TChar aChar)
   1.157 +{
   1.158 +//	iConsole->Printf(_L("You pressed: %d\n"), (TUint) aChar);
   1.159 +
   1.160 +	  // if key is ESC
   1.161 +	  //   cancel any outstanding request
   1.162 +	  //   stop the scheduler
   1.163 +      TInt err(KErrNone);
   1.164 +#ifdef __WINS__
   1.165 +	if (aChar == EKeyEscape)
   1.166 +#else
   1.167 +	if (aChar == ' ')
   1.168 +#endif
   1.169 +	{
   1.170 +		Cancel();
   1.171 +		CActiveScheduler::Stop();
   1.172 +		return;
   1.173 +	}
   1.174 +
   1.175 +	if (aChar == EKeyEnter)
   1.176 +	{
   1.177 +		iConsole->Printf(KNewLine);
   1.178 +		// Issue another request
   1.179 +		RequestCharacter();
   1.180 +		return;
   1.181 +	}
   1.182 +
   1.183 +#ifdef __WINS__
   1.184 +	if (aChar == '?')
   1.185 +#else
   1.186 +	if (aChar == '7')
   1.187 +#endif
   1.188 +	{
   1.189 +		ShowMenu();
   1.190 +		// Issue another request
   1.191 +		RequestCharacter();
   1.192 +		return;
   1.193 +	}
   1.194 +
   1.195 +	switch (iMenu)
   1.196 +	{
   1.197 +	case EMain:
   1.198 +		ProcessMain(aChar);
   1.199 +		break;
   1.200 +
   1.201 +	case EPlay:
   1.202 +		TRAP(err,ProcessPlayL(aChar));
   1.203 +		break;
   1.204 +
   1.205 +	case ERecord:
   1.206 +		//ProcessRecord(aChar);
   1.207 +		break;
   1.208 +
   1.209 +	case EEqualizer:
   1.210 +		TRAP(err,ProcessEqualizerL(aChar));
   1.211 +		break;
   1.212 +
   1.213 +	case EBandId:
   1.214 +		ProcessBandId(aChar);
   1.215 +		break;
   1.216 +
   1.217 +	case EBandLevel:
   1.218 +		TRAP(err,ProcessBandLevelL(aChar));
   1.219 +		break;
   1.220 +
   1.221 +	case EEnvironmentalReverb1:
   1.222 +		TRAP(err,ProcessEnvironmentalReverbL(aChar));
   1.223 +		break;
   1.224 +
   1.225 +	case EEnvironmentalReverb2:
   1.226 +		break;
   1.227 +
   1.228 +	case EStereoWideningLevel:
   1.229 +		TRAP(err,ProcessStereoWideningLevelL(aChar));
   1.230 +		break;
   1.231 +
   1.232 +	case EStereoWidening:
   1.233 +		TRAP(err,ProcessStereoWideningL(aChar));
   1.234 +		break;
   1.235 +
   1.236 +
   1.237 +	default:
   1.238 +		iConsole->Printf(_L("ProcessKeyPress - Unknown function\n"));
   1.239 +		// Issue another request
   1.240 +		RequestCharacter();
   1.241 +		break;
   1.242 +	}
   1.243 +}
   1.244 +
   1.245 +
   1.246 +void CConsoleTest::ShowMenu()
   1.247 +{
   1.248 +	iConsole->ClearScreen();
   1.249 +	switch (iMenu)
   1.250 +	{
   1.251 +	case EMain:
   1.252 +		iConsole->Printf(_L("1: Player\n"));
   1.253 +		iConsole->Printf(_L("2: Recorder\n"));
   1.254 +		iConsole->Printf(_L("3: Converter\n"));
   1.255 +		iConsole->Printf(_L("9: Exit\n"));
   1.256 +		break;
   1.257 +
   1.258 +	case EPlay:
   1.259 +	case ERecord:
   1.260 +	case EConvert:
   1.261 +		iConsole->Printf(_L("0: Main Menu\n"));
   1.262 +		iConsole->Printf(_L("1: Equalizer\n"));
   1.263 +		iConsole->Printf(_L("2: Env Reverb\n"));
   1.264 +		iConsole->Printf(_L("3: StereoWidening\n"));
   1.265 +
   1.266 +		break;
   1.267 +
   1.268 +	case EEqualizer:
   1.269 +		iConsole->Printf(_L("0: Main Menu\n"));
   1.270 +		iConsole->Printf(_L("1: Enable/Disable\n"));
   1.271 +		iConsole->Printf(_L("2: Toggle Enforce\n"));
   1.272 +		iConsole->Printf(_L("3: Set Band Level\n"));
   1.273 +		iConsole->Printf(_L("4: Show Equalizer info\n"));
   1.274 +		iConsole->Printf(_L("5: Show Band info\n"));
   1.275 +		iConsole->Printf(_L("6: Apply Settings\n"));
   1.276 +		iConsole->Printf(_L("9: Delete Equalizer\n"));
   1.277 +		break;
   1.278 +
   1.279 +	case EBandLevel:
   1.280 +		iConsole->Printf(_L("0: Equalizer Menu\n"));
   1.281 +		iConsole->Printf(_L("1: Band Level Up\n"));
   1.282 +		iConsole->Printf(_L("2: Band Level Down\n"));
   1.283 +		iConsole->Printf(_L("3: Show Band info\n"));
   1.284 +		break;
   1.285 +
   1.286 +	case EEnvironmentalReverb1:
   1.287 +		iConsole->Printf(_L("0: Main Menu\n"));
   1.288 +		iConsole->Printf(_L("1: Enable/Disable\n"));
   1.289 +		iConsole->Printf(_L("2: Toggle Enforce\n"));
   1.290 +		iConsole->Printf(_L("3: Test Case 1\n"));
   1.291 +		iConsole->Printf(_L("4: Test Case 2\n"));
   1.292 +		iConsole->Printf(_L("5: Test Case 3\n"));
   1.293 +		iConsole->Printf(_L("6: Undef\n"));
   1.294 +		iConsole->Printf(_L("7: Undef\n"));
   1.295 +		iConsole->Printf(_L("8: Apply Settings\n"));
   1.296 +		iConsole->Printf(_L("9: Del Env Reverb\n"));
   1.297 +		break;
   1.298 +	case EEnvironmentalReverb2:
   1.299 +		iConsole->Printf(_L("0: Main Menu\n"));
   1.300 +		iConsole->Printf(_L("1: \n"));
   1.301 +		iConsole->Printf(_L("2: \n"));
   1.302 +		iConsole->Printf(_L("3: \n"));
   1.303 +		iConsole->Printf(_L("4: \n"));
   1.304 +		iConsole->Printf(_L("5: \n"));
   1.305 +		iConsole->Printf(_L("6: \n"));
   1.306 +		iConsole->Printf(_L("7: More\n"));
   1.307 +		iConsole->Printf(_L("8: Apply Settings\n"));
   1.308 +		iConsole->Printf(_L("9: Del Env Reverb\n"));
   1.309 +		break;
   1.310 +
   1.311 +	case EStereoWidening:
   1.312 +		iConsole->Printf(_L("0: Main Menu\n"));
   1.313 +		iConsole->Printf(_L("1: Enable/Disable\n"));
   1.314 +		iConsole->Printf(_L("2: Toggle Enforce\n"));
   1.315 +		iConsole->Printf(_L("3: Set Widening Level\n"));
   1.316 +		iConsole->Printf(_L("4: Apply Settings\n"));
   1.317 +		iConsole->Printf(_L("9: Delete Effect\n"));
   1.318 +		break;
   1.319 +
   1.320 +
   1.321 +	case EStereoWideningLevel:
   1.322 +		iConsole->Printf(_L("0: StereoWidening Menu\n"));
   1.323 +		iConsole->Printf(_L("1: Level Up\n"));
   1.324 +		iConsole->Printf(_L("2: Level Down\n"));
   1.325 +		iConsole->Printf(_L("3: Show Effect info\n"));
   1.326 +		iConsole->Printf(_L("9: Go Back\n"));
   1.327 +		break;
   1.328 +
   1.329 +
   1.330 +
   1.331 +		default:
   1.332 +		// Do nothing
   1.333 +		break;
   1.334 +	}
   1.335 +	iConsole->Printf(KNewLine);
   1.336 +}
   1.337 +
   1.338 +
   1.339 +
   1.340 +//////////////////////////////////////////////////////////////////////////////
   1.341 +//
   1.342 +// -----> MAIN
   1.343 +//
   1.344 +//////////////////////////////////////////////////////////////////////////////
   1.345 +
   1.346 +void CConsoleTest::ProcessMain(TChar aChar)
   1.347 +{
   1.348 +
   1.349 +	if ( !iInitStatus )
   1.350 +	{
   1.351 +		switch (aChar)
   1.352 +		{
   1.353 +		case '1':
   1.354 +			iMenu = iParentMenu = EPlay;
   1.355 +			ShowMenu();
   1.356 +			break;
   1.357 +
   1.358 +		case '2':
   1.359 +			iMenu = iParentMenu = EPlay;
   1.360 +			ShowMenu();
   1.361 +			break;
   1.362 +
   1.363 +		case '3':
   1.364 +			iMenu = iParentMenu = EPlay;
   1.365 +			ShowMenu();
   1.366 +			break;
   1.367 +
   1.368 +		case '9':
   1.369 +			iConsole->Printf(_L("Stopping Scheduler...\n"));
   1.370 +			CActiveScheduler::Stop();
   1.371 +			iConsole->Printf(_L("Exiting...\n"));
   1.372 +			break;
   1.373 +
   1.374 +
   1.375 +		default:
   1.376 +			iConsole->Printf(_L("ProcessMain - Unknown command\n"));
   1.377 +			break;
   1.378 +		};
   1.379 +	}
   1.380 +	else
   1.381 +		iConsole->Printf(_L("Not Ready!\n"));
   1.382 +
   1.383 +
   1.384 +
   1.385 +	// Issue another request
   1.386 +	RequestCharacter();
   1.387 +}
   1.388 +
   1.389 +
   1.390 +//////////////////////////////////////////////////////////////////////////////
   1.391 +//
   1.392 +// -----> Play menu
   1.393 +//
   1.394 +//////////////////////////////////////////////////////////////////////////////
   1.395 +
   1.396 +void CConsoleTest::ProcessPlayL(TChar aChar)
   1.397 +{
   1.398 +	switch (aChar)
   1.399 +	{
   1.400 +	case '0':	// Main Menu
   1.401 +		iMenu = EMain;
   1.402 +		ShowMenu();
   1.403 +		break;
   1.404 +
   1.405 +	case '1':	// Equalizer
   1.406 +		iMenu = EEqualizer;
   1.407 +		if (!iPlayerAudioEqualizer)
   1.408 +			{
   1.409 +			iPlayerAudioEqualizer = CAudioEqualizer::NewL(*iAudioPlayer);
   1.410 +			iPlayerAudioEqualizer->RegisterObserverL(*this);
   1.411 +			}
   1.412 +		iAudioEqualizer = iPlayerAudioEqualizer;
   1.413 +		ShowMenu();
   1.414 +		break;
   1.415 +
   1.416 +	case '2':	// Environmental Reverb
   1.417 +		iMenu = EEnvironmentalReverb1;
   1.418 +		if (!iPlayerEnvironmentalReverb)
   1.419 +			{
   1.420 +			iPlayerEnvironmentalReverb = CEnvironmentalReverb::NewL(*iAudioPlayer);
   1.421 +			iPlayerEnvironmentalReverb->RegisterObserverL(*this);
   1.422 +			}
   1.423 +		iEnvironmentalReverb = iPlayerEnvironmentalReverb;
   1.424 +		ShowMenu();
   1.425 +		break;
   1.426 +
   1.427 +
   1.428 +	case '3':	// Stereo Widening
   1.429 +		iMenu = EStereoWidening;
   1.430 +		if (!iPlayerStereoWidening)
   1.431 +			{
   1.432 +			iPlayerStereoWidening = CStereoWidening::NewL(*iAudioPlayer,EFalse,5);
   1.433 +			iPlayerStereoWidening->RegisterObserverL(*this);
   1.434 +			}
   1.435 +		iStereoWidening = iPlayerStereoWidening;
   1.436 +		ShowMenu();
   1.437 +		break;
   1.438 +
   1.439 +
   1.440 +
   1.441 +	default:
   1.442 +		iConsole->Printf(_L("Play Menu - Unknown command\n"));
   1.443 +		break;
   1.444 +	};
   1.445 +
   1.446 +	// Issue another request
   1.447 +	RequestCharacter();
   1.448 +}
   1.449 +
   1.450 +
   1.451 +
   1.452 +//////////////////////////////////////////////////////////////////////////////
   1.453 +//
   1.454 +// -----> Equalizer Menu
   1.455 +//
   1.456 +//////////////////////////////////////////////////////////////////////////////
   1.457 +
   1.458 +
   1.459 +void CConsoleTest::ProcessEqualizerL(TChar aChar)
   1.460 +{
   1.461 +	TInt32 min, max;
   1.462 +
   1.463 +	switch (aChar)
   1.464 +	{
   1.465 +	case '0':	// Main Menu
   1.466 +		iMenu = EMain;
   1.467 +		ShowMenu();
   1.468 +		break;
   1.469 +
   1.470 +	case '1':	// Enable / disable
   1.471 +		if ( iAudioEqualizer->IsEnabled() )
   1.472 +			iAudioEqualizer->DisableL();
   1.473 +		else
   1.474 +			iAudioEqualizer->EnableL();
   1.475 +
   1.476 +		break;
   1.477 +
   1.478 +	case '2':	// Enforce
   1.479 +		if ( iAudioEqualizer->IsEnforced() )
   1.480 +			iAudioEqualizer->EnforceL(EFalse);
   1.481 +		else
   1.482 +			iAudioEqualizer->EnforceL(ETrue);
   1.483 +		break;
   1.484 +
   1.485 +	case '3':	// Set Band Level
   1.486 +		iMenu = EBandId;
   1.487 +		iConsole->Printf(_L("Enter Band ID: "));
   1.488 +		break;
   1.489 +
   1.490 +	case '4':	// Print Equalizer information
   1.491 +		iConsole->Printf(_L("Enabled: %d\n"), iAudioEqualizer->IsEnabled());
   1.492 +		iConsole->Printf(_L("Enforced: %d\n"), iAudioEqualizer->IsEnforced());
   1.493 +		iConsole->Printf(_L("Number Of Bands: %d\n"), iAudioEqualizer->NumberOfBands());
   1.494 +		iAudioEqualizer->DbLevelLimits(min,max);
   1.495 +		iConsole->Printf(_L("Db Min %d, Max %d\n"), min, max );
   1.496 +		break;
   1.497 +
   1.498 +	case '5':	// Print Band Info
   1.499 +		iMenu = EBandId;
   1.500 +		iConsole->Printf(_L("Enter Band ID: "));
   1.501 +		break;
   1.502 +
   1.503 +	case '6':	// Apply Settings
   1.504 +		iAudioEqualizer->ApplyL();
   1.505 +		break;
   1.506 +
   1.507 +	case '9':	// Delete volume object
   1.508 +		if (iParentMenu == EPlay)
   1.509 +			{
   1.510 +			delete iAudioEqualizer;
   1.511 +			iAudioEqualizer = NULL;
   1.512 +			iPlayerAudioEqualizer = NULL;
   1.513 +			}
   1.514 +
   1.515 +		if (iParentMenu == ERecord)
   1.516 +			{
   1.517 +			delete iAudioEqualizer;
   1.518 +			iAudioEqualizer = NULL;
   1.519 +			iRecorderAudioEqualizer = NULL;
   1.520 +			}
   1.521 +		break;
   1.522 +
   1.523 +	default:
   1.524 +		iConsole->Printf(_L("ProcessEqualizerL - Unknown command\n"));
   1.525 +		break;
   1.526 +	};
   1.527 +
   1.528 +	// Issue another request
   1.529 +	RequestCharacter();
   1.530 +}
   1.531 +
   1.532 +
   1.533 +//////////////////////////////////////////////////////////////////////////////
   1.534 +//
   1.535 +// -----> Band Menu
   1.536 +//
   1.537 +//////////////////////////////////////////////////////////////////////////////
   1.538 +
   1.539 +
   1.540 +void CConsoleTest::ProcessBandId(TChar aChar)
   1.541 +{
   1.542 +	iBandId = aChar.GetNumericValue();
   1.543 +	iMenu = EBandLevel;
   1.544 +	ShowMenu();
   1.545 +	RequestCharacter();
   1.546 +
   1.547 +}
   1.548 +
   1.549 +
   1.550 +void CConsoleTest::ProcessBandLevelL(TChar aChar)
   1.551 +{
   1.552 +	switch (aChar)
   1.553 +	{
   1.554 +	case '0':	// Main Menu
   1.555 +		iMenu = EEqualizer;
   1.556 +		ShowMenu();
   1.557 +		break;
   1.558 +
   1.559 +	case '1':	// Level UP
   1.560 +		ShowMenu();
   1.561 +		iAudioEqualizer->SetBandLevelL(iBandId, iAudioEqualizer->BandLevel(iBandId) + 1);
   1.562 +		iConsole->Printf(_L("Band[%d] Level[%d]\n"), iBandId, iAudioEqualizer->BandLevel(iBandId) );
   1.563 +		//iAudioEqualizer->ApplyL();
   1.564 +		break;
   1.565 +
   1.566 +	case '2':	// Level Down
   1.567 +		ShowMenu();
   1.568 +		iAudioEqualizer->SetBandLevelL(iBandId, iAudioEqualizer->BandLevel(iBandId) - 1);
   1.569 +		iConsole->Printf(_L("Band[%d] Level[%d]\n"), iBandId, iAudioEqualizer->BandLevel(iBandId) );
   1.570 +		//iAudioEqualizer->ApplyL();
   1.571 +		break;
   1.572 +
   1.573 +	case '3':	// Print Band information
   1.574 +		iConsole->Printf(_L("Band Number: %d\n"), iBandId);
   1.575 +		iConsole->Printf(_L("BandLevel: %d\n"), iAudioEqualizer->BandLevel(iBandId));
   1.576 +		iConsole->Printf(_L("BandWidth: %d\n"), iAudioEqualizer->BandWidth(iBandId));
   1.577 +		iConsole->Printf(_L("Crossover Fequency %d\n"), iAudioEqualizer->CrossoverFrequency(iBandId));
   1.578 +		iConsole->Printf(_L("Center Fequency %d\n"), iAudioEqualizer->CenterFrequency(iBandId));
   1.579 +		break;
   1.580 +
   1.581 +	default:
   1.582 +		iConsole->Printf(_L("ProcessEqualizerL - Unknown command\n"));
   1.583 +		break;
   1.584 +	};
   1.585 +
   1.586 +	// Issue another request
   1.587 +	RequestCharacter();
   1.588 +}
   1.589 +
   1.590 +//////////////////////////////////////////////////////////////////////////////
   1.591 +//
   1.592 +// -----> Stereo Widening Menu
   1.593 +//
   1.594 +//////////////////////////////////////////////////////////////////////////////
   1.595 +
   1.596 +
   1.597 +void CConsoleTest::ProcessStereoWideningL(TChar aChar)
   1.598 +{
   1.599 +
   1.600 +	switch (aChar)
   1.601 +	{
   1.602 +	case '0':	// Main Menu
   1.603 +		iMenu = EMain;
   1.604 +		ShowMenu();
   1.605 +		break;
   1.606 +
   1.607 +	case '1':	// Enable / disable
   1.608 +		if ( iStereoWidening->IsEnabled() )
   1.609 +			iStereoWidening->DisableL();
   1.610 +		else
   1.611 +			iStereoWidening->EnableL();
   1.612 +
   1.613 +		break;
   1.614 +
   1.615 +	case '2':	// Enforce
   1.616 +		if ( iStereoWidening->IsEnforced() )
   1.617 +			iStereoWidening->EnforceL(EFalse);
   1.618 +		else
   1.619 +			iStereoWidening->EnforceL(ETrue);
   1.620 +		break;
   1.621 +
   1.622 +	case '3':	// Set Stereo Widening Level
   1.623 +		iMenu = EStereoWideningLevel;
   1.624 +		break;
   1.625 +
   1.626 +	case '4':	// Apply Settings
   1.627 +		iStereoWidening->ApplyL();
   1.628 +		break;
   1.629 +
   1.630 +	case '9':	// Delete volume object
   1.631 +		if (iParentMenu == EPlay)
   1.632 +			{
   1.633 +			delete iStereoWidening;
   1.634 +			iStereoWidening = NULL;
   1.635 +			iPlayerStereoWidening = NULL;
   1.636 +			}
   1.637 +		if (iParentMenu == ERecord)
   1.638 +			{
   1.639 +			delete iStereoWidening;
   1.640 +			iStereoWidening = NULL;
   1.641 +			iRecorderStereoWidening = NULL;
   1.642 +			}
   1.643 +
   1.644 +			iMenu = EMain;
   1.645 +			ShowMenu();
   1.646 +			break;
   1.647 +
   1.648 +	default:
   1.649 +		iConsole->Printf(_L("ProcessStereoWideningL - Unknown command\n"));
   1.650 +		break;
   1.651 +	};
   1.652 +
   1.653 +	// Issue another request
   1.654 +	RequestCharacter();
   1.655 +}
   1.656 +
   1.657 +void CConsoleTest::ProcessStereoWideningLevelL(TChar aChar)
   1.658 +{
   1.659 +
   1.660 +	ShowMenu();
   1.661 +	switch (aChar)
   1.662 +	{
   1.663 +
   1.664 +	case '1':	// Level UP
   1.665 +		ShowMenu();
   1.666 +		iStereoWidening->SetStereoWideningLevelL(iStereoWidening->StereoWideningLevel() + 1);
   1.667 +		iConsole->Printf(_L("Level[%d]\n"), iStereoWidening->StereoWideningLevel() );
   1.668 +		break;
   1.669 +
   1.670 +	case '2':	// Level Down
   1.671 +		ShowMenu();
   1.672 +		iStereoWidening->SetStereoWideningLevelL(iStereoWidening->StereoWideningLevel() - 1);
   1.673 +		iConsole->Printf(_L("Level[%d]\n"), iStereoWidening->StereoWideningLevel() );
   1.674 +		break;
   1.675 +
   1.676 +	case '3':	// Print Level information
   1.677 +		iConsole->Printf(_L("Level: %d\n"), iStereoWidening->StereoWideningLevel());
   1.678 +		iConsole->Printf(_L("Continuous Level %d\n"), iStereoWidening->IsContinuousLevelSupported());
   1.679 +		break;
   1.680 +	case '9':	// Main Menu
   1.681 +		iMenu = EStereoWidening;
   1.682 +		ShowMenu();
   1.683 +		break;
   1.684 +
   1.685 +	default:
   1.686 +		iConsole->Printf(_L("ProcessStereoWideningL - Unknown command\n"));
   1.687 +		break;
   1.688 +	};
   1.689 +
   1.690 +	// Issue another request
   1.691 +	RequestCharacter();
   1.692 +}
   1.693 +
   1.694 +//////////////////////////////////////////////////////////////////////////////
   1.695 +//
   1.696 +// -----> Environmental reverb Menu
   1.697 +//
   1.698 +//////////////////////////////////////////////////////////////////////////////
   1.699 +
   1.700 +void CConsoleTest::InitializeTestData()
   1.701 +{
   1.702 +	iGoodData.Append(1000); // Decay HF Ratio
   1.703 +	iGoodData.Append(1000); // Decay Time
   1.704 +	iGoodData.Append(1000); // Density
   1.705 +	iGoodData.Append(1000); // Diffusion
   1.706 +	iGoodData.Append(1000); // Reflections Delay
   1.707 +	iGoodData.Append(1000); // Reflections Level
   1.708 +	iGoodData.Append(1000); // Reverb Delay
   1.709 +	iGoodData.Append(1000); // Reverb Level
   1.710 +	iGoodData.Append(1000); // Room HF Level
   1.711 +	iGoodData.Append(1000); // Room Level
   1.712 +
   1.713 +	iBadData.Append(50000); // Decay HF Ratio
   1.714 +	iBadData.Append(300000); // Decay Time
   1.715 +	iBadData.Append(10005); // Density
   1.716 +	iBadData.Append(10005); // Diffusion
   1.717 +	iBadData.Append(300000); // Reflections Delay
   1.718 +	iBadData.Append(2000); // Reflections Level
   1.719 +	iBadData.Append(300000); // Reverb Delay
   1.720 +	iBadData.Append(2000); // Reverb Level
   1.721 +	iBadData.Append(2000); // Room HF Level
   1.722 +	iBadData.Append(2000); // Room Level
   1.723 +
   1.724 +}
   1.725 +
   1.726 +void CConsoleTest::ProcessEnvironmentalReverbL(TChar aChar)
   1.727 +{
   1.728 +
   1.729 +	switch (aChar)
   1.730 +	{
   1.731 +	case '0':	// Main Menu
   1.732 +		iMenu = EMain;
   1.733 +		ShowMenu();
   1.734 +		break;
   1.735 +
   1.736 +	case '1':	// Enable / disable
   1.737 +		if ( iEnvironmentalReverb->IsEnabled() )
   1.738 +			iEnvironmentalReverb->DisableL();
   1.739 +		else
   1.740 +			iEnvironmentalReverb->EnableL();
   1.741 +
   1.742 +		break;
   1.743 +
   1.744 +	case '2':	// Enforce
   1.745 +		if ( iEnvironmentalReverb->IsEnforced() )
   1.746 +			iEnvironmentalReverb->EnforceL(EFalse);
   1.747 +		else
   1.748 +			iEnvironmentalReverb->EnforceL(ETrue);
   1.749 +		break;
   1.750 +
   1.751 +	case '3':	// Test 1: Setters normal case
   1.752 +		TestCase1();
   1.753 +		break;
   1.754 +
   1.755 +	case '4':	// Test 2: Setters abnormal case
   1.756 +		TestCase2();
   1.757 +		break;
   1.758 +
   1.759 +	case '5':	// Test 3: Getters abnormal case
   1.760 +		TestCase3();
   1.761 +		break;
   1.762 +
   1.763 +	case '8':	// Apply Settings
   1.764 +		iEnvironmentalReverb->ApplyL();
   1.765 +		break;
   1.766 +
   1.767 +	case '9':	// Delete environmental reverb object
   1.768 +		if (iParentMenu == EPlay)
   1.769 +			{
   1.770 +			delete iEnvironmentalReverb;
   1.771 +			iEnvironmentalReverb = NULL;
   1.772 +			iPlayerEnvironmentalReverb = NULL;
   1.773 +			}
   1.774 +
   1.775 +		if (iParentMenu == ERecord)
   1.776 +			{
   1.777 +			delete iEnvironmentalReverb;
   1.778 +			iEnvironmentalReverb = NULL;
   1.779 +			iRecorderEnvironmentalReverb = NULL;
   1.780 +			}
   1.781 +		break;
   1.782 +
   1.783 +	default:
   1.784 +		iConsole->Printf(_L("ProcessEnvironmentalReverbL - Unknown command\n"));
   1.785 +		break;
   1.786 +	};
   1.787 +
   1.788 +	// Issue another request
   1.789 +	RequestCharacter();
   1.790 +}
   1.791 +
   1.792 +void CConsoleTest::TestCase1()
   1.793 +{
   1.794 +	TRAPD(err1, iEnvironmentalReverb->SetDecayHFRatioL(iGoodData[0]));
   1.795 +	iConsole->Printf(_L("Result 1.1 - %d\n"),err1);
   1.796 +	TRAPD(err2, iEnvironmentalReverb->SetDecayTimeL(iGoodData[1]));
   1.797 +	iConsole->Printf(_L("Result 1.2 - %d\n"),err2);
   1.798 +	TRAPD(err3, iEnvironmentalReverb->SetDensityL(iGoodData[2]));
   1.799 +	iConsole->Printf(_L("Result 1.3 - %d\n"),err3);
   1.800 +	TRAPD(err4, iEnvironmentalReverb->SetDiffusionL(iGoodData[3]));
   1.801 +	iConsole->Printf(_L("Result 1.4 - %d\n"),err4);
   1.802 +	TRAPD(err5, iEnvironmentalReverb->SetReflectionsDelayL(iGoodData[4]));
   1.803 +	iConsole->Printf(_L("Result 1.5 - %d\n"),err5);
   1.804 +	TRAPD(err6, iEnvironmentalReverb->SetReverbDelayL(iGoodData[6]));
   1.805 +	iConsole->Printf(_L("Result 1.6 - %d\n"),err6);
   1.806 +	TRAPD(err7, iEnvironmentalReverb->SetReverbLevelL(iGoodData[7]));
   1.807 +	iConsole->Printf(_L("Result 1.7 - %d\n"),err7);
   1.808 +	TRAPD(err8, iEnvironmentalReverb->SetRoomHFLevelL(iGoodData[8]));
   1.809 +	iConsole->Printf(_L("Result 1.8 - %d\n"),err8);
   1.810 +	TRAPD(err9, iEnvironmentalReverb->SetRoomLevelL(iGoodData[9]));
   1.811 +	iConsole->Printf(_L("Result 1.9 - %d\n"),err9);
   1.812 +	TRAPD(err10, iEnvironmentalReverb->SetReflectionsLevelL(iGoodData[5]));
   1.813 +	iConsole->Printf(_L("Result 1.10 - %d\n"),err10);
   1.814 +}
   1.815 +
   1.816 +void CConsoleTest::TestCase2()
   1.817 +{
   1.818 +	TRAPD(err1, iEnvironmentalReverb->SetDecayHFRatioL(iBadData[0]));
   1.819 +	iConsole->Printf(_L("Result 1.1 - %d\n"),err1);
   1.820 +	TRAPD(err2, iEnvironmentalReverb->SetDecayTimeL(iBadData[1]));
   1.821 +	iConsole->Printf(_L("Result 1.2 - %d\n"),err2);
   1.822 +	TRAPD(err3, iEnvironmentalReverb->SetDensityL(iBadData[2]));
   1.823 +	iConsole->Printf(_L("Result 1.3 - %d\n"),err3);
   1.824 +	TRAPD(err4, iEnvironmentalReverb->SetDiffusionL(iBadData[3]));
   1.825 +	iConsole->Printf(_L("Result 1.4 - %d\n"),err4);
   1.826 +	TRAPD(err5, iEnvironmentalReverb->SetReflectionsDelayL(iBadData[4]));
   1.827 +	iConsole->Printf(_L("Result 1.5 - %d\n"),err5);
   1.828 +	TRAPD(err6, iEnvironmentalReverb->SetReverbDelayL(iBadData[6]));
   1.829 +	iConsole->Printf(_L("Result 1.6 - %d\n"),err6);
   1.830 +	TRAPD(err7, iEnvironmentalReverb->SetReverbLevelL(iBadData[7]));
   1.831 +	iConsole->Printf(_L("Result 1.7 - %d\n"),err7);
   1.832 +	TRAPD(err8, iEnvironmentalReverb->SetRoomHFLevelL(iBadData[8]));
   1.833 +	iConsole->Printf(_L("Result 1.8 - %d\n"),err8);
   1.834 +	TRAPD(err9, iEnvironmentalReverb->SetRoomLevelL(iBadData[9]));
   1.835 +	iConsole->Printf(_L("Result 1.9 - %d\n"),err9);
   1.836 +	TRAPD(err10, iEnvironmentalReverb->SetReflectionsLevelL(iBadData[5]));
   1.837 +	iConsole->Printf(_L("Result 1.10 - %d\n"),err10);
   1.838 +}
   1.839 +
   1.840 +void CConsoleTest::TestCase3()
   1.841 +{
   1.842 +	if ( iEnvironmentalReverb->DecayHFRatio() == iGoodData[0] )
   1.843 +		iConsole->Printf(_L("Result 3.1 - 1\n"));
   1.844 +	else
   1.845 +		iConsole->Printf(_L("Result 3.1 - 0\n"));
   1.846 +
   1.847 +	if ( iEnvironmentalReverb->DecayTime() == iGoodData[1] )
   1.848 +		iConsole->Printf(_L("Result 3.2 - 1\n"));
   1.849 +	else
   1.850 +		iConsole->Printf(_L("Result 3.2 - 0\n"));
   1.851 +
   1.852 +	if ( iEnvironmentalReverb->Density() == iGoodData[2] )
   1.853 +		iConsole->Printf(_L("Result 3.3 - 1\n"));
   1.854 +	else
   1.855 +		iConsole->Printf(_L("Result 3.3 - 0\n"));
   1.856 +
   1.857 +	if ( iEnvironmentalReverb->Diffusion() == iGoodData[3] )
   1.858 +		iConsole->Printf(_L("Result 3.4 - 1\n"));
   1.859 +	else
   1.860 +		iConsole->Printf(_L("Result 3.4 - 0\n"));
   1.861 +
   1.862 +	if ( iEnvironmentalReverb->ReflectionsDelay() == iGoodData[4] )
   1.863 +		iConsole->Printf(_L("Result 3.5 - 1\n"));
   1.864 +	else
   1.865 +		iConsole->Printf(_L("Result 3.5 - 0\n"));
   1.866 +
   1.867 +	if ( iEnvironmentalReverb->ReflectionsLevel() == iGoodData[5] )
   1.868 +		iConsole->Printf(_L("Result 3.6 - 1\n"));
   1.869 +	else
   1.870 +		iConsole->Printf(_L("Result 3.6 - 0\n"));
   1.871 +
   1.872 +	if ( iEnvironmentalReverb->ReverbDelay() == iGoodData[6] )
   1.873 +		iConsole->Printf(_L("Result 3.7 - 1\n"));
   1.874 +	else
   1.875 +		iConsole->Printf(_L("Result 3.7 - 0\n"));
   1.876 +
   1.877 +	if ( iEnvironmentalReverb->ReverbLevel() == iGoodData[7] )
   1.878 +		iConsole->Printf(_L("Result 3.8 - 1\n"));
   1.879 +	else
   1.880 +		iConsole->Printf(_L("Result 3.8 - 0\n"));
   1.881 +
   1.882 +	if ( iEnvironmentalReverb->RoomHFLevel() == iGoodData[8] )
   1.883 +		iConsole->Printf(_L("Result 3.9 - 1\n"));
   1.884 +	else
   1.885 +		iConsole->Printf(_L("Result 3.9 - 0\n"));
   1.886 +
   1.887 +	if ( iEnvironmentalReverb->RoomLevel() == iGoodData[9] )
   1.888 +		iConsole->Printf(_L("Result 3.10 - 1\n"));
   1.889 +	else
   1.890 +		iConsole->Printf(_L("Result 3.10 - 0\n"));
   1.891 +}
   1.892 +
   1.893 +/************************************************************************************************************/
   1.894 +
   1.895 +
   1.896 +
   1.897 +
   1.898 +void CConsoleTest::MapcInitComplete(TInt aStatus, const TTimeIntervalMicroSeconds& aDuration)
   1.899 +	{
   1.900 +	iConsole->Printf(_L("MapcInit: %d\n"), aStatus);
   1.901 +	iInitStatus = aStatus;
   1.902 +	TInt d = I64INT(aDuration.Int64());
   1.903 +	RDebug::Print(_L("CConsoleTest::MapcInitComplete :-> Status[%d] Duration[%d]"), aStatus, d);
   1.904 +	}
   1.905 +
   1.906 +void CConsoleTest::MapcPlayComplete(TInt aErr)
   1.907 +	{
   1.908 +	iConsole->Printf(_L("MapcPlay: %d"), aErr);
   1.909 +	RDebug::Print(_L("CConsoleTest::MapcPlayComplete :-> Error[%d]"), aErr);
   1.910 +	}
   1.911 +
   1.912 +void CConsoleTest::EffectChanged( const CAudioEffect* aAudioEffect, TUint8 aEvent )
   1.913 +	{
   1.914 +	RDebug::Print(_L("CConsoleTest::EffectChanged, Event = %d "), aEvent);
   1.915 +
   1.916 +	if ( aAudioEffect->Uid() == KUidAudioEqualizerEffect )
   1.917 +		{
   1.918 +		if ( aEvent == KEnabled )
   1.919 +			{
   1.920 +			iConsole->Printf(_L("Equalizer state: %d"), ((CAudioEqualizer*)aAudioEffect)->IsEnabled());
   1.921 +			RDebug::Print(_L("CConsoleTest::EffectChanged :-> Enabled[%d]"), ((CAudioEqualizer*)aAudioEffect)->IsEnabled());
   1.922 +			}
   1.923 +		}
   1.924 +	else if ( aAudioEffect->Uid() == KUidStereoWideningEffect )
   1.925 +			{
   1.926 +			if ( aEvent == KEnabled )
   1.927 +				{
   1.928 +				iConsole->Printf(_L("StereoWidening state: %d"), ((CStereoWidening*)aAudioEffect)->IsEnabled());
   1.929 +				RDebug::Print(_L("CConsoleTest::EffectChanged :-> Enabled[%d]"), ((CStereoWidening*)aAudioEffect)->IsEnabled());
   1.930 +				}
   1.931 +			else
   1.932 +				{
   1.933 +				iConsole->Printf(_L("StereoWidening state: %d"), ((CStereoWidening*)aAudioEffect)->IsEnabled());
   1.934 +				RDebug::Print(_L("CConsoleTest::EffectChanged :-> Enabled[%d]"), ((CStereoWidening*)aAudioEffect)->IsEnabled());
   1.935 +				}
   1.936 +			}
   1.937 +
   1.938 +
   1.939 +	}
   1.940 +
   1.941 +void CConsoleTest::MoscoStateChangeEvent(CBase* /*aObject*/, TInt aPreviousState, TInt aCurrentState, TInt aErrorCode)
   1.942 +	{
   1.943 +	RDebug::Print(_L("aPreviousState[%d], aCurrentState[%d], aErrorCode[%d]"), aPreviousState, aCurrentState, aErrorCode);
   1.944 +	iInitStatus = aErrorCode;
   1.945 +	iConsole->Printf(_L("Mosco: %d\n"), aErrorCode);
   1.946 +	}
   1.947 +
   1.948 +
   1.949 +
   1.950 +//////////////////////////////////////////////////////////////////////////////
   1.951 +//
   1.952 +// Do the testing
   1.953 +//
   1.954 +//////////////////////////////////////////////////////////////////////////////
   1.955 +LOCAL_C void doTestL()
   1.956 +{
   1.957 +
   1.958 +	CConsoleBase* console = Console::NewL(KTxtDBTest,TSize(KConsFullScreen,KConsFullScreen));
   1.959 +	CleanupStack::PushL(console);
   1.960 +
   1.961 +	CmyActiveScheduler* myScheduler = new (ELeave) CmyActiveScheduler;
   1.962 +	CleanupStack::PushL(myScheduler);
   1.963 +	CActiveScheduler::Install(myScheduler);
   1.964 +
   1.965 +	// Create a CConsoleTest active object
   1.966 +	CConsoleTest* consoleTest = CConsoleTest::NewLC(console);
   1.967 +	consoleTest->ShowMenu();
   1.968 +	// Issue the first request
   1.969 +	consoleTest->RequestCharacter();
   1.970 +
   1.971 +#ifdef __WINS__
   1.972 +	_LIT(KTitleMsg,"Ready!\nPress ESC to end.\n\n");
   1.973 +#else
   1.974 +	_LIT(KTitleMsg,"Press SPACE(0) to end.\n");
   1.975 +#endif
   1.976 +	console->Printf(KTitleMsg);
   1.977 +//	test.Title();
   1.978 +
   1.979 +	// Main part of program is a wait loop
   1.980 +	// This function completes when the scheduler stops
   1.981 +	CActiveScheduler::Start();
   1.982 +
   1.983 +	_LIT(KTxtPressAnyKey," [press any key]");
   1.984 +	console->Printf(KTxtPressAnyKey);
   1.985 +	console->Getch();					// get and ignore character
   1.986 +
   1.987 +	// Remove from the cleanup stack and destroy:
   1.988 +	// 1. consoleTest
   1.989 +	// 2. myScheduler
   1.990 +	// 3. console
   1.991 +	CleanupStack::PopAndDestroy(3);
   1.992 +}
   1.993 +