os/graphics/windowing/windowserver/test/t_ratelimiter/tratelimitdrawer/ratelimitdrawer.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) 2008-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
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 "ratelimitdrawer.h"
sl@0
    25
#include "wsratelimitdrawer.h"
sl@0
    26
#include <graphics/wsgraphicscontext.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
// First Frame
sl@0
    31
const TInt KFirstFrame = 0;
sl@0
    32
sl@0
    33
/**
sl@0
    34
Creates new test framerate object.
sl@0
    35
*/
sl@0
    36
CWsRateLimitGraphicDrawer* CWsRateLimitGraphicDrawer::NewL()
sl@0
    37
	{
sl@0
    38
	return new(ELeave) CWsRateLimitGraphicDrawer;
sl@0
    39
	}
sl@0
    40
sl@0
    41
CWsRateLimitGraphicDrawer::CWsRateLimitGraphicDrawer()
sl@0
    42
	{
sl@0
    43
	InitialiseMembers();
sl@0
    44
	}
sl@0
    45
sl@0
    46
void CWsRateLimitGraphicDrawer::InitialiseMembers()
sl@0
    47
	{
sl@0
    48
	iColors[0] = TRgb(0x000000);
sl@0
    49
	iColors[1] = TRgb(0x555555);
sl@0
    50
	iColors[2] = TRgb(0x000080);
sl@0
    51
	iColors[3] = TRgb(0x008000);
sl@0
    52
	iColors[4] = TRgb(0x008080);
sl@0
    53
	iColors[5] = TRgb(0x800000);
sl@0
    54
	iColors[6] = TRgb(0x800080);
sl@0
    55
	iColors[7] = TRgb(0x808000);
sl@0
    56
	iColors[8] = TRgb(0x0000ff);
sl@0
    57
	iColors[9] = TRgb(0x00ff00);
sl@0
    58
	iColors[10] = TRgb(0x000000);
sl@0
    59
	iColors[11] = TRgb(0x555555);
sl@0
    60
	iColors[12] = TRgb(0x000080);
sl@0
    61
	iColors[13] = TRgb(0x008000);
sl@0
    62
	iColors[14] = TRgb(0x008080);
sl@0
    63
	iColors[15] = TRgb(0x800000);
sl@0
    64
	iColors[16] = TRgb(0x800080);
sl@0
    65
	iColors[17] = TRgb(0x808000);
sl@0
    66
	iColors[18] = TRgb(0x0000ff);
sl@0
    67
	iColors[19] = TRgb(0x00ff00);
sl@0
    68
	iColors[20] = TRgb(0x000000);
sl@0
    69
	iColors[21] = TRgb(0x555555);
sl@0
    70
	iColors[22] = TRgb(0x000080);
sl@0
    71
	iColors[23] = TRgb(0x008000);
sl@0
    72
	iColors[24] = TRgb(0x008080);
sl@0
    73
	iColors[25] = TRgb(0x800000);
sl@0
    74
	iColors[26] = TRgb(0x800080);
sl@0
    75
	iColors[27] = TRgb(0x808000);
sl@0
    76
	iColors[28] = TRgb(0x0000ff);
sl@0
    77
	iColors[29] = TRgb(0x00ff00);
sl@0
    78
	iColors[30] = TRgb(0x000000);
sl@0
    79
	iColors[31] = TRgb(0x555555);
sl@0
    80
	iColors[32] = TRgb(0x000080);
sl@0
    81
	iColors[33] = TRgb(0x008000);
sl@0
    82
	iColors[34] = TRgb(0x008080);
sl@0
    83
	iColors[35] = TRgb(0x800000);
sl@0
    84
	iColors[36] = TRgb(0x800080);
sl@0
    85
	iColors[37] = TRgb(0x808000);
sl@0
    86
	iColors[38] = TRgb(0x0000ff);
sl@0
    87
	iColors[39] = TRgb(0x00ff00);
sl@0
    88
	
sl@0
    89
	iFrameRate = 0.0;
sl@0
    90
	}
sl@0
    91
sl@0
    92
sl@0
    93
CWsRateLimitGraphicDrawer::~CWsRateLimitGraphicDrawer()
sl@0
    94
	{
sl@0
    95
	}
sl@0
    96
sl@0
    97
void CWsRateLimitGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& /*aData*/)
sl@0
    98
	{
sl@0
    99
	BaseConstructL(aEnv,aId,aOwner);
sl@0
   100
	}
sl@0
   101
sl@0
   102
/**	
sl@0
   103
Simulate two animations of different frame rate with their respective schedule.
sl@0
   104
sl@0
   105
@param MWsGc Window server graphic context to draw the animation
sl@0
   106
@param TRect Rectangle are required to draw the animation
sl@0
   107
@param TDesC Parameter value to use inside this function.
sl@0
   108
*/
sl@0
   109
void CWsRateLimitGraphicDrawer::DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& /*aData*/) const
sl@0
   110
	{
sl@0
   111
	TPoint KWinPos = aRect.iTl + TPoint(10,10);
sl@0
   112
	const TSize KWinSize(100,100);
sl@0
   113
	const TRect KWinRect(KWinPos,KWinSize);
sl@0
   114
	
sl@0
   115
	MWsGraphicsContext* context = static_cast<MWsGraphicsContext*>(aGc.ResolveObjectInterface(KMWsGraphicsContext));
sl@0
   116
	
sl@0
   117
	//Get the time the animation starts
sl@0
   118
	if(iFrame == KFirstFrame)
sl@0
   119
		{
sl@0
   120
		iStartTime = aGc.Now();
sl@0
   121
		}
sl@0
   122
	
sl@0
   123
	//Draw a filled rect with the chosen color
sl@0
   124
	context->Push();
sl@0
   125
	context->SetBrushStyle(MWsGraphicsContext::ESolidBrush);
sl@0
   126
	context->SetBrushColor(iColors[iFrame]);
sl@0
   127
	context->DrawRect(KWinRect);
sl@0
   128
	context->Pop();
sl@0
   129
	
sl@0
   130
	if(iFrame < KMaxFrames)
sl@0
   131
		{
sl@0
   132
		aGc.ScheduleAnimation(KWinRect,0);
sl@0
   133
		}
sl@0
   134
	else
sl@0
   135
		{
sl@0
   136
		TTimeIntervalMicroSeconds animLength = aGc.Now().MicroSecondsFrom(iStartTime);
sl@0
   137
		
sl@0
   138
		iFrameRate = static_cast<TReal>(KMaxFrames)/(static_cast<TReal>(animLength.Int64())/KOneSecondInMicroSecs);
sl@0
   139
		}
sl@0
   140
sl@0
   141
	iFrame++;
sl@0
   142
	}
sl@0
   143
sl@0
   144
/**	
sl@0
   145
Handles message between client and plug-in.
sl@0
   146
sl@0
   147
@param TDesC Constant message command.
sl@0
   148
*/
sl@0
   149
void CWsRateLimitGraphicDrawer::HandleMessage(const TDesC8& aData)
sl@0
   150
	{
sl@0
   151
	switch (aData[0])
sl@0
   152
		{
sl@0
   153
		case KCmdCount:
sl@0
   154
			TPckgBuf<TAnimData> buf;
sl@0
   155
			buf().iFrameRate = iFrameRate;
sl@0
   156
			TInt err = SendMessage(buf);
sl@0
   157
			__ASSERT_DEBUG(err>=KErrNone, User::Invariant());
sl@0
   158
			break;
sl@0
   159
		}
sl@0
   160
	}
sl@0
   161