os/graphics/windowing/windowserver/test/tframerate/framerate.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) 2007-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
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test - Test plug-in to test wsgraphic animation artwork framerate
sl@0
    19
 @internalComponent - Internal Symbian test code
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include <bitstd.h>
sl@0
    23
#include <graphics/wsgraphicdrawer.h>
sl@0
    24
#include "framerate.h"
sl@0
    25
#include "wsgraphicdrawercontext.h"
sl@0
    26
#include "wsframerate.h"
sl@0
    27
sl@0
    28
//Constant message handle, which is used to send count value between client and plug-in
sl@0
    29
const TUint8 KCmdCount=0;
sl@0
    30
sl@0
    31
/**
sl@0
    32
Creates new test framerate object.
sl@0
    33
*/
sl@0
    34
CGraphicDrawerTestFrameRate* CGraphicDrawerTestFrameRate::CreateL()
sl@0
    35
	{
sl@0
    36
	return new(ELeave) CGraphicDrawerTestFrameRate;
sl@0
    37
	}
sl@0
    38
sl@0
    39
CGraphicDrawerTestFrameRate::CGraphicDrawerTestFrameRate()
sl@0
    40
	{
sl@0
    41
	}
sl@0
    42
sl@0
    43
CGraphicDrawerTestFrameRate::~CGraphicDrawerTestFrameRate()
sl@0
    44
	{
sl@0
    45
	}
sl@0
    46
sl@0
    47
void CGraphicDrawerTestFrameRate::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& /*aData*/)
sl@0
    48
	{
sl@0
    49
	BaseConstructL(aEnv,aId,aOwner);
sl@0
    50
	if (aEnv.Screen(0)->ResolveObjectInterface(KMWsScreenConfigInterfaceId))
sl@0
    51
		{
sl@0
    52
		iContext = CWsGraphicDrawerNonNgaContext::NewL();
sl@0
    53
		}
sl@0
    54
	else
sl@0
    55
		{
sl@0
    56
		iContext = CWsGraphicDrawerNgaContext::NewL();
sl@0
    57
		}
sl@0
    58
	}
sl@0
    59
sl@0
    60
/**	
sl@0
    61
Simulate two animations of different frame rate with their respective schedule.
sl@0
    62
sl@0
    63
@param MWsGc Window server graphic context to draw the animation
sl@0
    64
@param TRect Rectangle are required to draw the animation
sl@0
    65
@param TDesC Parameter value to use inside this function.
sl@0
    66
*/
sl@0
    67
void CGraphicDrawerTestFrameRate::DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const
sl@0
    68
	{
sl@0
    69
	TInt animId = aData[0];
sl@0
    70
	TInt requestedFps = aData[1];
sl@0
    71
	++iCounter[animId];
sl@0
    72
	//Schedule next redraw based on requested frame rate
sl@0
    73
	TTimeIntervalMicroSeconds nextTick = 1000000/requestedFps;
sl@0
    74
	iContext->ScheduleAnimation(aGc, aRect, nextTick);
sl@0
    75
	}
sl@0
    76
sl@0
    77
/**	
sl@0
    78
Handles message between client and plug-in.
sl@0
    79
sl@0
    80
@param TDesC Constant message command.
sl@0
    81
*/
sl@0
    82
void CGraphicDrawerTestFrameRate::HandleMessage(const TDesC8& aData)
sl@0
    83
	{
sl@0
    84
	switch (aData[0])
sl@0
    85
		{
sl@0
    86
		case KCmdCount:
sl@0
    87
			TPckgBuf<TAnimRate> buf;
sl@0
    88
			buf().iAnim1=iCounter[0];
sl@0
    89
			buf().iAnim2=iCounter[1];
sl@0
    90
			TInt err = SendMessage(buf);
sl@0
    91
			__ASSERT_DEBUG(err>=KErrNone, User::Invariant());
sl@0
    92
			break;
sl@0
    93
		}
sl@0
    94
	}
sl@0
    95