Update contrib.
1 // Copyright (c) 2003-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.
19 @internalComponent - Internal Symbian test code
21 #include "TTransptAnim.h"
26 const TInt iFrameCount;
27 FrameSet(TRgb* aFrames, const TInt aFrameCount)
29 iFrameCount(aFrameCount)
34 TRgb FrameSequenceAlpha[]=
35 { TRgb(255, 0, 0, 50), TRgb(0, 255, 0, 70), TRgb(0, 0, 255, 100), TRgb(255, 255, 0, 150), TRgb(0, 255, 255, 200) };
36 TRgb FrameSequenceNoAlpha[] =
37 { TRgb(255, 0, 0), TRgb(0, 255, 0), TRgb(0, 0, 255), TRgb(255, 255, 0), TRgb(0, 255, 255) };
39 FrameSet frameSetAlpha(FrameSequenceAlpha, sizeof(FrameSequenceAlpha)/sizeof(TRgb));
40 FrameSet frameSetNoAlpha(FrameSequenceNoAlpha, sizeof(FrameSequenceNoAlpha)/sizeof(TRgb));
41 FrameSet TestFrameSets[] =
43 frameSetAlpha, frameSetNoAlpha
46 static const TInt FRAME_DELAY = 2000000;
47 static const TInt DRAW_LINE_ANIMATION = 36;
48 static const TBool ALPHATRANSPARENCY_ON = ETrue;
49 static const TInt ALPHA_FRAMESET = 0;
51 //*****************************************************************************
52 CTTestCase* CTTransparentAnim::CreateTestCaseL(CTTransparentAnim* aTransAnim, TInt aTestCaseId)
54 CTTestCase* testCase = aTransAnim->GetCurrent();
60 case GraphicsWServ0483 :
61 testCase = CTGraphicsWServ0483::NewL();
69 //*****************************************************************************
70 CTTransparentAnim::CTTransparentAnim(CTestStep* aStep)
71 : CTWsGraphicsBase(aStep), iCurrentTestCase(NULL)
74 CTTransparentAnim::~CTTransparentAnim()
76 TheClient->iWs.SetAutoFlush(EFalse);
79 void CTTransparentAnim::ConstructL()
81 TheClient->iWs.SetAutoFlush(ETrue);
84 void CTTransparentAnim::RunTestCaseL(TInt)
86 ((CTTransparentAnimStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0483"));
87 CTTestCase* testCase = CTTransparentAnim::CreateTestCaseL(this, iTest->iState);
97 if (!testCase->IsAlreadyRunning())
100 iTest->LogSubTest(testCase->TestCaseName());
101 TRAP(err, testCase->StartL());
102 testCase->SetError(err);
105 if (testCase->IsComplete() || err != KErrNone)
107 ((CTTransparentAnimStep*)iStep)->RecordTestResultL();
108 ((CTTransparentAnimStep*)iStep)->CloseTMSGraphicsStep();
109 if (testCase->HasFailed())
111 INFO_PRINTF3(_L("ErrorStatus - Expected: %d, Actual: %d"), ETrue, EFalse);
119 // Prevent test harness from repeatedly running the test case too quickly.
120 User::After(TTimeIntervalMicroSeconds32(FRAME_DELAY));
124 void CTTransparentAnim::SetCurrent(CTTestCase* aTestCase)
126 iCurrentTestCase = aTestCase;
129 CTTestCase* CTTransparentAnim::GetCurrent()
131 return iCurrentTestCase;
134 //*****************************************************************************
135 CTTAnimation::CTTAnimation(CTWin* aWin, TInt aDrawArg)
136 : iWin(aWin), iFrameCount(0), iCurrentFrameSet(0), iIsComplete(EFalse), iDrawArg(aDrawArg)
138 iAnimDll = RAnimDll(TheClient->iWs);
139 iAnimDll.Load(KAnimDLLName);
140 iDrawAnim = RTestAnim(iAnimDll);
141 iDrawAnim.Construct(*iWin->BaseWin(), EAnimTypeTrans, TPckgBuf<TRect>(aWin->Size()));
144 CTTAnimation::~CTTAnimation()
151 void CTTAnimation::StartL()
153 iAnimTimer.ConstructL();
154 iAnimTimer.Start(FRAME_DELAY, TCallBack(CTTAnimation::NextFrame,this));
157 TBool CTTAnimation::IsComplete()
162 void CTTAnimation::SetCurrentFrameSet(TInt aFrameSet)
164 iCurrentFrameSet = aFrameSet;
167 CTWin* CTTAnimation::GetWindow()
172 void CTTAnimation::Attach(MAnimationObserver* aObserver)
174 iObserver = aObserver;
177 TInt CTTAnimation::NextFrame(TAny* aAnim)
179 STATIC_CAST(CTTAnimation*,aAnim)->NextFrame();
184 void CTTAnimation::NextFrame()
187 TPckgBuf<TFrameData> paramsPckg;
189 if (iFrameCount == TestFrameSets[iCurrentFrameSet].iFrameCount)
192 iObserver->Update(this);
196 Color = TestFrameSets[iCurrentFrameSet].iFrames[iFrameCount++];
198 paramsPckg().draw = iDrawArg;
199 paramsPckg().color = Color;
201 iDrawAnim.Command(EADllNextFrame, paramsPckg);
203 iAnimTimer.Start(FRAME_DELAY, TCallBack(CTTAnimation::NextFrame,this));
206 //*****************************************************************************
207 CTransAnimTimer::CTransAnimTimer()
208 : CTimer(EPriorityStandard)
211 CTransAnimTimer::~CTransAnimTimer()
214 void CTransAnimTimer::ConstructL()
216 CTimer::ConstructL();
217 CActiveScheduler::Add(this);
220 void CTransAnimTimer::RunL()
222 iCallBack.CallBack();
225 void CTransAnimTimer::Start(TTimeIntervalMicroSeconds32 aInterval,TCallBack aCallBack)
227 iCallBack = aCallBack;
231 //*****************************************************************************
232 CTTestCase::CTTestCase()
233 : iError(KErrNone), iIsComplete(EFalse), iIsRunning(EFalse)
236 TBool CTTestCase::IsAlreadyRunning()
241 void CTTestCase::Update(CTTAnimation* aAnim)
243 iIsComplete = aAnim->IsComplete();
246 TBool CTTestCase::IsComplete()
251 void CTTestCase::StartL()
260 TBool CTTestCase::HasFailed()
263 if (iError != KErrNone)
270 void CTTestCase::SetIsCompleted(TBool aIsComplete)
272 iIsComplete = aIsComplete;
275 void CTTestCase::SetError(TInt aError)
280 //*********************** New Test Case Classes go here************************
283 * @SYMTestCaseID GRAPHICS-WSERV-0483
285 * @SYMTestCaseDesc There are two animations running, one attached to a transparent
286 * window using SetTransparencyAlphaChannel and a second animation with a non-transparent
287 * window. The animations draw a line and then change the color of the line in subsequent
288 * frames. After the last frame the alpha channel for the first animation is set to
289 * opaque and then compared with the second animation to make certain that no artifacts
292 * @SYMTestPriority High
294 * @SYMTestStatus Implemented
296 * @SYMTestActions An anim is attached with a Transparent window.
297 * The anim draws several frames using WSERV's Anim animation functionality.
299 * @SYMTestExpectedResults Both animations draw a line and then change it's color, the first
300 * animation doing it in a tranparent window and the second doing it in a non-transparent window.
302 CTGraphicsWServ0483* CTGraphicsWServ0483::NewL()
304 CTGraphicsWServ0483* testCase = new(ELeave) CTGraphicsWServ0483();
306 CleanupStack::PushL(testCase);
307 testCase->ConstructL();
313 CTGraphicsWServ0483::~CTGraphicsWServ0483()
319 void CTGraphicsWServ0483::ConstructL()
321 iAnim = new(ELeave) CTTAnimation(CTAnimWin<ALPHATRANSPARENCY_ON>::NewL(
322 BaseWin->GetBorderWin()->Position(),
323 BaseWin->GetBorderWin()->Size()), DRAW_LINE_ANIMATION);
325 iCheckAnim = new(ELeave) CTTAnimation(CTAnimWin<>::NewL(
326 TestWin->GetBorderWin()->Position(),
327 TestWin->GetBorderWin()->Size()), DRAW_LINE_ANIMATION);
328 TheClient->WaitForRedrawsToFinish();
331 void CTGraphicsWServ0483::RunTestCaseL()
334 iCheckAnim->Attach(this);
336 iAnim->SetCurrentFrameSet(ALPHA_FRAMESET);
339 iCheckAnim->SetCurrentFrameSet(ALPHA_FRAMESET);
340 iCheckAnim->StartL();
343 void CTGraphicsWServ0483::Update(CTTAnimation*)
345 if (iAnim->IsComplete() && iCheckAnim->IsComplete())
347 TRgb bgColor(150, 150, 150, 255);
348 iAnim->GetWindow()->Win()->SetBackgroundColor(bgColor);
349 iAnim->GetWindow()->Win()->Invalidate();
350 TheClient->iWs.Finish();
351 TheClient->WaitForRedrawsToFinish();
352 if (!DoCheckRect(iAnim->GetWindow(), iCheckAnim->GetWindow()))
354 SetError(KErrGeneral);
356 SetIsCompleted(ETrue);
360 TPtrC CTGraphicsWServ0483::TestCaseName()
362 _LIT(KTransparentAlphaChannelAnimationTest, "Transparent Anim Test");
364 return TPtrC(KTransparentAlphaChannelAnimationTest);
367 __WS_CONSTRUCT_STEP__(TransparentAnim)