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 |
#ifndef SWDIRECTGDIPOLYGON_H
|
sl@0
|
17 |
#define SWDIRECTGDIPOLYGON_H
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
@internalComponent
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#include "directgdiadapter.h"
|
sl@0
|
25 |
#include <gdi.h>
|
sl@0
|
26 |
#include <e32base.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
A utility class to efficiently fill polygons.
|
sl@0
|
30 |
@see CSwDirectGdiEngine::PolyFill
|
sl@0
|
31 |
@see CSwDirectGdiEngine::PolyFillLarge
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
NONSHARABLE_CLASS(CSwDirectGdiPolygonFiller) : public CBase
|
sl@0
|
34 |
{
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
Describes how pixels are to be displayed in the polygon. aUsage should be set to
|
sl@0
|
39 |
one of these values before CSwDirectGdiPolygonFiller::Construct is used.
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
enum TUsage
|
sl@0
|
42 |
{
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
A request for all pixel runs in sequential order.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
EGetAllPixelRunsSequentially,
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
A request for all pixel runs in sequential order but only for specified lines.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
EGetPixelRunsSequentiallyForSpecifiedScanLines
|
sl@0
|
51 |
};
|
sl@0
|
52 |
public:
|
sl@0
|
53 |
CSwDirectGdiPolygonFiller();
|
sl@0
|
54 |
~CSwDirectGdiPolygonFiller();
|
sl@0
|
55 |
void Construct(const TArray<TPoint>* aPointArray, DirectGdi::TFillRule aFillRule,TUsage aUsage=EGetAllPixelRunsSequentially); // N.B. this cannot fail
|
sl@0
|
56 |
void Construct(const TPoint* aPointList,TInt aNumPoints, DirectGdi::TFillRule aFillRule, TUsage aUsage=EGetAllPixelRunsSequentially); // N.B. this cannot fail
|
sl@0
|
57 |
void Reset();
|
sl@0
|
58 |
void GetNextPixelRun(TBool& aExists, TInt& aScanLine, TInt& aStart, TInt& aEnd);
|
sl@0
|
59 |
void GetNextPixelRunOnSpecifiedScanLine(TBool& aExists, TInt aScanLine, TInt& aStart, TInt& aEnd);
|
sl@0
|
60 |
private: // data-types for the fast algorithm
|
sl@0
|
61 |
struct SFastEdge
|
sl@0
|
62 |
{
|
sl@0
|
63 |
TInt upperVertex;
|
sl@0
|
64 |
TInt lowerVertex;
|
sl@0
|
65 |
TInt firstVertex;
|
sl@0
|
66 |
};
|
sl@0
|
67 |
struct SFastScanLineIntersection;
|
sl@0
|
68 |
struct SFastActiveEdge
|
sl@0
|
69 |
{
|
sl@0
|
70 |
SFastEdge* edgePtr;
|
sl@0
|
71 |
TLinearDDA lineGenerator;
|
sl@0
|
72 |
SFastScanLineIntersection* scanLineIntersectionPtr;
|
sl@0
|
73 |
};
|
sl@0
|
74 |
struct SFastScanLineIntersection
|
sl@0
|
75 |
{
|
sl@0
|
76 |
TInt firstPixel;
|
sl@0
|
77 |
TInt lastPixel;
|
sl@0
|
78 |
SFastActiveEdge* activeEdgePtr;
|
sl@0
|
79 |
};
|
sl@0
|
80 |
private: // data-types for the slow algorithm
|
sl@0
|
81 |
struct SSlowScanLineIntersection
|
sl@0
|
82 |
{
|
sl@0
|
83 |
TInt firstPixel;
|
sl@0
|
84 |
TInt lastPixel;
|
sl@0
|
85 |
TInt firstVertexOfEdge;
|
sl@0
|
86 |
};
|
sl@0
|
87 |
private: // data-types for both algorithms
|
sl@0
|
88 |
struct SFastData
|
sl@0
|
89 |
{
|
sl@0
|
90 |
TPoint* vertexList;
|
sl@0
|
91 |
SFastEdge* edgeList;
|
sl@0
|
92 |
SFastActiveEdge* activeEdgeList;
|
sl@0
|
93 |
SFastScanLineIntersection* scanLineIntersectionList;
|
sl@0
|
94 |
TInt numActiveEdges;
|
sl@0
|
95 |
TInt numScanLineIntersections;
|
sl@0
|
96 |
TInt nextEdgeToActivate;
|
sl@0
|
97 |
};
|
sl@0
|
98 |
struct SSlowData
|
sl@0
|
99 |
{
|
sl@0
|
100 |
enum {EStoreSize=8};
|
sl@0
|
101 |
TLinearDDA lineGenerator;
|
sl@0
|
102 |
SSlowScanLineIntersection scanLineIntersectionList[EStoreSize];
|
sl@0
|
103 |
TInt numIntersectionsWithSameFirstPixelPreviouslyMet;
|
sl@0
|
104 |
TInt numIntersectionsWithSameFirstPixelMetThisTime;
|
sl@0
|
105 |
TInt numScanLineIntersections;
|
sl@0
|
106 |
TBool scanLineComplete;
|
sl@0
|
107 |
TInt firstPixelOfLastIntersectionInPrevBuffer;
|
sl@0
|
108 |
};
|
sl@0
|
109 |
private:
|
sl@0
|
110 |
void Construct(DirectGdi::TFillRule aFillRule, TUsage aUsage);
|
sl@0
|
111 |
void FastHandleVertexIntersection(TInt& aCurrentActiveEdge, TBool aIsLowerVertex);
|
sl@0
|
112 |
void SetFastIntersection(SFastActiveEdge& aActiveEdge, SFastScanLineIntersection& aScanLineIntersection);
|
sl@0
|
113 |
void SlowHandleVertexIntersection(SSlowScanLineIntersection& aScanLineIntersection, TInt& aVertexStartingCurrentEdge,TBool aIsLowerVertex);
|
sl@0
|
114 |
void JumpToCurrentScanLine(TLinearDDA& aLineGenerator, const TPoint& aUpper, const TPoint& aLower,TPoint& aStartPos, TPoint& aEndPos) const;
|
sl@0
|
115 |
const TPoint& Point(TInt aIndex);
|
sl@0
|
116 |
private:
|
sl@0
|
117 |
const TArray<TPoint>* iPointArray; // not owned by the class
|
sl@0
|
118 |
DirectGdi::TFillRule iFillRule;
|
sl@0
|
119 |
TBool iUseFastAlgorithm;
|
sl@0
|
120 |
TInt iNumVertexes;
|
sl@0
|
121 |
TBool iToggler; // used by EAlternate fill-rule
|
sl@0
|
122 |
TInt iNestingLevel; // used by EWinding fill-rule
|
sl@0
|
123 |
TInt iScanLineIntersection;
|
sl@0
|
124 |
TInt iRightMostPixelOnScanLine;
|
sl@0
|
125 |
TInt iFirstVertex;
|
sl@0
|
126 |
TBool iPolygonIsAllHorizontal;
|
sl@0
|
127 |
TInt iFirstScanLine;
|
sl@0
|
128 |
TInt iLastScanLine;
|
sl@0
|
129 |
TInt iCurrentScanLine;
|
sl@0
|
130 |
SFastData iFastData;
|
sl@0
|
131 |
SSlowData iSlowData;
|
sl@0
|
132 |
private:
|
sl@0
|
133 |
friend class TCompareEdgesUpperY;
|
sl@0
|
134 |
friend class TCompareActiveEdgesFirstVertex;
|
sl@0
|
135 |
friend class TCompareScanLineIntersectionsFirstPixel;
|
sl@0
|
136 |
friend class TSwapEdges;
|
sl@0
|
137 |
friend class TSwapActiveEdges;
|
sl@0
|
138 |
friend class TSwapScanLineIntersections;
|
sl@0
|
139 |
};
|
sl@0
|
140 |
|
sl@0
|
141 |
#endif /*SWDIRECTGDIPOLYGON_H*/
|
sl@0
|
142 |
|