os/graphics/windowing/windowserver/test/t_genericplugin/src/t_testserviceplugin.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     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_testserviceplugin.h"
    23 #include "t_logfile.h"
    24 #include <graphics/lookuptable.h>
    25 
    26 _LIT(KTestServicePluginName, "testserviceplugin");
    27 /**
    28 Creates a new CTestServicePlugin object
    29 */ 
    30 CTestServicePlugin* CTestServicePlugin::CreateL()
    31 	{
    32 	return new(ELeave) CTestServicePlugin;
    33 	}
    34 
    35 /**
    36 Initialisation phase of two phase construction.
    37 @param aEnv The environment for a graphic drawer 
    38 @param aData The data for construction
    39 */
    40 void CTestServicePlugin::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& /*aData*/)
    41 	{
    42 	BaseConstructL(aEnv);
    43 	
    44 	// Delete log file from previous test run
    45 	CLogFile::DeleteLogFileL();
    46 	
    47 	CLogFile* log = CLogFile::NewL();
    48 	CleanupStack::PushL(log);
    49 	log->WriteToLogL(_L("testserviceplugin is created."));		
    50 	CleanupStack::PopAndDestroy(log);
    51 	//Default in BitGdi was 128 for the blackMap and 255 for the whiteMap
    52 	//SetFadingParameters shows how the fade color is computed
    53 	iFadeColor.SetInternal(0x80FFFFFF);
    54 	}
    55 
    56 /**
    57 Constructor for CTestServicePlugin
    58 */
    59 CTestServicePlugin::CTestServicePlugin() : iLut(PtrTo16BitNormalisationTable())
    60 	{
    61 	}
    62 
    63 /**
    64 Destructor for CTestServicePlugin
    65 */
    66 CTestServicePlugin::~CTestServicePlugin()
    67 	{
    68 	}
    69 
    70 /**
    71 Sets the fading parameter
    72 @param	aFadeColor the fading color
    73 */
    74 void CTestServicePlugin::SetFadingParamsL(TUint8 aBlackMap, TUint8 aWhiteMap)
    75 	{
    76 	//Situations where blackMap > whiteMap are NOT supported
    77 	if (aBlackMap > aWhiteMap)
    78 		{
    79 		TUint8 oldMap = aBlackMap;
    80 		aBlackMap = aWhiteMap;
    81 		aWhiteMap = oldMap;
    82 		}
    83 	
    84 	//CFbsBitGc::FadeArea() does the following per color component:
    85 	//   dst = dst * (whiteMap - blackMap) + blackMap;
    86 
    87 	//To achieve the same effect using MWsGraphicsContext we draw a rectangle
    88 	//with specific intensity and alpha values:
    89 	//   dst = dst * (1 - alpha) + intensity * alpha;
    90 	//Thus:
    91 	//   alpha = 1 - whiteMap + blackMap;
    92 	//   intensity = blackMap / alpha;
    93 
    94 	// alpha = 1 - whiteMap + blackMap;
    95 	TInt alpha = 255 - aWhiteMap + aBlackMap;
    96 	// intensity = blackMap / alpha;
    97 	TInt i = (aBlackMap * iLut[alpha]) >> 8;
    98 
    99 	iFadeColor.SetInternal(i << 16 | i << 8 | i | alpha << 24);
   100 
   101 	CLogFile* log = CLogFile::NewL();
   102 	CleanupStack::PushL(log);
   103 	log->WriteToLogL(_L("Fading parameters have been set."));
   104 	CleanupStack::PopAndDestroy(log);
   105 	}
   106 
   107 /**
   108 Gets the fade color parameter
   109 @return fade color parameter
   110 */
   111 TRgb CTestServicePlugin::GetFadeColorL()
   112 	{
   113 	CLogFile* log = CLogFile::NewL();
   114 	CleanupStack::PushL(log);
   115 	log->WriteToLogL(_L("Returned fade color."));
   116 	CleanupStack::PopAndDestroy(log);
   117 	return iFadeColor;
   118 	}
   119 
   120 /**
   121 Overides MWsObjectProvider. Resolve an instance of an interface
   122 @param aTypeId The interface UID.
   123 @return The pointer to the instance of an interface.
   124 */
   125 TAny* CTestServicePlugin::ResolveObjectInterface(TUint aTypeId)
   126 	{
   127 	switch (aTypeId)
   128 		{
   129 		case EImplUid:
   130 			return static_cast<CWsPlugin*>(this);
   131 		}
   132 	return NULL;
   133 	}
   134 
   135 /**
   136 Gets the plugin name
   137 @return The Plugin name.
   138 */
   139 const TDesC& CTestServicePlugin::PluginName() const
   140 	{
   141 	return KTestServicePluginName;
   142 	}