os/graphics/graphicsapitest/screendriverhaitest/screendriver/src/t_cfbsdrawdevicedata.cpp
Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
18 #include "t_cfbsdrawdevicedata.h"
22 _LIT(KDisplayMode, "displayMode");
23 _LIT(KDrawMode, "drawMode");
24 _LIT(KOrientationMode, "orientationMode");
25 _LIT(KShadowMode, "shadowMode");
26 _LIT(KBackColor, "backColor");
27 _LIT(KNumRect, "numRect");
28 _LIT(KRectangles, "rectangles");
29 _LIT(KRectangleSection, "RECTANGLES");
30 _LIT(KNumTestRect, "numTestRect");
31 _LIT(KAutoUpdate, "autoUpdate");
32 _LIT(KCmdNewScreenDeviceL, "NewScreenDeviceL");
33 _LIT(KCmdDestructor, "~");
34 _LIT(KCmdInitScreen, "InitScreen");
35 _LIT(KCmdSetDisplayMode, "SetDisplayMode");
36 _LIT(KCmdSetAutoUpdate, "SetAutoUpdate");
37 _LIT(KCmdOrientationsAvailable, "OrientationsAvailable");
38 _LIT(KCmdSetOrientation, "SetOrientation");
39 _LIT(KCmdWriteRgb, "WriteRgb");
40 _LIT(KCmdWriteLine, "WriteLine");
41 _LIT(KCmdWriteBinaryLine, "WriteBinaryLine");
42 _LIT(KCmdWriteRgbMulti, "WriteRgbMulti");
43 _LIT(KCmdReadLine, "ReadLine");
44 _LIT(KCmdWriteRGBAlphaLine, "WriteRGBAlphaLine");
45 _LIT(KCmdSetShadowMode, "SetShadowMode");
46 _LIT(KCmdShadowArea, "ShadowArea");
47 _LIT(KCmdWriteBinary, "WriteBinary");
48 _LIT(KCmdWriteBinaryLineVertical, "WriteBinaryLineVertical");
49 _LIT(KNoShadow, "ENoShadow");
50 _LIT(KShadow, "EShadow");
52 _LIT(KShadowFade, "EShadowFade");
54 _LIT(KGray2, "EGray2");
55 _LIT(KGray4, "EGray4");
56 _LIT(KGray16, "EGray16");
57 _LIT(KGray256, "EGray256");
58 _LIT(KColor16, "EColor16");
59 _LIT(KColor256, "EColor256");
60 _LIT(KColor64K, "EColor64K");
61 _LIT(KColor16M, "EColor16M");
63 _LIT(KColor4K, "EColor4K");
64 _LIT(KColor16MU, "EColor16MU");
65 _LIT(KColor16MA, "EColor16MA");
66 _LIT(KColor16MAP, "EColor16MAP");
67 _LIT(KColorLast, "EColorLast");
68 _LIT(KDrawModePEN, "EDrawModePEN");
69 _LIT(KDrawModeAND, "EDrawModeAND");
70 _LIT(KDrawModeXOR, "EDrawModeXOR");
71 _LIT(KDrawModeOR, "EDrawModeOR");
72 _LIT(KDrawModeNOTSCREEN, "EDrawModeNOTSCREEN");
73 _LIT(KDrawModeNOTPEN, "EDrawModeNOTPEN");
74 _LIT(KDelay, "delay");
75 _LIT(KOrientationNormal, "EOrientationNormal");
76 _LIT(KOrientationRotated90, "EOrientationRotated90");
77 _LIT(KOrientationRotated180, "EOrientationRotated180");
78 _LIT(KOrientationRotated270, "EOrientationRotated270");
83 const CDataWrapperBase::TEnumEntryTable CT_CFbsDrawDeviceData::iEnumShadowModes[] =
94 const CDataWrapperBase::TEnumEntryTable CT_CFbsDrawDeviceData::iEnumDisplayModes[] =
102 KColor256, EColor256,
103 KColor64K, EColor64K,
104 KColor16M, EColor16M,
107 KColor16MU, EColor16MU,
108 KColor16MA, EColor16MA,
109 KColor16MA, EColorLast,
110 KColor16MAP, EColor16MAP,
111 KColorLast, EColor64K
117 const CDataWrapperBase::TEnumEntryTable CT_CFbsDrawDeviceData::iEnumDrawModes[] =
119 KDrawModePEN, CGraphicsContext::EDrawModePEN,
120 KDrawModeAND, CGraphicsContext::EDrawModeAND,
121 KDrawModeXOR, CGraphicsContext::EDrawModeXOR,
122 KDrawModeOR, CGraphicsContext::EDrawModeOR,
123 KDrawModeNOTSCREEN, CGraphicsContext::EDrawModeNOTSCREEN,
124 KDrawModeNOTPEN, CGraphicsContext::EDrawModeNOTPEN
127 const CDataWrapperBase::TEnumEntryTable CT_CFbsDrawDeviceData::iEnumOrientationModes[] =
129 KOrientationNormal, CFbsDrawDevice::EOrientationNormal,
130 KOrientationRotated90, CFbsDrawDevice::EOrientationRotated90,
131 KOrientationRotated180, CFbsDrawDevice::EOrientationRotated180,
132 KOrientationRotated270, CFbsDrawDevice::EOrientationRotated270
135 CT_CFbsDrawDeviceData* CT_CFbsDrawDeviceData::NewL()
137 CT_CFbsDrawDeviceData* ret = new (ELeave) CT_CFbsDrawDeviceData();
138 CleanupStack::PushL(ret);
140 CleanupStack::Pop(ret);
145 CT_CFbsDrawDeviceData::CT_CFbsDrawDeviceData()
147 iDMode(CGraphicsContext::EDrawModePEN),
148 iDispMode(EColor64K),
151 iPostBlendShadow(ENoPostShadow),
158 void CT_CFbsDrawDeviceData::ConstructL()
165 CT_CFbsDrawDeviceData::~CT_CFbsDrawDeviceData()
172 * Return a pointer to the object that the data wraps
174 * @return pointer to the object that the data wraps
176 TAny* CT_CFbsDrawDeviceData::GetObject()
182 * Command for Destructor
184 void CT_CFbsDrawDeviceData::DoCmdDestructor()
190 * Destroys used objects
192 void CT_CFbsDrawDeviceData::DestroyData()
207 * Process a command read from the ini file
209 * @param aCommand The command to process
210 * @param aSection The section in the ini containing data for the command
211 * @param aAsyncErrorIndex Command index for async calls to return errors to
213 * @return ETrue if the command is processed
215 * @leave System wide error
217 TBool CT_CFbsDrawDeviceData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection,
218 const TInt/* aAsyncErrorIndex*/)
222 if ( aCommand==KCmdInitScreen )
226 else if ( aCommand==KCmdSetDisplayMode )
228 DoCmdSetDisplayMode();
230 else if ( aCommand==KCmdSetAutoUpdate )
232 DoCmdSetAutoUpdate(aSection);
234 else if ( aCommand==KCmdOrientationsAvailable )
236 DoCmdOrientationsAvailable();
238 else if ( aCommand==KCmdSetOrientation )
240 DoCmdSetOrientation(aSection);
242 else if ( aCommand==KCmdNewScreenDeviceL )
244 DoCmdNewScreenDeviceL(aSection);
246 else if ( aCommand==KCmdDestructor )
250 else if ( aCommand==KCmdWriteLine )
252 DoCmdWriteLineL(aSection);
254 else if ( aCommand==KCmdWriteBinaryLine )
256 DoCmdWriteBinaryLineL(aSection);
258 else if ( aCommand==KCmdWriteRgb )
260 DoCmdWriteRgb(aSection);
262 else if( aCommand==KCmdWriteRgbMulti )
264 DoCmdWriteRgbMulti(aSection);
266 else if( aCommand==KCmdReadLine )
268 DoCmdReadLineL(aSection);
270 else if( aCommand==KCmdWriteRGBAlphaLine )
272 DoCmdWriteRGBAlphaLineL(aSection);
274 else if( aCommand==KCmdSetShadowMode )
276 DoCmdSetShadowMode(aSection);
278 else if( aCommand==KCmdShadowArea )
280 DoCmdShadowArea(aSection);
282 else if( aCommand==KCmdWriteBinary )
284 DoCmdWriteBinaryL(aSection);
286 else if( aCommand==KCmdWriteBinaryLineVertical )
288 DoCmdWriteBinaryLineVerticalL(aSection);
299 * Tests WriteRgbMulti method from CFbsDrawDevice
300 * @param aSection The section in the ini containing data for the command
301 * @return KErrNone if no error found.
303 void CT_CFbsDrawDeviceData::DoCmdWriteRgbMulti(const TTEFSectionName& aSection)
305 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdWriteRgbMulti"));
311 GETFROMCONFIGMANDATORY(Int, aSection, KNumRect(),nRect,_L("Error in getting parameter %S from INI file"),dataOk);
312 GETFROMCONFIGMANDATORY(Int, aSection, KDelay(),delay,_L("Error in getting parameter %S from INI file"),dataOk);
314 if ( !GetEnumFromConfig(aSection, KDrawMode(), iEnumDrawModes, drawMode) )
316 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDrawMode());
317 SetBlockResult(EFail);
322 INFO_PRINTF2(_L("Change draw mode to: %d"), drawMode);
323 iDMode=CGraphicsContext::TDrawMode(drawMode);
325 for (TInt nBackColor = 0; nBackColor < KNumTestBackgrounds; nBackColor++)
327 TRgb backColor = TestColor[nBackColor];
329 for (TInt nColor = 0; nColor < KNumTestColors; nColor++)
331 TInt shadowMode = EPostFade;
332 TRect rect = iTestRect[nRect];
333 TRgb color = TestColor[nColor];
334 SetShadowAndFadingMode(shadowMode,100, 200);
335 iDrawDevice->WriteRgbMulti(rect.iTl.iX,rect.iTl.iY,rect.Width(),rect.Height(),color,iDMode);
341 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdWriteRgbMulti"));
345 * Tests WriteRgb method from CFbsDrawDevice
347 void CT_CFbsDrawDeviceData::DoCmdWriteRgb(const TTEFSectionName& aSection)
349 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdWriteRgb"));
355 if (!GetEnumFromConfig(aSection, KDrawMode(), iEnumDrawModes,drawMode))
357 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDrawMode());
358 SetBlockResult(EFail);
361 GETFROMCONFIGMANDATORY(Int, aSection, KDelay(),delay,_L("Error in getting parameter %S from INI file"),dataOk);
362 GETFROMCONFIGMANDATORY(Int, aSection, KNumRect(),nRect,_L("Error in getting parameter %S from INI file"),dataOk);
366 iDMode=CGraphicsContext::TDrawMode(drawMode);
367 for (TInt nBackColor = 0; nBackColor < KNumTestBackgrounds; nBackColor++)
369 TRgb backColor = TestBackground[nBackColor];
371 for (TInt nColor = 0; nColor < KNumTestColors; nColor++)
373 TInt shadowMode = ENoPostShadow;
374 TRect rect = iTestRect[nRect];
375 TRgb color = TestColor[nColor];
376 SetShadowAndFadingMode(shadowMode,100, 200);
377 iDrawDevice->WriteRgb(rect.iTl.iX,rect.iTl.iY,color,iDMode);
382 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdWriteRgb"));
386 * Validates the received parameters and handles errors returned from TestScreenDrawL
387 * @param aSection The section in the ini containing data for the command
388 * @return KErrNone if no error found.
390 void CT_CFbsDrawDeviceData::DoCmdNewScreenDeviceL(const TTEFSectionName& aSection)
392 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdNewScreenDeviceL"));
400 TBool dataOk = ETrue;
401 if (!GetEnumFromConfig(aSection, KDisplayMode(), iEnumDisplayModes, drawMode))
403 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDisplayMode());
404 SetBlockResult(EFail);
409 TDisplayMode displayMode = TDisplayMode(drawMode);
410 iDispMode = displayMode;
413 User::LeaveIfError(HAL::Get(KDefaultScreenNo, HALData::EDisplayXPixels,iSize.iWidth));
414 User::LeaveIfError(HAL::Get(KDefaultScreenNo, HALData::EDisplayYPixels,iSize.iHeight));
415 INFO_PRINTF3(_L("WIDTH from HAL %i \nHEIGHT from HAL %i"),iSize.iWidth,iSize.iHeight);
416 ASSERT(iSize.iWidth > 0 && iSize.iHeight > 0);
419 TRAPD(ret,iDrawDevice = CFbsDrawDevice::NewScreenDeviceL(ScreenNo,displayMode));
424 ERR_PRINTF2(_L("CFbsDrawDevice creation error: %d"), ret);
429 GETFROMCONFIGMANDATORY(Int, KRectangleSection(), KNumTestRect(),iNumTestRects,_L("Error in getting parameter %S from INI file"),dataOk);
431 if (!InitRectangles())
433 SetBlockResult(EFail);
434 ERR_PRINTF1(_L("Error: Test Rectangles NOT set!"));
438 INFO_PRINTF1(_L("Test Rectangles are now set!"));
441 INFO_PRINTF1(_L("** DoCmdNewScreenDeviceL succeded!"));
443 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdNewScreenDeviceL"));
449 void CT_CFbsDrawDeviceData::DoCmdInitScreen()
451 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdInitScreen"));
452 TInt err = iDrawDevice->InitScreen();
455 ERR_PRINTF2(_L("InitScreen error: %d"), err);
458 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdInitScreen"));
464 void CT_CFbsDrawDeviceData::DoCmdSetDisplayMode()
466 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdSetDisplayMode"));
467 iDrawDevice->SetDisplayMode(iDrawDevice);
468 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdSetDisplayMode"));
472 * Sets or unsets auto-update for the screen.
474 void CT_CFbsDrawDeviceData::DoCmdSetAutoUpdate(const TTEFSectionName& aSection)
476 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdSetAutoUpdate"));
477 TBool autoUpdate=ETrue;
478 GETFROMCONFIGOPTIONAL(Bool, aSection, KAutoUpdate(),autoUpdate,_L("Error in getting parameter %S from INI file"));
479 iDrawDevice->SetAutoUpdate(autoUpdate);
480 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdSetAutoUpdate"));
484 * checks for Available Orientations
486 void CT_CFbsDrawDeviceData::DoCmdOrientationsAvailable()
488 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdOrientationsAvailable"));
489 TBool orientation[4];
490 iDrawDevice->OrientationsAvailable(orientation);
491 INFO_PRINTF2(_L("Orientation Normal : %i"),orientation[CFbsDrawDevice::EOrientationNormal]);
492 INFO_PRINTF2(_L("Orientation Rotated 90 : %i"),orientation[CFbsDrawDevice::EOrientationRotated90]);
493 INFO_PRINTF2(_L("Orientation Rotated 180 : %i"),orientation[CFbsDrawDevice::EOrientationRotated180]);
494 INFO_PRINTF2(_L("Orientation Rotated 270 : %i"),orientation[CFbsDrawDevice::EOrientationRotated270]);
495 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdOrientationsAvailable"));
501 void CT_CFbsDrawDeviceData::DoCmdSetOrientation(const TTEFSectionName& aSection)
503 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdSetOrientation"));
504 TBool dataOk = ETrue;
507 if ( !GetEnumFromConfig(aSection, KOrientationMode(), iEnumOrientationModes, iOrientation) )
509 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KOrientationMode());
510 SetBlockResult(EFail);
517 TBool orientationSupported = iDrawDevice->SetOrientation(CFbsDrawDevice::TOrientation(iOrientation));
519 if (orientationSupported)
521 INFO_PRINTF2(_L("Orientation was set to: %d"), iOrientation);
522 if (iOrientation & 1)
524 iSize.SetSize(iSize.iHeight, iSize.iWidth);
529 ERR_PRINTF1(_L("Orientation not Supported"));
532 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdSetOrientation"));
536 * Tests WriteLine method from CFbsDrawDevice
538 void CT_CFbsDrawDeviceData::DoCmdWriteLineL(const TTEFSectionName& aSection)
540 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdWriteLineL"));
541 TInt byteSize = (ByteSize() / iSize.iHeight);
543 TBool dataOk = ETrue;
545 INFO_PRINTF2(_L("After setting bytesize %d"),byteSize);
546 TUint8* backBuffer = new(ELeave) TUint8[byteSize];
547 CleanupStack::PushL(backBuffer);
548 TUint8* writeBuffer = new(ELeave) TUint8[byteSize];
549 CleanupStack::PushL(writeBuffer);
550 TUint8* copyBuffer = new(ELeave) TUint8[byteSize];
551 CleanupStack::PushL(copyBuffer);
552 TUint8* readBuffer = new(ELeave) TUint8[byteSize];
553 CleanupStack::PushL(readBuffer);
555 INFO_PRINTF1(_L("after setting buffers"));
558 if (!GetEnumFromConfig(aSection, KDrawMode(), iEnumDrawModes,drawMode))
560 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDrawMode());
561 SetBlockResult(EFail);
564 GETFROMCONFIGMANDATORY(Int, aSection, KDelay(),delay,_L("Error in getting parameter %S from INI file"),dataOk);
566 INFO_PRINTF1(_L("Test Rectangles are now set!"));
568 GETFROMCONFIGMANDATORY(Int, aSection, KNumRect(),nRect,_L("Error in getting parameter %S from INI file"),dataOk);
570 TRect rect = iTestRect[nRect];
572 GETFROMCONFIGMANDATORY(Int, aSection, KBackColor(),nBackColor,_L("Error in getting parameter %S from INI file"),dataOk);
576 iDMode=CGraphicsContext::TDrawMode(drawMode);
577 TRgb b = TestBackground[nBackColor];
579 for (TInt yy = rect.iTl.iY; yy < rect.iBr.iY; yy++)
581 FillBuffer(writeBuffer,byteSize,iDispMode);
583 Mem::Copy(copyBuffer,writeBuffer,byteSize);
584 iDrawDevice->WriteLine(rect.iTl.iX,yy,rect.Width(),(TUint32*)writeBuffer,iDMode);
585 Mem::FillZ(readBuffer,byteSize);
589 INFO_PRINTF1(_L("Deleting buffers"));
590 CleanupStack::PopAndDestroy(4);
591 INFO_PRINTF1(_L("Buffers deleted"));
592 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdWriteLineL"));
596 * Tests WriteBinaryLine from CFbsDrawDevice
598 void CT_CFbsDrawDeviceData::DoCmdWriteBinaryLineL(const TTEFSectionName& aSection)
600 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdWriteBinaryLineL"));
604 TBool dataOk = ETrue;
606 if (!GetEnumFromConfig(aSection, KDrawMode(),iEnumDrawModes, drawMode))
608 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDrawMode());
609 SetBlockResult(EFail);
612 GETFROMCONFIGMANDATORY(Int, aSection, KDelay(),delay,_L("Error in getting parameter %S from INI file"),dataOk);
614 if (!GetIntFromConfig(aSection, KNumRect(), nRect))
616 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KNumRect());
617 SetBlockResult(EFail);
621 if (!GetIntFromConfig(aSection, KBackColor(), nBackColor))
623 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KBackColor());
624 SetBlockResult(EFail);
627 TInt shadowMode = ENoPostShadow;
628 if (!GetEnumFromConfig(aSection, KShadowMode(), iEnumShadowModes, shadowMode))
630 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KShadowMode());
631 SetBlockResult(EFail);
637 iDMode=CGraphicsContext::TDrawMode(drawMode);
639 TInt byteSize = ByteSize() / iSize.iHeight;
640 TInt wordSize = (byteSize + 3) / 4;
641 TUint32* writeBuffer = new(ELeave) TUint32[wordSize];
642 CleanupStack::PushL(writeBuffer);
643 INFO_PRINTF1(_L("Test Rectangles are now set!"));
646 TRect rect = iTestRect[nRect];
650 for (TInt nColor = 0; nColor < KNumTestColors; nColor++)
652 if (rect.Width() > KRectWidth)
654 rect.iBr.iX = rect.iTl.iX + KRectWidth;
656 if (rect.Width() < 1)
658 rect.iBr.iX = rect.iTl.iX + 1;
661 TRgb backgroundColor = TestBackground[nBackColor];
662 Clear(backgroundColor);
663 TRgb testColor = TestColor[nColor];
665 iDrawDevice->SetShadowMode(CFbsDrawDevice::TShadowMode(shadowMode));
666 FillBuffer((TUint8*)writeBuffer,byteSize,iDispMode);
667 iDrawDevice->WriteBinaryLine(rect.iTl.iX,rect.iTl.iY,writeBuffer,rect.Width(),testColor,iDMode);
670 CleanupStack::PopAndDestroy();
673 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdWriteBinaryLineL"));
677 * Tests ReadLine from CFbsDrawDevice
678 * @param aSection The section in the ini containing data for the command
679 * @return KErrNone if no error found.
681 void CT_CFbsDrawDeviceData::DoCmdReadLineL(const TTEFSectionName& aSection)
683 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdReadLineL"));
684 TInt byteSize = ByteSize() / iSize.iHeight;
685 TUint8* writeBuffer = new(ELeave) TUint8[byteSize];
686 CleanupStack::PushL(writeBuffer);
687 TUint8* readBuffer = new(ELeave) TUint8[iSize.iWidth * sizeof(TRgb)];
688 CleanupStack::PushL(readBuffer);
690 FillBuffer((TUint8*)writeBuffer,byteSize,iDispMode);
691 FillBuffer((TUint8*)readBuffer,byteSize,iDispMode);
694 if (!GetIntFromConfig(aSection, KBackColor(), nBackColor))
696 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KBackColor());
697 SetBlockResult(EFail);
700 TRgb b = TestColor[nBackColor];
703 for (TInt nDispMode = 0; nDispMode < KNumDispModes; nDispMode++)
705 TDisplayMode dispMode = TestDisplayMode[nDispMode];
707 for (TInt cnt=0;cnt<2;cnt++)
709 if (cnt==0) //first time
711 iDrawDevice->SetUserDisplayMode(dispMode);
715 iDrawDevice->SetUserDisplayMode(iDispMode);
718 for (TInt nRect = 0; nRect < iNumTestRects; nRect++)
720 TRect rect = iTestRect[nRect];
721 for (TInt yy = rect.iTl.iY; yy < rect.iBr.iY; yy++)
723 FillBuffer(writeBuffer,byteSize,iDispMode);
724 Mem::FillZ(readBuffer,byteSize);
725 iDrawDevice->ReadLine(rect.iTl.iX,yy,rect.Width(),(TUint32*)readBuffer,dispMode);
726 Mem::FillZ(readBuffer,byteSize);
731 CleanupStack::PopAndDestroy(2);
732 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdReadLineL"));
736 * Tests RGBAlphaLine from CFbsDrawDevice
737 * @param aSection The section in the ini containing data for the command
738 * @return KErrNone if no error found.
740 void CT_CFbsDrawDeviceData::DoCmdWriteRGBAlphaLineL(const TTEFSectionName& aSection)
742 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdWriteRGBAlphaLineL"));
745 if (!GetEnumFromConfig(aSection, KDrawMode(), iEnumDrawModes,drawMode))
747 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDrawMode());
748 SetBlockResult(EFail);
751 iDMode=CGraphicsContext::TDrawMode(drawMode);
752 TInt byteSize = ByteSize() / iSize.iHeight;
753 INFO_PRINTF1(_L("In TestWriteRGBAlphaLine"));
755 TUint8* writeBuffer = new(ELeave) TUint8[iSize.iWidth * 4];
756 CleanupStack::PushL(writeBuffer);
757 TUint8* writeBuffer2 = new(ELeave) TUint8[iSize.iWidth * 4];
758 CleanupStack::PushL(writeBuffer2);
759 TUint8* maskBuffer = new(ELeave) TUint8[iSize.iWidth * 4];
760 CleanupStack::PushL(maskBuffer);
762 FillBuffer(writeBuffer,byteSize,iDispMode);
763 FillBuffer(writeBuffer2,byteSize,iDispMode);
764 FillBuffer(maskBuffer,byteSize,iDispMode);
767 for (TInt maskFillCount=0; maskFillCount<KMaskFill;maskFillCount++)
769 for (nRect = 0; nRect < iNumTestRects; nRect++)
771 for (TInt nBackColor = 0; nBackColor < KNumTestBackgrounds; nBackColor++)
773 TRgb testColor = TestColor[nBackColor];
775 for (TInt nColor = 0; nColor < KNumTestColors; nColor++)
777 //ensure the colour has the 0xff mask value
779 TRgb c = TestColor[nColor];
780 TUint32 internal = c.Internal();
782 TRect rect = iTestRect[nRect];
783 TInt shadowMode =ENoPostShadow;
784 //use a combined alpha for the check colour
785 TUint32 combinedAlpha = MaskFill[maskFillCount]*((internal&0xff000000)>>24);
786 combinedAlpha = ((combinedAlpha <<16) & 0xff000000);
787 checkColor.SetInternal((internal&0x00ffffff)|combinedAlpha);
788 SetShadowAndFadingMode(shadowMode,100, 200);
789 for (yy = rect.iTl.iY; yy < rect.iBr.iY; yy++)
791 iDrawDevice->WriteRgbAlphaLine(rect.iTl.iX,yy,rect.Width(),
797 //require to Shadow After the checkColor, no shadow with a zero mask
798 TBool shadowModeChanged = EFalse;
799 if (MaskFill[maskFillCount])
801 iPostBlendShadow = (TPostShadowMode) shadowMode;
803 shadowModeChanged = ETrue;
805 if(shadowModeChanged)
807 shadowMode = iPostBlendShadow;
809 iPostBlendShadow = ENoPostShadow;
814 INFO_PRINTF1(_L("** delete buffers"));
815 CleanupStack::PopAndDestroy(3);
816 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdWriteRGBAlphaLineL"));
820 * Tests ShadowArea from CFbsDrawDevice
821 * @return KErrNone if no error found.
823 void CT_CFbsDrawDeviceData::DoCmdShadowArea(const TTEFSectionName& aSection)
825 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdShadowArea"));
827 TBool dataOk = ETrue;
829 GETFROMCONFIGMANDATORY(Int, aSection, KDelay(),delay,_L("Error in getting parameter %S from INI file"),dataOk);
833 INFO_PRINTF1(_L("In TestShadow()"));
835 TRgb testColor = TestColor[nBackColor];
838 for (TInt shadowMode = 0; shadowMode < KNumShadowModes; shadowMode++)
840 for (TInt nRect = 0; nRect < iNumTestRects; nRect++)
842 for (TInt nColor = 0; nColor < KNumTestColors; nColor++)
844 TRect rect = iTestRect[nRect];
845 iDrawDevice->SetShadowMode(CFbsDrawDevice::TShadowMode(shadowMode));
846 iDrawDevice->ShadowArea(rect);
853 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdShadowArea"));
858 * Tests WriteBinaryLineVertical from CFbsDrawDevice
859 * @return KErrNone if no error found.
861 void CT_CFbsDrawDeviceData::DoCmdWriteBinaryLineVerticalL(const TTEFSectionName& aSection)
863 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdWriteBinaryLineVerticalL"));
866 TBool dataOk = ETrue;
867 if (!GetEnumFromConfig(aSection, KDrawMode(), iEnumDrawModes,drawMode))
869 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDrawMode());
870 SetBlockResult(EFail);
873 GETFROMCONFIGMANDATORY(Int, aSection, KDelay(),delay,_L("Error in getting parameter %S from INI file"),dataOk);
875 if (!GetIntFromConfig(aSection, KNumRect(), nRect))
877 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KNumRect());
878 SetBlockResult(EFail);
884 iDMode=CGraphicsContext::TDrawMode(drawMode);
886 TInt byteSize = ByteSize() / iSize.iHeight;
887 TInt wordSize = (byteSize + 3) / 4;
888 TUint32* writeBuffer = new(ELeave) TUint32[wordSize];
892 TRect rect = iTestRect[nRect];
893 if (rect.Width() > KRectWidth)
895 rect.iBr.iX = rect.iTl.iX + KRectWidth;
897 if (rect.Width() < 1)
899 rect.iBr.iX = rect.iTl.iX + 1;
902 TRgb b = TestBackground[nBackColor];
903 TRgb c = TestColor[nColor];
907 //NOTE Call Command within script: SetShadowmode
908 FillBuffer((TUint8*)writeBuffer,byteSize,iDispMode);
909 iDrawDevice->WriteBinaryLineVertical(rect.iTl.iX,rect.iBr.iY - 1,writeBuffer,rect.Height(),c,iDMode,ETrue);
912 delete [] writeBuffer;
915 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdWriteBinaryLineVerticalL"));
919 * Sets the current shadowing mode
920 * @param aSection The section in the ini containing data for the command
922 void CT_CFbsDrawDeviceData::DoCmdSetShadowMode(const TTEFSectionName& aSection)
924 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdSetShadowMode"));
925 TInt shadowMode = ENoPostShadow;
926 if(!GetEnumFromConfig(aSection, KShadowMode(), iEnumShadowModes, shadowMode))
928 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KShadowMode());
929 SetBlockResult(EFail);
933 iDrawDevice->SetShadowMode(CFbsDrawDevice::TShadowMode(shadowMode));
935 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdSetShadowMode"));
939 * Tests WriteBinary method from CFbsDrawDevice
940 * @param aSection The section in the ini containing data for the command
941 * @return KErrNone if no error found.
943 void CT_CFbsDrawDeviceData::DoCmdWriteBinaryL(const TTEFSectionName& aSection)
945 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::DoCmdWriteBinaryL"));
948 TBool dataOk = ETrue;
949 if (!GetEnumFromConfig(aSection, KDrawMode(), iEnumDrawModes,drawMode))
951 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDrawMode());
952 SetBlockResult(EFail);
955 GETFROMCONFIGMANDATORY(Int, aSection, KDelay(),delay,_L("Error in getting parameter %S from INI file"),dataOk);
957 if (!GetIntFromConfig(aSection, KNumRect(), nRect))
959 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KNumRect());
960 SetBlockResult(EFail);
965 iDMode=CGraphicsContext::TDrawMode(drawMode);
966 TInt byteSize = ByteSize() / iSize.iHeight;
967 TInt wordSize = (byteSize + 3) / 4;
968 TUint32* writeBuffer = new (ELeave)TUint32[wordSize];
970 TRect rect = iTestRect[nRect];
974 if (rect.Width() > KRectWidth)
976 rect.iBr.iX = rect.iTl.iX + KRectWidth;
978 if (rect.Width() < 1)
980 rect.iBr.iX = rect.iTl.iX + 1;
983 TRgb b = TestBackground[nBackColor];
985 TRgb c = TestColor[nColor];
986 //NOTE Call Command within script: SetShadowmode
987 FillBuffer((TUint8*)writeBuffer,byteSize,iDispMode);
988 iDrawDevice->WriteBinary(rect.iTl.iX,rect.iTl.iY,writeBuffer,rect.Width(),rect.Height(),c,iDMode);
991 delete [] writeBuffer;
994 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::DoCmdWriteBinaryL"));
998 * Clears screen with specified color
1000 void CT_CFbsDrawDeviceData::Clear(TRgb aColor)
1002 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::Clear"));
1003 iDrawDevice->SetShadowMode(CFbsDrawDevice::ENoShadow);
1004 iDrawDevice->WriteRgbMulti(0,0,iSize.iWidth,iSize.iHeight,aColor,CGraphicsContext::EDrawModeWriteAlpha);
1005 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::Clear"));
1008 * Sets Shadow and fading modes
1009 * @param one of the supported shadow modes ENoShadow,EShadow,EFade,EShadowFade
1010 * @param a black point
1011 * @param a white point
1013 void CT_CFbsDrawDeviceData::SetShadowAndFadingMode(TInt shadowMode,TInt blackPoint, TInt whitePoint)
1015 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::SetShadowAndFadingMode"));
1016 iDrawDevice->SetFadingParameters(blackPoint,whitePoint);
1017 iDrawDevice->SetShadowMode(CFbsDrawDevice::TShadowMode(shadowMode));
1018 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::SetShadowAndFadingMode"));
1023 * Fills a buffer to be displayed on screen
1029 void CT_CFbsDrawDeviceData::FillBuffer(TUint8* aBuffer,TInt aByteSize,TDisplayMode aDispMode)
1031 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::FillBuffer"));
1032 TUint8* bufferLimit = aBuffer + aByteSize;
1034 TInt64 seed = TInt64(TInt(aBuffer) * aByteSize * aDispMode * User::TickCount());
1036 if (aDispMode != EColor4K)
1038 while (aBuffer < bufferLimit)
1040 *aBuffer++ = (TUint8)Math::Rand(seed);
1045 while (aBuffer < bufferLimit)
1047 if (TInt(aBuffer) & 3 == 3)
1053 *aBuffer++ = (TUint8)Math::Rand(seed);
1057 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::FillBuffer"));
1061 * Sets the Byte Size based on screen Width and Height
1063 TInt CT_CFbsDrawDeviceData::ByteSize()
1065 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::ByteSize"));
1066 TInt wordSize = iSize.iWidth;
1070 wordSize = (wordSize + 31) / 32;
1073 wordSize = (wordSize + 15) / 16;
1077 wordSize = (wordSize + 7) / 8;
1081 wordSize = (wordSize + 3) / 4;
1085 wordSize = (wordSize + 1) / 2;
1088 wordSize = (((wordSize * 3) + 11) / 12) * 3;
1092 //Should not be changed!
1098 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::ByteSize"));
1099 return wordSize * iSize.iHeight * 4;
1103 * This method reads a string with this form: (a,,b,c,d) and splits it in an TInt array.
1106 void CT_CFbsDrawDeviceData::ReadRectL(HBufC& aString, RArray<TInt>& aResult)
1108 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::ReadRectL"));
1117 // Check if there was a list separator
1120 HBufC* param = buf.AllocLC();
1126 CleanupStack::Pop(param); // pointer to buf is stored in RPointerArray
1128 // If not separator character we can store the character into array
1138 HBufC* param = buf.AllocLC();
1143 CleanupStack::PopAndDestroy(param);
1144 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::ReadRectL"));
1148 * This method reads a string with this form: (a,,b,c,d) and splits it in an TInt array.
1151 TBool CT_CFbsDrawDeviceData::InitRectangles()
1153 INFO_PRINTF1(_L("*START* CT_CFbsDrawDeviceData::InitRectangles"));
1154 TBool readResult = ETrue;
1155 RPointerArray<HBufC> dimensions;
1156 RArray<TInt> result;
1157 TInt err = KErrNone;
1159 if ( GetArrayRectFromConfig( KRectangleSection(), KRectangles(), dimensions))//its validated by the above call
1161 for (TInt i = 0; i < iNumTestRects; i++)
1163 TRAP(err , ReadRectL(*dimensions[i], result));
1164 if (err != KErrNone)
1166 readResult = EFalse;
1171 iTestRect.Append(TRect(result[0],result[1],result[2],result[3]));
1178 readResult = EFalse;
1180 dimensions.ResetAndDestroy();
1184 INFO_PRINTF1(_L("*END* CT_CFbsDrawDeviceData::InitRectangles"));