os/graphics/windowing/windowserver/test/tauto/TFADINGBITMAP.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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
// The fix enables the fading effect with alpha-blending, which was not applied bofore.
sl@0
    15
// The test will load a bitmap and two different masks: on/off and alpha-blend.
sl@0
    16
// The bitmap will be masked with these masks and displayed before and after
sl@0
    17
// setting the fading effect.
sl@0
    18
// All different colour modes are being tested for both mask types.
sl@0
    19
// The test will check the colour of a specific pixel in the scene before and after the
sl@0
    20
// fading. The higher values in the After circle means that it has been highlighted.
sl@0
    21
// The result will be printed in wstest log file.
sl@0
    22
// 
sl@0
    23
//
sl@0
    24
sl@0
    25
/**
sl@0
    26
 @file
sl@0
    27
 @test
sl@0
    28
 @internalComponent - Internal Symbian test code
sl@0
    29
*/
sl@0
    30
sl@0
    31
#include "TFADINGBITMAP.H"
sl@0
    32
sl@0
    33
//===================================================
sl@0
    34
// CBaseWin Declaration
sl@0
    35
//===================================================
sl@0
    36
sl@0
    37
CBaseWin::CBaseWin(): CTWin()
sl@0
    38
	{
sl@0
    39
	}
sl@0
    40
sl@0
    41
CBaseWin::~CBaseWin()
sl@0
    42
	{
sl@0
    43
	delete iTempBitmap;
sl@0
    44
	delete iMaskGray256;
sl@0
    45
	delete iMaskGray2;
sl@0
    46
	delete iTempMask;
sl@0
    47
	delete iBitmap;
sl@0
    48
	}
sl@0
    49
sl@0
    50
void CBaseWin::ConstructWinL(TPoint aPos, TSize aSize, TBool aVisible)
sl@0
    51
	{	
sl@0
    52
	/*** Setting up the window ***/
sl@0
    53
	iSize = aSize;
sl@0
    54
	SetUpL(aPos, aSize, TheClient->iGroup, *TheClient->iGc, aVisible);
sl@0
    55
	Win()->SetBackgroundColor(TRgb(20, 80, 20));	// dark green background
sl@0
    56
	BaseWin()->SetRequiredDisplayMode(EColor64K);
sl@0
    57
sl@0
    58
	/*** 24 bit bitmap ***/
sl@0
    59
	// the original 24b bitmap to mask
sl@0
    60
	iTempBitmap = new (ELeave) CFbsBitmap();
sl@0
    61
	User::LeaveIfError(iTempBitmap->Load(_L("Z:\\WSTEST\\WSAUTOTEST.MBM"), EMbmWsautotestCircles24b));
sl@0
    62
	iBitmap = new (ELeave) CFbsBitmap();
sl@0
    63
sl@0
    64
	/*** on/off mask ***/
sl@0
    65
	iMaskGray2 = new (ELeave) CFbsBitmap();
sl@0
    66
	User::LeaveIfError(iMaskGray2->Load(_L("Z:\\WSTEST\\WSAUTOTEST.MBM"), EMbmWsautotestCircles_mask2b));
sl@0
    67
sl@0
    68
	/*** alpha-blend mask ***/
sl@0
    69
	// holds the 24bit copy of the alpha blend mask which will be 
sl@0
    70
	// copied into the proper Gray256 mask, iMaskGray256.
sl@0
    71
	iTempMask = new (ELeave) CFbsBitmap();
sl@0
    72
	User::LeaveIfError(iTempMask->Load(_L("Z:\\WSTEST\\WSAUTOTEST.MBM"), EMbmWsautotestCircles_mask256));	
sl@0
    73
	// alpha blend mask; copying its data from iTempMask
sl@0
    74
	iMaskGray256 = new (ELeave) CFbsBitmap();
sl@0
    75
	User::LeaveIfError(iMaskGray256->Create(iTempBitmap->SizeInPixels(),EGray256));
sl@0
    76
	CFbsBitmapDevice *dev = CFbsBitmapDevice::NewL(iMaskGray256);
sl@0
    77
	CleanupStack::PushL(dev);
sl@0
    78
	CFbsBitGc *gc;
sl@0
    79
	User::LeaveIfError(dev->CreateContext(gc));
sl@0
    80
	// performing the copying here
sl@0
    81
	gc->BitBlt(TPoint(0,0), iTempMask);
sl@0
    82
	// cleaning up
sl@0
    83
	CleanupStack::Pop();
sl@0
    84
	delete gc;
sl@0
    85
	gc = NULL;	
sl@0
    86
	delete dev;
sl@0
    87
	dev = NULL;	
sl@0
    88
	}
sl@0
    89
sl@0
    90
void CBaseWin::Draw()
sl@0
    91
	{
sl@0
    92
	iGc->Clear();
sl@0
    93
sl@0
    94
	// Font intialization
sl@0
    95
	CFont* myFont;    	
sl@0
    96
	_LIT(KMyFontName,"Swiss");
sl@0
    97
	TFontSpec myFontSpec = TFontSpec(KMyFontName,16); // to get smallest Swiss font
sl@0
    98
	TFontStyle style = TFontStyle (EPostureUpright, EStrokeWeightBold,   EPrintPosNormal);
sl@0
    99
	myFontSpec.iFontStyle = style;
sl@0
   100
	User::LeaveIfError(TheClient->iScreen->GetNearestFontInPixels(myFont, myFontSpec));
sl@0
   101
	iGc->UseFont(myFont);
sl@0
   102
	iGc->SetPenStyle(CGraphicsContext::ESolidPen);
sl@0
   103
	iGc->SetPenColor(TRgb(255, 255, 255));
sl@0
   104
	
sl@0
   105
	// drawing text
sl@0
   106
	iGc->DrawText(_L("Fading = OFF"), TPoint(130,15));
sl@0
   107
	iGc->DrawText(_L("Fading = ON"),  TPoint(275,15));
sl@0
   108
	iGc->DrawText(_L("Alpha blend"), TPoint(15,90));
sl@0
   109
	iGc->DrawText(_L("on/off mask"),  TPoint(15,190));
sl@0
   110
	TBuf <30> displayMode(_L("Display Mode = "));
sl@0
   111
	displayMode.Append(iMode);	
sl@0
   112
	iGc->DrawText(displayMode, TPoint(385,100));		
sl@0
   113
	
sl@0
   114
	/*** drawing bitmap with its on/off mask and alpha-blending 
sl@0
   115
		 before and after fading ***/
sl@0
   116
	iGc->BitBltMasked(TPoint(140,25), iBitmap, 
sl@0
   117
						   TRect(0,0,100,100), iMaskGray256, EFalse);	
sl@0
   118
	// Save the pixel colour of a pixel on the outer ring of the circle 
sl@0
   119
	// before fading enabled.
sl@0
   120
	TheClient->iScreen->GetPixel(iNonFadedPixel, TPoint(190,30));	
sl@0
   121
sl@0
   122
	iGc->SetFaded(ETrue);
sl@0
   123
	iGc->BitBltMasked(TPoint(270,25), iBitmap, 
sl@0
   124
						   TRect(0,0,100,100), iMaskGray256, EFalse);
sl@0
   125
	// Save the pixel colour of a pixel on the outer ring of the circle 
sl@0
   126
	// after fading enabled.
sl@0
   127
	TheClient->iScreen->GetPixel(iFadedPixel, TPoint(320,30));	
sl@0
   128
sl@0
   129
	iGc->SetFaded(EFalse);
sl@0
   130
	
sl@0
   131
	iGc->BitBltMasked(TPoint(140,125), iBitmap, 
sl@0
   132
						   TRect(0,0,100,100), iMaskGray2, EFalse);
sl@0
   133
	iGc->SetFaded(ETrue);
sl@0
   134
	iGc->BitBltMasked(TPoint(270,125), iBitmap, 
sl@0
   135
						   TRect(0,0,100,100), iMaskGray2, EFalse);
sl@0
   136
	iGc->SetFaded(EFalse);
sl@0
   137
sl@0
   138
	iGc->DiscardFont();
sl@0
   139
	TheClient->iScreen->ReleaseFont(myFont);
sl@0
   140
	}
sl@0
   141
sl@0
   142
sl@0
   143
//===================================================
sl@0
   144
// CTFadingBitmap Definition
sl@0
   145
//===================================================
sl@0
   146
sl@0
   147
CTFadingBitmap::CTFadingBitmap(CTestStep* aStep):
sl@0
   148
	CTWsGraphicsBase(aStep), iTestResult(ETrue)
sl@0
   149
	{
sl@0
   150
	}
sl@0
   151
sl@0
   152
CTFadingBitmap::~CTFadingBitmap()
sl@0
   153
	{
sl@0
   154
	delete iBgWin;
sl@0
   155
	}
sl@0
   156
sl@0
   157
void CTFadingBitmap::TestFadingL()
sl@0
   158
	{
sl@0
   159
	// Modes to test
sl@0
   160
	TDisplayMode modes[] = 
sl@0
   161
		{
sl@0
   162
		EGray2, EGray4, EGray16, EGray256, 
sl@0
   163
		EColor16, EColor256, EColor4K, EColor64K, 
sl@0
   164
		EColor16M, EColor16MU, EColor16MA, EColor16MAP   
sl@0
   165
		};
sl@0
   166
	
sl@0
   167
	TBuf <12> modesTxt []= 
sl@0
   168
		{
sl@0
   169
		_L("EGray2"), _L("EGray4"), _L("EGray16"), _L("EGray256"), 
sl@0
   170
		_L("EColor16"), _L("EColor256"), _L("EColor4K"), _L("EColor64K"), 
sl@0
   171
		_L("EColor16M"), _L("EColor16MU"), _L("EColor16MA"), _L("EColor16MAP")
sl@0
   172
		};
sl@0
   173
	
sl@0
   174
	TBuf <100> testTxt;		 
sl@0
   175
	for( int i = 0; i < 12; i++)
sl@0
   176
		{
sl@0
   177
		testTxt.Format(modesTxt[i]);
sl@0
   178
		INFO_PRINTF1(testTxt);
sl@0
   179
		// Here we copy the content of the temp bitmap, which holds the test bitmap,
sl@0
   180
		// into the bitmap created with alternating color depths.
sl@0
   181
		User::LeaveIfError(iBgWin->iBitmap->Create(iBgWin->iTempBitmap->SizeInPixels(), modes[i]));
sl@0
   182
		CFbsBitmapDevice *dev = CFbsBitmapDevice::NewL(iBgWin->iBitmap);
sl@0
   183
		CleanupStack::PushL(dev);
sl@0
   184
		CFbsBitGc *gc;
sl@0
   185
		User::LeaveIfError(dev->CreateContext(gc));
sl@0
   186
		// performing the copying here
sl@0
   187
		gc->BitBlt(TPoint(0,0), iBgWin->iTempBitmap);
sl@0
   188
		// setting the mode text to display it
sl@0
   189
		iBgWin->iMode = modesTxt[i];
sl@0
   190
		// draws the bitmap on screen 
sl@0
   191
		iBgWin->DrawNow();
sl@0
   192
		TheClient->Flush();
sl@0
   193
		User::After(5000);
sl@0
   194
		// cleaning up		
sl@0
   195
		CleanupStack::Pop();
sl@0
   196
		delete gc;
sl@0
   197
		gc = NULL;	
sl@0
   198
		delete dev;
sl@0
   199
		dev = NULL;		
sl@0
   200
		
sl@0
   201
		// Here the colours of pixels before and after fading are printed in wstest log
sl@0
   202
		testTxt.Format(_L("Nonfaded circle - color of the outside ring: R=%d G=%d B=%d"), iBgWin->iNonFadedPixel.Red(), iBgWin->iNonFadedPixel.Green(), iBgWin->iNonFadedPixel.Blue());
sl@0
   203
		INFO_PRINTF1(testTxt);
sl@0
   204
		testTxt.Format(_L("Faded circle  - color of the outside ring: R=%d G=%d B=%d"), iBgWin->iFadedPixel.Red(), iBgWin->iFadedPixel.Green(), iBgWin->iFadedPixel.Blue());
sl@0
   205
		INFO_PRINTF1(testTxt);
sl@0
   206
		
sl@0
   207
		// Checks if the colors are the same before and after the fading.
sl@0
   208
		// The color will be the same only in EGray2 and EGray4 as there are no enough 
sl@0
   209
		// color variations to represent the fading and nonfading effects.
sl@0
   210
		if(iTestResult &&
sl@0
   211
		   iBgWin->iNonFadedPixel.Red()   == iBgWin->iFadedPixel.Red() &&
sl@0
   212
		   iBgWin->iNonFadedPixel.Green() == iBgWin->iFadedPixel.Green() &&
sl@0
   213
		   iBgWin->iNonFadedPixel.Blue()  == iBgWin->iFadedPixel.Blue() &&
sl@0
   214
		   modes[i] != EGray2 && modes[i] != EGray4)
sl@0
   215
			iTestResult = EFalse;
sl@0
   216
		}
sl@0
   217
	}
sl@0
   218
sl@0
   219
void CTFadingBitmap::ConstructL()
sl@0
   220
	{
sl@0
   221
	// construct the base window of the test in the background
sl@0
   222
	TSize scrSize = TSize(TheClient->iScreen->SizeInPixels());
sl@0
   223
	iBgWin = new (ELeave) CBaseWin();
sl@0
   224
	iBgWin->ConstructWinL(TPoint(0,0), scrSize, ETrue);	
sl@0
   225
	}
sl@0
   226
sl@0
   227
void CTFadingBitmap::RunTestCaseL(TInt aCurTestCase)
sl@0
   228
	{
sl@0
   229
    	((CTFadingBitmapStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
   230
	switch(aCurTestCase)
sl@0
   231
		{
sl@0
   232
		case 1:
sl@0
   233
/**
sl@0
   234
@SYMTestCaseID		GRAPHICS-WSERV-0566
sl@0
   235
*/
sl@0
   236
            		((CTFadingBitmapStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0566"));
sl@0
   237
			TestFadingL();
sl@0
   238
			// Fails or passes the test
sl@0
   239
			if(!iTestResult)
sl@0
   240
				TEST(EFalse);
sl@0
   241
			break;
sl@0
   242
		default:
sl@0
   243
            		((CTFadingBitmapStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
   244
			((CTFadingBitmapStep*)iStep)->CloseTMSGraphicsStep();
sl@0
   245
			TestComplete();
sl@0
   246
		}
sl@0
   247
	((CTFadingBitmapStep*)iStep)->RecordTestResultL();
sl@0
   248
	}
sl@0
   249
sl@0
   250
__WS_CONSTRUCT_STEP__(FadingBitmap)