sl@0: /* sl@0: * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: Effects console test sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef EFFECTSCONSOLETEST sl@0: #define EFFECTSCONSOLETEST sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: sl@0: _LIT(KAMRTestFile,"c:\\test.amr"); sl@0: _LIT(KWAVTestFile,"c:\\test.wav"); sl@0: sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // -----> CmyActiveScheduler (definition) sl@0: // sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: class CmyActiveScheduler : public CActiveScheduler sl@0: { sl@0: public: sl@0: void Error (TInt aError) const; sl@0: }; sl@0: sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // -----> CActiveConsole (definition) sl@0: // sl@0: // An abstract class which provides the facility to issue key requests. sl@0: // sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: class CActiveConsole : public CActive sl@0: { sl@0: public: sl@0: // Construction sl@0: CActiveConsole(CConsoleBase* aConsole); sl@0: void ConstructL(); sl@0: static CActiveConsole* NewLC(CConsoleBase* aConsole) ; sl@0: ~CActiveConsole(); sl@0: sl@0: // Issue request sl@0: void RequestCharacter(); sl@0: sl@0: // Cancel request. sl@0: // Defined as pure virtual by CActive; sl@0: // implementation provided by this class. sl@0: void DoCancel(); sl@0: sl@0: // Service completed request. sl@0: // Defined as pure virtual by CActive; sl@0: // implementation provided by this class, sl@0: void RunL(); sl@0: sl@0: // Called from RunL() - an implementation must be provided sl@0: // by derived classes to handle the completed request sl@0: virtual void ProcessKeyPress(TChar aChar) = 0; sl@0: sl@0: protected: sl@0: // Data members defined by this class sl@0: CConsoleBase* iConsole; // A console for reading from sl@0: }; sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // -----> CConsoleTest (definition) sl@0: // sl@0: // This class is derived from CActiveConsole. sl@0: // Request handling: accepts input from the keyboard and outputs the sl@0: // test result through test harness. sl@0: // sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: class CConsoleTest : public CActiveConsole, sl@0: public MMdaAudioPlayerCallback, sl@0: public MMdaObjectStateChangeObserver, sl@0: public MAudioEffectObserver sl@0: //public MAudioEqualizerObserver sl@0: { sl@0: public: sl@0: sl@0: enum TMenu sl@0: { sl@0: EMain, sl@0: EPlay, sl@0: ERecord, sl@0: EConvert, sl@0: EEqualizer, sl@0: EBandId, sl@0: EBandLevel, sl@0: EEnvironmentalReverb1, sl@0: EEnvironmentalReverb2, sl@0: EStereoWidening, sl@0: EStereoWideningLevel sl@0: sl@0: }; sl@0: sl@0: // Destruction sl@0: ~CConsoleTest(); sl@0: sl@0: public: sl@0: // Static constuction sl@0: static CConsoleTest *NewLC (CConsoleBase* aConsole); sl@0: static CConsoleTest *NewL(CConsoleBase* aConsole); sl@0: sl@0: virtual void MapcInitComplete(TInt aError, const TTimeIntervalMicroSeconds& aDuration); sl@0: virtual void MapcPlayComplete(TInt aError); sl@0: virtual void MoscoStateChangeEvent(CBase* aObject, TInt aPreviousState, TInt aCurrentState, TInt aErrorcCode); sl@0: virtual void EffectChanged( const CAudioEffect* aAudioEffect, TUint8 aEvent ); sl@0: sl@0: public: sl@0: // Service request sl@0: void ProcessKeyPress(TChar aChar); sl@0: void ShowMenu(); sl@0: sl@0: private: sl@0: sl@0: void ConstructL(); sl@0: CConsoleTest(CConsoleBase* aConsole); sl@0: void ProcessMain(TChar aChar); sl@0: void ProcessPlayL(TChar aChar); sl@0: void ProcessEqualizerL(TChar aChar); sl@0: void ProcessBandId(TChar aChar); sl@0: void ProcessBandLevelL(TChar aChar); sl@0: void InitializeTestData(); sl@0: void ProcessEnvironmentalReverbL(TChar aChar); sl@0: void TestCase1(); sl@0: void TestCase2(); sl@0: void TestCase3(); sl@0: void ProcessStereoWideningL(TChar aChar); sl@0: void ProcessStereoWideningLevelL(TChar aChar); sl@0: sl@0: sl@0: sl@0: sl@0: private: sl@0: sl@0: TInt iInitStatus; sl@0: sl@0: TMenu iMenu; sl@0: TMenu iParentMenu; sl@0: TUint32 iBandId; sl@0: CCustomInterfaceUtility* iCIUtility; sl@0: sl@0: CMdaAudioPlayerUtility* iAudioPlayer; sl@0: CAudioEqualizer* iPlayerAudioEqualizer; sl@0: CEnvironmentalReverb* iPlayerEnvironmentalReverb; sl@0: CStereoWidening* iPlayerStereoWidening; sl@0: sl@0: CMdaAudioRecorderUtility* iAudioRecorder; sl@0: CAudioEqualizer* iRecorderAudioEqualizer; sl@0: CEnvironmentalReverb* iRecorderEnvironmentalReverb; sl@0: CStereoWidening* iRecorderStereoWidening; sl@0: sl@0: CMdaAudioConvertUtility* iAudioConverter; sl@0: sl@0: CAudioEqualizer* iEqualizer; sl@0: CEnvironmentalReverb* iEnvironmentalReverb; sl@0: CStereoWidening* iStereoWidening; sl@0: sl@0: sl@0: CAudioEqualizer* iAudioEqualizer; sl@0: sl@0: TBuf<100> iSampleFilePath; sl@0: sl@0: RFs iFs; sl@0: sl@0: RArray iGoodData; sl@0: RArray iBadData; sl@0: sl@0: }; sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // Main sl@0: // sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: _LIT(KTxtDBTest, "Effects Console Test"); sl@0: sl@0: LOCAL_C void doTestL(); sl@0: sl@0: GLDEF_C TInt E32Main() // main function called by E32 sl@0: { sl@0: __UHEAP_MARK; sl@0: CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack sl@0: TRAPD(error, doTestL()); sl@0: __ASSERT_ALWAYS(!error,User::Panic(KTxtDBTest, error)); sl@0: delete cleanup; // destroy clean-up stack sl@0: __UHEAP_MARKEND; sl@0: return 0; // and return sl@0: } sl@0: sl@0: #endif