1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/src/spritewin.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,387 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#include "spritewin.h"
1.26 +#include "utils.h"
1.27 +
1.28 +#include <hal.h>
1.29 +
1.30 +
1.31 +//common configuration parameter names
1.32 +_LIT(KT_WservStressParamRandomizeDrawMode, "randomize_draw_mode");
1.33 +_LIT(KT_WservStressParamMaxRandomStepX, "max_random_step_x");
1.34 +_LIT(KT_WservStressParamMaxRandomStepY, "max_random_step_y");
1.35 +_LIT(KT_WservStressParamMaxRandomOffsetX, "max_random_offset_x");
1.36 +_LIT(KT_WservStressParamMaxRandomOffsetY, "max_random_offset_y");
1.37 +
1.38 +//static configuration data, definitions and default assignments
1.39 +TBool CSpritedWin::iEnabled = ETrue;
1.40 +TBool CSpritedWin::iTransparent = ETrue;
1.41 +TBool CSpritedWin::iRandomizePenStyle = EFalse;
1.42 +TBool CSpritedWin::iRandomizeBrushStyle = EFalse;
1.43 +TBool CSpritedWin::iRandomizeDrawMode = EFalse;
1.44 +TBool CSpritedWin::iTransparentForegroundWindow = EFalse;
1.45 +TInt CSpritedWin::iMaxRandomStepX = 0;
1.46 +TInt CSpritedWin::iMaxRandomStepY = 0;
1.47 +TInt CSpritedWin::iMaxRandomOffsetX = 0;
1.48 +TInt CSpritedWin::iMaxRandomOffsetY = 0;
1.49 +
1.50 +const TInt sInvisibleFrame = 24; //how much bigger the invisible window is
1.51 +
1.52 +
1.53 +CSpritedWin* CSpritedWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
1.54 + {
1.55 + CSpritedWin* self = new (ELeave) CSpritedWin( aWs, aGroup, aParent, aGc );
1.56 + CleanupStack::PushL( self );
1.57 + self->ConstructL();
1.58 +
1.59 + return self;
1.60 + }
1.61 +
1.62 +void CSpritedWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
1.63 + {
1.64 + aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
1.65 + aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
1.66 + aContext->GetBool(KT_WservStressParamRandomizePenStyle, iRandomizePenStyle);
1.67 + aContext->GetBool(KT_WservStressParamRandomizeBrushStyle, iRandomizeBrushStyle);
1.68 + aContext->GetBool(KT_WservStressParamRandomizeDrawMode, iRandomizeDrawMode);
1.69 + aContext->GetBool(KT_WservStressParamTransparentForegroundWindow, iTransparentForegroundWindow);
1.70 +
1.71 + aContext->GetInt(KT_WservStressParamMaxRandomStepX, iMaxRandomStepX);
1.72 + aContext->GetInt(KT_WservStressParamMaxRandomStepY, iMaxRandomStepY);
1.73 + aContext->GetInt(KT_WservStressParamMaxRandomOffsetX, iMaxRandomOffsetX);
1.74 + aContext->GetInt(KT_WservStressParamMaxRandomOffsetY, iMaxRandomOffsetY);
1.75 + }
1.76 +
1.77 +CSpritedWin::~CSpritedWin()
1.78 + {
1.79 + if (iForeWin)
1.80 + {
1.81 + iForeWin->Close();
1.82 + delete iForeWin;
1.83 + }
1.84 +
1.85 + iSprite.Close();
1.86 +
1.87 + TInt idx;
1.88 + for ( idx = 0; idx < ENofSlides; idx++)
1.89 + {
1.90 + delete iSpriteCntDevice [idx];
1.91 + delete iSpriteMskDevice [idx];
1.92 +
1.93 + delete iSpriteContent[idx];
1.94 + delete iSpriteMask[idx];
1.95 + }
1.96 + }
1.97 +
1.98 +void CSpritedWin::Redraw(const TRect& aRect)
1.99 + {
1.100 + if (iSpriteStartup == 0)
1.101 + {
1.102 + //first time getting here should be very close to the sprite activation time
1.103 + iSpriteStartup = User::NTickCount();
1.104 + }
1.105 + iWsGc.Activate(*iWindow);
1.106 +
1.107 + iRedrawWindow->BeginRedraw( aRect );
1.108 +
1.109 + iWsGc.Reset();
1.110 +
1.111 + //draw rectangle filling window area
1.112 + iWsGc.SetPenStyle( iPenStyle );
1.113 + iWsGc.SetBrushStyle( iBrushStyle );
1.114 + iWsGc.SetBrushColor( iBgColor );
1.115 + iWsGc.SetPenColor( iBgColor );
1.116 + iWsGc.SetDrawMode(iDrawMode);
1.117 +
1.118 + TRect drawRect( TPoint(0,0), iSize );
1.119 +
1.120 + iWsGc.DrawRect( drawRect );
1.121 +
1.122 + iRedrawWindow->EndRedraw();
1.123 +
1.124 + iWsGc.Deactivate();
1.125 + }
1.126 +
1.127 +void CSpritedWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
1.128 + {
1.129 + if (iSpriteStartup == 0)
1.130 + {
1.131 + //although bitmap drawing requested, sprite was not yet rendered - skip
1.132 + return;
1.133 + }
1.134 + aGc->Reset();
1.135 + TPoint origin = iPos + aOrigin;
1.136 + aGc->SetOrigin(origin);
1.137 + TRect clip(origin, iSize);
1.138 + clip.Intersection(aClip);
1.139 + clip.Move(-origin);
1.140 + aGc->SetClippingRect(clip);
1.141 +
1.142 + // draw win
1.143 + aGc->SetPenStyle(iPenStyle);
1.144 + aGc->SetBrushStyle(iBrushStyle);
1.145 + aGc->SetBrushColor( iBgColor );
1.146 + aGc->SetPenColor( iBgColor );
1.147 + aGc->SetDrawMode(iDrawMode);
1.148 + aGc->DrawRect(TRect(TPoint(0,0), iSize));
1.149 +
1.150 + // emulate sprite, cur frame
1.151 + // time (in ticks) passed since sprite activation
1.152 + TUint64 delta = TTickUtils::CalcTickDelta( iVerifyTick, iSpriteStartup );
1.153 + // time for a single slide (in microseconds)
1.154 + TUint slideDur = iSlideDuration.Int();
1.155 +
1.156 + TInt slideNo = TUint32( ( (delta * iKernelTicksPeriod ) / slideDur ) % ENofSlides );
1.157 +
1.158 + TPoint spritePos( iSize.iWidth / 2 - ESpriteSzXHalf,
1.159 + iSize.iHeight / 2 - ESpriteSzYHalf );
1.160 +
1.161 + TSize spriteSize(ESpriteSzX, ESpriteSzY);
1.162 +
1.163 + TRect spriteRect ( TPoint(0,0), spriteSize );
1.164 +
1.165 + TRect destRect( spritePos, spriteSize );
1.166 + destRect.Move(iSpriteDef[slideNo].iOffset);
1.167 +
1.168 + aGc->DrawBitmapMasked( destRect,
1.169 + iSpriteContent[slideNo],
1.170 + spriteRect,
1.171 + iSpriteMask[slideNo],
1.172 + EFalse);
1.173 +
1.174 + // inherited
1.175 + CCompWin::DrawBitmap(aGc, aClip, aOrigin);
1.176 + }
1.177 +
1.178 +void CSpritedWin::ClearBitmapBackground(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
1.179 + {
1.180 + if (iSpriteStartup == 0)
1.181 + {
1.182 + //although bitmap drawing requested, sprite was not yet rendered - skip
1.183 + return;
1.184 + }
1.185 + CCompWin::ClearBitmapBackground(aGc, aClip, aOrigin);
1.186 + }
1.187 +
1.188 +void CSpritedWin::SetSize(const TSize & aSize)
1.189 + {
1.190 + CCompWin::SetSize( aSize );
1.191 +
1.192 + if ( iConstructed )
1.193 + {
1.194 + TPoint spritePos( iSize.iWidth / 2 - ESpriteSzXHalf,
1.195 + iSize.iHeight / 2 - ESpriteSzYHalf );
1.196 +
1.197 + iSprite.SetPosition( spritePos );
1.198 + }
1.199 + if (iForeWin)
1.200 + {
1.201 + iForeWin->SetExtent(TPoint(iPos.iX-sInvisibleFrame, iPos.iY-sInvisibleFrame),
1.202 + TSize(iSize.iWidth+2*sInvisibleFrame, iSize.iHeight+2*sInvisibleFrame));
1.203 + }
1.204 + }
1.205 +
1.206 +void CSpritedWin::SetPos(const TPoint & aPos)
1.207 + {
1.208 + CCompWin::SetPos( aPos );
1.209 + if (iForeWin)
1.210 + {
1.211 + iForeWin->SetPosition(TPoint(iPos.iX-sInvisibleFrame, iPos.iY-sInvisibleFrame));
1.212 + }
1.213 + }
1.214 +
1.215 +CSpritedWin::CSpritedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc):
1.216 + CCompWin( aWs, aGroup, aParent, aGc ), iSprite ( aWs ), iForeWin(NULL)
1.217 + {
1.218 + iBgColor = TRnd::rnd();
1.219 + if (!iTransparent)
1.220 + {
1.221 + iBgColor.SetAlpha(255);
1.222 + }
1.223 + iSlideDuration = (TRnd::rnd( ESlideDurMaxTenthSec ) + 1) * ESlideDurMult;
1.224 +
1.225 + HAL::Get( HAL::ENanoTickPeriod, iKernelTicksPeriod );
1.226 +
1.227 + }
1.228 +
1.229 +void CSpritedWin::ConstructL()
1.230 + {
1.231 + // prepare surface
1.232 + CCompWin::PreConstructL(iTransparent);
1.233 +
1.234 + TInt idx, err = KErrNone;
1.235 + TRect rect;
1.236 + CGraphicsContext* gCtxSpr = NULL;
1.237 + CGraphicsContext* gCtxMsk = NULL;
1.238 +
1.239 + // init sprite handles
1.240 + TPoint spritePos( iSize.iWidth / 2 - ESpriteSzXHalf,
1.241 + iSize.iHeight / 2 - ESpriteSzYHalf );
1.242 + err = iSprite.Construct( *iWindow, spritePos, ESpriteNoChildClip );
1.243 + User::LeaveIfError( err );
1.244 +
1.245 + iPenStyle = iRandomizePenStyle ? GetRandomPenStyle() : CGraphicsContext::ESolidPen;
1.246 + iBrushStyle = iRandomizeBrushStyle ? GetRandomBrushStyle() : CGraphicsContext::ESolidBrush;
1.247 + iDrawMode = iRandomizeDrawMode ? GetRandomDrawMode() : CGraphicsContext::EDrawModePEN;
1.248 +
1.249 + TInt stepx = iMaxRandomStepX > 0 ? TRnd::rnd(2*iMaxRandomStepX) - iMaxRandomStepX : 0;
1.250 + TInt stepy = iMaxRandomStepY > 0 ? TRnd::rnd(2*iMaxRandomStepY) - iMaxRandomStepY : 0;
1.251 + TInt offsetx = iMaxRandomOffsetX > 0 ? TRnd::rnd(2*iMaxRandomOffsetX) - iMaxRandomOffsetX : 0;
1.252 + TInt offsety = iMaxRandomOffsetY > 0 ? TRnd::rnd(2*iMaxRandomOffsetY) - iMaxRandomOffsetY : 0;
1.253 +
1.254 + // create sprites & masks
1.255 + for ( idx = 0; idx < ENofSlides; idx++)
1.256 + {
1.257 + iSpriteContent[idx] = new (ELeave) CFbsBitmap();
1.258 + iSpriteMask[idx] = new (ELeave) CFbsBitmap();;
1.259 +
1.260 + err = iSpriteContent[idx]->Create(TSize(ESpriteSzX,ESpriteSzY), EColor64K);
1.261 + User::LeaveIfError( err );
1.262 +
1.263 + err = iSpriteMask[idx]->Create(TSize(ESpriteSzX,ESpriteSzY), EColor64K);
1.264 + User::LeaveIfError( err );
1.265 +
1.266 + iSpriteCntDevice [idx] = CFbsBitmapDevice::NewL (iSpriteContent[idx]);
1.267 + iSpriteMskDevice [idx] = CFbsBitmapDevice::NewL (iSpriteMask[idx]);
1.268 +
1.269 +
1.270 + // draw sprite content
1.271 + err = iSpriteCntDevice[idx]->CreateContext( gCtxSpr );
1.272 + User::LeaveIfError( err );
1.273 + CleanupStack::PushL( gCtxSpr );
1.274 +
1.275 + err = iSpriteMskDevice[idx]->CreateContext( gCtxMsk );
1.276 + User::LeaveIfError( err );
1.277 + CleanupStack::PushL( gCtxMsk );
1.278 +
1.279 + gCtxSpr->SetPenStyle(CGraphicsContext::ESolidPen);
1.280 + gCtxSpr->SetPenColor(KRgbWhite);
1.281 + gCtxSpr->SetBrushColor(KRgbWhite);
1.282 + gCtxSpr->SetBrushStyle( iBrushStyle );
1.283 +
1.284 + gCtxMsk->SetPenStyle(CGraphicsContext::ESolidPen);
1.285 + gCtxMsk->SetPenColor(KRgbBlack);
1.286 + gCtxMsk->SetBrushColor(KRgbBlack);
1.287 + gCtxMsk->SetBrushStyle( CGraphicsContext::ESolidBrush );
1.288 +
1.289 + rect.SetRect( 0, 0, ESpriteSzX, ESpriteSzY );
1.290 + gCtxSpr->DrawRect( rect );
1.291 + gCtxMsk->DrawRect( rect );
1.292 +
1.293 + // cross mask
1.294 + gCtxMsk->SetBrushColor(KRgbWhite);
1.295 + gCtxMsk->SetPenColor(KRgbWhite);
1.296 + rect.SetRect( ESpriteSzXHalf - EStepWidth * (idx + 1), 0,
1.297 + ESpriteSzXHalf + EStepWidth * (idx + 1), ESpriteSzY );
1.298 + gCtxMsk->DrawRect( rect );
1.299 + rect.SetRect( 0, ESpriteSzYHalf - EStepHeight * (idx + 1),
1.300 + ESpriteSzX, ESpriteSzYHalf + EStepHeight * (idx + 1) );
1.301 + gCtxMsk->DrawRect( rect );
1.302 +
1.303 + CleanupStack::PopAndDestroy( gCtxMsk );
1.304 + CleanupStack::PopAndDestroy( gCtxSpr );
1.305 +
1.306 + // make sprite
1.307 + iSpriteDef[idx].iBitmap = iSpriteContent[idx];
1.308 + iSpriteDef[idx].iMaskBitmap = iSpriteMask[idx];
1.309 + iSpriteDef[idx].iOffset = TPoint( offsetx+idx*stepx, offsety+idx*stepy );
1.310 + iSpriteDef[idx].iDrawMode = CGraphicsContext::EDrawModeAND;
1.311 + iSpriteDef[idx].iInvertMask = EFalse;
1.312 + iSpriteDef[idx].iInterval = iSlideDuration;
1.313 +
1.314 + err = iSprite.AppendMember( iSpriteDef[idx] );
1.315 + User::LeaveIfError( err );
1.316 + }
1.317 +
1.318 + //Create a transparent foreground window, moving and resizing with the sprite window
1.319 + if (iTransparentForegroundWindow)
1.320 + {
1.321 + iForeWin = new(ELeave) RBlankWindow(iWs);
1.322 + iForeWin->Construct(*iGroup,reinterpret_cast<TUint32>(iForeWin));
1.323 + iForeWin->SetColor(TRgb(0, 0, 0, 0)); //a transparent window
1.324 + iForeWin->SetExtent(TPoint(iPos.iX-sInvisibleFrame, iPos.iY-sInvisibleFrame),
1.325 + TSize(iSize.iWidth+2*sInvisibleFrame, iSize.iHeight+2*sInvisibleFrame));
1.326 + iForeWin->SetOrdinalPosition(0);
1.327 + iForeWin->Activate();
1.328 + }
1.329 +
1.330 + // finally
1.331 + CCompWin::PostConstructL();
1.332 +
1.333 + iSpriteStartup = 0;
1.334 + // show up the sprite
1.335 + err = iSprite.Activate();
1.336 + User::LeaveIfError( err );
1.337 +
1.338 + iConstructed = ETrue;
1.339 + }
1.340 +
1.341 +TBool CSpritedWin::QueryReadyForVerification()
1.342 + {
1.343 +
1.344 + TBool res;
1.345 +
1.346 + // time (in ticks) passed since sprite activation
1.347 + TUint64 delta = TTickUtils::CalcTickDelta( iVerifyTick, iSpriteStartup );
1.348 + // time for a single slide (in microseconds)
1.349 + TUint slideDur = iSlideDuration.Int();
1.350 + // time for all sprite slides (in microseconds)
1.351 + TUint spriteDur = slideDur * ENofSlides;
1.352 + // time passed since begining of sprite sequence (in microseconds)
1.353 + TUint64 sense = (delta * iKernelTicksPeriod ) % spriteDur; // microsec
1.354 +
1.355 + res = (sense >= EFrameBorderSenseMs);
1.356 +
1.357 + res = res && CCompWin::QueryReadyForVerification();
1.358 +
1.359 + return res;
1.360 + }
1.361 +
1.362 +void CSpritedWin::DumpDetails(RFile& aFile, TInt aDepth)
1.363 + {
1.364 + TBuf8<256> buf;
1.365 + buf.SetLength(0);
1.366 + for (TInt d = 0; d < aDepth; ++d)
1.367 + {
1.368 + buf.Append(_L8(" "));
1.369 + }
1.370 + buf.Append(_L8("Transparent = ["));
1.371 + buf.AppendNum((TInt64)iTransparent);
1.372 + buf.Append(_L8("] pen_style = ["));
1.373 + buf.AppendNum((TInt64)iPenStyle);
1.374 + buf.Append(_L8("] brush_style = ["));
1.375 + buf.AppendNum((TInt64)iBrushStyle);
1.376 + buf.Append(_L8("] draw_mode = ["));
1.377 + buf.AppendNum((TInt64)iDrawMode);
1.378 + buf.Append(_L8("] transparent_foreground_window = ["));
1.379 + buf.AppendNum((TInt64)iTransparentForegroundWindow);
1.380 + buf.Append(_L8("] max_random_step_x = ["));
1.381 + buf.AppendNum((TInt64)iMaxRandomStepX);
1.382 + buf.Append(_L8("] max_random_step_y = ["));
1.383 + buf.AppendNum((TInt64)iMaxRandomStepY);
1.384 + buf.Append(_L8("] max_random_offset_x = ["));
1.385 + buf.AppendNum((TInt64)iMaxRandomOffsetX);
1.386 + buf.Append(_L8("] max_random_offset_y = ["));
1.387 + buf.AppendNum((TInt64)iMaxRandomOffsetY);
1.388 + buf.Append(_L8("]\r\n"));
1.389 + aFile.Write(buf);
1.390 + }