Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgssimplifymethod.cpp 3 : : --------------------- 4 : : begin : December 2013 5 : : copyright : (C) 2013 by Matthias Kuhn / Alvaro Huarte 6 : : email : 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgssimplifymethod.h" 17 : : #include "qgslogger.h" 18 : : #include "qgsgeometrysimplifier.h" 19 : : #include "qgsmaptopixelgeometrysimplifier.h" 20 : : 21 : : 22 : 0 : void QgsSimplifyMethod::setMethodType( MethodType methodType ) 23 : : { 24 : 0 : mMethodType = methodType; 25 : 0 : } 26 : : 27 : 0 : void QgsSimplifyMethod::setTolerance( double tolerance ) 28 : : { 29 : 0 : mTolerance = tolerance; 30 : 0 : } 31 : : 32 : 0 : void QgsSimplifyMethod::setForceLocalOptimization( bool localOptimization ) 33 : : { 34 : 0 : mForceLocalOptimization = localOptimization; 35 : 0 : } 36 : : 37 : 0 : QgsAbstractGeometrySimplifier *QgsSimplifyMethod::createGeometrySimplifier( const QgsSimplifyMethod &simplifyMethod ) 38 : : { 39 : 0 : QgsSimplifyMethod::MethodType methodType = simplifyMethod.methodType(); 40 : : 41 : : // returns a geometry simplifier according to specified method 42 : 0 : if ( methodType == QgsSimplifyMethod::OptimizeForRendering ) 43 : : { 44 : 0 : int simplifyFlags = QgsMapToPixelSimplifier::SimplifyGeometry | QgsMapToPixelSimplifier::SimplifyEnvelope; 45 : 0 : return new QgsMapToPixelSimplifier( simplifyFlags, simplifyMethod.tolerance(), QgsMapToPixelSimplifier::Distance ); 46 : : } 47 : 0 : else if ( methodType == QgsSimplifyMethod::PreserveTopology ) 48 : : { 49 : 0 : return new QgsTopologyPreservingSimplifier( simplifyMethod.tolerance() ); 50 : : } 51 : : else 52 : : { 53 : 0 : QgsDebugMsg( QStringLiteral( "Simplification method type (%1) is not recognised" ).arg( methodType ) ); 54 : 0 : return nullptr; 55 : : } 56 : 0 : }