Update contrib.
1 // Copyright (c) 2008-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 "animatedwin.h"
25 #include "stressanimcmd.h"
30 //static configuration data, definitions and default assignments
31 TBool CAnimatedWin::iEnabled = ETrue;
32 TBool CAnimatedWin::iTransparent = ETrue;
33 TBool CAnimatedWin::iTransparentForegroundWindow = EFalse;
35 const TInt sInvisibleFrame = 24; //how much bigger the invisible window is
37 CAnimatedWin* CAnimatedWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
39 CAnimatedWin* self = new (ELeave) CAnimatedWin( aWs, aGroup, aParent, aGc );
40 CleanupStack::PushL( self );
46 void CAnimatedWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
48 aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
49 aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
50 aContext->GetBool(KT_WservStressParamTransparentForegroundWindow, iTransparentForegroundWindow);
53 CAnimatedWin::~CAnimatedWin()
68 for ( idx = 0; idx < ENofFrames; idx++)
70 delete iAnimCntDevice [idx];
71 delete iAnimContent [idx];
74 delete iAnimMskDevice;
79 void CAnimatedWin::Redraw(const TRect& aRect)
81 iWsGc.Activate(*iWindow);
83 iRedrawWindow->BeginRedraw( aRect );
87 iWsGc.SetPenStyle( CGraphicsContext::ESolidPen );
88 iWsGc.SetBrushStyle( CGraphicsContext::EDiamondCrossHatchBrush );
89 iWsGc.SetBrushColor( iBgColor );
90 iWsGc.SetPenColor( iBgColor );
92 TRect drawRect( TPoint(0,0), iSize );
94 iWsGc.DrawRect( drawRect );
96 iRedrawWindow->EndRedraw();
102 void CAnimatedWin::AppendTime(TDes& aTimeText,const TTime& aTime) const
104 _LIT(TimeFormat,"%:0%H%:1%T%:2%S");
105 TRAPD(err,aTime.FormatL(aTimeText,TimeFormat));
108 _LIT(DummyTime,"######");
109 aTimeText.Append(DummyTime);
114 void CAnimatedWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
117 TPoint origin = iPos + aOrigin;
118 aGc->SetOrigin(origin);
119 TRect clip(origin, iSize);
120 clip.Intersection(aClip);
122 aGc->SetClippingRect(clip);
124 // draw win background
125 aGc->SetPenStyle(CGraphicsContext::ESolidPen);
126 aGc->SetBrushStyle(CGraphicsContext::EDiamondCrossHatchBrush);
127 aGc->SetBrushColor( iBgColor );
128 aGc->SetPenColor( iBgColor );
129 aGc->DrawRect(TRect(TPoint(0,0), iSize));
133 TUint64 elapsedMs = iAnimLastKnownAction * iKernelTicksPeriod;
134 TTime restoredTime(elapsedMs);
135 AppendTime( timebuf , restoredTime );
137 TInt textWidth = iAnimFont->MeasureText( timebuf );
138 TInt textHalf = textWidth / 2;
140 TInt centerX = iSize.iWidth / 2;
141 TInt centerY = iSize.iHeight / 2;
143 TRect rect(centerX - textHalf, centerY - iAnimFont->AscentInPixels(),
144 centerX + textHalf, centerY - iAnimFont->AscentInPixels() + iAnimFont->HeightInPixels());
148 origin = iPos + aOrigin;
149 aGc->SetOrigin( origin );
150 clip = TRect( origin, iSize );
151 clip.Intersection( aClip );
153 aGc->SetClippingRect(clip);
155 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
157 aGc->UseFont(iAnimFont);
159 aGc->DrawText(timebuf, rect, iAnimFont->AscentInPixels());
161 rect.Move(0, iAnimFont->HeightInPixels());
162 aGc->DrawText(timebuf, rect, iAnimFont->AscentInPixels());
165 CCompWin::DrawBitmap(aGc, aClip, aOrigin);
168 void CAnimatedWin::SetSize(const TSize & aSize)
170 CCompWin::SetSize( aSize );
173 iForeWin->SetExtent(TPoint(iPos.iX-sInvisibleFrame, iPos.iY-sInvisibleFrame),
174 TSize(iSize.iWidth+2*sInvisibleFrame, iSize.iHeight+2*sInvisibleFrame));
178 void CAnimatedWin::SetPos(const TPoint & aPos)
180 CCompWin::SetPos( aPos );
183 iForeWin->SetPosition(TPoint(iPos.iX-sInvisibleFrame, iPos.iY-sInvisibleFrame));
187 CAnimatedWin::CAnimatedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc):
188 CCompWin( aWs, aGroup, aParent, aGc ), iAnimDll( aWs ), iForeWin(NULL)
190 iBgColor = TRnd::rnd();
192 iFrameDuration = (TRnd::rnd( EFrameDurMaxTenthSec ) + 1) * EFrameDurMult;
194 HAL::Get( HAL::ENanoTickPeriod, iKernelTicksPeriod );
198 void CAnimatedWin::ConstructL()
201 CCompWin::PreConstructL(iTransparent);
203 TInt idx, err = KErrNone;
206 TPoint animPos( iSize.iWidth / 2 - EFrameSzXHalf,
207 iSize.iHeight / 2 - EFrameSzYHalf );
209 // create anim frames & masks
210 for ( idx = 0; idx < ENofFrames; idx++)
212 iAnimContent[idx] = new (ELeave) CFbsBitmap();
214 err = iAnimContent[idx]->Create( TSize( EFrameSzX , EFrameSzY), EColor64K );
215 User::LeaveIfError( err );
217 iAnimCntDevice [idx] = CFbsBitmapDevice::NewL (iAnimContent[idx]);
220 iAnimMask = new (ELeave) CFbsBitmap();
222 err = iAnimMask->Create( TSize( EFrameSzX , EFrameSzY), EColor64K );
223 User::LeaveIfError( err );
225 iAnimMskDevice = CFbsBitmapDevice::NewL ( iAnimMask );
228 CGraphicsContext* gCtxAni = NULL;
229 CGraphicsContext* gCtxMsk = NULL;
230 // draw frame 1 and mask
231 err = iAnimCntDevice [ EFrame1 ]->CreateContext( gCtxAni );
232 User::LeaveIfError( err );
233 CleanupStack::PushL( gCtxAni );
235 err = iAnimMskDevice->CreateContext( gCtxMsk );
236 User::LeaveIfError( err );
237 CleanupStack::PushL( gCtxMsk );
240 gCtxAni->SetBrushColor(KRgbWhite);
241 gCtxAni->SetPenColor(KRgbWhite);
242 gCtxAni->SetBrushStyle( CGraphicsContext::ESolidBrush );
244 gCtxMsk->SetBrushColor(KRgbWhite);
245 gCtxMsk->SetPenColor(KRgbWhite);
246 gCtxMsk->SetBrushStyle( CGraphicsContext::ESolidBrush );
248 rect.SetRect( EFrameSzXHalf - EFrameSzXEgt, 0, EFrameSzXHalf + EFrameSzXEgt, EFrameSzYHalf ); //lint !e656 Arithmetic operation uses (compatible) enum's
249 gCtxAni->DrawRect( rect );
250 gCtxMsk->DrawRect( rect );
252 rect.SetRect( EFrameSzXHalf - EFrameSzXQtr, EFrameSzYHalf, EFrameSzXHalf + EFrameSzXQtr, EFrameSzY ); //lint !e656 Arithmetic operation uses (compatible) enum's
253 gCtxAni->DrawRect( rect );
254 gCtxMsk->DrawRect( rect );
256 gCtxAni->SetPenColor(KRgbBlack);
257 gCtxAni->DrawLine( TPoint(EFrameSzXHalf,0), TPoint (EFrameSzXHalf,EFrameSzY) );
260 CleanupStack::PopAndDestroy( gCtxMsk );
261 CleanupStack::PopAndDestroy( gCtxAni );
264 err = iAnimCntDevice [ EFrame2 ]->CreateContext( gCtxAni );
265 User::LeaveIfError( err );
266 CleanupStack::PushL( gCtxAni );
268 gCtxAni->SetPenColor(KRgbWhite);
269 gCtxAni->DrawLine( TPoint(EFrameSzXHalf,0), TPoint (EFrameSzXHalf,EFrameSzY) );
271 CleanupStack::PopAndDestroy( gCtxAni );
274 err = iAnimMskDevice->GetNearestFontInPixels( iAnimFont, TFontSpec( _L("Roman"), 16 ) );
275 User::LeaveIfError( err );
278 err = iAnimDll.Load( KAnimDllName );
279 User::LeaveIfError( err );
281 // construct server side anim
282 TPckgBuf<TStressTestAnimParams> animParams;
283 animParams().pos = animPos;
284 animParams().interval = iFrameDuration.Int();
285 animParams().bit1 = iAnimContent[ EFrame1 ]->Handle();
286 animParams().bit2 = iAnimContent[ EFrame2 ]->Handle();
287 animParams().mask = iAnimMask->Handle();
288 animParams().font = iAnimFont->Handle();
290 iAnim = new (ELeave) CAnimatedWin::RStressAnim ( iAnimDll );
292 err = iAnim->Construct( *iWindow, animParams );
293 User::LeaveIfError( err );
296 CCompWin::PostConstructL();
298 // got time shot when we started
299 iAnimStartup = User::NTickCount();
301 //Create a transparent foreground window, moving and resizing with the animation window
302 if (iTransparentForegroundWindow)
304 iForeWin = new(ELeave) RBlankWindow(iWs);
305 iForeWin->Construct(*iGroup,reinterpret_cast<TUint32>(iForeWin));
306 iForeWin->SetColor(TRgb(0, 0, 0, 0)); //a transparent window
307 iForeWin->SetExtent(TPoint(iPos.iX-sInvisibleFrame, iPos.iY-sInvisibleFrame),
308 TSize(iSize.iWidth+2*sInvisibleFrame, iSize.iHeight+2*sInvisibleFrame));
309 iForeWin->SetOrdinalPosition(0);
310 iForeWin->Activate();
313 iConstructed = ETrue;
316 void CAnimatedWin::SetAnimPos(const TPoint& aPos)
318 TPckgBuf<TStressTestAnimParams> animParams;
319 animParams().pos = aPos;
320 iAnim->RequestAnimThis( EADllTextPos, animParams );
323 TBool CAnimatedWin::QueryReadyForVerification()
328 TInt32 curTicks = User::NTickCount();
330 iAnimLastKnownAction = (TUint32) iAnim->RequestAnimThis( EADllQuerySync );
332 TUint64 elapsed = TTickUtils::CalcTickDelta( curTicks, iAnimLastKnownAction );
334 TUint64 elapsedMs = elapsed * iKernelTicksPeriod;
336 res = ( elapsedMs < EWatchMatchGap );
338 res = res && CCompWin::QueryReadyForVerification();
343 CAnimatedWin::RStressAnim::RStressAnim (RAnimDll& aAnimDll):
347 TInt CAnimatedWin::RStressAnim::Construct(const RWindowBase &aDevice, const TDesC8 &aParams)
349 return RAnim::Construct( aDevice, 0, aParams );
352 TInt CAnimatedWin::RStressAnim::RequestAnimThis(TInt aOpcode)
356 TPckgC<TBool> params(ETrue);
358 res = RequestAnimThis( aOpcode, params );
363 TInt CAnimatedWin::RStressAnim::RequestAnimThis(TInt aOpcode, const TDesC8 &aParams)
367 res = CommandReply( aOpcode, aParams );
372 void CAnimatedWin::DumpDetails(RFile& aFile, TInt aDepth)
376 for (TInt d = 0; d < aDepth; ++d)
378 buf.Append(_L8(" "));
380 buf.Append(_L8("Transparent = ["));
381 buf.AppendNum((TInt64)iTransparent);
382 buf.Append(_L8("] transparent_foreground_window = ["));
383 buf.AppendNum((TInt64)iTransparentForegroundWindow);
384 buf.Append(_L8("] BgColor = ["));
385 buf.AppendNum(iBgColor.Value());
386 buf.Append(_L8("]\r\n"));