os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappcfbsbitmapanim.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.
22 #include "t_pseudoappcfbsbitmapanim.h"
23 #include "t_testsurfacerasterizer.h"
25 EXPORT_C CCFbsBitmapAnimation* CCFbsBitmapAnimation::NewL(TDisplayMode aMode, const TSize& aAnimSize, const TSize& aSurfaceSize,
26 TPtrC& aBitmapFile, TInt aHorizontalRate, TInt aVerticalRate,
27 TPixelFormat aPixelFormat)
29 RDebug::Print(_L("Creating CCFbsBitmapAnimation class\n"));
30 CCFbsBitmapAnimation* self = new (ELeave) CCFbsBitmapAnimation();
31 CleanupStack::PushL(self);
32 self->ConstructL(aMode, aAnimSize, aSurfaceSize, aBitmapFile, aHorizontalRate, aVerticalRate, aPixelFormat);
33 CleanupStack::Pop(); // self;
37 void CCFbsBitmapAnimation::ConstructL(TDisplayMode aMode, const TSize& aAnimSize, const TSize& aSurfaceSize,
38 TPtrC& aBitmapFile, TInt aHorizontalRate, TInt aVerticalRate,
39 TPixelFormat aPixelFormat)
41 RDebug::Print(_L("Creating full-screen bitmap\n"));
43 iBitmapAnimFile.Set(aBitmapFile);
44 iHorizontalRate = aHorizontalRate;
45 iVerticalRate = aVerticalRate;
46 iAnimSize = aAnimSize;
47 iSurfaceSize = aSurfaceSize;
48 iPixelFormat = aPixelFormat;
49 iRotationSupported = ETrue;
51 iFullSurfaceBitmap = new(ELeave) CFbsBitmap;
53 if(iPixelFormat == EFormatYuv)
55 TSize sz(iSurfaceSize.iWidth/2, iSurfaceSize.iHeight);
56 iFullSurfaceBitmap->Create(sz, static_cast<TDisplayMode>(aMode));
60 iFullSurfaceBitmap->Create(iSurfaceSize, static_cast<TDisplayMode>(aMode));
62 iFullSurfaceBitmapDevice = CFbsBitmapDevice::NewL(iFullSurfaceBitmap);
63 iFullSurfaceBitmapGc = CFbsBitGc::NewL();
64 iFullSurfaceBitmapGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
67 CCFbsBitmapAnimation::CCFbsBitmapAnimation() : CTestAnimation()
71 EXPORT_C CCFbsBitmapAnimation::~CCFbsBitmapAnimation()
73 delete iFullSurfaceBitmapGc;
74 delete iFullSurfaceBitmapDevice;
75 delete iFullSurfaceBitmap;
78 EXPORT_C void CCFbsBitmapAnimation::Rotate(TSize /*aScreenSize*/)
82 EXPORT_C void CCFbsBitmapAnimation::DrawL(CTestSurfaceRasterizer* aSurfaceRasterizer, SurfaceDetails& aSurfDetails)
84 iFullSurfaceBitmapGc->Activate(iFullSurfaceBitmapDevice);
85 iFullSurfaceBitmapGc->Clear();
89 //Send the fullscreen bitmap to the test rasterizer
90 iFullSurfaceBitmap->LockHeap();
92 TUint32* bitmapBufferPtr = iFullSurfaceBitmap->DataAddress();
93 aSurfaceRasterizer->DrawRect(bitmapBufferPtr, aSurfDetails);
95 iFullSurfaceBitmap->UnlockHeap();
98 EXPORT_C void CCFbsBitmapAnimation::SetFrameNumber(TInt aFrameNumber)
100 iFrameCounter = aFrameNumber;
103 void CCFbsBitmapAnimation::RedrawSurfaceL()
106 User::LeaveIfError(bitmap.Load(iBitmapAnimFile, iFrameCounter));
108 const TSize nativeSize(bitmap.SizeInPixels());
110 const TSize fullScreenSize(iFullSurfaceBitmap->SizeInPixels());
112 if(iPixelFormat == EFormatYuv)
114 TInt noOfPixels=fullScreenSize.iWidth * fullScreenSize.iHeight;
115 TInt counter=noOfPixels;
116 TUint32* address = iFullSurfaceBitmap->DataAddress();
117 for(TInt i=0; i<counter; i++)
119 /* The only supported Yuv format is KPixelFormatYUV422Interleaved */
120 /* Paint the surface white */
121 address[i] = 0xFF7FFF7F;
125 /* Potentially four screen copies will be required in the wrapping case *
126 * (1) no wrapping (2) wrap in x co-ord (3) wrap in y co-ord *
127 * (4) wrap in both x and y co-ords *
128 * There is no problem with specifying negative co-ordinates for the *
129 * top LH corner as the offscreen section will not be displayed */
131 //Perform blits to the fullscreen bitmap
132 //iAnimSize is the size of the square bitmap as it appears on the surface and iDisplayedSize is the size of the
133 //rectangulara area limiting the animation
135 TSize sz = iAnimSize;
136 if(iPixelFormat == EFormatYuv)
138 sz = TSize(iAnimSize.iWidth/2, iAnimSize.iHeight);
141 iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos, iYPos), sz), &bitmap, TRect(TPoint(0,0), nativeSize));
144 if( (iXPos + iAnimSize.iWidth) > iSurfaceSize.iWidth)
146 iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos - iSurfaceSize.iWidth, iYPos), sz),
147 &bitmap, TRect(TPoint(0,0), nativeSize));
151 if( (iYPos + iAnimSize.iHeight) > iSurfaceSize.iHeight)
153 iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos, iYPos - iSurfaceSize.iHeight), sz),
154 &bitmap, TRect(TPoint(0,0), nativeSize));
157 //Wrap in both x and y co-ords
158 if( ((iXPos + iAnimSize.iWidth) > iSurfaceSize.iWidth) && ((iYPos + iAnimSize.iHeight) > iSurfaceSize.iHeight) )
160 iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos - iSurfaceSize.iWidth, iYPos - iSurfaceSize.iHeight), sz),
161 &bitmap, TRect(TPoint(0,0), nativeSize));
164 //Increment x and y positions and wrap if necessary
165 iXPos += iSurfaceSize.iWidth/iHorizontalRate;
166 iYPos += iSurfaceSize.iHeight/iVerticalRate;
167 iXPos = iXPos % iSurfaceSize.iWidth;
168 iYPos = iYPos % iSurfaceSize.iHeight;