os/graphics/windowing/windowserver/test/t_integ/src/t_pseuodappsurfacedwindow.cpp
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.
21 #include <e32const.h> //KNullUidValue
22 #include <pixelformats.h>
23 #include "t_pseudoappsurfacedwindow.h"
25 #include "t_testsurfacerasterizer.h"
26 #include "t_pseudoapputils.h"
27 #include "t_pseudoappscreen.h" //KScreenWindow
28 #include "t_pseudoappcfbsbitmapanim.h"
29 #include "t_pseudoappvganimation.h"
30 #include "t_pseudoappopenglanimation.h"
31 #include "t_pseudoappperformanceanim.h"
34 CTestSurfacedWindow* CTestSurfacedWindow::NewL(TInt aScreenNo, TInt aWindowNumber, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
35 const TDesC& aConfigFileName, CTPseudoAppShared& aPseudoAppShared)
37 RDebug::Print(_L("Creating CTestSurfacedWindow class\n"));
38 CTestSurfacedWindow* self = new (ELeave) CTestSurfacedWindow(aScreenNo, aWindowNumber, aPseudoAppShared);
39 CleanupStack::PushL(self);
40 self->ConstructL(aScreenNo, aWindowNumber, aMode, aFrameDuration, aScreenSize, aGceTestResults, aConfigFileName);
41 CleanupStack::Pop(); // self;
45 void CTestSurfacedWindow::ConstructL(TInt aScreenNo, TInt aWindowNumber, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
46 const TDesC& aConfigFileName)
48 RDebug::Print(_L("Constructing CTestSurfacedWindow for screen %d\n"), aScreenNo);
50 //Create CIniData class for reading in values form ini files
51 iUtils = CIniData::NewL(aConfigFileName);
54 TInt surfacePresent = 0;
55 TPixelFormat pixelFormat = EFormatRgb;
57 RDebug::Print(_L("Import configuration for ui window class and create it\n"));
58 ImportWindowConfigL(aScreenNo, aWindowNumber, aMode, aFrameDuration, aScreenSize, aGceTestResults);
60 RDebug::Print(_L("Import configuration for test surface class and create it\n"));
61 ImportSurfaceConfigL(aScreenNo, aWindowNumber, aScreenSize, surfaceSize, surfacePresent, pixelFormat);
63 RDebug::Print(_L("Surface height = %d Surface Width = %d\n"),surfaceSize.iHeight, surfaceSize.iWidth);
65 RDebug::Print(_L("Import configuration for test animation class and create it\n"));
66 ImportAnimConfigL(aScreenNo, aWindowNumber, aMode, surfaceSize, pixelFormat);
70 RDebug::Print(_L("Create Surface Rasterizer\n"));
71 iSurfaceRasterizer = CTestSurfaceRasterizer::NewL(iSurfaceId, iSurfaceScreenNumber, &iSurfaceManager);
73 if(iSurfaceRasterizer == 0)
75 RDebug::Print(_L("Fatal error creating Surface Rasterizer, aborting\n"));
80 iGceTestResults = aGceTestResults;
83 CTestSurfacedWindow::CTestSurfacedWindow(TInt aScreenNo, TInt aWindowNumber, CTPseudoAppShared& aPseudoAppShared)
84 :iScreenNo(aScreenNo), iWindowNumber(aWindowNumber), iPseudoAppShared(aPseudoAppShared)
88 void CTestSurfacedWindow::UpdateL(SurfaceDetails& aSurfDetails)
90 //Test to see if the surfaced window has an animation associated with it
93 iTestAnimation->DrawL(iSurfaceRasterizer, aSurfDetails);
96 //Draw the window last to avoid appearance of "black" surface
100 CTestSurfacedWindow::~CTestSurfacedWindow()
105 TInt noElements = iSizeArray->Count();
106 iSizeArray->Delete(0, noElements);
113 TInt noElements = iPositionArray->Count();
114 iPositionArray->Delete(0, noElements);
115 delete iPositionArray;
121 TInt noElements = iLoadsarects->Count();
122 iLoadsarects->Delete(0, noElements);
127 if(iLoadsaParameters)
129 TInt noElements = iLoadsaParameters->Count();
130 iLoadsaParameters->Delete(0, noElements);
131 delete iLoadsaParameters;
132 iLoadsaParameters = 0;
135 delete iSurfaceRasterizer;
137 delete iTestAnimation;
140 DestroySurfaceManager();
143 void CTestSurfacedWindow::RotateL(TInt aScreenNo, TInt aWindowNumber, const TSize& aScreenSize, TInt aFrameNumber)
147 //Destroy the current surface and create a new surface with the new screen dimensions
149 TInt surfacePresent = 0;
150 TPixelFormat pixelFormat = EFormatRgb;
152 delete iSurfaceRasterizer;
153 delete iTestAnimation;
157 ImportSurfaceConfigL(aScreenNo, aWindowNumber, aScreenSize, surfaceSize, surfacePresent, pixelFormat);
159 RDebug::Print(_L("Surface height = %d Surface Width = %d\n"),surfaceSize.iHeight, surfaceSize.iWidth);
161 RDebug::Print(_L("Import configuration for test animation class and create it\n"));
162 ImportAnimConfigL(0, 1, EColor16MA, surfaceSize, pixelFormat);
166 RDebug::Print(_L("Create Surface Rasterizer\n"));
168 iSurfaceRasterizer = CTestSurfaceRasterizer::NewL(iSurfaceId, iSurfaceScreenNumber, &iSurfaceManager);
170 if(iSurfaceRasterizer == 0)
172 RDebug::Print(_L("Fatal error creating Surface Rasterizer, aborting\n"));
177 if(iTestAnimation->RotationSupported())
179 //Continue animation from the last unrotated frame number
180 iTestAnimation->SetFrameNumber(aFrameNumber);
184 iTestWindow->Rotate(aScreenSize);
187 TBool CTestSurfacedWindow::RotationSupported()
189 if(iPseudoAppShared.RotationSupported(iScreenNo, iWindowNumber, iSurfaceId))
193 return iTestAnimation->RotationSupported();
197 //If no test animation is present, rotation is possible
208 void CTestSurfacedWindow::ImportWindowConfigL(TInt aScreenNo, TInt aWindowNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults)
210 TBuf<KMaxUiBitmapNameLength> tempStore;
211 tempStore.Format(KScreenWindowNumber, aScreenNo, aWindowNo);
215 TInt windowChangeGeometry;
216 TInt windowChangeBehavior;
218 tempStore.Format(KScreenWindowNumber, aScreenNo, aWindowNo);
220 READ_INI3A(tempStore, type, ui_window, ecom_window, empty_window,
221 windowType, EUiWindow, EEcomWindow, EEmptyWindow, iUtils);
223 //viewfinder and empty windows are both catered for by the CTestEmptyWindow class
228 TPtrC multiBitmapEcomFile;
229 TInt multiBitmapEcomFileSize;
231 READ_INI1A(tempStore, multi_bitmap_ecom_file, multiBitmapEcomFile, iUtils);
232 READ_INI1A(tempStore, multi_bitmap_ecom_file_size, multiBitmapEcomFileSize, iUtils);
234 READ_INI5A(tempStore, window_change_geometry, none, size, position, position_and_size,
235 position_and_size_with_opacity, windowChangeGeometry, ENoChanges, EWindowSize,
236 EWindowPosition, EWindowPositionAndSize, EWindowPositionAndSizeWithOpacity, iUtils);
237 READ_INI3A(tempStore, window_change_behavior, none, incremental, cyclic, windowChangeBehavior,
238 ENoChange, EIncremental, ECyclic, iUtils);
242 iSizeArray = ImportWindowSizeChangeParamsL(tempStore);
243 iPositionArray = ImportWindowPositionChangeParamsL(tempStore);
245 BuildDimensionArrayL(aScreenSize, aFrameDuration, windowChangeGeometry, windowChangeBehavior);
247 iTestWindow = CTestEcomWindow::NewL(aScreenNo, aMode, multiBitmapEcomFile, multiBitmapEcomFileSize, aGceTestResults, iLoadsaParameters);
252 iTestWindow = CTestEmptyWindow::NewL(aScreenNo, aMode, aScreenSize);
257 TPtrC multiBitmapUiFile;
258 TInt multiBitmapUiFileSize;
259 TInt multiBitmapUiFileTransparency;
261 READ_INI1A(tempStore, multi_bitmap_ui_file, multiBitmapUiFile, iUtils);
262 READ_INI1A(tempStore, multi_bitmap_ui_file_size, multiBitmapUiFileSize, iUtils);
263 READ_INI2A(tempStore, multi_bitmap_ui_file_transparency, True, False,
264 multiBitmapUiFileTransparency, ETrue, EFalse, iUtils);
265 READ_INI5A(tempStore, window_change_geometry, none, size, position, position_and_size,
266 position_and_size_with_opacity, windowChangeGeometry, ENoChanges, EWindowSize,
267 EWindowPosition, EWindowPositionAndSize, EWindowPositionAndSizeWithOpacity, iUtils);
268 READ_INI3A(tempStore, window_change_behavior, none, incremental, cyclic, windowChangeBehavior,
269 ENoChange, EIncremental, ECyclic, iUtils);
272 iSizeArray = ImportWindowSizeChangeParamsL(tempStore);
273 iPositionArray = ImportWindowPositionChangeParamsL(tempStore);
275 BuildDimensionArrayL(aScreenSize, aFrameDuration, windowChangeGeometry, windowChangeBehavior);
277 iLoadsarects = ImportWindowBitmapParamsL(tempStore, multiBitmapUiFileSize, aScreenSize);
279 iTestWindow = CTestUiWindow::NewL(aScreenNo, aMode, multiBitmapUiFile, multiBitmapUiFileSize, iLoadsarects,
281 multiBitmapUiFileTransparency,
282 aGceTestResults, iLoadsaParameters);
287 break; //Cannot reach default, Lint warning removal only
292 void CTestSurfacedWindow::ImportSurfaceConfigL(TInt aScreenNo, TInt aWindowNo, const TSize& aScreenSize, TSize& aSurfaceSize, TInt& aSurfacePresent, TPixelFormat& aPixelFormat)
294 TBuf<KMaxUiBitmapNameLength> tempStore;
295 tempStore.Format(KScreenSurface, aScreenNo, aWindowNo);
297 TInt shareScreenNumber;
298 TInt shareWindowNumber;
300 // Check to see if window is sharing surface with another window
301 TBool shareSurface = TImportScreenConfig::GetShareSurfaceInfoL(aScreenNo, aWindowNo, shareScreenNumber, shareWindowNumber, iUtils);
303 // Check to see if this window already has a SurfaceId allocated for it s
304 iSurfaceId = iPseudoAppShared.GetSurfaceId(aScreenNo, aWindowNo);
306 if(shareSurface && iSurfaceId.IsNull())
308 // SurfaceId not found, but check to see if the sharing window already has a SurfaceId allocated for it
309 iSurfaceId = iPseudoAppShared.GetSurfaceId(shareScreenNumber, shareWindowNumber);
312 if(!iSurfaceId.IsNull())
314 // SurfaceId found - open surface to use with this window
316 //Create a surface manager session
317 CreateSurfaceManager();
319 iSurfaceManager.OpenSurface(iSurfaceId);
320 RSurfaceManager::TInfoBuf infoBuf;
321 User::LeaveIfError(KErrNone == iSurfaceManager.SurfaceInfo(iSurfaceId, infoBuf));
322 RSurfaceManager::TSurfaceInfoV01& info = infoBuf();
323 aSurfaceSize = info.iSize;
324 if(info.iPixelFormat == EUidPixelFormatYUV_422Interleaved)
326 aPixelFormat =EFormatYuv;
328 aSurfacePresent = ETrue;
329 shareSurface = ETrue;
333 // SurfaceId not found - create surface to use with this window
335 READ_INI2A(tempStore, surface_present, True, False, aSurfacePresent, ETrue, EFalse, iUtils);
336 READ_INI1A(tempStore, sneeky_surface_height, aSurfaceSize.iHeight, iUtils);
337 READ_INI1A(tempStore, surface_width, aSurfaceSize.iWidth, iUtils);
339 //Convert surface size percentages to pixel sizes
340 if(aScreenSize.iWidth <= 0)
342 RDebug::Print(_L("surface_width is zero or less, quitting\n"));
347 aSurfaceSize.iWidth = aSurfaceSize.iWidth*aScreenSize.iWidth/100;
350 if(aScreenSize.iHeight <= 0)
352 RDebug::Print(_L("surface_height is zero or less, quitting\n"));
357 aSurfaceSize.iHeight = aSurfaceSize.iHeight*aScreenSize.iHeight/100;
360 if(!aSurfacePresent && !shareSurface)
362 RDebug::Print(_L("Screen %d, Window %d has no backgroung surface\n"),aScreenNo, aWindowNo);
366 RDebug::Print(_L("Setting up surface attributes\n"));
369 RSurfaceManager::TSurfaceCreationAttributesBuf attribBuf;
370 RSurfaceManager::TSurfaceCreationAttributes& buffer = attribBuf();
371 buffer.iMappable = ETrue;
373 READ_INI4A(tempStore, surface_pixel_format, EUidPixelFormatARGB_8888, EUidPixelFormatRGB_565, EUidPixelFormatARGB_8888_PRE,
374 EUidPixelFormatYUV_422Interleaved, pixelFormat, EUidPixelFormatARGB_8888, EUidPixelFormatRGB_565, EUidPixelFormatARGB_8888_PRE,
375 EUidPixelFormatYUV_422Interleaved, iUtils);
376 READ_INI1A(tempStore, surface_bytes_per_pixel, bytesPerPixel, iUtils);
377 READ_INI1A(tempStore, surface_offset_to_first_buffer, buffer.iOffsetToFirstBuffer, iUtils);
378 READ_INI1A(tempStore, surface_alignment, buffer.iAlignment, iUtils);
379 READ_INI2A(tempStore, surface_contiguous, True, False, buffer.iContiguous, ETrue, EFalse, iUtils);
380 READ_INI1A(tempStore, surface_buffer_number, buffer.iBuffers, iUtils);
382 buffer.iPixelFormat = static_cast<TUidPixelFormat>(pixelFormat);
383 iSurfaceBufferNumber = buffer.iBuffers;
384 iSurfaceScreenNumber = aScreenNo;
385 if(buffer.iPixelFormat == EUidPixelFormatYUV_422Interleaved)
387 aPixelFormat =EFormatYuv;
390 //Assign size attribute to surface size calculated above
391 buffer.iSize = aSurfaceSize;
393 //Calculate required stride
394 buffer.iStride = buffer.iSize.iWidth * bytesPerPixel;
395 RDebug::Print(_L("Stride is %d\n"),buffer.iStride);
397 //Create a surface manager session
398 CreateSurfaceManager();
400 RDebug::Print(_L("Call to CreateSurface()\n"));
401 TInt err = iSurfaceManager.CreateSurface(attribBuf, iSurfaceId);
404 RDebug::Print(_L("Error creating surface, aborting\n"));
409 //Assign the created surface to be the window background - surface needs to be open to do this ?????
410 //Window must be activated at this point for the correct screen mode to be applied
411 RDebug::Print(_L("Set Background Surface on the window\n"));
413 TInt ret = iTestWindow->Window()->SetBackgroundSurface(iSurfaceId);
416 RDebug::Print(_L("Error associating surface with window, SetBackgroundSurface returns %d aborting\n"), ret);
420 // Update PseudoAppShared SurfaceId array
421 iPseudoAppShared.SetSurfaceIdL(aScreenNo, aWindowNo, iSurfaceId);
424 iPseudoAppShared.SetSurfaceIdL(shareScreenNumber, shareWindowNumber, iSurfaceId);
428 void CTestSurfacedWindow::ImportAnimConfigL(TInt aScreenNo, TInt aWindowNo, TDisplayMode aMode, const TSize& aSurfaceSize, TPixelFormat aPixelFormat)
430 TInt applicationType;
431 TBuf<KMaxUiBitmapNameLength> tempStore;
432 tempStore.Format(KScreenAnimation, aScreenNo, aWindowNo);
434 READ_INI5A(tempStore, application_type, none, cfbsbitmap, openvg, opengles, performance,
435 applicationType, ENoApp, EFbsBitmap, EOpenVG, EOpenGLes, EPerformance, iUtils);
437 if(applicationType == ENoApp)
439 RDebug::Print(_L("Screen %d, Window %d has no surface animation\n"),aScreenNo, aWindowNo);
444 TPtrC multiBitmapAnimFile;
448 //Read in the values from the ini file, taking specified action on failure
449 READ_INI1A(tempStore, image_size, imageSize, iUtils);
450 READ_INI1A(tempStore, multi_bitmap_anim_file, multiBitmapAnimFile, iUtils);
451 READ_INI1A(tempStore, vertical_frames_per_traverse, verticalRate, iUtils);
452 READ_INI1A(tempStore, horizontal_frames_per_traverse, horizontalRate, iUtils);
454 //Ensure the animation step sizes are sub-multiples of the frame dimensions
455 TImportScreenConfig::VerifyFramesPerTraverse(horizontalRate, aSurfaceSize.iWidth);
456 TImportScreenConfig::VerifyFramesPerTraverse(verticalRate, aSurfaceSize.iHeight);
458 //Convert image size percentage into a pixel size
461 RDebug::Print(_L("image_size is zero or less, quitting\n"));
466 //Scale the bitmap to the short screen dimension
467 if(aSurfaceSize.iWidth > aSurfaceSize.iHeight)
469 imageSize = imageSize*aSurfaceSize.iHeight/100;
473 imageSize = imageSize*aSurfaceSize.iWidth/100;
477 iTestAnimation = CreateAnimationL(applicationType, TSize(imageSize,imageSize),
478 aSurfaceSize, multiBitmapAnimFile, aMode,
479 horizontalRate, verticalRate, aPixelFormat);
483 CTestAnimation* CTestSurfacedWindow::CreateAnimationL(TInt aAppType, const TSize& aAnimSize, const TSize& aSurfaceSize,
484 TPtrC& aBitmapFile, TDisplayMode aDisplayMode,
485 TInt aHorizontalRate, TInt aVerticalRate,
486 TPixelFormat aPixelFormat)
488 CTestAnimation* anim = 0;
493 anim = CCFbsBitmapAnimation::NewL(aDisplayMode,
505 anim = CVgAnimation::NewL(iTestWindow->Window(),
514 anim = COpenGLAnimation::NewL(iTestWindow->Window(),
524 anim = CPerformanceAnimation::NewL();
533 break; //Cannot reach the default, Lint warning removal purposes only
539 CArrayFixFlat<TRect>* CTestSurfacedWindow::ImportWindowBitmapParamsL(const TDesC& tempStore, TInt aMultiBitmapUiFileSize, const TSize& aScreenSize)
541 TBuf<KMaxUiBitmapNameLength> temp;
542 TBuf<KMaxUiBitmapNameLength> tempStore1;
544 CArrayFixFlat<TRect>* loadsarects = new (ELeave) CArrayFixFlat<TRect>(1);
546 for(TInt i=0; i<aMultiBitmapUiFileSize; i++)
551 tempStore1.Format(KUiBitmapScaling, i);
553 temp.Append(tempStore1);
555 TImportScreenConfig::ReadIni(temp, rectString, iUtils);
557 if(TImportScreenConfig::ExtractRect(rectString, aRect, aScreenSize) == KErrNone)
559 loadsarects->ExtendL() = aRect;
563 RDebug::Print(_L("Cannot determine rectangle dimensions from string: %s\n"), rectString.Ptr());
564 RDebug::Print(_L("Undefined behavior may result\n"));
570 CArrayFixFlat<TInt>* CTestSurfacedWindow::ImportWindowSizeChangeParamsL(const TDesC& tempStore)
572 TBuf<KMaxUiBitmapNameLength> temp = tempStore;
573 CArrayFixFlat<TInt>* intArray = new (ELeave) CArrayFixFlat<TInt>(1);
575 TInt windowSizeValues;
576 TBuf<KMaxUiBitmapNameLength> tempStore1;
578 READ_INI1A(tempStore, window_size_values, windowSizeValues, iUtils);
581 for(TInt i=1; i<windowSizeValues+1; i++)
583 tempStore1.Format(KWindowSizes, i);
585 temp.Append(tempStore1);
586 TImportScreenConfig::ReadIni(temp, windowSize, iUtils);
587 intArray->ExtendL() = windowSize;
593 CArrayFixFlat<TInt>* CTestSurfacedWindow::ImportWindowPositionChangeParamsL(const TDesC& tempStore)
595 TBuf<KMaxUiBitmapNameLength> temp = tempStore;
596 CArrayFixFlat<TInt>* intArray = new (ELeave) CArrayFixFlat<TInt>(1);
598 TInt windowPositionValues;
599 TBuf<KMaxUiBitmapNameLength> tempStore1;
601 READ_INI1A(tempStore, window_position_values, windowPositionValues, iUtils);
603 for(TInt i=1; i<windowPositionValues+1; i++)
606 TPtrC windowPosition;
607 tempStore1.Format(KWindowPositions, i);
609 temp.Append(tempStore1);
610 TImportScreenConfig::ReadIni(temp, windowPosition, iUtils);
611 if(TImportScreenConfig::ExtractPoint(windowPosition, point) == KErrNone)
614 intArray->ExtendL() = point.iX;
615 intArray->ExtendL() = point.iY;
619 RDebug::Print(_L("Cannot determine point dimensions from string: %s\n"), windowPosition.Ptr());
620 RDebug::Print(_L("Undefined behavior may result\n"));
626 void CTestSurfacedWindow::CreateSurfaceManager()
628 RDebug::Print(_L("Create Surface Manager\n"));
632 RDebug::Print(_L("Loading the device driver and Opening the Logical Channel\n"));
633 ret = iSurfaceManager.Open();
636 RDebug::Print(_L("Surface manager opened ok\n"));
640 RDebug::Print(_L("Error opening surface manager\n"));
644 void CTestSurfacedWindow::DestroySurfaceManager()
646 RDebug::Print(_L("Close the Logical Channel\n"));
647 iSurfaceManager.Close();
650 void CTestSurfacedWindow::DestroySurface()
652 // Remove SurfaceId entry from surface array
653 iPseudoAppShared.RemoveSurfaceIdEntry(iScreenNo, iWindowNumber);
655 RDebug::Print(_L("Closing surface\n"));
656 TInt ret = iSurfaceManager.CloseSurface(iSurfaceId);
660 RDebug::Print(_L("Surface failed to close\n"));
664 void CTestSurfacedWindow::BuildDimensionArrayL(const TSize& aScreenSize, TInt aFrameDuration, TInt aWindowChangeGeometry, TInt aWindowChangeBehavior)
669 iLoadsaParameters = new (ELeave) CArrayFixFlat<TDrawParameters>(1);
671 TDrawParameters drawParams;
673 for(TInt i=0; i<aFrameDuration; i++)
677 drawParams = (*iLoadsaParameters)[i - 1];
681 drawParams.iWindowSize = TSize((aScreenSize.iWidth * (*iSizeArray)[0])/100,
682 (aScreenSize.iHeight * (*iSizeArray)[0])/100);
683 drawParams.iWindowPos = TPoint((aScreenSize.iWidth * (*iPositionArray)[0])/100,
684 (aScreenSize.iHeight * (*iPositionArray)[1])/100);
685 drawParams.iBitmapScale = (*iSizeArray)[0];
686 drawParams.iBitmapAlpha = 127;
689 switch(aWindowChangeBehavior)
693 switch(aWindowChangeGeometry)
697 drawParams.iWindowSize = aScreenSize;
702 if(i < aFrameDuration/2)
704 drawParams.iBitmapScale = (*iSizeArray)[0] + (2*((*iSizeArray)[1] - (*iSizeArray)[0])*i)/aFrameDuration;
708 drawParams.iBitmapScale = 2*((*iSizeArray)[1]) - (*iSizeArray)[0] + (2*((*iSizeArray)[0] - (*iSizeArray)[1])*i)/aFrameDuration;
711 drawParams.iWindowSize = TSize( (aScreenSize.iWidth*drawParams.iBitmapScale)/100,
712 (aScreenSize.iHeight*drawParams.iBitmapScale)/100 );
716 case EWindowPosition:
718 ParamChangeCyclicPosition(drawParams, i, aFrameDuration, aScreenSize);
721 case EWindowPositionAndSize:
723 ParamChangeCyclicPositionAndSize(drawParams, i, aFrameDuration, aScreenSize);
735 switch(aWindowChangeGeometry)
743 drawParams.iBitmapScale = (*iSizeArray)[ (i*(iSizeArray->Count()))/aFrameDuration];
744 drawParams.iWindowSize = TSize( (aScreenSize.iWidth*drawParams.iBitmapScale)/100,
745 (aScreenSize.iHeight*drawParams.iBitmapScale)/100 );
748 case EWindowPosition:
750 indexX = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration);
751 indexY = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration) + 1;
752 drawParams.iWindowPos.iX = (aScreenSize.iWidth * (*iPositionArray)[indexX])/100;
753 drawParams.iWindowPos.iY = (aScreenSize.iHeight * (*iPositionArray)[indexY])/100;
756 case EWindowPositionAndSize:
758 drawParams.iBitmapScale = (*iSizeArray)[ (i*(iSizeArray->Count()))/aFrameDuration];
759 drawParams.iWindowSize = TSize( (aScreenSize.iWidth*drawParams.iBitmapScale)/100,
760 (aScreenSize.iHeight*drawParams.iBitmapScale)/100 );
762 indexX = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration);
763 indexY = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration) + 1;
764 drawParams.iWindowPos.iX = (aScreenSize.iWidth * (*iPositionArray)[indexX])/100;
765 drawParams.iWindowPos.iY = (aScreenSize.iHeight * (*iPositionArray)[indexY])/100;
768 case EWindowPositionAndSizeWithOpacity:
770 ParamChangeOpacity(i, aFrameDuration, drawParams);
771 drawParams.iBitmapScale = (*iSizeArray)[ (i*(iSizeArray->Count()))/aFrameDuration];
772 drawParams.iWindowSize = TSize( (aScreenSize.iWidth*drawParams.iBitmapScale)/100,
773 (aScreenSize.iHeight*drawParams.iBitmapScale)/100 );
775 indexX = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration);
776 indexY = 2*((((i*(iPositionArray->Count()/2))))/aFrameDuration) + 1;
777 drawParams.iWindowPos.iX = (aScreenSize.iWidth * (*iPositionArray)[indexX])/100;
778 drawParams.iWindowPos.iY = (aScreenSize.iHeight * (*iPositionArray)[indexY])/100;
796 iLoadsaParameters->ExtendL() = drawParams;
800 void CTestSurfacedWindow::ParamChangeCyclicPosition(TDrawParameters& aDrawParams, TInt aFrameCounter, TInt aFrameDuration, const TSize& aScreenSize)
802 TInt increment = (aScreenSize.iHeight * (100 - (*iSizeArray)[0]) +
803 aScreenSize.iWidth * (100 - (*iSizeArray)[0]))/(aFrameDuration * 25);
805 if(aFrameCounter < (aFrameDuration/2 - 1))
807 CalcNewWindowLocation(aScreenSize, increment, 1, aDrawParams);
809 else if(aFrameCounter != (aFrameDuration - 1))
811 CalcNewWindowLocation(aScreenSize, increment, -1, aDrawParams);
815 aDrawParams.iWindowPos.iY -= increment;
819 void CTestSurfacedWindow::ParamChangeCyclicPositionAndSize(TDrawParameters& aDrawParams, TInt aFrameCounter, TInt aFrameDuration, const TSize& aScreenSize)
821 TInt incrementX = 2*aScreenSize.iWidth/aFrameDuration;
822 TInt incrementY = 2*aScreenSize.iHeight/aFrameDuration;
823 TSize incrementSize(incrementX, incrementY);
824 TInt eigth = aFrameDuration/8;
826 if(aFrameCounter < eigth)
828 aDrawParams.iWindowSize -= incrementSize;
829 aDrawParams.iWindowPos.iY += incrementY;
830 aDrawParams.iWindowPos.iX = 0;
832 else if( (aFrameCounter >= eigth) && (aFrameCounter < 2*eigth) )
834 aDrawParams.iWindowSize -= incrementSize;
835 aDrawParams.iWindowPos.iY += incrementY;
836 aDrawParams.iWindowPos.iX += 2*incrementX;
838 else if( (aFrameCounter >= 2*eigth) && (aFrameCounter < 3*eigth) )
840 aDrawParams.iWindowSize -= incrementSize;
841 aDrawParams.iWindowPos.iY -= 2*incrementY;
842 aDrawParams.iWindowPos.iX += incrementX;
844 else if( (aFrameCounter >= 3*eigth) && (aFrameCounter < 4*eigth) )
846 aDrawParams.iWindowSize -= incrementSize;
847 aDrawParams.iWindowPos.iY = 0;
848 aDrawParams.iWindowPos.iX -= 3*incrementX;
850 else if( (aFrameCounter >= 4*eigth) && (aFrameCounter < 5*eigth) )
852 aDrawParams.iWindowSize += incrementSize;
853 aDrawParams.iWindowPos.iY = 0;
854 aDrawParams.iWindowPos.iX += 3*incrementX;
856 else if( (aFrameCounter >= 5*eigth) && (aFrameCounter < 6*eigth) )
858 aDrawParams.iWindowSize += incrementSize;
859 aDrawParams.iWindowPos.iY += 2*incrementY;
860 aDrawParams.iWindowPos.iX -= incrementX;
862 else if( (aFrameCounter >= 6*eigth) && (aFrameCounter < 7*eigth) )
864 aDrawParams.iWindowSize += incrementSize;
865 aDrawParams.iWindowPos.iY -= incrementY;
866 aDrawParams.iWindowPos.iX -= 2*incrementX;
870 aDrawParams.iWindowSize += incrementSize;
871 aDrawParams.iWindowPos.iY -= incrementY;
872 aDrawParams.iWindowPos.iX = 0;
876 void CTestSurfacedWindow::ParamChangeOpacity(TInt aFrameCounter, TInt aFrameDuration, TDrawParameters& aDrawParams)
878 TInt alpha = (512 * aFrameCounter)/(aFrameDuration);
884 aDrawParams.iBitmapAlpha = alpha;
887 void CTestSurfacedWindow::CalcNewWindowLocation(const TSize& aScreensize, TInt aIncrement, TInt aDirection,TDrawParameters& aDrawParams)
889 if(aDrawParams.iWindowPos.iX <= 0)
891 aDrawParams.iWindowPos.iX = 0;
892 aDrawParams.iWindowPos.iY += aIncrement*aDirection;
894 if((aDrawParams.iWindowPos.iY + aDrawParams.iWindowSize.iHeight) >= aScreensize.iHeight)
896 aDrawParams.iWindowPos.iY = aScreensize.iHeight - aDrawParams.iWindowSize.iHeight;
897 aDrawParams.iWindowPos.iX += aIncrement*aDirection;
899 if((aDrawParams.iWindowPos.iX + aDrawParams.iWindowSize.iWidth) >= aScreensize.iWidth)
901 aDrawParams.iWindowPos.iX = aScreensize.iWidth - aDrawParams.iWindowSize.iWidth;
902 aDrawParams.iWindowPos.iY -= aIncrement*aDirection;
904 if(aDrawParams.iWindowPos.iY <= 0)
906 aDrawParams.iWindowPos.iY = 0;
907 aDrawParams.iWindowPos.iX -= aIncrement*aDirection;