os/graphics/windowing/windowserver/test/t_integ/src/t_pseuodappsurfacedwindow.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) 2007-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
sl@0
    20
*/
sl@0
    21
#include <e32const.h>	//KNullUidValue
sl@0
    22
#include <pixelformats.h>
sl@0
    23
#include "t_pseudoappsurfacedwindow.h"
sl@0
    24
sl@0
    25
#include "t_testsurfacerasterizer.h"
sl@0
    26
#include "t_pseudoapputils.h"
sl@0
    27
#include "t_pseudoappscreen.h" //KScreenWindow
sl@0
    28
#include "t_pseudoappcfbsbitmapanim.h"
sl@0
    29
#include "t_pseudoappvganimation.h"
sl@0
    30
#include "t_pseudoappopenglanimation.h"
sl@0
    31
#include "t_pseudoappperformanceanim.h"
sl@0
    32
sl@0
    33
sl@0
    34
CTestSurfacedWindow* CTestSurfacedWindow::NewL(TInt aScreenNo, TInt aWindowNumber, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
sl@0
    35
							const TDesC& aConfigFileName, CTPseudoAppShared& aPseudoAppShared)
sl@0
    36
	{
sl@0
    37
	RDebug::Print(_L("Creating CTestSurfacedWindow class\n"));
sl@0
    38
    CTestSurfacedWindow* self = new (ELeave) CTestSurfacedWindow(aScreenNo, aWindowNumber, aPseudoAppShared);
sl@0
    39
    CleanupStack::PushL(self);
sl@0
    40
    self->ConstructL(aScreenNo, aWindowNumber, aMode, aFrameDuration, aScreenSize, aGceTestResults, aConfigFileName);
sl@0
    41
    CleanupStack::Pop(); // self;
sl@0
    42
    return self;
sl@0
    43
	}
sl@0
    44
sl@0
    45
void CTestSurfacedWindow::ConstructL(TInt aScreenNo, TInt aWindowNumber, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
sl@0
    46
							const TDesC& aConfigFileName)
sl@0
    47
	{
sl@0
    48
	RDebug::Print(_L("Constructing CTestSurfacedWindow for screen %d\n"), aScreenNo);
sl@0
    49
sl@0
    50
	//Create CIniData class for reading in values form ini files
sl@0
    51
	iUtils = CIniData::NewL(aConfigFileName);
sl@0
    52
sl@0
    53
	TSize surfaceSize;
sl@0
    54
	TInt surfacePresent = 0;
sl@0
    55
	TPixelFormat pixelFormat  = EFormatRgb;
sl@0
    56
sl@0
    57
	RDebug::Print(_L("Import configuration for ui window class and create it\n"));
sl@0
    58
	ImportWindowConfigL(aScreenNo, aWindowNumber, aMode, aFrameDuration, aScreenSize, aGceTestResults);
sl@0
    59
sl@0
    60
	RDebug::Print(_L("Import configuration for test surface class and create it\n"));
sl@0
    61
	ImportSurfaceConfigL(aScreenNo, aWindowNumber, aScreenSize, surfaceSize, surfacePresent, pixelFormat);
sl@0
    62
	
sl@0
    63
	RDebug::Print(_L("Surface height = %d Surface Width = %d\n"),surfaceSize.iHeight, surfaceSize.iWidth);
sl@0
    64
sl@0
    65
	RDebug::Print(_L("Import configuration for test animation class and create it\n"));
sl@0
    66
	ImportAnimConfigL(aScreenNo, aWindowNumber, aMode, surfaceSize, pixelFormat);
sl@0
    67
sl@0
    68
	if(surfacePresent)
sl@0
    69
		{
sl@0
    70
		RDebug::Print(_L("Create Surface Rasterizer\n"));
sl@0
    71
		iSurfaceRasterizer = CTestSurfaceRasterizer::NewL(iSurfaceId, iSurfaceScreenNumber, &iSurfaceManager);
sl@0
    72
sl@0
    73
		if(iSurfaceRasterizer == 0)
sl@0
    74
			{
sl@0
    75
			RDebug::Print(_L("Fatal error creating Surface Rasterizer, aborting\n"));
sl@0
    76
			User::Exit(0);
sl@0
    77
			}
sl@0
    78
		}
sl@0
    79
sl@0
    80
	iGceTestResults = aGceTestResults;
sl@0
    81
	}
sl@0
    82
sl@0
    83
CTestSurfacedWindow::CTestSurfacedWindow(TInt aScreenNo, TInt aWindowNumber, CTPseudoAppShared& aPseudoAppShared)
sl@0
    84
:iScreenNo(aScreenNo), iWindowNumber(aWindowNumber), iPseudoAppShared(aPseudoAppShared)
sl@0
    85
{
sl@0
    86
}
sl@0
    87
sl@0
    88
void CTestSurfacedWindow::UpdateL(SurfaceDetails& aSurfDetails)
sl@0
    89
	{
sl@0
    90
	//Test to see if the surfaced window has an animation associated with it
sl@0
    91
	if(iTestAnimation)
sl@0
    92
		   {
sl@0
    93
		   iTestAnimation->DrawL(iSurfaceRasterizer, aSurfDetails);
sl@0
    94
		   }
sl@0
    95
sl@0
    96
	//Draw the window last to avoid appearance of "black" surface
sl@0
    97
	iTestWindow->DrawL();
sl@0
    98
	}
sl@0
    99
sl@0
   100
CTestSurfacedWindow::~CTestSurfacedWindow()
sl@0
   101
	{
sl@0
   102
	delete iUtils;
sl@0
   103
	if(iSizeArray)
sl@0
   104
		{
sl@0
   105
		TInt noElements = iSizeArray->Count();
sl@0
   106
		iSizeArray->Delete(0, noElements);
sl@0
   107
		delete iSizeArray;
sl@0
   108
		iSizeArray = 0;
sl@0
   109
		}
sl@0
   110
sl@0
   111
	if(iPositionArray)
sl@0
   112
		{
sl@0
   113
		TInt noElements = iPositionArray->Count();
sl@0
   114
		iPositionArray->Delete(0, noElements);
sl@0
   115
		delete iPositionArray;
sl@0
   116
		iPositionArray = 0;
sl@0
   117
		}
sl@0
   118
sl@0
   119
	if(iLoadsarects)
sl@0
   120
		{
sl@0
   121
		TInt noElements = iLoadsarects->Count();
sl@0
   122
		iLoadsarects->Delete(0, noElements);
sl@0
   123
		delete iLoadsarects;
sl@0
   124
		iLoadsarects = 0;
sl@0
   125
		}
sl@0
   126
sl@0
   127
	if(iLoadsaParameters)
sl@0
   128
		{
sl@0
   129
		TInt noElements = iLoadsaParameters->Count();
sl@0
   130
		iLoadsaParameters->Delete(0, noElements);
sl@0
   131
		delete iLoadsaParameters;
sl@0
   132
		iLoadsaParameters = 0;
sl@0
   133
		}
sl@0
   134
sl@0
   135
	delete iSurfaceRasterizer;
sl@0
   136
	delete iTestWindow;
sl@0
   137
	delete iTestAnimation;
sl@0
   138
sl@0
   139
	DestroySurface();
sl@0
   140
	DestroySurfaceManager();
sl@0
   141
	}
sl@0
   142
sl@0
   143
void CTestSurfacedWindow::RotateL(TInt aScreenNo, TInt aWindowNumber, const TSize& aScreenSize, TInt aFrameNumber)
sl@0
   144
	{
sl@0
   145
	if(iTestAnimation)
sl@0
   146
		{
sl@0
   147
		//Destroy the current surface and create a new surface with the new screen dimensions
sl@0
   148
		TSize surfaceSize;
sl@0
   149
		TInt surfacePresent = 0;
sl@0
   150
		TPixelFormat pixelFormat  = EFormatRgb;
sl@0
   151
sl@0
   152
		delete iSurfaceRasterizer;
sl@0
   153
		delete iTestAnimation;
sl@0
   154
sl@0
   155
		DestroySurface();
sl@0
   156
sl@0
   157
		ImportSurfaceConfigL(aScreenNo, aWindowNumber, aScreenSize, surfaceSize, surfacePresent, pixelFormat);
sl@0
   158
sl@0
   159
		RDebug::Print(_L("Surface height = %d Surface Width = %d\n"),surfaceSize.iHeight, surfaceSize.iWidth);
sl@0
   160
sl@0
   161
		RDebug::Print(_L("Import configuration for test animation class and create it\n"));
sl@0
   162
		ImportAnimConfigL(0, 1, EColor16MA, surfaceSize, pixelFormat);
sl@0
   163
sl@0
   164
		if(surfacePresent)
sl@0
   165
			{
sl@0
   166
			RDebug::Print(_L("Create Surface Rasterizer\n"));
sl@0
   167
sl@0
   168
			iSurfaceRasterizer = CTestSurfaceRasterizer::NewL(iSurfaceId, iSurfaceScreenNumber, &iSurfaceManager);
sl@0
   169
sl@0
   170
			if(iSurfaceRasterizer == 0)
sl@0
   171
				{
sl@0
   172
				RDebug::Print(_L("Fatal error creating Surface Rasterizer, aborting\n"));
sl@0
   173
				User::Exit(0);
sl@0
   174
				}
sl@0
   175
			}
sl@0
   176
sl@0
   177
		if(iTestAnimation->RotationSupported())
sl@0
   178
			{
sl@0
   179
			//Continue animation from the last unrotated frame number
sl@0
   180
			iTestAnimation->SetFrameNumber(aFrameNumber);
sl@0
   181
			}
sl@0
   182
		}
sl@0
   183
sl@0
   184
	iTestWindow->Rotate(aScreenSize);
sl@0
   185
	}
sl@0
   186
sl@0
   187
TBool CTestSurfacedWindow::RotationSupported()
sl@0
   188
	{
sl@0
   189
	if(iPseudoAppShared.RotationSupported(iScreenNo, iWindowNumber, iSurfaceId))
sl@0
   190
		{
sl@0
   191
		if(iTestAnimation)
sl@0
   192
			{
sl@0
   193
			return iTestAnimation->RotationSupported();
sl@0
   194
			}
sl@0
   195
		else
sl@0
   196
			{
sl@0
   197
			//If no test animation is present, rotation is possible
sl@0
   198
			return ETrue;
sl@0
   199
			}
sl@0
   200
		}
sl@0
   201
	else
sl@0
   202
		{
sl@0
   203
		return EFalse;
sl@0
   204
		}
sl@0
   205
sl@0
   206
	}
sl@0
   207
	
sl@0
   208
void CTestSurfacedWindow::ImportWindowConfigL(TInt aScreenNo, TInt aWindowNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults)
sl@0
   209
	{
sl@0
   210
	TBuf<KMaxUiBitmapNameLength>	tempStore;
sl@0
   211
	tempStore.Format(KScreenWindowNumber, aScreenNo, aWindowNo);
sl@0
   212
sl@0
   213
	TSize windowSize;
sl@0
   214
	TInt windowType;
sl@0
   215
	TInt windowChangeGeometry;
sl@0
   216
	TInt windowChangeBehavior;
sl@0
   217
sl@0
   218
	tempStore.Format(KScreenWindowNumber, aScreenNo, aWindowNo);
sl@0
   219
sl@0
   220
	READ_INI3A(tempStore,  type,  ui_window, ecom_window, empty_window,
sl@0
   221
	           windowType, EUiWindow, EEcomWindow, EEmptyWindow, iUtils);
sl@0
   222
sl@0
   223
	//viewfinder and empty windows are both catered for by the CTestEmptyWindow class
sl@0
   224
	switch(windowType)
sl@0
   225
		{
sl@0
   226
		case EEcomWindow:
sl@0
   227
			{
sl@0
   228
			TPtrC multiBitmapEcomFile;
sl@0
   229
			TInt multiBitmapEcomFileSize;
sl@0
   230
sl@0
   231
			READ_INI1A(tempStore, multi_bitmap_ecom_file, multiBitmapEcomFile, iUtils);
sl@0
   232
			READ_INI1A(tempStore, multi_bitmap_ecom_file_size, multiBitmapEcomFileSize, iUtils);
sl@0
   233
sl@0
   234
			READ_INI5A(tempStore, window_change_geometry, none, size, position, position_and_size,
sl@0
   235
			           position_and_size_with_opacity, windowChangeGeometry, ENoChanges, EWindowSize,
sl@0
   236
			           EWindowPosition, EWindowPositionAndSize, EWindowPositionAndSizeWithOpacity, iUtils);
sl@0
   237
			READ_INI3A(tempStore, window_change_behavior, none, incremental, cyclic, windowChangeBehavior,
sl@0
   238
			           ENoChange, EIncremental, ECyclic, iUtils);
sl@0
   239
sl@0
   240
		 	
sl@0
   241
sl@0
   242
			iSizeArray = ImportWindowSizeChangeParamsL(tempStore);
sl@0
   243
			iPositionArray = ImportWindowPositionChangeParamsL(tempStore);
sl@0
   244
sl@0
   245
			BuildDimensionArrayL(aScreenSize, aFrameDuration, windowChangeGeometry, windowChangeBehavior);
sl@0
   246
sl@0
   247
	 		iTestWindow = CTestEcomWindow::NewL(aScreenNo, aMode, multiBitmapEcomFile, multiBitmapEcomFileSize, aGceTestResults, iLoadsaParameters);
sl@0
   248
			break;
sl@0
   249
			}
sl@0
   250
		case EEmptyWindow:
sl@0
   251
	 		{
sl@0
   252
	 		iTestWindow = CTestEmptyWindow::NewL(aScreenNo, aMode, aScreenSize);
sl@0
   253
	 		break;
sl@0
   254
	 		}
sl@0
   255
	 	case EUiWindow:
sl@0
   256
	 		{
sl@0
   257
			TPtrC multiBitmapUiFile;
sl@0
   258
			TInt multiBitmapUiFileSize;
sl@0
   259
			TInt multiBitmapUiFileTransparency;
sl@0
   260
sl@0
   261
			READ_INI1A(tempStore, multi_bitmap_ui_file, multiBitmapUiFile, iUtils);
sl@0
   262
			READ_INI1A(tempStore, multi_bitmap_ui_file_size, multiBitmapUiFileSize, iUtils);
sl@0
   263
			READ_INI2A(tempStore, multi_bitmap_ui_file_transparency, True,  False,
sl@0
   264
	                   multiBitmapUiFileTransparency, ETrue, EFalse, iUtils);
sl@0
   265
			READ_INI5A(tempStore, window_change_geometry, none, size, position, position_and_size,
sl@0
   266
			           position_and_size_with_opacity, windowChangeGeometry, ENoChanges, EWindowSize,
sl@0
   267
			           EWindowPosition, EWindowPositionAndSize, EWindowPositionAndSizeWithOpacity, iUtils);
sl@0
   268
			READ_INI3A(tempStore, window_change_behavior, none, incremental, cyclic, windowChangeBehavior,
sl@0
   269
			           ENoChange, EIncremental, ECyclic, iUtils);
sl@0
   270
sl@0
   271
sl@0
   272
			iSizeArray = ImportWindowSizeChangeParamsL(tempStore);
sl@0
   273
			iPositionArray = ImportWindowPositionChangeParamsL(tempStore);
sl@0
   274
sl@0
   275
			BuildDimensionArrayL(aScreenSize, aFrameDuration, windowChangeGeometry, windowChangeBehavior);
sl@0
   276
sl@0
   277
			iLoadsarects = ImportWindowBitmapParamsL(tempStore, multiBitmapUiFileSize, aScreenSize);
sl@0
   278
sl@0
   279
			iTestWindow = CTestUiWindow::NewL(aScreenNo, aMode, multiBitmapUiFile, multiBitmapUiFileSize, iLoadsarects,
sl@0
   280
											  aFrameDuration,
sl@0
   281
											  multiBitmapUiFileTransparency,
sl@0
   282
											  aGceTestResults, iLoadsaParameters);
sl@0
   283
			break;
sl@0
   284
	 		}
sl@0
   285
	 	default:
sl@0
   286
	 		{
sl@0
   287
			break;	//Cannot reach default, Lint warning removal only
sl@0
   288
			}
sl@0
   289
		}
sl@0
   290
	}
sl@0
   291
sl@0
   292
void CTestSurfacedWindow::ImportSurfaceConfigL(TInt aScreenNo, TInt aWindowNo, const TSize& aScreenSize, TSize& aSurfaceSize, TInt& aSurfacePresent, TPixelFormat& aPixelFormat)
sl@0
   293
	{
sl@0
   294
	TBuf<KMaxUiBitmapNameLength>	tempStore;
sl@0
   295
	tempStore.Format(KScreenSurface, aScreenNo, aWindowNo);
sl@0
   296
sl@0
   297
	TInt shareScreenNumber;
sl@0
   298
	TInt shareWindowNumber;
sl@0
   299
sl@0
   300
	// Check to see if window is sharing surface with another window
sl@0
   301
	TBool shareSurface = TImportScreenConfig::GetShareSurfaceInfoL(aScreenNo, aWindowNo, shareScreenNumber, shareWindowNumber, iUtils);
sl@0
   302
sl@0
   303
	// Check to see if this window already has a SurfaceId allocated for it s
sl@0
   304
	iSurfaceId = iPseudoAppShared.GetSurfaceId(aScreenNo, aWindowNo);
sl@0
   305
	
sl@0
   306
	if(shareSurface && iSurfaceId.IsNull())
sl@0
   307
		{
sl@0
   308
		// SurfaceId not found, but check to see if the sharing window already has a SurfaceId allocated for it
sl@0
   309
		iSurfaceId = iPseudoAppShared.GetSurfaceId(shareScreenNumber, shareWindowNumber);
sl@0
   310
		}
sl@0
   311
sl@0
   312
	if(!iSurfaceId.IsNull())
sl@0
   313
		{
sl@0
   314
		// SurfaceId found - open surface to use with this window
sl@0
   315
		
sl@0
   316
		//Create a surface manager session
sl@0
   317
		CreateSurfaceManager();
sl@0
   318
sl@0
   319
		iSurfaceManager.OpenSurface(iSurfaceId);
sl@0
   320
		RSurfaceManager::TInfoBuf infoBuf;
sl@0
   321
		User::LeaveIfError(KErrNone == iSurfaceManager.SurfaceInfo(iSurfaceId, infoBuf));
sl@0
   322
		RSurfaceManager::TSurfaceInfoV01& info = infoBuf();
sl@0
   323
		aSurfaceSize = info.iSize;
sl@0
   324
		if(info.iPixelFormat == EUidPixelFormatYUV_422Interleaved)
sl@0
   325
			{
sl@0
   326
			aPixelFormat =EFormatYuv;
sl@0
   327
			}
sl@0
   328
		aSurfacePresent = ETrue;
sl@0
   329
		shareSurface = ETrue;
sl@0
   330
		}
sl@0
   331
	else
sl@0
   332
		{
sl@0
   333
		// SurfaceId not found - create surface to use with this window
sl@0
   334
sl@0
   335
		READ_INI2A(tempStore, surface_present, True, False, aSurfacePresent, ETrue, EFalse, iUtils);
sl@0
   336
		READ_INI1A(tempStore, sneeky_surface_height, aSurfaceSize.iHeight, iUtils);
sl@0
   337
		READ_INI1A(tempStore, surface_width, aSurfaceSize.iWidth, iUtils);
sl@0
   338
	
sl@0
   339
		//Convert surface size percentages to pixel sizes
sl@0
   340
		if(aScreenSize.iWidth <= 0)
sl@0
   341
			{
sl@0
   342
			RDebug::Print(_L("surface_width is zero or less, quitting\n"));
sl@0
   343
			User::Exit(0);
sl@0
   344
			}
sl@0
   345
		else
sl@0
   346
			{
sl@0
   347
			aSurfaceSize.iWidth = aSurfaceSize.iWidth*aScreenSize.iWidth/100;
sl@0
   348
			}
sl@0
   349
	
sl@0
   350
		if(aScreenSize.iHeight <= 0)
sl@0
   351
			{
sl@0
   352
			RDebug::Print(_L("surface_height is zero or less, quitting\n"));
sl@0
   353
			User::Exit(0);
sl@0
   354
			}
sl@0
   355
		else
sl@0
   356
			{
sl@0
   357
			aSurfaceSize.iHeight = aSurfaceSize.iHeight*aScreenSize.iHeight/100;
sl@0
   358
			}
sl@0
   359
sl@0
   360
		if(!aSurfacePresent && !shareSurface)
sl@0
   361
			{
sl@0
   362
			RDebug::Print(_L("Screen %d, Window %d has no backgroung surface\n"),aScreenNo, aWindowNo);
sl@0
   363
			return;
sl@0
   364
			}
sl@0
   365
sl@0
   366
		RDebug::Print(_L("Setting up surface attributes\n"));
sl@0
   367
		TInt bytesPerPixel;
sl@0
   368
		TInt pixelFormat;
sl@0
   369
		RSurfaceManager::TSurfaceCreationAttributesBuf attribBuf;
sl@0
   370
		RSurfaceManager::TSurfaceCreationAttributes& buffer = attribBuf();
sl@0
   371
	    buffer.iMappable = ETrue;
sl@0
   372
sl@0
   373
		READ_INI4A(tempStore, surface_pixel_format, EUidPixelFormatARGB_8888, EUidPixelFormatRGB_565, EUidPixelFormatARGB_8888_PRE,
sl@0
   374
		           EUidPixelFormatYUV_422Interleaved, pixelFormat, EUidPixelFormatARGB_8888, EUidPixelFormatRGB_565, EUidPixelFormatARGB_8888_PRE,
sl@0
   375
		           EUidPixelFormatYUV_422Interleaved, iUtils);
sl@0
   376
		READ_INI1A(tempStore, surface_bytes_per_pixel, bytesPerPixel, iUtils);
sl@0
   377
		READ_INI1A(tempStore, surface_offset_to_first_buffer, buffer.iOffsetToFirstBuffer, iUtils);
sl@0
   378
		READ_INI1A(tempStore, surface_alignment, buffer.iAlignment, iUtils);
sl@0
   379
		READ_INI2A(tempStore, surface_contiguous, True, False, buffer.iContiguous, ETrue, EFalse, iUtils);
sl@0
   380
		READ_INI1A(tempStore, surface_buffer_number, buffer.iBuffers, iUtils);
sl@0
   381
	
sl@0
   382
		buffer.iPixelFormat = static_cast<TUidPixelFormat>(pixelFormat);
sl@0
   383
		iSurfaceBufferNumber = buffer.iBuffers;
sl@0
   384
		iSurfaceScreenNumber = aScreenNo;
sl@0
   385
		if(buffer.iPixelFormat == EUidPixelFormatYUV_422Interleaved)
sl@0
   386
			{
sl@0
   387
			aPixelFormat =EFormatYuv;
sl@0
   388
			}
sl@0
   389
	
sl@0
   390
		//Assign size attribute to surface size calculated above
sl@0
   391
		buffer.iSize = aSurfaceSize;
sl@0
   392
	
sl@0
   393
		//Calculate required stride
sl@0
   394
		buffer.iStride = buffer.iSize.iWidth * bytesPerPixel;
sl@0
   395
		RDebug::Print(_L("Stride is %d\n"),buffer.iStride);
sl@0
   396
sl@0
   397
		//Create a surface manager session
sl@0
   398
		CreateSurfaceManager();
sl@0
   399
sl@0
   400
		RDebug::Print(_L("Call to CreateSurface()\n"));
sl@0
   401
		TInt err = iSurfaceManager.CreateSurface(attribBuf, iSurfaceId);
sl@0
   402
		if (err != KErrNone)
sl@0
   403
			{
sl@0
   404
			RDebug::Print(_L("Error creating surface, aborting\n"));
sl@0
   405
			User::Exit(0);
sl@0
   406
			}
sl@0
   407
		}
sl@0
   408
sl@0
   409
	//Assign the created surface to be the window background - surface needs to be open to do this ?????
sl@0
   410
	//Window must be activated at this point for the correct screen mode to be applied
sl@0
   411
	RDebug::Print(_L("Set Background Surface on the window\n"));
sl@0
   412
sl@0
   413
	TInt ret = iTestWindow->Window()->SetBackgroundSurface(iSurfaceId);
sl@0
   414
	if(ret != KErrNone)
sl@0
   415
		{
sl@0
   416
		RDebug::Print(_L("Error associating surface with window, SetBackgroundSurface returns %d aborting\n"), ret);
sl@0
   417
	 	User::Exit(0);
sl@0
   418
	 	}
sl@0
   419
sl@0
   420
	// Update PseudoAppShared SurfaceId array
sl@0
   421
	iPseudoAppShared.SetSurfaceIdL(aScreenNo, aWindowNo, iSurfaceId);
sl@0
   422
	if(shareSurface)
sl@0
   423
		{
sl@0
   424
		iPseudoAppShared.SetSurfaceIdL(shareScreenNumber, shareWindowNumber, iSurfaceId);
sl@0
   425
		}
sl@0
   426
	}
sl@0
   427
sl@0
   428
void CTestSurfacedWindow::ImportAnimConfigL(TInt aScreenNo, TInt aWindowNo, TDisplayMode aMode, const TSize& aSurfaceSize, TPixelFormat aPixelFormat)
sl@0
   429
	{
sl@0
   430
	TInt applicationType;
sl@0
   431
	TBuf<KMaxUiBitmapNameLength>	tempStore;
sl@0
   432
	tempStore.Format(KScreenAnimation, aScreenNo, aWindowNo);
sl@0
   433
sl@0
   434
	READ_INI5A(tempStore, application_type, none,   cfbsbitmap, openvg,  opengles,  performance,
sl@0
   435
               applicationType,  ENoApp, EFbsBitmap, EOpenVG, EOpenGLes, EPerformance, iUtils);
sl@0
   436
sl@0
   437
	if(applicationType == ENoApp)
sl@0
   438
		{
sl@0
   439
		RDebug::Print(_L("Screen %d, Window %d has no surface animation\n"),aScreenNo, aWindowNo);
sl@0
   440
		return;
sl@0
   441
		}
sl@0
   442
sl@0
   443
	TInt imageSize;
sl@0
   444
	TPtrC multiBitmapAnimFile;
sl@0
   445
	TInt verticalRate;
sl@0
   446
	TInt horizontalRate;
sl@0
   447
sl@0
   448
	//Read in the values from the ini file, taking specified action on failure
sl@0
   449
	READ_INI1A(tempStore, image_size, imageSize, iUtils);
sl@0
   450
	READ_INI1A(tempStore, multi_bitmap_anim_file, multiBitmapAnimFile, iUtils);
sl@0
   451
	READ_INI1A(tempStore, vertical_frames_per_traverse, verticalRate, iUtils);
sl@0
   452
	READ_INI1A(tempStore, horizontal_frames_per_traverse, horizontalRate, iUtils);
sl@0
   453
sl@0
   454
	//Ensure the animation step sizes are sub-multiples of the frame dimensions
sl@0
   455
	TImportScreenConfig::VerifyFramesPerTraverse(horizontalRate, aSurfaceSize.iWidth);
sl@0
   456
	TImportScreenConfig::VerifyFramesPerTraverse(verticalRate, aSurfaceSize.iHeight);
sl@0
   457
sl@0
   458
	//Convert image size percentage into a pixel size
sl@0
   459
	if(imageSize <= 0)
sl@0
   460
		{
sl@0
   461
		RDebug::Print(_L("image_size is zero or less, quitting\n"));
sl@0
   462
		User::Exit(0);
sl@0
   463
		}
sl@0
   464
	else
sl@0
   465
		{
sl@0
   466
		//Scale the bitmap to the short screen dimension
sl@0
   467
		if(aSurfaceSize.iWidth > aSurfaceSize.iHeight)
sl@0
   468
			{
sl@0
   469
			imageSize = imageSize*aSurfaceSize.iHeight/100;
sl@0
   470
			}
sl@0
   471
		else
sl@0
   472
			{
sl@0
   473
			imageSize = imageSize*aSurfaceSize.iWidth/100;
sl@0
   474
			}
sl@0
   475
		}
sl@0
   476
sl@0
   477
	iTestAnimation = CreateAnimationL(applicationType, TSize(imageSize,imageSize),
sl@0
   478
		                              aSurfaceSize, multiBitmapAnimFile, aMode,
sl@0
   479
		                              horizontalRate, verticalRate, aPixelFormat);
sl@0
   480
	}
sl@0
   481
sl@0
   482
sl@0
   483
CTestAnimation*  CTestSurfacedWindow::CreateAnimationL(TInt aAppType, const TSize& aAnimSize, const TSize& aSurfaceSize,
sl@0
   484
                                                       TPtrC& aBitmapFile, TDisplayMode aDisplayMode,
sl@0
   485
                                                       TInt aHorizontalRate, TInt aVerticalRate,
sl@0
   486
                                                       TPixelFormat aPixelFormat)
sl@0
   487
	{
sl@0
   488
	CTestAnimation* anim = 0;
sl@0
   489
	switch(aAppType)
sl@0
   490
		{
sl@0
   491
		case EFbsBitmap:
sl@0
   492
			{
sl@0
   493
			anim = CCFbsBitmapAnimation::NewL(aDisplayMode,
sl@0
   494
			                                  aAnimSize,
sl@0
   495
			                                  aSurfaceSize,
sl@0
   496
			                                  aBitmapFile,
sl@0
   497
			                                  aHorizontalRate,
sl@0
   498
			                                  aVerticalRate,
sl@0
   499
			                                  aPixelFormat);
sl@0
   500
			break;
sl@0
   501
			}
sl@0
   502
sl@0
   503
		case EOpenVG:
sl@0
   504
			{
sl@0
   505
			anim = CVgAnimation::NewL(iTestWindow->Window(),
sl@0
   506
									  aDisplayMode,
sl@0
   507
			                          aSurfaceSize,
sl@0
   508
			                          aHorizontalRate,
sl@0
   509
			                          aVerticalRate);
sl@0
   510
			break;
sl@0
   511
			}
sl@0
   512
		case EOpenGLes:
sl@0
   513
			{
sl@0
   514
			anim = COpenGLAnimation::NewL(iTestWindow->Window(),
sl@0
   515
										  aDisplayMode,
sl@0
   516
				                          aSurfaceSize,
sl@0
   517
				                          aHorizontalRate,
sl@0
   518
				                          aVerticalRate);
sl@0
   519
			break;
sl@0
   520
			}
sl@0
   521
sl@0
   522
		case EPerformance:
sl@0
   523
			{
sl@0
   524
			anim = CPerformanceAnimation::NewL();
sl@0
   525
			break;
sl@0
   526
			}
sl@0
   527
		case ENoApp:
sl@0
   528
			{
sl@0
   529
			break;
sl@0
   530
			}
sl@0
   531
		default:
sl@0
   532
			{
sl@0
   533
			break;	//Cannot reach the default, Lint warning removal purposes only
sl@0
   534
			}
sl@0
   535
		}
sl@0
   536
	return anim;
sl@0
   537
	}
sl@0
   538
sl@0
   539
CArrayFixFlat<TRect>* CTestSurfacedWindow::ImportWindowBitmapParamsL(const TDesC& tempStore, TInt aMultiBitmapUiFileSize, const TSize& aScreenSize)
sl@0
   540
	{
sl@0
   541
	TBuf<KMaxUiBitmapNameLength>	temp;
sl@0
   542
	TBuf<KMaxUiBitmapNameLength>	tempStore1;
sl@0
   543
sl@0
   544
	CArrayFixFlat<TRect>* loadsarects = new (ELeave) CArrayFixFlat<TRect>(1);
sl@0
   545
sl@0
   546
	for(TInt i=0; i<aMultiBitmapUiFileSize; i++)
sl@0
   547
		{
sl@0
   548
		TPtrC rectString;
sl@0
   549
		TRect aRect;
sl@0
   550
sl@0
   551
		tempStore1.Format(KUiBitmapScaling, i);
sl@0
   552
		temp = tempStore;
sl@0
   553
		temp.Append(tempStore1);
sl@0
   554
sl@0
   555
		TImportScreenConfig::ReadIni(temp, rectString, iUtils);
sl@0
   556
sl@0
   557
		if(TImportScreenConfig::ExtractRect(rectString, aRect, aScreenSize) == KErrNone)
sl@0
   558
			{
sl@0
   559
			loadsarects->ExtendL() = aRect;
sl@0
   560
			}
sl@0
   561
		else
sl@0
   562
			{
sl@0
   563
			RDebug::Print(_L("Cannot determine rectangle dimensions from string: %s\n"), rectString.Ptr());
sl@0
   564
			RDebug::Print(_L("Undefined behavior may result\n"));
sl@0
   565
			}
sl@0
   566
		}
sl@0
   567
	return loadsarects;
sl@0
   568
	}
sl@0
   569
sl@0
   570
CArrayFixFlat<TInt>* CTestSurfacedWindow::ImportWindowSizeChangeParamsL(const TDesC& tempStore)
sl@0
   571
	{
sl@0
   572
	TBuf<KMaxUiBitmapNameLength> temp = tempStore;
sl@0
   573
	CArrayFixFlat<TInt>* intArray = new (ELeave) CArrayFixFlat<TInt>(1);
sl@0
   574
sl@0
   575
	TInt windowSizeValues;
sl@0
   576
	TBuf<KMaxUiBitmapNameLength>	tempStore1;
sl@0
   577
sl@0
   578
	READ_INI1A(tempStore, window_size_values, windowSizeValues, iUtils);
sl@0
   579
sl@0
   580
	TInt windowSize;
sl@0
   581
	for(TInt i=1; i<windowSizeValues+1; i++)
sl@0
   582
		{
sl@0
   583
		tempStore1.Format(KWindowSizes, i);
sl@0
   584
		temp = tempStore;
sl@0
   585
		temp.Append(tempStore1);
sl@0
   586
		TImportScreenConfig::ReadIni(temp, windowSize, iUtils);
sl@0
   587
		intArray->ExtendL() = windowSize;
sl@0
   588
		}
sl@0
   589
sl@0
   590
	return intArray;
sl@0
   591
	}
sl@0
   592
sl@0
   593
CArrayFixFlat<TInt>* CTestSurfacedWindow::ImportWindowPositionChangeParamsL(const TDesC& tempStore)
sl@0
   594
	{
sl@0
   595
	TBuf<KMaxUiBitmapNameLength> temp = tempStore;
sl@0
   596
	CArrayFixFlat<TInt>* intArray = new (ELeave) CArrayFixFlat<TInt>(1);
sl@0
   597
sl@0
   598
	TInt windowPositionValues;
sl@0
   599
	TBuf<KMaxUiBitmapNameLength>	tempStore1;
sl@0
   600
sl@0
   601
	READ_INI1A(tempStore, window_position_values, windowPositionValues, iUtils);
sl@0
   602
sl@0
   603
	for(TInt i=1; i<windowPositionValues+1; i++)
sl@0
   604
		{
sl@0
   605
		TPoint point;
sl@0
   606
		TPtrC windowPosition;
sl@0
   607
		tempStore1.Format(KWindowPositions, i);
sl@0
   608
		temp = tempStore;
sl@0
   609
		temp.Append(tempStore1);
sl@0
   610
		TImportScreenConfig::ReadIni(temp, windowPosition, iUtils);
sl@0
   611
		if(TImportScreenConfig::ExtractPoint(windowPosition, point) == KErrNone)
sl@0
   612
			{
sl@0
   613
sl@0
   614
			intArray->ExtendL() = point.iX;
sl@0
   615
			intArray->ExtendL() = point.iY;
sl@0
   616
			}
sl@0
   617
		else
sl@0
   618
			{
sl@0
   619
			RDebug::Print(_L("Cannot determine point dimensions from string: %s\n"), windowPosition.Ptr());
sl@0
   620
			RDebug::Print(_L("Undefined behavior may result\n"));
sl@0
   621
			}
sl@0
   622
		}
sl@0
   623
	return intArray;
sl@0
   624
	}
sl@0
   625
sl@0
   626
void CTestSurfacedWindow::CreateSurfaceManager()
sl@0
   627
	{
sl@0
   628
	RDebug::Print(_L("Create Surface Manager\n"));
sl@0
   629
sl@0
   630
	TInt ret;
sl@0
   631
sl@0
   632
	RDebug::Print(_L("Loading the device driver and Opening the Logical Channel\n"));
sl@0
   633
	ret = iSurfaceManager.Open();
sl@0
   634
	if(ret==KErrNone)
sl@0
   635
		{
sl@0
   636
		RDebug::Print(_L("Surface manager opened ok\n"));
sl@0
   637
		}
sl@0
   638
	else
sl@0
   639
		{
sl@0
   640
		RDebug::Print(_L("Error opening surface manager\n"));
sl@0
   641
		}
sl@0
   642
	}
sl@0
   643
sl@0
   644
void CTestSurfacedWindow::DestroySurfaceManager()
sl@0
   645
	{
sl@0
   646
	RDebug::Print(_L("Close the Logical Channel\n"));
sl@0
   647
	iSurfaceManager.Close();
sl@0
   648
	}
sl@0
   649
sl@0
   650
void CTestSurfacedWindow::DestroySurface()
sl@0
   651
	{
sl@0
   652
	// Remove SurfaceId entry from surface array
sl@0
   653
	iPseudoAppShared.RemoveSurfaceIdEntry(iScreenNo, iWindowNumber);
sl@0
   654
sl@0
   655
	RDebug::Print(_L("Closing surface\n"));
sl@0
   656
	TInt ret = iSurfaceManager.CloseSurface(iSurfaceId);
sl@0
   657
sl@0
   658
	if(ret!=KErrNone)
sl@0
   659
		{
sl@0
   660
		RDebug::Print(_L("Surface failed to close\n"));
sl@0
   661
		}
sl@0
   662
	}
sl@0
   663
sl@0
   664
void CTestSurfacedWindow::BuildDimensionArrayL(const TSize& aScreenSize, TInt aFrameDuration, TInt aWindowChangeGeometry, TInt aWindowChangeBehavior)
sl@0
   665
	{
sl@0
   666
	TInt indexX;
sl@0
   667
	TInt indexY;
sl@0
   668
sl@0
   669
	iLoadsaParameters = new (ELeave) CArrayFixFlat<TDrawParameters>(1);
sl@0
   670
sl@0
   671
	TDrawParameters drawParams;
sl@0
   672
sl@0
   673
	for(TInt i=0; i<aFrameDuration; i++)
sl@0
   674
		{
sl@0
   675
		if(i)
sl@0
   676
			{
sl@0
   677
			drawParams = (*iLoadsaParameters)[i - 1];
sl@0
   678
			}
sl@0
   679
		else
sl@0
   680
			{
sl@0
   681
			drawParams.iWindowSize = TSize((aScreenSize.iWidth * (*iSizeArray)[0])/100,
sl@0
   682
			                         	   (aScreenSize.iHeight * (*iSizeArray)[0])/100);
sl@0
   683
			drawParams.iWindowPos = TPoint((aScreenSize.iWidth * (*iPositionArray)[0])/100,
sl@0
   684
			                         	   (aScreenSize.iHeight * (*iPositionArray)[1])/100);
sl@0
   685
			drawParams.iBitmapScale = (*iSizeArray)[0];
sl@0
   686
			drawParams.iBitmapAlpha = 127;
sl@0
   687
			}
sl@0
   688
sl@0
   689
		switch(aWindowChangeBehavior)
sl@0
   690
			{
sl@0
   691
			case ECyclic:
sl@0
   692
				{
sl@0
   693
				switch(aWindowChangeGeometry)
sl@0
   694
					{
sl@0
   695
					case ENoChanges:
sl@0
   696
						{
sl@0
   697
						drawParams.iWindowSize = aScreenSize;
sl@0
   698
						break;
sl@0
   699
						}
sl@0
   700
					case EWindowSize:
sl@0
   701
						{
sl@0
   702
						if(i < aFrameDuration/2)
sl@0
   703
							{
sl@0
   704
							drawParams.iBitmapScale = (*iSizeArray)[0] + (2*((*iSizeArray)[1] - (*iSizeArray)[0])*i)/aFrameDuration;
sl@0
   705
							}
sl@0
   706
						else
sl@0
   707
							{
sl@0
   708
							drawParams.iBitmapScale = 2*((*iSizeArray)[1]) - (*iSizeArray)[0] + (2*((*iSizeArray)[0] - (*iSizeArray)[1])*i)/aFrameDuration;
sl@0
   709
							}
sl@0
   710
sl@0
   711
						drawParams.iWindowSize = TSize( (aScreenSize.iWidth*drawParams.iBitmapScale)/100,
sl@0
   712
														(aScreenSize.iHeight*drawParams.iBitmapScale)/100 );
sl@0
   713
sl@0
   714
						break;
sl@0
   715
						}
sl@0
   716
					case EWindowPosition:
sl@0
   717
						{
sl@0
   718
						ParamChangeCyclicPosition(drawParams, i, aFrameDuration, aScreenSize);
sl@0
   719
						break;
sl@0
   720
						}
sl@0
   721
					case EWindowPositionAndSize:
sl@0
   722
						{
sl@0
   723
						ParamChangeCyclicPositionAndSize(drawParams, i, aFrameDuration, aScreenSize);
sl@0
   724
						break;
sl@0
   725
						}
sl@0
   726
					default:
sl@0
   727
						{
sl@0
   728
						break;
sl@0
   729
						}
sl@0
   730
					}
sl@0
   731
				break;
sl@0
   732
				}
sl@0
   733
			case EIncremental:
sl@0
   734
				{
sl@0
   735
				switch(aWindowChangeGeometry)
sl@0
   736
					{
sl@0
   737
					case ENoChanges:
sl@0
   738
						{
sl@0
   739
						break;
sl@0
   740
						}
sl@0
   741
					case EWindowSize:
sl@0
   742
						{
sl@0
   743
						drawParams.iBitmapScale = (*iSizeArray)[ (i*(iSizeArray->Count()))/aFrameDuration];
sl@0
   744
						drawParams.iWindowSize = TSize( (aScreenSize.iWidth*drawParams.iBitmapScale)/100,
sl@0
   745
														(aScreenSize.iHeight*drawParams.iBitmapScale)/100 );
sl@0
   746
						break;
sl@0
   747
						}
sl@0
   748
					case EWindowPosition:
sl@0
   749
						{
sl@0
   750
						indexX = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration);
sl@0
   751
						indexY = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration) + 1;
sl@0
   752
						drawParams.iWindowPos.iX = (aScreenSize.iWidth * (*iPositionArray)[indexX])/100;
sl@0
   753
						drawParams.iWindowPos.iY = (aScreenSize.iHeight * (*iPositionArray)[indexY])/100;
sl@0
   754
						break;
sl@0
   755
						}
sl@0
   756
					case EWindowPositionAndSize:
sl@0
   757
						{
sl@0
   758
						drawParams.iBitmapScale = (*iSizeArray)[ (i*(iSizeArray->Count()))/aFrameDuration];
sl@0
   759
						drawParams.iWindowSize = TSize( (aScreenSize.iWidth*drawParams.iBitmapScale)/100,
sl@0
   760
														(aScreenSize.iHeight*drawParams.iBitmapScale)/100 );
sl@0
   761
sl@0
   762
						indexX = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration);
sl@0
   763
						indexY = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration) + 1;
sl@0
   764
						drawParams.iWindowPos.iX = (aScreenSize.iWidth * (*iPositionArray)[indexX])/100;
sl@0
   765
						drawParams.iWindowPos.iY = (aScreenSize.iHeight * (*iPositionArray)[indexY])/100;
sl@0
   766
						break;
sl@0
   767
						}
sl@0
   768
					case EWindowPositionAndSizeWithOpacity:
sl@0
   769
						{
sl@0
   770
						ParamChangeOpacity(i, aFrameDuration, drawParams);
sl@0
   771
						drawParams.iBitmapScale = (*iSizeArray)[ (i*(iSizeArray->Count()))/aFrameDuration];
sl@0
   772
						drawParams.iWindowSize = TSize( (aScreenSize.iWidth*drawParams.iBitmapScale)/100,
sl@0
   773
														(aScreenSize.iHeight*drawParams.iBitmapScale)/100 );
sl@0
   774
sl@0
   775
						indexX = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration);
sl@0
   776
						indexY = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration) + 1;
sl@0
   777
						drawParams.iWindowPos.iX = (aScreenSize.iWidth * (*iPositionArray)[indexX])/100;
sl@0
   778
						drawParams.iWindowPos.iY = (aScreenSize.iHeight * (*iPositionArray)[indexY])/100;
sl@0
   779
						break;
sl@0
   780
						}
sl@0
   781
					default:
sl@0
   782
						{
sl@0
   783
						break;
sl@0
   784
						}
sl@0
   785
					}
sl@0
   786
				break;
sl@0
   787
				}
sl@0
   788
sl@0
   789
			case ENoChange:
sl@0
   790
			default:
sl@0
   791
				{
sl@0
   792
				break;
sl@0
   793
				}
sl@0
   794
			}
sl@0
   795
sl@0
   796
		iLoadsaParameters->ExtendL() = drawParams;
sl@0
   797
		}
sl@0
   798
	}
sl@0
   799
sl@0
   800
void CTestSurfacedWindow::ParamChangeCyclicPosition(TDrawParameters& aDrawParams, TInt aFrameCounter, TInt aFrameDuration, const TSize& aScreenSize)
sl@0
   801
	{
sl@0
   802
	TInt increment = (aScreenSize.iHeight * (100 - (*iSizeArray)[0]) +
sl@0
   803
	                  aScreenSize.iWidth  * (100 - (*iSizeArray)[0]))/(aFrameDuration * 25);
sl@0
   804
sl@0
   805
	if(aFrameCounter < (aFrameDuration/2 - 1))
sl@0
   806
		{
sl@0
   807
		CalcNewWindowLocation(aScreenSize, increment, 1, aDrawParams);
sl@0
   808
		}
sl@0
   809
	else if(aFrameCounter != (aFrameDuration - 1))
sl@0
   810
		{
sl@0
   811
		CalcNewWindowLocation(aScreenSize, increment, -1, aDrawParams);
sl@0
   812
		}
sl@0
   813
	else
sl@0
   814
		{
sl@0
   815
		aDrawParams.iWindowPos.iY -= increment;
sl@0
   816
		}
sl@0
   817
	}
sl@0
   818
sl@0
   819
void CTestSurfacedWindow::ParamChangeCyclicPositionAndSize(TDrawParameters& aDrawParams, TInt aFrameCounter, TInt aFrameDuration, const TSize& aScreenSize)
sl@0
   820
	{
sl@0
   821
	TInt incrementX = 2*aScreenSize.iWidth/aFrameDuration;
sl@0
   822
	TInt incrementY = 2*aScreenSize.iHeight/aFrameDuration;
sl@0
   823
	TSize incrementSize(incrementX, incrementY);
sl@0
   824
	TInt eigth = aFrameDuration/8;
sl@0
   825
sl@0
   826
	if(aFrameCounter < eigth)
sl@0
   827
		{
sl@0
   828
		aDrawParams.iWindowSize -= incrementSize;
sl@0
   829
		aDrawParams.iWindowPos.iY += incrementY;
sl@0
   830
		aDrawParams.iWindowPos.iX = 0;
sl@0
   831
		}
sl@0
   832
	else if( (aFrameCounter >= eigth) && (aFrameCounter < 2*eigth) )
sl@0
   833
		{
sl@0
   834
		aDrawParams.iWindowSize -= incrementSize;
sl@0
   835
		aDrawParams.iWindowPos.iY += incrementY;
sl@0
   836
		aDrawParams.iWindowPos.iX += 2*incrementX;
sl@0
   837
		}
sl@0
   838
	else if( (aFrameCounter >= 2*eigth) && (aFrameCounter < 3*eigth) )
sl@0
   839
		{
sl@0
   840
		aDrawParams.iWindowSize -= incrementSize;
sl@0
   841
		aDrawParams.iWindowPos.iY -= 2*incrementY;
sl@0
   842
		aDrawParams.iWindowPos.iX += incrementX;
sl@0
   843
		}
sl@0
   844
	else if( (aFrameCounter >= 3*eigth) && (aFrameCounter < 4*eigth) )
sl@0
   845
		{
sl@0
   846
		aDrawParams.iWindowSize -= incrementSize;
sl@0
   847
		aDrawParams.iWindowPos.iY = 0;
sl@0
   848
		aDrawParams.iWindowPos.iX -= 3*incrementX;
sl@0
   849
		}
sl@0
   850
	else if( (aFrameCounter >= 4*eigth) && (aFrameCounter < 5*eigth) )
sl@0
   851
		{
sl@0
   852
		aDrawParams.iWindowSize += incrementSize;
sl@0
   853
		aDrawParams.iWindowPos.iY = 0;
sl@0
   854
		aDrawParams.iWindowPos.iX += 3*incrementX;
sl@0
   855
		}
sl@0
   856
	else if( (aFrameCounter >= 5*eigth) && (aFrameCounter < 6*eigth) )
sl@0
   857
		{
sl@0
   858
		aDrawParams.iWindowSize += incrementSize;
sl@0
   859
		aDrawParams.iWindowPos.iY += 2*incrementY;
sl@0
   860
		aDrawParams.iWindowPos.iX -= incrementX;
sl@0
   861
		}
sl@0
   862
	else if( (aFrameCounter >= 6*eigth) && (aFrameCounter < 7*eigth) )
sl@0
   863
		{
sl@0
   864
		aDrawParams.iWindowSize += incrementSize;
sl@0
   865
		aDrawParams.iWindowPos.iY -= incrementY;
sl@0
   866
		aDrawParams.iWindowPos.iX -= 2*incrementX;
sl@0
   867
		}
sl@0
   868
	else
sl@0
   869
		{
sl@0
   870
		aDrawParams.iWindowSize += incrementSize;
sl@0
   871
		aDrawParams.iWindowPos.iY -= incrementY;
sl@0
   872
		aDrawParams.iWindowPos.iX = 0;
sl@0
   873
		}
sl@0
   874
	}
sl@0
   875
sl@0
   876
void CTestSurfacedWindow::ParamChangeOpacity(TInt aFrameCounter, TInt aFrameDuration, TDrawParameters& aDrawParams)
sl@0
   877
	{
sl@0
   878
	TInt alpha = (512 * aFrameCounter)/(aFrameDuration);
sl@0
   879
	if(alpha > 255)
sl@0
   880
		{
sl@0
   881
		alpha = 511 - alpha;
sl@0
   882
		}
sl@0
   883
sl@0
   884
	aDrawParams.iBitmapAlpha = alpha;
sl@0
   885
	}
sl@0
   886
sl@0
   887
void CTestSurfacedWindow::CalcNewWindowLocation(const TSize& aScreensize, TInt aIncrement, TInt aDirection,TDrawParameters& aDrawParams)
sl@0
   888
	{
sl@0
   889
	if(aDrawParams.iWindowPos.iX <= 0)
sl@0
   890
		{
sl@0
   891
		aDrawParams.iWindowPos.iX = 0;
sl@0
   892
		aDrawParams.iWindowPos.iY += aIncrement*aDirection;
sl@0
   893
		}
sl@0
   894
	if((aDrawParams.iWindowPos.iY + aDrawParams.iWindowSize.iHeight) >= aScreensize.iHeight)
sl@0
   895
		{
sl@0
   896
		aDrawParams.iWindowPos.iY = aScreensize.iHeight - aDrawParams.iWindowSize.iHeight;
sl@0
   897
		aDrawParams.iWindowPos.iX += aIncrement*aDirection;
sl@0
   898
		}
sl@0
   899
	if((aDrawParams.iWindowPos.iX + aDrawParams.iWindowSize.iWidth) >= aScreensize.iWidth)
sl@0
   900
		{
sl@0
   901
		aDrawParams.iWindowPos.iX = aScreensize.iWidth - aDrawParams.iWindowSize.iWidth;
sl@0
   902
		aDrawParams.iWindowPos.iY -= aIncrement*aDirection;
sl@0
   903
		}
sl@0
   904
	if(aDrawParams.iWindowPos.iY <= 0)
sl@0
   905
		{
sl@0
   906
		aDrawParams.iWindowPos.iY = 0;
sl@0
   907
		aDrawParams.iWindowPos.iX -= aIncrement*aDirection;
sl@0
   908
		}
sl@0
   909
	}