bump product version to 5.0.4.1
[LibreOffice.git] / basebmp / source / polypolygonrenderer.cxx
blob55d6d69a5d982c9f04360b5324632ed189d64afc
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <basebmp/polypolygonrenderer.hxx>
22 #include <algorithm>
25 namespace basebmp
27 namespace detail
29 sal_uInt32 setupGlobalEdgeTable( VectorOfVectorOfVertices& rGET,
30 basegfx::B2DPolyPolygon const& rPolyPoly,
31 sal_Int32 nMinY )
33 sal_Int32 const nNumScanlines( (sal_Int32)rGET.size() );
35 // add all polygons to GET
36 for( sal_uInt32 i(0), nCount(rPolyPoly.count());
37 i<nCount;
38 ++i )
40 // add all vertices to GET
41 const basegfx::B2DPolygon& rPoly( rPolyPoly.getB2DPolygon(i) );
42 for( sal_uInt32 k(0), nVertices(rPoly.count());
43 k<nVertices;
44 ++k )
46 const basegfx::B2DPoint& rP1( rPoly.getB2DPoint(k) );
47 const basegfx::B2DPoint& rP2( rPoly.getB2DPoint( (k + 1) % nVertices ) );
49 const sal_Int32 nVertexYP1( basegfx::fround(rP1.getY()) );
50 const sal_Int32 nVertexYP2( basegfx::fround(rP2.getY()) );
52 // insert only vertices which are not strictly
53 // horizontal. Strictly horizontal vertices don't add
54 // any information that is not already present - due
55 // to their adjacent vertices.
56 if(nVertexYP1 != nVertexYP2)
58 if( nVertexYP2 < nVertexYP1 )
60 const sal_Int32 nStartScanline(nVertexYP2 - nMinY);
62 // edge direction is upwards - add with swapped vertices
63 if( nStartScanline < nNumScanlines )
64 rGET[ nStartScanline ].push_back( Vertex(rP2, rP1, false) );
66 else
68 const sal_Int32 nStartScanline(nVertexYP1 - nMinY);
70 if( nStartScanline < nNumScanlines )
71 rGET[ nStartScanline ].push_back( Vertex(rP1, rP2, true) );
77 // now sort all scanlines individually, with increasing x
78 // coordinates
79 VectorOfVectorOfVertices::iterator aIter( rGET.begin() );
80 const VectorOfVectorOfVertices::iterator aEnd( rGET.end() );
81 sal_uInt32 nVertexCount(0);
82 RasterConvertVertexComparator aComp;
83 while( aIter != aEnd )
85 std::sort( aIter->begin(),
86 aIter->end(),
87 aComp );
88 nVertexCount += aIter->size();
90 ++aIter;
93 return nVertexCount;
96 void sortAET( VectorOfVertexPtr& rAETSrc,
97 VectorOfVertexPtr& rAETDest )
99 static RasterConvertVertexComparator aComp;
101 rAETDest.clear();
103 // prune AET from ended edges
104 VectorOfVertexPtr::iterator iter( rAETSrc.begin() );
105 VectorOfVertexPtr::iterator const end( rAETSrc.end() );
106 while( iter != end )
108 if( (*iter)->mnYCounter > 0 )
109 rAETDest.push_back( *iter );
110 ++iter;
113 // stable sort is necessary, to avoid segment crossing where
114 // none was intended.
115 std::stable_sort( rAETDest.begin(), rAETDest.end(), aComp );
118 } // namespace detail
119 } // namespace basebmp
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */