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 |
|
sl@0
|
22 |
#include "t_pseudoappcfbsbitmapanim.h"
|
sl@0
|
23 |
#include "t_testsurfacerasterizer.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
EXPORT_C CCFbsBitmapAnimation* CCFbsBitmapAnimation::NewL(TDisplayMode aMode, const TSize& aAnimSize, const TSize& aSurfaceSize,
|
sl@0
|
26 |
TPtrC& aBitmapFile, TInt aHorizontalRate, TInt aVerticalRate,
|
sl@0
|
27 |
TPixelFormat aPixelFormat)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
RDebug::Print(_L("Creating CCFbsBitmapAnimation class\n"));
|
sl@0
|
30 |
CCFbsBitmapAnimation* self = new (ELeave) CCFbsBitmapAnimation();
|
sl@0
|
31 |
CleanupStack::PushL(self);
|
sl@0
|
32 |
self->ConstructL(aMode, aAnimSize, aSurfaceSize, aBitmapFile, aHorizontalRate, aVerticalRate, aPixelFormat);
|
sl@0
|
33 |
CleanupStack::Pop(); // self;
|
sl@0
|
34 |
return self;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
void CCFbsBitmapAnimation::ConstructL(TDisplayMode aMode, const TSize& aAnimSize, const TSize& aSurfaceSize,
|
sl@0
|
38 |
TPtrC& aBitmapFile, TInt aHorizontalRate, TInt aVerticalRate,
|
sl@0
|
39 |
TPixelFormat aPixelFormat)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
RDebug::Print(_L("Creating full-screen bitmap\n"));
|
sl@0
|
42 |
|
sl@0
|
43 |
iBitmapAnimFile.Set(aBitmapFile);
|
sl@0
|
44 |
iHorizontalRate = aHorizontalRate;
|
sl@0
|
45 |
iVerticalRate = aVerticalRate;
|
sl@0
|
46 |
iAnimSize = aAnimSize;
|
sl@0
|
47 |
iSurfaceSize = aSurfaceSize;
|
sl@0
|
48 |
iPixelFormat = aPixelFormat;
|
sl@0
|
49 |
iRotationSupported = ETrue;
|
sl@0
|
50 |
|
sl@0
|
51 |
iFullSurfaceBitmap = new(ELeave) CFbsBitmap;
|
sl@0
|
52 |
|
sl@0
|
53 |
if(iPixelFormat == EFormatYuv)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
TSize sz(iSurfaceSize.iWidth/2, iSurfaceSize.iHeight);
|
sl@0
|
56 |
iFullSurfaceBitmap->Create(sz, static_cast<TDisplayMode>(aMode));
|
sl@0
|
57 |
}
|
sl@0
|
58 |
else
|
sl@0
|
59 |
{
|
sl@0
|
60 |
iFullSurfaceBitmap->Create(iSurfaceSize, static_cast<TDisplayMode>(aMode));
|
sl@0
|
61 |
}
|
sl@0
|
62 |
iFullSurfaceBitmapDevice = CFbsBitmapDevice::NewL(iFullSurfaceBitmap);
|
sl@0
|
63 |
iFullSurfaceBitmapGc = CFbsBitGc::NewL();
|
sl@0
|
64 |
iFullSurfaceBitmapGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
CCFbsBitmapAnimation::CCFbsBitmapAnimation() : CTestAnimation()
|
sl@0
|
68 |
{
|
sl@0
|
69 |
};
|
sl@0
|
70 |
|
sl@0
|
71 |
EXPORT_C CCFbsBitmapAnimation::~CCFbsBitmapAnimation()
|
sl@0
|
72 |
{
|
sl@0
|
73 |
delete iFullSurfaceBitmapGc;
|
sl@0
|
74 |
delete iFullSurfaceBitmapDevice;
|
sl@0
|
75 |
delete iFullSurfaceBitmap;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
EXPORT_C void CCFbsBitmapAnimation::Rotate(TSize /*aScreenSize*/)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
EXPORT_C void CCFbsBitmapAnimation::DrawL(CTestSurfaceRasterizer* aSurfaceRasterizer, SurfaceDetails& aSurfDetails)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
iFullSurfaceBitmapGc->Activate(iFullSurfaceBitmapDevice);
|
sl@0
|
85 |
iFullSurfaceBitmapGc->Clear();
|
sl@0
|
86 |
|
sl@0
|
87 |
RedrawSurfaceL();
|
sl@0
|
88 |
|
sl@0
|
89 |
//Send the fullscreen bitmap to the test rasterizer
|
sl@0
|
90 |
iFullSurfaceBitmap->LockHeap();
|
sl@0
|
91 |
|
sl@0
|
92 |
TUint32* bitmapBufferPtr = iFullSurfaceBitmap->DataAddress();
|
sl@0
|
93 |
aSurfaceRasterizer->DrawRect(bitmapBufferPtr, aSurfDetails);
|
sl@0
|
94 |
|
sl@0
|
95 |
iFullSurfaceBitmap->UnlockHeap();
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
EXPORT_C void CCFbsBitmapAnimation::SetFrameNumber(TInt aFrameNumber)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
iFrameCounter = aFrameNumber;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
void CCFbsBitmapAnimation::RedrawSurfaceL()
|
sl@0
|
104 |
{
|
sl@0
|
105 |
CFbsBitmap bitmap;
|
sl@0
|
106 |
User::LeaveIfError(bitmap.Load(iBitmapAnimFile, iFrameCounter));
|
sl@0
|
107 |
|
sl@0
|
108 |
const TSize nativeSize(bitmap.SizeInPixels());
|
sl@0
|
109 |
|
sl@0
|
110 |
const TSize fullScreenSize(iFullSurfaceBitmap->SizeInPixels());
|
sl@0
|
111 |
|
sl@0
|
112 |
if(iPixelFormat == EFormatYuv)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
TInt noOfPixels=fullScreenSize.iWidth * fullScreenSize.iHeight;
|
sl@0
|
115 |
TInt counter=noOfPixels;
|
sl@0
|
116 |
TUint32* address = iFullSurfaceBitmap->DataAddress();
|
sl@0
|
117 |
for(TInt i=0; i<counter; i++)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
/* The only supported Yuv format is KPixelFormatYUV422Interleaved */
|
sl@0
|
120 |
/* Paint the surface white */
|
sl@0
|
121 |
address[i] = 0xFF7FFF7F;
|
sl@0
|
122 |
}
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
/* Potentially four screen copies will be required in the wrapping case *
|
sl@0
|
126 |
* (1) no wrapping (2) wrap in x co-ord (3) wrap in y co-ord *
|
sl@0
|
127 |
* (4) wrap in both x and y co-ords *
|
sl@0
|
128 |
* There is no problem with specifying negative co-ordinates for the *
|
sl@0
|
129 |
* top LH corner as the offscreen section will not be displayed */
|
sl@0
|
130 |
|
sl@0
|
131 |
//Perform blits to the fullscreen bitmap
|
sl@0
|
132 |
//iAnimSize is the size of the square bitmap as it appears on the surface and iDisplayedSize is the size of the
|
sl@0
|
133 |
//rectangulara area limiting the animation
|
sl@0
|
134 |
|
sl@0
|
135 |
TSize sz = iAnimSize;
|
sl@0
|
136 |
if(iPixelFormat == EFormatYuv)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
sz = TSize(iAnimSize.iWidth/2, iAnimSize.iHeight);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos, iYPos), sz), &bitmap, TRect(TPoint(0,0), nativeSize));
|
sl@0
|
142 |
|
sl@0
|
143 |
//Wrap in x co-ord
|
sl@0
|
144 |
if( (iXPos + iAnimSize.iWidth) > iSurfaceSize.iWidth)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos - iSurfaceSize.iWidth, iYPos), sz),
|
sl@0
|
147 |
&bitmap, TRect(TPoint(0,0), nativeSize));
|
sl@0
|
148 |
}
|
sl@0
|
149 |
|
sl@0
|
150 |
//Wrap in y co-ord
|
sl@0
|
151 |
if( (iYPos + iAnimSize.iHeight) > iSurfaceSize.iHeight)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos, iYPos - iSurfaceSize.iHeight), sz),
|
sl@0
|
154 |
&bitmap, TRect(TPoint(0,0), nativeSize));
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
//Wrap in both x and y co-ords
|
sl@0
|
158 |
if( ((iXPos + iAnimSize.iWidth) > iSurfaceSize.iWidth) && ((iYPos + iAnimSize.iHeight) > iSurfaceSize.iHeight) )
|
sl@0
|
159 |
{
|
sl@0
|
160 |
iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos - iSurfaceSize.iWidth, iYPos - iSurfaceSize.iHeight), sz),
|
sl@0
|
161 |
&bitmap, TRect(TPoint(0,0), nativeSize));
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
//Increment x and y positions and wrap if necessary
|
sl@0
|
165 |
iXPos += iSurfaceSize.iWidth/iHorizontalRate;
|
sl@0
|
166 |
iYPos += iSurfaceSize.iHeight/iVerticalRate;
|
sl@0
|
167 |
iXPos = iXPos % iSurfaceSize.iWidth;
|
sl@0
|
168 |
iYPos = iYPos % iSurfaceSize.iHeight;
|
sl@0
|
169 |
|
sl@0
|
170 |
iFrameCounter++;
|
sl@0
|
171 |
}
|