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 <libc/limits.h> //UINT_MAX
|
sl@0
|
23 |
#include "t_fpsappeng.h"
|
sl@0
|
24 |
#include "t_pseudoapputils.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
const TInt KSurfaceWidth = 640;
|
sl@0
|
27 |
const TInt KSurfaceHeight = 240;
|
sl@0
|
28 |
const TUidPixelFormat KSurfaceFormat = EUidPixelFormatXRGB_8888;
|
sl@0
|
29 |
const TInt KBytesPerPixel = 4; // Four bytes per pixel for the format above.
|
sl@0
|
30 |
|
sl@0
|
31 |
CFpsAppEng::CFpsAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
|
sl@0
|
32 |
: CTimer(CActive::EPriorityStandard),
|
sl@0
|
33 |
iClient(aClient),
|
sl@0
|
34 |
iWindow(aWindow),
|
sl@0
|
35 |
iScreenDevice(aScreenDevice)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
CFpsAppEng* CFpsAppEng::NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
CFpsAppEng* self = new (ELeave) CFpsAppEng(aClient, aScreenDevice, aWindow);
|
sl@0
|
42 |
CleanupStack::PushL(self);
|
sl@0
|
43 |
self->ConstructL();
|
sl@0
|
44 |
CleanupStack::Pop(); // self;
|
sl@0
|
45 |
return self;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
CFpsAppEng::~CFpsAppEng()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
if(IsActive())
|
sl@0
|
51 |
{
|
sl@0
|
52 |
Cancel();
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
User::Free(iBufPtr1);
|
sl@0
|
56 |
DestroySurface();
|
sl@0
|
57 |
|
sl@0
|
58 |
//Pause to allow the test step to kill the app
|
sl@0
|
59 |
User::After(1000000);
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
void CFpsAppEng::ConstructL()
|
sl@0
|
63 |
{
|
sl@0
|
64 |
CTimer::ConstructL();
|
sl@0
|
65 |
|
sl@0
|
66 |
iNoOfPixels = KSurfaceHeight*KSurfaceWidth;
|
sl@0
|
67 |
iNoOfBytes = iNoOfPixels*KBytesPerPixel;
|
sl@0
|
68 |
|
sl@0
|
69 |
// Allocate a memory block
|
sl@0
|
70 |
iBufPtr1 = reinterpret_cast<TUint32*>(User::AllocL(iNoOfBytes));
|
sl@0
|
71 |
|
sl@0
|
72 |
RDebug::Print(_L("Creating Surface manager..."));
|
sl@0
|
73 |
CreateSurfaceManager();
|
sl@0
|
74 |
RDebug::Print(_L("Creating Surface..."));
|
sl@0
|
75 |
CreateSurface(iSurfaceId);
|
sl@0
|
76 |
RDebug::Print(_L("Create Surface update session..."));
|
sl@0
|
77 |
CreateSurfaceUpdateSessionL();
|
sl@0
|
78 |
|
sl@0
|
79 |
CActiveScheduler::Add(this);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
void CFpsAppEng::StartDrawing()
|
sl@0
|
83 |
{
|
sl@0
|
84 |
//A value of 0 will provoke a E32User-Cbase 46 panic
|
sl@0
|
85 |
After(TTimeIntervalMicroSeconds32(100000));
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
void CFpsAppEng::CreateSurfaceManager()
|
sl@0
|
89 |
{
|
sl@0
|
90 |
TInt ret = iSurfaceManager.Open();
|
sl@0
|
91 |
if(ret==KErrNone)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
RDebug::Print(_L("Creating surface manager OK"));
|
sl@0
|
94 |
}
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
|
sl@0
|
98 |
void CFpsAppEng::CreateSurface(TSurfaceId& aSurfaceId)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
RSurfaceManager::TSurfaceCreationAttributesBuf attribs;
|
sl@0
|
101 |
RSurfaceManager::TSurfaceCreationAttributes& surfaceCreationAtribs=attribs();
|
sl@0
|
102 |
surfaceCreationAtribs.iSize.iWidth = KSurfaceWidth;
|
sl@0
|
103 |
surfaceCreationAtribs.iSize.iHeight = KSurfaceHeight;
|
sl@0
|
104 |
surfaceCreationAtribs.iBuffers = 2;
|
sl@0
|
105 |
surfaceCreationAtribs.iPixelFormat = KSurfaceFormat;
|
sl@0
|
106 |
surfaceCreationAtribs.iStride = KBytesPerPixel*KSurfaceWidth;
|
sl@0
|
107 |
surfaceCreationAtribs.iOffsetToFirstBuffer = 0;
|
sl@0
|
108 |
surfaceCreationAtribs.iAlignment = 4;
|
sl@0
|
109 |
surfaceCreationAtribs.iContiguous = EFalse;
|
sl@0
|
110 |
surfaceCreationAtribs.iMappable = ETrue;
|
sl@0
|
111 |
|
sl@0
|
112 |
TInt err = iSurfaceManager.CreateSurface(attribs, aSurfaceId);
|
sl@0
|
113 |
if (err == KErrNone)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
err = iSurfaceManager.MapSurface(aSurfaceId, iChunk);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
if (err == KErrNone)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
RDebug::Print(_L("Surface created: OK"));
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
iSurfacePtr = reinterpret_cast<TUint32*>(iChunk.Base());
|
sl@0
|
123 |
err=iWindow.SetBackgroundSurface(aSurfaceId);
|
sl@0
|
124 |
if ( err!=KErrNone)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
RDebug::Print(_L("ERROR: %d - Setting window background to the surface failed!"), err);
|
sl@0
|
127 |
User::Panic(_L("Fps panic"), err);
|
sl@0
|
128 |
}
|
sl@0
|
129 |
}
|
sl@0
|
130 |
|
sl@0
|
131 |
void CFpsAppEng::CreateSurfaceUpdateSessionL()
|
sl@0
|
132 |
{
|
sl@0
|
133 |
TInt ret = iSurfaceUpdateSession.Connect();
|
sl@0
|
134 |
|
sl@0
|
135 |
if (ret==KErrAlreadyExists)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
RDebug::Print(_L("Device driver already loaded"));
|
sl@0
|
138 |
}
|
sl@0
|
139 |
else if (ret==KErrNone)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
RDebug::Print(_L("Connected to surface update server"));
|
sl@0
|
142 |
}
|
sl@0
|
143 |
else
|
sl@0
|
144 |
{
|
sl@0
|
145 |
RDebug::Print(_L("Fatal error connecting to surface update server"));
|
sl@0
|
146 |
User::LeaveIfError(ret);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
}
|
sl@0
|
149 |
|
sl@0
|
150 |
void CFpsAppEng::DestroySurface()
|
sl@0
|
151 |
{
|
sl@0
|
152 |
RDebug::Print(_L("Destroy Surface update session"));
|
sl@0
|
153 |
iSurfaceUpdateSession.Close();
|
sl@0
|
154 |
|
sl@0
|
155 |
RDebug::Print(_L("Closing chunk"));
|
sl@0
|
156 |
iChunk.Close();
|
sl@0
|
157 |
|
sl@0
|
158 |
RDebug::Print(_L("Closing surface"));
|
sl@0
|
159 |
TInt ret = iSurfaceManager.CloseSurface(iSurfaceId);
|
sl@0
|
160 |
if(ret!=KErrNone)
|
sl@0
|
161 |
{
|
sl@0
|
162 |
RDebug::Print(_L("Surface manager failed to close"));
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
RDebug::Print(_L("Close Surface Manager"));
|
sl@0
|
166 |
iSurfaceManager.Close();
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
|
sl@0
|
170 |
// Timer's RunL()
|
sl@0
|
171 |
void CFpsAppEng::RunL()
|
sl@0
|
172 |
{
|
sl@0
|
173 |
TInt j;
|
sl@0
|
174 |
if (iCol1)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
for (j=0; j<iNoOfPixels; j++)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
iBufPtr1[j]=0xFF00FF00;
|
sl@0
|
179 |
}
|
sl@0
|
180 |
iCol1=EFalse;
|
sl@0
|
181 |
iCol2=ETrue;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
else
|
sl@0
|
184 |
{
|
sl@0
|
185 |
for (j=0; j<iNoOfPixels; j++)
|
sl@0
|
186 |
{
|
sl@0
|
187 |
iBufPtr1[j]=0xFF0000FF;
|
sl@0
|
188 |
}
|
sl@0
|
189 |
iCol2=EFalse;
|
sl@0
|
190 |
iCol1=ETrue;
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
Mem::Move(iSurfacePtr, iBufPtr1, iNoOfBytes);
|
sl@0
|
194 |
__ASSERT_ALWAYS( KErrNone==iSurfaceUpdateSession.SubmitUpdate(KAllScreens, iSurfaceId, 0, NULL),User::Panic(_L("Fps App"), -1));
|
sl@0
|
195 |
iClient.Flush();
|
sl@0
|
196 |
|
sl@0
|
197 |
// After(TTimeIntervalMicroSeconds32(10000)); // 0.002sec, 100fps
|
sl@0
|
198 |
// After(TTimeIntervalMicroSeconds32(20000)); // 0.02sec, 50fps
|
sl@0
|
199 |
// After(TTimeIntervalMicroSeconds32(25000)); // 0.025sec, 40fps
|
sl@0
|
200 |
After(TTimeIntervalMicroSeconds32(33333)); // 0.033sec, 30fps
|
sl@0
|
201 |
// After(TTimeIntervalMicroSeconds32(50000)); // 0.050sec, 20fps
|
sl@0
|
202 |
// After(TTimeIntervalMicroSeconds32(100000)); //0.01sec, 10fps
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
|
sl@0
|
206 |
// Timer's DoCancel()
|
sl@0
|
207 |
void CFpsAppEng::DoCancel()
|
sl@0
|
208 |
{
|
sl@0
|
209 |
// Cancel timer
|
sl@0
|
210 |
CTimer::DoCancel();
|
sl@0
|
211 |
}
|