os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappcfbsbitmapanim.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include "t_pseudoappcfbsbitmapanim.h"
    23 #include "t_testsurfacerasterizer.h"
    24 
    25 EXPORT_C CCFbsBitmapAnimation* CCFbsBitmapAnimation::NewL(TDisplayMode aMode, const TSize& aAnimSize, const TSize& aSurfaceSize,
    26                                                           TPtrC& aBitmapFile, TInt aHorizontalRate, TInt aVerticalRate,
    27                                                           TPixelFormat aPixelFormat)
    28 	{
    29 	RDebug::Print(_L("Creating CCFbsBitmapAnimation class\n"));
    30     CCFbsBitmapAnimation* self = new (ELeave) CCFbsBitmapAnimation();
    31     CleanupStack::PushL(self);
    32     self->ConstructL(aMode, aAnimSize, aSurfaceSize, aBitmapFile, aHorizontalRate, aVerticalRate, aPixelFormat);
    33     CleanupStack::Pop(); // self;
    34     return self;
    35 	}
    36 
    37 void CCFbsBitmapAnimation::ConstructL(TDisplayMode aMode, const TSize& aAnimSize, const TSize& aSurfaceSize,
    38                                       TPtrC& aBitmapFile, TInt aHorizontalRate, TInt aVerticalRate,
    39                                       TPixelFormat aPixelFormat)
    40 	{
    41 	RDebug::Print(_L("Creating full-screen bitmap\n"));
    42 
    43 	iBitmapAnimFile.Set(aBitmapFile);
    44 	iHorizontalRate = aHorizontalRate;
    45 	iVerticalRate   = aVerticalRate;
    46 	iAnimSize       = aAnimSize;
    47 	iSurfaceSize    = aSurfaceSize;
    48 	iPixelFormat    = aPixelFormat;
    49 	iRotationSupported = ETrue;
    50 
    51 	iFullSurfaceBitmap = new(ELeave) CFbsBitmap;
    52 
    53 	if(iPixelFormat == EFormatYuv)
    54 		{
    55 		TSize sz(iSurfaceSize.iWidth/2, iSurfaceSize.iHeight);
    56 		iFullSurfaceBitmap->Create(sz, static_cast<TDisplayMode>(aMode));
    57 		}
    58 	else
    59 		{
    60 		iFullSurfaceBitmap->Create(iSurfaceSize, static_cast<TDisplayMode>(aMode));
    61 		}
    62 	iFullSurfaceBitmapDevice = CFbsBitmapDevice::NewL(iFullSurfaceBitmap);
    63 	iFullSurfaceBitmapGc = CFbsBitGc::NewL();
    64 	iFullSurfaceBitmapGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
    65 	}
    66 
    67 CCFbsBitmapAnimation::CCFbsBitmapAnimation() : CTestAnimation()
    68 	{
    69 	};
    70 
    71 EXPORT_C CCFbsBitmapAnimation::~CCFbsBitmapAnimation()
    72 	{
    73 	delete iFullSurfaceBitmapGc;
    74 	delete iFullSurfaceBitmapDevice;
    75 	delete iFullSurfaceBitmap;
    76 	}
    77 
    78 EXPORT_C void CCFbsBitmapAnimation::Rotate(TSize /*aScreenSize*/)
    79 	{
    80 	}
    81 
    82 EXPORT_C void CCFbsBitmapAnimation::DrawL(CTestSurfaceRasterizer* aSurfaceRasterizer, SurfaceDetails& aSurfDetails)
    83 	{
    84 	iFullSurfaceBitmapGc->Activate(iFullSurfaceBitmapDevice);
    85 	iFullSurfaceBitmapGc->Clear();
    86 
    87 	RedrawSurfaceL();
    88 
    89 	//Send the fullscreen bitmap to the test rasterizer
    90 	iFullSurfaceBitmap->LockHeap();
    91 
    92 	TUint32* bitmapBufferPtr  = iFullSurfaceBitmap->DataAddress();
    93 	aSurfaceRasterizer->DrawRect(bitmapBufferPtr, aSurfDetails);
    94 
    95 	iFullSurfaceBitmap->UnlockHeap();
    96 	}
    97 
    98 EXPORT_C void CCFbsBitmapAnimation::SetFrameNumber(TInt aFrameNumber)
    99 	{
   100 	iFrameCounter = aFrameNumber;
   101 	}
   102 
   103 void CCFbsBitmapAnimation::RedrawSurfaceL()
   104 	{
   105 	CFbsBitmap bitmap;
   106 	User::LeaveIfError(bitmap.Load(iBitmapAnimFile, iFrameCounter));
   107 
   108 	const TSize nativeSize(bitmap.SizeInPixels());
   109 
   110 	const TSize fullScreenSize(iFullSurfaceBitmap->SizeInPixels());
   111 
   112 	if(iPixelFormat == EFormatYuv)
   113 		{
   114 		TInt noOfPixels=fullScreenSize.iWidth * fullScreenSize.iHeight;
   115 		TInt counter=noOfPixels;
   116 		TUint32* address = iFullSurfaceBitmap->DataAddress();
   117 		for(TInt i=0; i<counter; i++)
   118 			{
   119 			/* The only supported Yuv format is KPixelFormatYUV422Interleaved */
   120 			/* Paint the surface white */
   121 			address[i] = 0xFF7FFF7F;
   122 			}
   123 		}
   124 
   125 	/* Potentially four screen copies will be required in the wrapping case *
   126 	 * (1) no wrapping (2) wrap in x co-ord (3) wrap in y co-ord            *
   127 	 * (4) wrap in both x and y co-ords                                     *
   128 	 * There is no problem with specifying negative co-ordinates for the    *
   129 	 * top LH corner as the offscreen section will not be displayed         */
   130 
   131 	//Perform blits to the fullscreen bitmap
   132 	//iAnimSize is the size of the square bitmap as it appears on the surface and iDisplayedSize is the size of the
   133 	//rectangulara area limiting the animation
   134 
   135 	TSize sz = iAnimSize;
   136 	if(iPixelFormat == EFormatYuv)
   137 		{
   138 		sz = TSize(iAnimSize.iWidth/2, iAnimSize.iHeight);
   139 		}
   140 
   141 	iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos, iYPos), sz), &bitmap, TRect(TPoint(0,0), nativeSize));
   142 
   143 	//Wrap in x co-ord
   144 	if( (iXPos + iAnimSize.iWidth) > iSurfaceSize.iWidth)
   145 		{
   146 		iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos - iSurfaceSize.iWidth, iYPos), sz),
   147 									       &bitmap, TRect(TPoint(0,0), nativeSize));
   148 		}
   149 
   150 	//Wrap in y co-ord
   151 	if( (iYPos + iAnimSize.iHeight) > iSurfaceSize.iHeight)
   152 		{
   153 		iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos, iYPos - iSurfaceSize.iHeight), sz),
   154 									       &bitmap, TRect(TPoint(0,0), nativeSize));
   155 		}
   156 
   157 	//Wrap in both x and y co-ords
   158 	if( ((iXPos + iAnimSize.iWidth) > iSurfaceSize.iWidth) && ((iYPos + iAnimSize.iHeight) > iSurfaceSize.iHeight) )
   159 		{
   160 		iFullSurfaceBitmapGc->DrawBitmap(TRect(TPoint(iXPos - iSurfaceSize.iWidth, iYPos - iSurfaceSize.iHeight), sz),
   161 									       &bitmap, TRect(TPoint(0,0), nativeSize));
   162 		}
   163 
   164 	//Increment x and y positions and wrap if necessary
   165 	iXPos += iSurfaceSize.iWidth/iHorizontalRate;
   166 	iYPos += iSurfaceSize.iHeight/iVerticalRate;
   167 	iXPos = iXPos % iSurfaceSize.iWidth;
   168 	iYPos = iYPos % iSurfaceSize.iHeight;
   169 
   170 	iFrameCounter++;
   171 	}