sl@0
|
1 |
// Copyright (c) 1995-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 |
#include "wsgraphicdrawercontext.h"
|
sl@0
|
17 |
#include "stdgraphictestdrawer.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
CWsGraphicDrawerTestFrameRate* CWsGraphicDrawerTestFrameRate::CreateL()
|
sl@0
|
20 |
{
|
sl@0
|
21 |
return new(ELeave) CWsGraphicDrawerTestFrameRate;
|
sl@0
|
22 |
}
|
sl@0
|
23 |
|
sl@0
|
24 |
CWsGraphicDrawerTestFrameRate::CWsGraphicDrawerTestFrameRate()
|
sl@0
|
25 |
{
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
CWsGraphicDrawerTestFrameRate::~CWsGraphicDrawerTestFrameRate()
|
sl@0
|
29 |
{
|
sl@0
|
30 |
if (iContext)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
iContext->Destroy();
|
sl@0
|
33 |
iContext = NULL;
|
sl@0
|
34 |
}
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
void CWsGraphicDrawerTestFrameRate::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& /*aData*/)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
BaseConstructL(aEnv,aId,aOwner);
|
sl@0
|
40 |
if (!(aEnv.Screen(0)->ResolveObjectInterface(KMWsCompositionContext) || aEnv.Screen(0)->ResolveObjectInterface(KMWsScene)))
|
sl@0
|
41 |
{
|
sl@0
|
42 |
iContext = CWsGraphicDrawerNonNgaContext::NewL();
|
sl@0
|
43 |
}
|
sl@0
|
44 |
else
|
sl@0
|
45 |
{
|
sl@0
|
46 |
iContext = CWsGraphicDrawerNgaContext::NewL();
|
sl@0
|
47 |
}
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
void CWsGraphicDrawerTestFrameRate::DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& /*aData*/) const
|
sl@0
|
51 |
{
|
sl@0
|
52 |
if (KErrNone != iContext->Push(aGc))
|
sl@0
|
53 |
{
|
sl@0
|
54 |
return;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
//Simplification: treats all screens the same
|
sl@0
|
57 |
iContext->DrawFrameRate(aGc, aRect, iFps);
|
sl@0
|
58 |
//Count this draw
|
sl@0
|
59 |
iFps.Sample();
|
sl@0
|
60 |
//Schedule a redraw
|
sl@0
|
61 |
iContext->ScheduleAnimation(aGc,aRect,0); // as fast as possible
|
sl@0
|
62 |
iContext->Pop(aGc);
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
void CWsGraphicDrawerTestFrameRate::HandleMessage(const TDesC8& /*aData*/)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
TInt CFrameRate::Fps() const
|
sl@0
|
70 |
{
|
sl@0
|
71 |
if(iNumSamples > 1)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
const TUint count = Min(iNumSamples,KMaxSamples);
|
sl@0
|
74 |
TInt64 earliest = iSamples[0];
|
sl@0
|
75 |
TInt64 latest = earliest;
|
sl@0
|
76 |
for(TInt i=1; i<count; i++)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
const TInt64 sample = iSamples[i];
|
sl@0
|
79 |
earliest = Min(earliest,sample);
|
sl@0
|
80 |
latest = Max(latest,sample);
|
sl@0
|
81 |
}
|
sl@0
|
82 |
const TInt64 duration = latest - earliest;
|
sl@0
|
83 |
const TInt microspf = (duration / count);
|
sl@0
|
84 |
if(microspf)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
const TInt millispf = (microspf / 1000);
|
sl@0
|
87 |
if(millispf)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
const TInt fps = (1000 / millispf);
|
sl@0
|
90 |
return fps;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
}
|
sl@0
|
93 |
}
|
sl@0
|
94 |
return 0;
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
TInt CFrameRate::CountSamples() const
|
sl@0
|
98 |
{
|
sl@0
|
99 |
return iNumSamples;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
void CFrameRate::Sample() const
|
sl@0
|
103 |
{
|
sl@0
|
104 |
//Add the current tick to the stats for next time
|
sl@0
|
105 |
TTime now;
|
sl@0
|
106 |
now.UniversalTime();
|
sl@0
|
107 |
iSamples[iNumSamples % KMaxSamples] = now.Int64();
|
sl@0
|
108 |
iNumSamples++;
|
sl@0
|
109 |
}
|