Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 @test - Test plug-in to test wsgraphic animation artwork framerate
19 @internalComponent - Internal Symbian test code
23 #include <graphics/wsgraphicdrawer.h>
24 #include "framerate.h"
25 #include "wsgraphicdrawercontext.h"
26 #include "wsframerate.h"
28 //Constant message handle, which is used to send count value between client and plug-in
29 const TUint8 KCmdCount=0;
32 Creates new test framerate object.
34 CGraphicDrawerTestFrameRate* CGraphicDrawerTestFrameRate::CreateL()
36 return new(ELeave) CGraphicDrawerTestFrameRate;
39 CGraphicDrawerTestFrameRate::CGraphicDrawerTestFrameRate()
43 CGraphicDrawerTestFrameRate::~CGraphicDrawerTestFrameRate()
47 void CGraphicDrawerTestFrameRate::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& /*aData*/)
49 BaseConstructL(aEnv,aId,aOwner);
50 if (aEnv.Screen(0)->ResolveObjectInterface(KMWsScreenConfigInterfaceId))
52 iContext = CWsGraphicDrawerNonNgaContext::NewL();
56 iContext = CWsGraphicDrawerNgaContext::NewL();
61 Simulate two animations of different frame rate with their respective schedule.
63 @param MWsGc Window server graphic context to draw the animation
64 @param TRect Rectangle are required to draw the animation
65 @param TDesC Parameter value to use inside this function.
67 void CGraphicDrawerTestFrameRate::DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const
69 TInt animId = aData[0];
70 TInt requestedFps = aData[1];
72 //Schedule next redraw based on requested frame rate
73 TTimeIntervalMicroSeconds nextTick = 1000000/requestedFps;
74 iContext->ScheduleAnimation(aGc, aRect, nextTick);
78 Handles message between client and plug-in.
80 @param TDesC Constant message command.
82 void CGraphicDrawerTestFrameRate::HandleMessage(const TDesC8& aData)
87 TPckgBuf<TAnimRate> buf;
88 buf().iAnim1=iCounter[0];
89 buf().iAnim2=iCounter[1];
90 TInt err = SendMessage(buf);
91 __ASSERT_DEBUG(err>=KErrNone, User::Invariant());