sl@0: // Copyright (c) 2007-2009 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: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test - Test plug-in to test wsgraphic animation artwork framerate sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: #include "framerate.h" sl@0: #include "wsgraphicdrawercontext.h" sl@0: #include "wsframerate.h" sl@0: sl@0: //Constant message handle, which is used to send count value between client and plug-in sl@0: const TUint8 KCmdCount=0; sl@0: sl@0: /** sl@0: Creates new test framerate object. sl@0: */ sl@0: CGraphicDrawerTestFrameRate* CGraphicDrawerTestFrameRate::CreateL() sl@0: { sl@0: return new(ELeave) CGraphicDrawerTestFrameRate; sl@0: } sl@0: sl@0: CGraphicDrawerTestFrameRate::CGraphicDrawerTestFrameRate() sl@0: { sl@0: } sl@0: sl@0: CGraphicDrawerTestFrameRate::~CGraphicDrawerTestFrameRate() sl@0: { sl@0: } sl@0: sl@0: void CGraphicDrawerTestFrameRate::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& /*aData*/) sl@0: { sl@0: BaseConstructL(aEnv,aId,aOwner); sl@0: if (aEnv.Screen(0)->ResolveObjectInterface(KMWsScreenConfigInterfaceId)) sl@0: { sl@0: iContext = CWsGraphicDrawerNonNgaContext::NewL(); sl@0: } sl@0: else sl@0: { sl@0: iContext = CWsGraphicDrawerNgaContext::NewL(); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: Simulate two animations of different frame rate with their respective schedule. sl@0: sl@0: @param MWsGc Window server graphic context to draw the animation sl@0: @param TRect Rectangle are required to draw the animation sl@0: @param TDesC Parameter value to use inside this function. sl@0: */ sl@0: void CGraphicDrawerTestFrameRate::DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const sl@0: { sl@0: TInt animId = aData[0]; sl@0: TInt requestedFps = aData[1]; sl@0: ++iCounter[animId]; sl@0: //Schedule next redraw based on requested frame rate sl@0: TTimeIntervalMicroSeconds nextTick = 1000000/requestedFps; sl@0: iContext->ScheduleAnimation(aGc, aRect, nextTick); sl@0: } sl@0: sl@0: /** sl@0: Handles message between client and plug-in. sl@0: sl@0: @param TDesC Constant message command. sl@0: */ sl@0: void CGraphicDrawerTestFrameRate::HandleMessage(const TDesC8& aData) sl@0: { sl@0: switch (aData[0]) sl@0: { sl@0: case KCmdCount: sl@0: TPckgBuf buf; sl@0: buf().iAnim1=iCounter[0]; sl@0: buf().iAnim2=iCounter[1]; sl@0: TInt err = SendMessage(buf); sl@0: __ASSERT_DEBUG(err>=KErrNone, User::Invariant()); sl@0: break; sl@0: } sl@0: } sl@0: