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 <iniparser.h>
|
sl@0
|
23 |
#include "t_app1eng.h"
|
sl@0
|
24 |
#include "t_inidata.h"
|
sl@0
|
25 |
#include "t_wservconsts.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
_LIT(KTApp1ScrMode, "KTApp1ScrMode%d");
|
sl@0
|
29 |
_LIT(KTApp1Rotation, "KTApp1Rotation%d");
|
sl@0
|
30 |
_LIT(KTApp1PanicTxt, "t_app1.exe");
|
sl@0
|
31 |
|
sl@0
|
32 |
//
|
sl@0
|
33 |
// class CTApp1Eng
|
sl@0
|
34 |
//
|
sl@0
|
35 |
CTApp1Eng::CTApp1Eng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
|
sl@0
|
36 |
: CTimer(CActive::EPriorityLow),
|
sl@0
|
37 |
iClient(aClient),
|
sl@0
|
38 |
iWindow(aWindow),
|
sl@0
|
39 |
iScreenDevice(aScreenDevice),
|
sl@0
|
40 |
iDrawing(EFalse),
|
sl@0
|
41 |
iRotationFlag(EFalse)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
CTApp1Eng* CTApp1Eng::NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
CTApp1Eng* self = new (ELeave) CTApp1Eng(aClient, aScreenDevice, aWindow);
|
sl@0
|
48 |
CleanupStack::PushL(self);
|
sl@0
|
49 |
self->ConstructL();
|
sl@0
|
50 |
CleanupStack::Pop(); // self;
|
sl@0
|
51 |
return self;
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
CTApp1Eng::~CTApp1Eng()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
if(IsActive())
|
sl@0
|
57 |
{
|
sl@0
|
58 |
Cancel();
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
iRotationList.Close();
|
sl@0
|
62 |
iScrModeList.Close();
|
sl@0
|
63 |
iSemaphore.Close();
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
void CTApp1Eng::ConstructL()
|
sl@0
|
67 |
{
|
sl@0
|
68 |
CTimer::ConstructL();
|
sl@0
|
69 |
User::LeaveIfError(iScreenDevice.CreateContext(iGc));
|
sl@0
|
70 |
|
sl@0
|
71 |
HBufC* rotFlag = NULL;
|
sl@0
|
72 |
READ_STR(KTApp1RotationFlag, KWServTApp1ConfigFile, rotFlag);
|
sl@0
|
73 |
|
sl@0
|
74 |
// check to see if instead of the default behaviour of drawing to
|
sl@0
|
75 |
// window with alternate frames of red/blue, that the app is to
|
sl@0
|
76 |
// periodically cause the screen to rotate, which is all defined
|
sl@0
|
77 |
// in the configuration file created by the test step
|
sl@0
|
78 |
if (rotFlag!=NULL && rotFlag->Des().Compare(_L("ETrue")) == KErrNone)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
delete rotFlag;
|
sl@0
|
81 |
iRotationFlag=ETrue;
|
sl@0
|
82 |
|
sl@0
|
83 |
// setup rotation and screen mode lists
|
sl@0
|
84 |
TBool moreData=ETrue;
|
sl@0
|
85 |
TInt index=0;
|
sl@0
|
86 |
TBuf<255> tempStore;
|
sl@0
|
87 |
CIniData * iniData = CIniData::NewL(KWServTApp1ConfigFile);
|
sl@0
|
88 |
CleanupStack::PushL(iniData);
|
sl@0
|
89 |
|
sl@0
|
90 |
// read in rotations to be performed
|
sl@0
|
91 |
while (moreData)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
TInt scrMode;
|
sl@0
|
94 |
tempStore.Format(KTApp1ScrMode, ++index);
|
sl@0
|
95 |
moreData = iniData->FindVar(KDefaultSectionName, tempStore, scrMode);
|
sl@0
|
96 |
if (moreData)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
TInt rotation;
|
sl@0
|
99 |
tempStore.Format(KTApp1Rotation, index);
|
sl@0
|
100 |
moreData = iniData->FindVar(KDefaultSectionName, tempStore, rotation);
|
sl@0
|
101 |
if (moreData)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
RDebug::Print(_L("CTApp1Eng::ConstructL - Screen Mode: %d, Rotation: %d"),scrMode,rotation);
|
sl@0
|
104 |
iRotationList.AppendL(rotation);
|
sl@0
|
105 |
iScrModeList.AppendL(scrMode);
|
sl@0
|
106 |
}
|
sl@0
|
107 |
else
|
sl@0
|
108 |
{
|
sl@0
|
109 |
User::Panic(KTApp1PanicTxt(), KErrNotFound);
|
sl@0
|
110 |
}
|
sl@0
|
111 |
}
|
sl@0
|
112 |
else
|
sl@0
|
113 |
{
|
sl@0
|
114 |
moreData=EFalse;
|
sl@0
|
115 |
}
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
CleanupStack::PopAndDestroy(iniData);
|
sl@0
|
119 |
|
sl@0
|
120 |
// setup the number of frames to be counted between each
|
sl@0
|
121 |
// screen rotation
|
sl@0
|
122 |
TInt iters = 0;
|
sl@0
|
123 |
READ_INT(KTApp1Iterations, KWServTApp1ConfigFile, iters);
|
sl@0
|
124 |
iRotationTimer = iters/(iRotationList.Count()+1);
|
sl@0
|
125 |
RDebug::Print(_L("CTApp1Eng::ConstructL - Rotation Timer: %d"), iRotationTimer);
|
sl@0
|
126 |
|
sl@0
|
127 |
if (iRotationList.Count()==0)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
User::Panic(KTApp1PanicTxt(), KErrNotFound);
|
sl@0
|
130 |
}
|
sl@0
|
131 |
}
|
sl@0
|
132 |
User::LeaveIfError(iSemaphore.OpenGlobal(KWservDsaSemaphoreName));
|
sl@0
|
133 |
|
sl@0
|
134 |
CActiveScheduler::Add(this);
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
void CTApp1Eng::StartDrawing()
|
sl@0
|
138 |
{
|
sl@0
|
139 |
if (iDrawing)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
User::Panic(KTApp1PanicTxt(), TApp1EngAlreadyStarted);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
iDrawing=ETrue;
|
sl@0
|
145 |
|
sl@0
|
146 |
After(TTimeIntervalMicroSeconds32(0));
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
void CTApp1Eng::StopDrawing()
|
sl@0
|
150 |
{
|
sl@0
|
151 |
if (!iDrawing)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
User::Panic(KTApp1PanicTxt(), TApp1EngAlreadyStopped);
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
// Cancel timer and display
|
sl@0
|
157 |
Cancel();
|
sl@0
|
158 |
iDrawing = EFalse;
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
|
sl@0
|
162 |
// Timer's RunL()
|
sl@0
|
163 |
void CTApp1Eng::RunL()
|
sl@0
|
164 |
{
|
sl@0
|
165 |
iFrameCount++;
|
sl@0
|
166 |
|
sl@0
|
167 |
if (iFrameCount==1)
|
sl@0
|
168 |
{
|
sl@0
|
169 |
RDebug::Print(_L("CTApp1Eng::RunL - Rotation Flag: %d"), iRotationFlag);
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
// just draw to window, with alternate frames of red and blue
|
sl@0
|
173 |
if (iRotationFlag==EFalse)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
iGc->Activate(iWindow);
|
sl@0
|
176 |
TRect myRect(iWindow.Size());
|
sl@0
|
177 |
TRgb color(0,0,255);
|
sl@0
|
178 |
|
sl@0
|
179 |
if (iFrameCount%2)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
color.SetRed(255);
|
sl@0
|
182 |
color.SetBlue(0);
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
iGc->SetBrushColor(color);
|
sl@0
|
186 |
iWindow.SetBackgroundColor(color);
|
sl@0
|
187 |
iGc->SetPenColor(color);
|
sl@0
|
188 |
iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
189 |
iGc->DrawRect(myRect);
|
sl@0
|
190 |
iGc->Deactivate();
|
sl@0
|
191 |
|
sl@0
|
192 |
iDrawing=EFalse;
|
sl@0
|
193 |
iWindow.Invalidate();
|
sl@0
|
194 |
}
|
sl@0
|
195 |
// else rotate screen
|
sl@0
|
196 |
else
|
sl@0
|
197 |
{
|
sl@0
|
198 |
if (iFrameCount==iRotationTimer)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
iSemaphore.Signal();
|
sl@0
|
201 |
iFrameCount=0;
|
sl@0
|
202 |
|
sl@0
|
203 |
if (iRotationCount<iRotationList.Count())
|
sl@0
|
204 |
{
|
sl@0
|
205 |
TInt rotation = iRotationList[iRotationCount];
|
sl@0
|
206 |
TInt scrMode = iScrModeList[iRotationCount];
|
sl@0
|
207 |
|
sl@0
|
208 |
switch (rotation)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
case 0:
|
sl@0
|
211 |
{
|
sl@0
|
212 |
iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationNormal);
|
sl@0
|
213 |
break;
|
sl@0
|
214 |
}
|
sl@0
|
215 |
case 90:
|
sl@0
|
216 |
{
|
sl@0
|
217 |
iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated90);
|
sl@0
|
218 |
iScreenDevice.SetScreenMode(scrMode);
|
sl@0
|
219 |
break;
|
sl@0
|
220 |
}
|
sl@0
|
221 |
case 180:
|
sl@0
|
222 |
{
|
sl@0
|
223 |
iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated180);
|
sl@0
|
224 |
break;
|
sl@0
|
225 |
}
|
sl@0
|
226 |
case 270:
|
sl@0
|
227 |
{
|
sl@0
|
228 |
iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated270);
|
sl@0
|
229 |
break;
|
sl@0
|
230 |
}
|
sl@0
|
231 |
default:
|
sl@0
|
232 |
{
|
sl@0
|
233 |
RDebug::Print(_L("CTApp1Eng::RunL - Invalid Rotation: %d"),rotation);
|
sl@0
|
234 |
User::Leave(KErrAbort);
|
sl@0
|
235 |
break;
|
sl@0
|
236 |
}
|
sl@0
|
237 |
}
|
sl@0
|
238 |
RDebug::Print(_L("CTApp1Eng::RunL - Screen Mode: %d, Rotation: %d"),scrMode, rotation);
|
sl@0
|
239 |
iScreenDevice.SetScreenMode(scrMode);
|
sl@0
|
240 |
}
|
sl@0
|
241 |
|
sl@0
|
242 |
iRotationCount++;
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
After(TTimeIntervalMicroSeconds32(0));
|
sl@0
|
246 |
}
|
sl@0
|
247 |
}
|
sl@0
|
248 |
|
sl@0
|
249 |
// Timer's DoCancel()
|
sl@0
|
250 |
void CTApp1Eng::DoCancel()
|
sl@0
|
251 |
{
|
sl@0
|
252 |
// Cancel timer
|
sl@0
|
253 |
CTimer::DoCancel();
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
|