os/graphics/windowing/windowserver/test/tauto/TTransptAnim.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent - Internal Symbian test code
sl@0
    20
*/
sl@0
    21
#include "TTransptAnim.h"
sl@0
    22
sl@0
    23
struct FrameSet
sl@0
    24
	{
sl@0
    25
	TRgb* iFrames;
sl@0
    26
	const TInt iFrameCount;
sl@0
    27
	FrameSet(TRgb* aFrames, const TInt aFrameCount)
sl@0
    28
	: iFrames(aFrames),
sl@0
    29
	iFrameCount(aFrameCount)
sl@0
    30
		{
sl@0
    31
		}
sl@0
    32
	};
sl@0
    33
sl@0
    34
TRgb FrameSequenceAlpha[]= 
sl@0
    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) };
sl@0
    36
TRgb FrameSequenceNoAlpha[] =
sl@0
    37
{ TRgb(255, 0, 0), TRgb(0, 255, 0), TRgb(0, 0, 255), TRgb(255, 255, 0), TRgb(0, 255, 255) };
sl@0
    38
sl@0
    39
FrameSet frameSetAlpha(FrameSequenceAlpha, 	sizeof(FrameSequenceAlpha)/sizeof(TRgb));
sl@0
    40
FrameSet frameSetNoAlpha(FrameSequenceNoAlpha, sizeof(FrameSequenceNoAlpha)/sizeof(TRgb));
sl@0
    41
FrameSet TestFrameSets[] =
sl@0
    42
	{
sl@0
    43
	frameSetAlpha, frameSetNoAlpha
sl@0
    44
	};
sl@0
    45
sl@0
    46
static const TInt 	FRAME_DELAY 			= 2000000;
sl@0
    47
static const TInt 	DRAW_LINE_ANIMATION 	= 36;
sl@0
    48
static const TBool 	ALPHATRANSPARENCY_ON 	= ETrue;
sl@0
    49
static const TInt	ALPHA_FRAMESET 			= 0;
sl@0
    50
sl@0
    51
//*****************************************************************************
sl@0
    52
CTTestCase* CTTransparentAnim::CreateTestCaseL(CTTransparentAnim* aTransAnim, TInt aTestCaseId)
sl@0
    53
	{
sl@0
    54
	CTTestCase* testCase = aTransAnim->GetCurrent();
sl@0
    55
	
sl@0
    56
	if (!testCase)
sl@0
    57
		{
sl@0
    58
		switch (aTestCaseId)
sl@0
    59
			{
sl@0
    60
		case GraphicsWServ0483 :
sl@0
    61
			testCase =  CTGraphicsWServ0483::NewL();
sl@0
    62
			break;
sl@0
    63
			}
sl@0
    64
		}
sl@0
    65
	
sl@0
    66
	return testCase;
sl@0
    67
	}
sl@0
    68
sl@0
    69
//*****************************************************************************
sl@0
    70
CTTransparentAnim::CTTransparentAnim(CTestStep* aStep)
sl@0
    71
: CTWsGraphicsBase(aStep), iCurrentTestCase(NULL)
sl@0
    72
	{}
sl@0
    73
sl@0
    74
CTTransparentAnim::~CTTransparentAnim()
sl@0
    75
	{
sl@0
    76
	TheClient->iWs.SetAutoFlush(EFalse);
sl@0
    77
	}
sl@0
    78
sl@0
    79
void CTTransparentAnim::ConstructL()
sl@0
    80
	{
sl@0
    81
	TheClient->iWs.SetAutoFlush(ETrue);
sl@0
    82
	}
sl@0
    83
sl@0
    84
void CTTransparentAnim::RunTestCaseL(TInt)
sl@0
    85
	{
sl@0
    86
	((CTTransparentAnimStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0483"));
sl@0
    87
	CTTestCase* testCase = CTTransparentAnim::CreateTestCaseL(this, iTest->iState);
sl@0
    88
	
sl@0
    89
	if (!testCase)
sl@0
    90
		{
sl@0
    91
		TestComplete();
sl@0
    92
		return ;
sl@0
    93
		}
sl@0
    94
sl@0
    95
	TInt err = KErrNone;
sl@0
    96
	
sl@0
    97
	if (!testCase->IsAlreadyRunning())
sl@0
    98
		{
sl@0
    99
		SetCurrent(testCase);
sl@0
   100
		iTest->LogSubTest(testCase->TestCaseName());
sl@0
   101
		TRAP(err, testCase->StartL());
sl@0
   102
		testCase->SetError(err);
sl@0
   103
		}
sl@0
   104
	
sl@0
   105
	if (testCase->IsComplete() || err != KErrNone)
sl@0
   106
		{
sl@0
   107
		((CTTransparentAnimStep*)iStep)->RecordTestResultL();
sl@0
   108
		((CTTransparentAnimStep*)iStep)->CloseTMSGraphicsStep();
sl@0
   109
		if (testCase->HasFailed())
sl@0
   110
			{
sl@0
   111
			INFO_PRINTF3(_L("ErrorStatus  - Expected: %d, Actual: %d"), ETrue, EFalse);
sl@0
   112
			}
sl@0
   113
		++iTest->iState;
sl@0
   114
		SetCurrent(NULL);
sl@0
   115
		delete testCase;
sl@0
   116
		}
sl@0
   117
	else
sl@0
   118
		{
sl@0
   119
		// Prevent test harness from repeatedly running the test case too quickly.
sl@0
   120
		User::After(TTimeIntervalMicroSeconds32(FRAME_DELAY));
sl@0
   121
		}
sl@0
   122
	}
sl@0
   123
sl@0
   124
void CTTransparentAnim::SetCurrent(CTTestCase* aTestCase)
sl@0
   125
	{
sl@0
   126
	iCurrentTestCase = aTestCase;
sl@0
   127
	}
sl@0
   128
sl@0
   129
CTTestCase* CTTransparentAnim::GetCurrent()
sl@0
   130
	{
sl@0
   131
	return iCurrentTestCase;
sl@0
   132
	}
sl@0
   133
sl@0
   134
//*****************************************************************************
sl@0
   135
CTTAnimation::CTTAnimation(CTWin* aWin, TInt aDrawArg)
sl@0
   136
: iWin(aWin), iFrameCount(0), iCurrentFrameSet(0), iIsComplete(EFalse), iDrawArg(aDrawArg)
sl@0
   137
	{
sl@0
   138
	iAnimDll = RAnimDll(TheClient->iWs);
sl@0
   139
	iAnimDll.Load(KAnimDLLName);
sl@0
   140
	iDrawAnim = RTestAnim(iAnimDll);
sl@0
   141
	iDrawAnim.Construct(*iWin->BaseWin(), EAnimTypeTrans, TPckgBuf<TRect>(aWin->Size()));
sl@0
   142
	}
sl@0
   143
sl@0
   144
CTTAnimation::~CTTAnimation()
sl@0
   145
	{
sl@0
   146
	iDrawAnim.Close();
sl@0
   147
	iAnimDll.Close();
sl@0
   148
	delete iWin;
sl@0
   149
	}
sl@0
   150
sl@0
   151
void CTTAnimation::StartL()
sl@0
   152
	{
sl@0
   153
	iAnimTimer.ConstructL();
sl@0
   154
	iAnimTimer.Start(FRAME_DELAY, TCallBack(CTTAnimation::NextFrame,this));
sl@0
   155
	}
sl@0
   156
sl@0
   157
TBool CTTAnimation::IsComplete()
sl@0
   158
	{
sl@0
   159
	return iIsComplete;
sl@0
   160
	}
sl@0
   161
sl@0
   162
void CTTAnimation::SetCurrentFrameSet(TInt aFrameSet)
sl@0
   163
	{
sl@0
   164
	iCurrentFrameSet = aFrameSet;
sl@0
   165
	}
sl@0
   166
sl@0
   167
CTWin* CTTAnimation::GetWindow()
sl@0
   168
	{
sl@0
   169
	return iWin;
sl@0
   170
	}
sl@0
   171
sl@0
   172
void CTTAnimation::Attach(MAnimationObserver* aObserver)
sl@0
   173
	{
sl@0
   174
	iObserver = aObserver;
sl@0
   175
	}
sl@0
   176
sl@0
   177
TInt CTTAnimation::NextFrame(TAny* aAnim)
sl@0
   178
	{
sl@0
   179
	STATIC_CAST(CTTAnimation*,aAnim)->NextFrame();
sl@0
   180
sl@0
   181
	return KErrNone;
sl@0
   182
	}
sl@0
   183
sl@0
   184
void CTTAnimation::NextFrame()
sl@0
   185
	{
sl@0
   186
	TRgb Color;
sl@0
   187
	TPckgBuf<TFrameData> paramsPckg;
sl@0
   188
sl@0
   189
	if (iFrameCount == TestFrameSets[iCurrentFrameSet].iFrameCount)
sl@0
   190
		{
sl@0
   191
		iIsComplete = ETrue;
sl@0
   192
		iObserver->Update(this);
sl@0
   193
		return ;
sl@0
   194
		}
sl@0
   195
	
sl@0
   196
	Color = TestFrameSets[iCurrentFrameSet].iFrames[iFrameCount++];
sl@0
   197
	
sl@0
   198
	paramsPckg().draw = iDrawArg;
sl@0
   199
	paramsPckg().color = Color;
sl@0
   200
	
sl@0
   201
	iDrawAnim.Command(EADllNextFrame, paramsPckg);
sl@0
   202
sl@0
   203
	iAnimTimer.Start(FRAME_DELAY, TCallBack(CTTAnimation::NextFrame,this));
sl@0
   204
	}
sl@0
   205
sl@0
   206
//*****************************************************************************
sl@0
   207
CTransAnimTimer::CTransAnimTimer() 
sl@0
   208
: CTimer(EPriorityStandard)
sl@0
   209
	{}
sl@0
   210
sl@0
   211
CTransAnimTimer::~CTransAnimTimer()
sl@0
   212
	{}
sl@0
   213
sl@0
   214
void CTransAnimTimer::ConstructL()
sl@0
   215
	{
sl@0
   216
	CTimer::ConstructL();
sl@0
   217
	CActiveScheduler::Add(this);
sl@0
   218
	}
sl@0
   219
sl@0
   220
void CTransAnimTimer::RunL()
sl@0
   221
	{
sl@0
   222
	iCallBack.CallBack();
sl@0
   223
	}
sl@0
   224
sl@0
   225
void CTransAnimTimer::Start(TTimeIntervalMicroSeconds32 aInterval,TCallBack aCallBack)
sl@0
   226
	{
sl@0
   227
	iCallBack = aCallBack;
sl@0
   228
	After(aInterval);
sl@0
   229
	}
sl@0
   230
sl@0
   231
//*****************************************************************************
sl@0
   232
CTTestCase::CTTestCase()
sl@0
   233
: iError(KErrNone), iIsComplete(EFalse), iIsRunning(EFalse)
sl@0
   234
	{}
sl@0
   235
sl@0
   236
TBool CTTestCase::IsAlreadyRunning()
sl@0
   237
	{
sl@0
   238
	return iIsRunning;
sl@0
   239
	}
sl@0
   240
sl@0
   241
void CTTestCase::Update(CTTAnimation* aAnim)
sl@0
   242
	{
sl@0
   243
	iIsComplete = aAnim->IsComplete();
sl@0
   244
	}
sl@0
   245
sl@0
   246
TBool CTTestCase::IsComplete()
sl@0
   247
	{
sl@0
   248
	return iIsComplete;
sl@0
   249
	}
sl@0
   250
sl@0
   251
void CTTestCase::StartL()
sl@0
   252
	{
sl@0
   253
	if (!iIsRunning)
sl@0
   254
		{
sl@0
   255
		RunTestCaseL();
sl@0
   256
		iIsRunning = ETrue;
sl@0
   257
		}
sl@0
   258
	}
sl@0
   259
sl@0
   260
TBool CTTestCase::HasFailed()
sl@0
   261
	{
sl@0
   262
	TBool ret = EFalse;
sl@0
   263
	if (iError != KErrNone)
sl@0
   264
		{
sl@0
   265
		ret = ETrue;
sl@0
   266
		}
sl@0
   267
	return ret;
sl@0
   268
	}
sl@0
   269
sl@0
   270
void CTTestCase::SetIsCompleted(TBool aIsComplete)
sl@0
   271
	{
sl@0
   272
	iIsComplete = aIsComplete;
sl@0
   273
	}
sl@0
   274
sl@0
   275
void CTTestCase::SetError(TInt aError)
sl@0
   276
	{
sl@0
   277
	iError = aError;
sl@0
   278
	}
sl@0
   279
sl@0
   280
//*********************** New Test Case Classes go here************************
sl@0
   281
sl@0
   282
/**
sl@0
   283
 * @SYMTestCaseID GRAPHICS-WSERV-0483
sl@0
   284
 *
sl@0
   285
 * @SYMTestCaseDesc There are two animations running, one attached to a transparent
sl@0
   286
 * window using SetTransparencyAlphaChannel and a second animation with a non-transparent
sl@0
   287
 * window. The animations draw a line and then change the color of the line in subsequent
sl@0
   288
 * frames. After the last frame the alpha channel for the first animation is set to
sl@0
   289
 * opaque and then compared with the second animation to make certain that no artifacts
sl@0
   290
 * are present.
sl@0
   291
 *
sl@0
   292
 * @SYMTestPriority High
sl@0
   293
 *
sl@0
   294
 * @SYMTestStatus Implemented
sl@0
   295
 *
sl@0
   296
 * @SYMTestActions An anim is attached with a Transparent window.
sl@0
   297
 * 	The anim draws several frames using WSERV's Anim animation functionality.
sl@0
   298
 *
sl@0
   299
 * @SYMTestExpectedResults Both animations draw a line and then change it's color, the first
sl@0
   300
 * animation doing it in a tranparent window and the second doing it in a non-transparent window.
sl@0
   301
 **/
sl@0
   302
CTGraphicsWServ0483* CTGraphicsWServ0483::NewL()
sl@0
   303
	{
sl@0
   304
	CTGraphicsWServ0483* testCase = new(ELeave) CTGraphicsWServ0483();
sl@0
   305
	
sl@0
   306
	CleanupStack::PushL(testCase);
sl@0
   307
	testCase->ConstructL();
sl@0
   308
	CleanupStack::Pop();
sl@0
   309
	
sl@0
   310
	return testCase;
sl@0
   311
	}
sl@0
   312
sl@0
   313
CTGraphicsWServ0483::~CTGraphicsWServ0483()
sl@0
   314
	{
sl@0
   315
	delete iAnim;
sl@0
   316
	delete iCheckAnim;
sl@0
   317
	}
sl@0
   318
sl@0
   319
void CTGraphicsWServ0483::ConstructL()
sl@0
   320
	{
sl@0
   321
	iAnim = new(ELeave) CTTAnimation(CTAnimWin<ALPHATRANSPARENCY_ON>::NewL(
sl@0
   322
										BaseWin->GetBorderWin()->Position(),
sl@0
   323
										BaseWin->GetBorderWin()->Size()), DRAW_LINE_ANIMATION);
sl@0
   324
	
sl@0
   325
	iCheckAnim = new(ELeave) CTTAnimation(CTAnimWin<>::NewL(
sl@0
   326
										TestWin->GetBorderWin()->Position(),
sl@0
   327
										TestWin->GetBorderWin()->Size()), DRAW_LINE_ANIMATION);
sl@0
   328
	TheClient->WaitForRedrawsToFinish();
sl@0
   329
	}
sl@0
   330
sl@0
   331
void CTGraphicsWServ0483::RunTestCaseL()
sl@0
   332
	{
sl@0
   333
	iAnim->Attach(this);
sl@0
   334
	iCheckAnim->Attach(this);
sl@0
   335
	
sl@0
   336
	iAnim->SetCurrentFrameSet(ALPHA_FRAMESET);
sl@0
   337
	iAnim->StartL();
sl@0
   338
	
sl@0
   339
	iCheckAnim->SetCurrentFrameSet(ALPHA_FRAMESET);
sl@0
   340
	iCheckAnim->StartL();	
sl@0
   341
	}
sl@0
   342
sl@0
   343
void CTGraphicsWServ0483::Update(CTTAnimation*)
sl@0
   344
	{
sl@0
   345
	if (iAnim->IsComplete() && iCheckAnim->IsComplete())
sl@0
   346
		{
sl@0
   347
		TRgb bgColor(150, 150, 150, 255); 
sl@0
   348
		iAnim->GetWindow()->Win()->SetBackgroundColor(bgColor);
sl@0
   349
		iAnim->GetWindow()->Win()->Invalidate();
sl@0
   350
		TheClient->iWs.Finish();
sl@0
   351
		TheClient->WaitForRedrawsToFinish();
sl@0
   352
		if (!DoCheckRect(iAnim->GetWindow(), iCheckAnim->GetWindow()))
sl@0
   353
			{
sl@0
   354
			SetError(KErrGeneral);
sl@0
   355
			}
sl@0
   356
		SetIsCompleted(ETrue);
sl@0
   357
		}
sl@0
   358
	}
sl@0
   359
sl@0
   360
TPtrC CTGraphicsWServ0483::TestCaseName()
sl@0
   361
	{
sl@0
   362
	_LIT(KTransparentAlphaChannelAnimationTest, "Transparent Anim Test");
sl@0
   363
	
sl@0
   364
	return TPtrC(KTransparentAlphaChannelAnimationTest);
sl@0
   365
	}
sl@0
   366
sl@0
   367
__WS_CONSTRUCT_STEP__(TransparentAnim)