/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtLocation module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL3$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qdeclarativepolylinemapitem_p.h" #include "qdeclarativepolylinemapitem_p_p.h" #include "qdeclarativerectanglemapitem_p_p.h" #include "qdeclarativecirclemapitem_p_p.h" #include "qlocationutils_p.h" #include "qdeclarativegeomapitemutils_p.h" #include "error_messages_p.h" #include "locationvaluetypehelper_p.h" #include "qdoublevector2d_p.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "qgeosimplify_p.h" QT_BEGIN_NAMESPACE struct ThreadPool // to have a thread pool with max 1 thread for geometry processing { ThreadPool () { m_threadPool.setMaxThreadCount(1); } void start(QRunnable *runnable, int priority = 0) { m_threadPool.start(runnable, priority); } QThreadPool m_threadPool; }; Q_GLOBAL_STATIC(ThreadPool, threadPool) static const double kClipperScaleFactor = 281474976710656.0; // 48 bits of precision static inline IntPoint toIntPoint(const double x, const double y) { return IntPoint(cInt(x * kClipperScaleFactor), cInt(y * kClipperScaleFactor)); } static IntPoint toIntPoint(const QDoubleVector2D &p) { return toIntPoint(p.x(), p.y()); } static bool get_line_intersection(const double p0_x, const double p0_y, const double p1_x, const double p1_y, const double p2_x, const double p2_y, const double p3_x, const double p3_y, double *i_x, double *i_y, double *i_t) { const double s10_x = p1_x - p0_x; const double s10_y = p1_y - p0_y; const double s32_x = p3_x - p2_x; const double s32_y = p3_y - p2_y; const double denom = s10_x * s32_y - s32_x * s10_y; if (denom == 0.0) return false; // Collinear const bool denomPositive = denom > 0; const double s02_x = p0_x - p2_x; const double s02_y = p0_y - p2_y; const double s_numer = s10_x * s02_y - s10_y * s02_x; if ((s_numer < 0.0) == denomPositive) return false; // No collision const double t_numer = s32_x * s02_y - s32_y * s02_x; if ((t_numer < 0.0) == denomPositive) return false; // No collision if (((s_numer > denom) == denomPositive) || ((t_numer > denom) == denomPositive)) return false; // No collision // Collision detected *i_t = t_numer / denom; *i_x = p0_x + (*i_t * s10_x); *i_y = p0_y + (*i_t * s10_y); return true; } enum SegmentType { NoIntersection, OneIntersection, TwoIntersections }; static QList > clipLine( const QList &l, const QList &poly) { QList > res; if (poly.size() < 2 || l.size() < 2) return res; // Step 1: build edges std::vector > edges; for (int i = 1; i < poly.size(); i++) edges.push_back({ { poly.at(i-1).x(), poly.at(i-1).y(), poly.at(i).x(), poly.at(i).y() } }); edges.push_back({ { poly.at(poly.size()-1).x(), poly.at(poly.size()-1).y(), poly.at(0).x(), poly.at(0).y() } }); // Build Path to check for containment, for edges not intersecting // This step could be speeded up by forcing the orientation of the polygon, and testing the cross products in the step // below, thus avoiding to resort to clipper. Path clip; for (const auto &v: poly) clip.push_back(toIntPoint(v)); // Step 2: check each segment against each edge QList subLine; std::array intersections = { { 0.0, 0.0, 0.0, 0.0 } }; for (int i = 0; i < l.size() - 1; ++i) { SegmentType type = NoIntersection; double t = -1; // valid values are in [0, 1]. Only written if intersects double previousT = t; double i_x, i_y; const int firstContained = c2t::clip2tri::pointInPolygon(toIntPoint(l.at(i).x(), l.at(i).y()), clip); const int secondContained = c2t::clip2tri::pointInPolygon(toIntPoint(l.at(i+1).x(), l.at(i+1).y()), clip); if (firstContained && secondContained) { // Second most common condition, test early and skip inner loop if possible if (!subLine.size()) subLine.push_back(l.at(i)); // the initial element has to be pushed now. subLine.push_back(l.at(i+1)); continue; } for (unsigned int j = 0; j < edges.size(); ++j) { const bool intersects = get_line_intersection(l.at(i).x(), l.at(i).y(), l.at(i+1).x(), l.at(i+1).y(), edges.at(j).at(0), edges.at(j).at(1), edges.at(j).at(2), edges.at(j).at(3), &i_x, &i_y, &t); if (intersects) { if (previousT >= 0.0) { //One intersection already hit if (t < previousT) { // Reorder intersections[2] = intersections[0]; intersections[3] = intersections[1]; intersections[0] = i_x; intersections[1] = i_y; } else { intersections[2] = i_x; intersections[3] = i_y; } type = TwoIntersections; break; // no need to check anything else } else { // First intersection intersections[0] = i_x; intersections[1] = i_y; type = OneIntersection; } previousT = t; } } if (type == NoIntersection) { if (!firstContained && !secondContained) { // Both outside subLine.clear(); } else if (firstContained && secondContained) { // Handled above already. } else { // Mismatch between PointInPolygon and get_line_intersection. Treat it as no intersection if (subLine.size()) res.push_back(subLine); subLine.clear(); } } else if (type == OneIntersection) { // Need to check the following cases to avoid mismatch with PointInPolygon result. if (firstContained <= 0 && secondContained > 0) { // subLine MUST be empty if (!subLine.size()) subLine.push_back(QDoubleVector2D(intersections[0], intersections[1])); subLine.push_back(l.at(i+1)); } else if (firstContained > 0 && secondContained <= 0) { // subLine MUST NOT be empty if (!subLine.size()) subLine.push_back(l.at(i)); subLine.push_back(QDoubleVector2D(intersections[0], intersections[1])); res.push_back(subLine); subLine.clear(); } else { if (subLine.size()) res.push_back(subLine); subLine.clear(); } } else { // Two // restart strip subLine.clear(); subLine.push_back(QDoubleVector2D(intersections[0], intersections[1])); subLine.push_back(QDoubleVector2D(intersections[2], intersections[3])); res.push_back(subLine); subLine.clear(); } } if (subLine.size()) res.push_back(subLine); return res; } /*! \qmltype MapPolyline \instantiates QDeclarativePolylineMapItem \inqmlmodule QtLocation \ingroup qml-QtLocation5-maps \since QtLocation 5.0 \brief The MapPolyline type displays a polyline on a map. The MapPolyline type displays a polyline on a map, specified in terms of an ordered list of \l {coordinate}{coordinates}. The \l {coordinate}{coordinates} on the path cannot be directly changed after being added to the Polyline. Instead, copy the \l path into a var, modify the copy and reassign the copy back to the \l path. \code var path = mapPolyline.path; path[0].latitude = 5; mapPolyline.path = path; \endcode Coordinates can also be added and removed at any time using the \l addCoordinate and \l removeCoordinate methods. By default, the polyline is displayed as a 1-pixel thick black line. This can be changed using the \l line.width and \l line.color properties. \section2 Performance MapPolylines have a rendering cost that is O(n) with respect to the number of vertices. This means that the per frame cost of having a polyline on the Map grows in direct proportion to the number of points in the polyline. Like the other map objects, MapPolyline is normally drawn without a smooth appearance. Setting the \l {Item::opacity}{opacity} property will force the object to be blended, which decreases performance considerably depending on the hardware in use. \section2 Example Usage The following snippet shows a MapPolyline with 4 points, making a shape like the top part of a "question mark" (?), near Brisbane, Australia. The line drawn is 3 pixels in width and green in color. \code Map { MapPolyline { line.width: 3 line.color: 'green' path: [ { latitude: -27, longitude: 153.0 }, { latitude: -27, longitude: 154.1 }, { latitude: -28, longitude: 153.5 }, { latitude: -29, longitude: 153.5 } ] } } \endcode \image api-mappolyline.png */ /*! \qmlproperty bool QtLocation::MapPolyline::autoFadeIn This property holds whether the item automatically fades in when zooming into the map starting from very low zoom levels. By default this is \c true. Setting this property to \c false causes the map item to always have the opacity specified with the \l QtQuick::Item::opacity property, which is 1.0 by default. \since 5.14 */ QDeclarativeMapLineProperties::QDeclarativeMapLineProperties(QObject *parent) : QObject(parent), width_(1.0), color_(Qt::black) { } /*! \internal */ QColor QDeclarativeMapLineProperties::color() const { return color_; } /*! \internal */ void QDeclarativeMapLineProperties::setColor(const QColor &color) { if (color_ == color) return; color_ = color; emit colorChanged(color_); } /*! \internal */ qreal QDeclarativeMapLineProperties::width() const { return width_; } /*! \internal */ void QDeclarativeMapLineProperties::setWidth(qreal width) { if (width_ == width) return; width_ = width; emit widthChanged(width_); } QGeoMapPolylineGeometry::QGeoMapPolylineGeometry() { } QList > QGeoMapPolylineGeometry::clipPath(const QGeoMap &map, const QList &path, QDoubleVector2D &leftBoundWrapped) { /* * Approach: * 1) project coordinates to wrapped web mercator, and do unwrapBelowX * 2) if the scene is tilted, clip the geometry against the visible region (this may generate multiple polygons) * 2.1) recalculate the origin and geoLeftBound to prevent these parameters from ending in unprojectable areas * 2.2) ensure the left bound does not wrap around due to QGeoCoordinate <-> clipper conversions */ const QGeoProjectionWebMercator &p = static_cast(map.geoProjection()); srcOrigin_ = geoLeftBound_; double unwrapBelowX = 0; leftBoundWrapped = p.wrapMapProjection(p.geoToMapProjection(geoLeftBound_)); if (preserveGeometry_) unwrapBelowX = leftBoundWrapped.x(); QList wrappedPath; wrappedPath.reserve(path.size()); QDoubleVector2D wrappedLeftBound(qInf(), qInf()); // 1) for (int i = 0; i < path.size(); ++i) { const QDoubleVector2D &coord = path.at(i); QDoubleVector2D wrappedProjection = p.wrapMapProjection(coord); // We can get NaN if the map isn't set up correctly, or the projection // is faulty -- probably best thing to do is abort if (!qIsFinite(wrappedProjection.x()) || !qIsFinite(wrappedProjection.y())) return QList >(); const bool isPointLessThanUnwrapBelowX = (wrappedProjection.x() < leftBoundWrapped.x()); // unwrap x to preserve geometry if moved to border of map if (preserveGeometry_ && isPointLessThanUnwrapBelowX) { double distance = wrappedProjection.x() - unwrapBelowX; if (distance < 0.0) distance += 1.0; wrappedProjection.setX(unwrapBelowX + distance); } if (wrappedProjection.x() < wrappedLeftBound.x() || (wrappedProjection.x() == wrappedLeftBound.x() && wrappedProjection.y() < wrappedLeftBound.y())) { wrappedLeftBound = wrappedProjection; } wrappedPath.append(wrappedProjection); } #ifdef QT_LOCATION_DEBUG m_wrappedPath = wrappedPath; #endif // 2) QList > clippedPaths; const QList &visibleRegion = p.projectableGeometry(); if (visibleRegion.size()) { clippedPaths = clipLine(wrappedPath, visibleRegion); // 2.1) update srcOrigin_ and leftBoundWrapped with the point with minimum X QDoubleVector2D lb(qInf(), qInf()); for (const QList &path: clippedPaths) { for (const QDoubleVector2D &p: path) { if (p == leftBoundWrapped) { lb = p; break; } else if (p.x() < lb.x() || (p.x() == lb.x() && p.y() < lb.y())) { // y-minimization needed to find the same point on polygon and border lb = p; } } } if (qIsInf(lb.x())) return QList >(); // 2.2) Prevent the conversion to and from clipper from introducing negative offsets which // in turn will make the geometry wrap around. lb.setX(qMax(wrappedLeftBound.x(), lb.x())); leftBoundWrapped = lb; } else { clippedPaths.append(wrappedPath); } #ifdef QT_LOCATION_DEBUG m_clippedPaths = clippedPaths; #endif return clippedPaths; } void QGeoMapPolylineGeometry::pathToScreen(const QGeoMap &map, const QList > &clippedPaths, const QDoubleVector2D &leftBoundWrapped) { const QGeoProjectionWebMercator &p = static_cast(map.geoProjection()); // 3) project the resulting geometry to screen position and calculate screen bounds double minX = qInf(); double minY = qInf(); double maxX = -qInf(); double maxY = -qInf(); srcOrigin_ = p.mapProjectionToGeo(p.unwrapMapProjection(leftBoundWrapped)); QDoubleVector2D origin = p.wrappedMapProjectionToItemPosition(leftBoundWrapped); for (const QList &path: clippedPaths) { QDoubleVector2D lastAddedPoint; for (int i = 0; i < path.size(); ++i) { QDoubleVector2D point = p.wrappedMapProjectionToItemPosition(path.at(i)); point = point - origin; // (0,0) if point == geoLeftBound_ minX = qMin(point.x(), minX); minY = qMin(point.y(), minY); maxX = qMax(point.x(), maxX); maxY = qMax(point.y(), maxY); if (i == 0) { srcPoints_ << point.x() << point.y(); srcPointTypes_ << QPainterPath::MoveToElement; lastAddedPoint = point; } else { if ((point - lastAddedPoint).manhattanLength() > 3 || i == path.size() - 1) { srcPoints_ << point.x() << point.y(); srcPointTypes_ << QPainterPath::LineToElement; lastAddedPoint = point; } } } } sourceBounds_ = QRectF(QPointF(minX, minY), QPointF(maxX, maxY)); } /*! \internal */ void QGeoMapPolylineGeometry::updateSourcePoints(const QGeoMap &map, const QList &path, const QGeoCoordinate geoLeftBound) { if (!sourceDirty_) return; geoLeftBound_ = geoLeftBound; // clear the old data and reserve enough memory srcPoints_.clear(); srcPoints_.reserve(path.size() * 2); srcPointTypes_.clear(); srcPointTypes_.reserve(path.size()); /* * Approach: * 1) project coordinates to wrapped web mercator, and do unwrapBelowX * 2) if the scene is tilted, clip the geometry against the visible region (this may generate multiple polygons) * 3) project the resulting geometry to screen position and calculate screen bounds */ QDoubleVector2D leftBoundWrapped; // 1, 2) const QList > &clippedPaths = clipPath(map, path, leftBoundWrapped); // 3) pathToScreen(map, clippedPaths, leftBoundWrapped); } // *** SCREEN CLIPPING *** // enum ClipPointType { InsidePoint = 0x00, LeftPoint = 0x01, RightPoint = 0x02, BottomPoint = 0x04, TopPoint = 0x08 }; static inline int clipPointType(qreal x, qreal y, const QRectF &rect) { int type = InsidePoint; if (x < rect.left()) type |= LeftPoint; else if (x > rect.right()) type |= RightPoint; if (y < rect.top()) type |= TopPoint; else if (y > rect.bottom()) type |= BottomPoint; return type; } static void clipSegmentToRect(qreal x0, qreal y0, qreal x1, qreal y1, const QRectF &clipRect, QList &outPoints, QList &outTypes) { int type0 = clipPointType(x0, y0, clipRect); int type1 = clipPointType(x1, y1, clipRect); bool accept = false; while (true) { if (!(type0 | type1)) { accept = true; break; } else if (type0 & type1) { break; } else { qreal x = 0.0; qreal y = 0.0; int outsideType = type0 ? type0 : type1; if (outsideType & BottomPoint) { x = x0 + (x1 - x0) * (clipRect.bottom() - y0) / (y1 - y0); y = clipRect.bottom() - 0.1; } else if (outsideType & TopPoint) { x = x0 + (x1 - x0) * (clipRect.top() - y0) / (y1 - y0); y = clipRect.top() + 0.1; } else if (outsideType & RightPoint) { y = y0 + (y1 - y0) * (clipRect.right() - x0) / (x1 - x0); x = clipRect.right() - 0.1; } else if (outsideType & LeftPoint) { y = y0 + (y1 - y0) * (clipRect.left() - x0) / (x1 - x0); x = clipRect.left() + 0.1; } if (outsideType == type0) { x0 = x; y0 = y; type0 = clipPointType(x0, y0, clipRect); } else { x1 = x; y1 = y; type1 = clipPointType(x1, y1, clipRect); } } } if (accept) { if (outPoints.size() >= 2) { qreal lastX, lastY; lastY = outPoints.at(outPoints.size() - 1); lastX = outPoints.at(outPoints.size() - 2); if (!qFuzzyCompare(lastY, y0) || !qFuzzyCompare(lastX, x0)) { outTypes << QPainterPath::MoveToElement; outPoints << x0 << y0; } } else { outTypes << QPainterPath::MoveToElement; outPoints << x0 << y0; } outTypes << QPainterPath::LineToElement; outPoints << x1 << y1; } } static void clipPathToRect(const QList &points, const QList &types, const QRectF &clipRect, QList &outPoints, QList &outTypes) { outPoints.clear(); outPoints.reserve(points.size()); outTypes.clear(); outTypes.reserve(types.size()); qreal lastX = 0; qreal lastY = 0; // or else used uninitialized for (int i = 0; i < types.size(); ++i) { if (i > 0 && types[i] != QPainterPath::MoveToElement) { qreal x = points[i * 2], y = points[i * 2 + 1]; clipSegmentToRect(lastX, lastY, x, y, clipRect, outPoints, outTypes); } lastX = points[i * 2]; lastY = points[i * 2 + 1]; } } //////////////////////////////////////////////////////////////////////////// /*! \internal */ void QGeoMapPolylineGeometry::updateScreenPoints(const QGeoMap &map, qreal strokeWidth, bool adjustTranslation) { if (!screenDirty_) return; QPointF origin = map.geoProjection().coordinateToItemPosition(srcOrigin_, false).toPointF(); if (!qIsFinite(origin.x()) || !qIsFinite(origin.y()) || srcPointTypes_.size() < 2) { // the line might have been clipped away. clear(); return; } // Create the viewport rect in the same coordinate system // as the actual points QRectF viewport(0, 0, map.viewportWidth(), map.viewportHeight()); viewport.adjust(-strokeWidth, -strokeWidth, strokeWidth * 2, strokeWidth * 2); viewport.translate(-1 * origin); QList points; QList types; if (clipToViewport_) { // Although the geometry has already been clipped against the visible region in wrapped mercator space. // This is currently still needed to prevent a number of artifacts deriving from QTriangulatingStroker processing // very large lines (that is, polylines that span many pixels in screen space) clipPathToRect(srcPoints_, srcPointTypes_, viewport, points, types); } else { points = srcPoints_; types = srcPointTypes_; } QVectorPath vp(points.data(), types.size(), types.data()); QTriangulatingStroker ts; // As of Qt5.11, the clip argument is not actually used, in the call below. ts.process(vp, QPen(QBrush(Qt::black), strokeWidth), QRectF(), QPainter::Qt4CompatiblePainting); clear(); // Nothing is on the screen if (ts.vertexCount() == 0) return; // QTriangulatingStroker#vertexCount is actually the length of the array, // not the number of vertices screenVertices_.reserve(ts.vertexCount()); QRectF bb; QPointF pt; const float *vs = ts.vertices(); for (int i = 0; i < (ts.vertexCount()/2*2); i += 2) { pt = QPointF(vs[i], vs[i + 1]); screenVertices_ << pt; if (!qIsFinite(pt.x()) || !qIsFinite(pt.y())) break; if (!bb.contains(pt)) { if (pt.x() < bb.left()) bb.setLeft(pt.x()); if (pt.x() > bb.right()) bb.setRight(pt.x()); if (pt.y() < bb.top()) bb.setTop(pt.y()); if (pt.y() > bb.bottom()) bb.setBottom(pt.y()); } } screenBounds_ = bb; const QPointF strokeOffset = (adjustTranslation) ? QPointF(strokeWidth, strokeWidth) * 0.5: QPointF(); this->translate( -1 * sourceBounds_.topLeft() + strokeOffset); } void QGeoMapPolylineGeometry::clearSource() { srcPoints_.clear(); srcPointTypes_.clear(); } bool QGeoMapPolylineGeometry::contains(const QPointF &point) const { // screenOutline_.contains(screenPoint) doesn't work, as, it appears, that // screenOutline_ for QGeoMapPolylineGeometry is empty (QRectF(0,0 0x0)) const QList &verts = vertices(); QPolygonF tri; for (int i = 0; i < verts.size(); ++i) { tri << verts[i]; if (tri.size() == 3) { if (tri.containsPoint(point,Qt::OddEvenFill)) return true; tri.remove(0); } } return false; } void QGeoMapPolylineGeometryOpenGL::updateSourcePoints(const QGeoMap &map, const QGeoPolygon &poly) { if (!sourceDirty_) return; QGeoPath p(poly.path()); if (poly.path().size() && poly.path().last() != poly.path().first()) p.addCoordinate(poly.path().first()); updateSourcePoints(map, p); } void QGeoMapPolylineGeometryOpenGL::updateSourcePoints(const QGeoMap &map, const QGeoPath &poly) { if (!sourceDirty_) return; const QGeoProjectionWebMercator &p = static_cast(map.geoProjection()); // build the actual path // The approach is the same as described in QGeoMapPolylineGeometry::updateSourcePoints QDoubleVector2D leftBoundWrapped; // 1) pre-compute 3 sets of "wrapped" coordinates: one w regular mercator, one w regular mercator +- 1.0 QList wrappedPath; QDeclarativeGeoMapItemUtils::wrapPath(poly.path(), geoLeftBound_, p, wrappedPath, &leftBoundWrapped); const QGeoRectangle &boundingRectangle = poly.boundingGeoRectangle(); updateSourcePoints(p, wrappedPath, boundingRectangle); } void QGeoMapPolylineGeometryOpenGL::updateSourcePoints(const QGeoProjectionWebMercator &p, const QList &wrappedPath, const QGeoRectangle &boundingRectangle) { if (!sourceDirty_) return; // 1.1) do the same for the bbox // Beware: vertical lines (or horizontal lines) might have an "empty" bbox. Check for that QGeoCoordinate topLeft = boundingRectangle.topLeft(); QGeoCoordinate bottomRight = boundingRectangle.bottomRight(); const qreal epsilon = 0.000001; if (qFuzzyCompare(topLeft.latitude(), bottomRight.latitude())) { topLeft.setLatitude(qBound(-90.0, topLeft.latitude() + epsilon ,90.0)); bottomRight.setLatitude(qBound(-90.0, bottomRight.latitude() - epsilon ,90.0)); } if (qFuzzyCompare(topLeft.longitude(), bottomRight.longitude())) { topLeft.setLongitude(QLocationUtils::wrapLong(topLeft.longitude() - epsilon)); bottomRight.setLongitude(QLocationUtils::wrapLong(bottomRight.longitude() + epsilon)); } QGeoPolygon bbox(QGeoRectangle(topLeft, bottomRight)); QList wrappedBbox, wrappedBboxPlus1, wrappedBboxMinus1; QDeclarativeGeoMapItemUtils::wrapPath(bbox.path(), bbox.boundingGeoRectangle().topLeft(), p, wrappedBbox, wrappedBboxMinus1, wrappedBboxPlus1, &m_bboxLeftBoundWrapped); // New pointers, some old LOD task might still be running and operating on the old pointers. resetLOD(); for (const auto &v: qAsConst(wrappedPath)) m_screenVertices->append(v); m_wrappedPolygons.resize(3); m_wrappedPolygons[0].wrappedBboxes = wrappedBboxMinus1; m_wrappedPolygons[1].wrappedBboxes = wrappedBbox; m_wrappedPolygons[2].wrappedBboxes = wrappedBboxPlus1; srcOrigin_ = geoLeftBound_; } void QGeoMapPolylineGeometryOpenGL::updateSourcePoints(const QGeoMap &map, const QGeoRectangle &rect) { const QGeoPath path(QDeclarativeRectangleMapItemPrivateCPU::perimeter(rect)); updateSourcePoints(map, path); } void QGeoMapPolylineGeometryOpenGL::updateSourcePoints(const QGeoMap &map, const QGeoCircle &circle) { if (!sourceDirty_) return; const QGeoProjectionWebMercator &p = static_cast(map.geoProjection()); QDoubleVector2D leftBoundWrapped; // 1) pre-compute 3 sets of "wrapped" coordinates: one w regular mercator, one w regular mercator +- 1.0 QList path; QGeoCoordinate leftBound; QList wrappedPath; QDeclarativeCircleMapItemPrivateCPU::calculatePeripheralPoints(path, circle.center(), circle.radius(), QDeclarativeCircleMapItemPrivateCPU::CircleSamples, leftBound); path << path.first(); geoLeftBound_ = leftBound; QDeclarativeGeoMapItemUtils::wrapPath(path, leftBound, p, wrappedPath, &leftBoundWrapped); const QGeoRectangle &boundingRectangle = circle.boundingGeoRectangle(); updateSourcePoints(p, wrappedPath, boundingRectangle); } void QGeoMapPolylineGeometryOpenGL::updateScreenPoints(const QGeoMap &map, qreal strokeWidth, bool /*adjustTranslation*/) { if (map.viewportWidth() == 0 || map.viewportHeight() == 0) { clear(); return; } // 1) identify which set to use: std, +1 or -1 const QGeoProjectionWebMercator &p = static_cast(map.geoProjection()); const QDoubleVector2D leftBoundMercator = p.geoToMapProjection(srcOrigin_); m_wrapOffset = p.projectionWrapFactor(leftBoundMercator) + 1; // +1 to get the offset into QLists if (sourceDirty_) { // 1.1) select geometry set // This could theoretically be skipped for those polylines whose bbox is not even projectable. // However, such optimization could only be introduced if not calculating bboxes lazily. // Hence not doing it. // if (m_screenVertices.size() > 1) m_dataChanged = true; } updateQuickGeometry(p, strokeWidth); } void QGeoMapPolylineGeometryOpenGL::updateQuickGeometry(const QGeoProjectionWebMercator &p, qreal strokeWidth) { // 2) clip bbox // BBox handling -- this is related to the bounding box geometry // that has to inevitably follow the old projection codepath // As it needs to provide projected coordinates for QtQuick interaction. // This could be futher optimized to be updated in a lazy fashion. const QList &wrappedBbox = m_wrappedPolygons.at(m_wrapOffset).wrappedBboxes; QList > clippedBbox; QDoubleVector2D bboxLeftBoundWrapped = m_bboxLeftBoundWrapped; bboxLeftBoundWrapped.setX(bboxLeftBoundWrapped.x() + double(m_wrapOffset - 1)); QDeclarativeGeoMapItemUtils::clipPolygon(wrappedBbox, p, clippedBbox, &bboxLeftBoundWrapped, false); // 3) project bbox QPainterPath ppi; if ( !clippedBbox.size() || clippedBbox.first().size() < 3) { sourceBounds_ = screenBounds_ = QRectF(); firstPointOffset_ = QPointF(); screenOutline_ = ppi; return; } QDeclarativeGeoMapItemUtils::projectBbox(clippedBbox.first(), p, ppi); // Using first because a clipped box should always result in one polygon const QRectF brect = ppi.boundingRect(); firstPointOffset_ = QPointF(brect.topLeft()); sourceBounds_ = brect; screenOutline_ = ppi; // 4) Set Screen bbox screenBounds_ = brect; sourceBounds_.setX(0); sourceBounds_.setY(0); sourceBounds_.setWidth(brect.width() + strokeWidth); sourceBounds_.setHeight(brect.height() + strokeWidth); } /* * QDeclarativePolygonMapItem Private Implementations */ QDeclarativePolylineMapItemPrivate::~QDeclarativePolylineMapItemPrivate() {} QDeclarativePolylineMapItemPrivateCPU::~QDeclarativePolylineMapItemPrivateCPU() {} QDeclarativePolylineMapItemPrivateOpenGLLineStrip::~QDeclarativePolylineMapItemPrivateOpenGLLineStrip() {} QDeclarativePolylineMapItemPrivateOpenGLExtruded::~QDeclarativePolylineMapItemPrivateOpenGLExtruded() {} /* * QDeclarativePolygonMapItem Implementation */ struct PolylineBackendSelector { PolylineBackendSelector() { backend = (qgetenv("QTLOCATION_OPENGL_ITEMS").toInt()) ? QDeclarativePolylineMapItem::OpenGLExtruded : QDeclarativePolylineMapItem::Software; } QDeclarativePolylineMapItem::Backend backend = QDeclarativePolylineMapItem::Software; }; Q_GLOBAL_STATIC(PolylineBackendSelector, mapPolylineBackendSelector) QDeclarativePolylineMapItem::QDeclarativePolylineMapItem(QQuickItem *parent) : QDeclarativeGeoMapItemBase(parent), m_line(this), m_dirtyMaterial(true), m_updatingGeometry(false), m_d(new QDeclarativePolylineMapItemPrivateCPU(*this)) { m_itemType = QGeoMap::MapPolyline; m_geopath = QGeoPathEager(); setFlag(ItemHasContents, true); QObject::connect(&m_line, SIGNAL(colorChanged(QColor)), this, SLOT(updateAfterLinePropertiesChanged())); QObject::connect(&m_line, SIGNAL(widthChanged(qreal)), this, SLOT(updateAfterLinePropertiesChanged())); setBackend(mapPolylineBackendSelector->backend); } QDeclarativePolylineMapItem::~QDeclarativePolylineMapItem() { } /*! \internal */ void QDeclarativePolylineMapItem::updateAfterLinePropertiesChanged() { m_d->onLinePropertiesChanged(); } /*! \internal */ void QDeclarativePolylineMapItem::setMap(QDeclarativeGeoMap *quickMap, QGeoMap *map) { QDeclarativeGeoMapItemBase::setMap(quickMap,map); if (map) m_d->onMapSet(); } /*! \qmlproperty list MapPolyline::path This property holds the ordered list of coordinates which define the polyline. */ QJSValue QDeclarativePolylineMapItem::path() const { return fromList(this, m_geopath.path()); } void QDeclarativePolylineMapItem::setPath(const QJSValue &value) { if (!value.isArray()) return; setPathFromGeoList(toList(this, value)); } /*! \qmlmethod void MapPolyline::setPath(geopath path) Sets the \a path using a geopath type. \since 5.10 \sa path */ void QDeclarativePolylineMapItem::setPath(const QGeoPath &path) { if (m_geopath.path() == path.path()) return; m_geopath = QGeoPathEager(path); m_d->onGeoGeometryChanged(); emit pathChanged(); } /*! \internal */ void QDeclarativePolylineMapItem::setPathFromGeoList(const QList &path) { if (m_geopath.path() == path) return; m_geopath.setPath(path); m_d->onGeoGeometryChanged(); emit pathChanged(); } /*! \qmlmethod int MapPolyline::pathLength() Returns the number of coordinates of the polyline. \since QtLocation 5.6 \sa path */ int QDeclarativePolylineMapItem::pathLength() const { return m_geopath.path().length(); } /*! \qmlmethod void MapPolyline::addCoordinate(coordinate) Adds the specified \a coordinate to the end of the path. \sa insertCoordinate, removeCoordinate, path */ void QDeclarativePolylineMapItem::addCoordinate(const QGeoCoordinate &coordinate) { if (!coordinate.isValid()) return; m_geopath.addCoordinate(coordinate); m_d->onGeoGeometryUpdated(); emit pathChanged(); } /*! \qmlmethod void MapPolyline::insertCoordinate(index, coordinate) Inserts a \a coordinate to the path at the given \a index. \since QtLocation 5.6 \sa addCoordinate, removeCoordinate, path */ void QDeclarativePolylineMapItem::insertCoordinate(int index, const QGeoCoordinate &coordinate) { if (index < 0 || index > m_geopath.path().length()) return; m_geopath.insertCoordinate(index, coordinate); m_d->onGeoGeometryChanged(); emit pathChanged(); } /*! \qmlmethod void MapPolyline::replaceCoordinate(index, coordinate) Replaces the coordinate in the current path at the given \a index with the new \a coordinate. \since QtLocation 5.6 \sa addCoordinate, insertCoordinate, removeCoordinate, path */ void QDeclarativePolylineMapItem::replaceCoordinate(int index, const QGeoCoordinate &coordinate) { if (index < 0 || index >= m_geopath.path().length()) return; m_geopath.replaceCoordinate(index, coordinate); m_d->onGeoGeometryChanged(); emit pathChanged(); } /*! \qmlmethod coordinate MapPolyline::coordinateAt(index) Gets the coordinate of the polyline at the given \a index. If the index is outside the path's bounds then an invalid coordinate is returned. \since QtLocation 5.6 */ QGeoCoordinate QDeclarativePolylineMapItem::coordinateAt(int index) const { if (index < 0 || index >= m_geopath.path().length()) return QGeoCoordinate(); return m_geopath.coordinateAt(index); } /*! \qmlmethod coordinate MapPolyline::containsCoordinate(coordinate) Returns true if the given \a coordinate is part of the path. \since QtLocation 5.6 */ bool QDeclarativePolylineMapItem::containsCoordinate(const QGeoCoordinate &coordinate) { return m_geopath.containsCoordinate(coordinate); } /*! \qmlmethod void MapPolyline::removeCoordinate(coordinate) Removes \a coordinate from the path. If there are multiple instances of the same coordinate, the one added last is removed. If \a coordinate is not in the path this method does nothing. \sa addCoordinate, insertCoordinate, path */ void QDeclarativePolylineMapItem::removeCoordinate(const QGeoCoordinate &coordinate) { int length = m_geopath.path().length(); m_geopath.removeCoordinate(coordinate); if (m_geopath.path().length() == length) return; m_d->onGeoGeometryChanged(); emit pathChanged(); } /*! \qmlmethod void MapPolyline::removeCoordinate(index) Removes a coordinate from the path at the given \a index. If \a index is invalid then this method does nothing. \since QtLocation 5.6 \sa addCoordinate, insertCoordinate, path */ void QDeclarativePolylineMapItem::removeCoordinate(int index) { if (index < 0 || index >= m_geopath.path().length()) return; m_geopath.removeCoordinate(index); m_d->onGeoGeometryChanged(); emit pathChanged(); } /*! \qmlpropertygroup Location::MapPolyline::line \qmlproperty int MapPolyline::line.width \qmlproperty color MapPolyline::line.color This property is part of the line property group. The line property group holds the width and color used to draw the line. The width is in pixels and is independent of the zoom level of the map. The default values correspond to a black border with a width of 1 pixel. For no line, use a width of 0 or a transparent color. */ QDeclarativeMapLineProperties *QDeclarativePolylineMapItem::line() { return &m_line; } /*! \qmlproperty MapPolyline.Backend QtLocation::MapPolyline::backend This property holds which backend is in use to render the map item. Valid values are \b MapPolyline.Software and \b{MapPolyline.OpenGLLineStrip} and \b{MapPolyline.OpenGLExtruded}. The default value is \b{MapPolyline.Software}. \note \b{The release of this API with Qt 5.15 is a Technology Preview}. Ideally, as the OpenGL backends for map items mature, there will be no more need to also offer the legacy software-projection backend. So this property will likely disappear at some later point. To select OpenGL-accelerated item backends without using this property, it is also possible to set the environment variable \b QTLOCATION_OPENGL_ITEMS to \b{1}. Also note that all current OpenGL backends won't work as expected when enabling layers on the individual item, or when running on OpenGL core profiles greater than 2.x. \since 5.15 */ QDeclarativePolylineMapItem::Backend QDeclarativePolylineMapItem::backend() const { return m_backend; } void QDeclarativePolylineMapItem::setBackend(QDeclarativePolylineMapItem::Backend b) { if (b == m_backend) return; m_backend = b; QScopedPointer d((m_backend == Software) ? static_cast(new QDeclarativePolylineMapItemPrivateCPU(*this)) : ((m_backend == OpenGLExtruded) ? static_cast(new QDeclarativePolylineMapItemPrivateOpenGLExtruded(*this)) : static_cast(new QDeclarativePolylineMapItemPrivateOpenGLLineStrip(*this)))); m_d.swap(d); m_d->onGeoGeometryChanged(); emit backendChanged(); } /*! \internal */ void QDeclarativePolylineMapItem::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry) { if (newGeometry.topLeft() == oldGeometry.topLeft() || !map() || !m_geopath.isValid() || m_updatingGeometry) { QDeclarativeGeoMapItemBase::geometryChanged(newGeometry, oldGeometry); return; } // TODO: change the algorithm to preserve the distances and size! QGeoCoordinate newCenter = map()->geoProjection().itemPositionToCoordinate(QDoubleVector2D(newGeometry.center()), false); QGeoCoordinate oldCenter = map()->geoProjection().itemPositionToCoordinate(QDoubleVector2D(oldGeometry.center()), false); if (!newCenter.isValid() || !oldCenter.isValid()) return; double offsetLongi = newCenter.longitude() - oldCenter.longitude(); double offsetLati = newCenter.latitude() - oldCenter.latitude(); if (offsetLati == 0.0 && offsetLongi == 0.0) return; m_geopath.translate(offsetLati, offsetLongi); m_d->onGeoGeometryChanged(); emit pathChanged(); // Not calling QDeclarativeGeoMapItemBase::geometryChanged() as it will be called from a nested // call to this function. } /*! \internal */ void QDeclarativePolylineMapItem::afterViewportChanged(const QGeoMapViewportChangeEvent &event) { if (event.mapSize.isEmpty()) return; m_d->afterViewportChanged(); } /*! \internal */ void QDeclarativePolylineMapItem::updatePolish() { if (!map() || map()->geoProjection().projectionType() != QGeoProjection::ProjectionWebMercator) return; m_d->updatePolish(); } void QDeclarativePolylineMapItem::updateLineStyleParameter(QGeoMapParameter *p, const char *propertyName, bool update) { static const QByteArrayList acceptedParameterTypes = QByteArrayList() << QByteArrayLiteral("lineCap") << QByteArrayLiteral("pen"); switch (acceptedParameterTypes.indexOf(QByteArray(propertyName))) { case -1: qWarning() << "Invalid property " << QLatin1String(propertyName) << " for parameter lineStyle"; break; case 0: // lineCap { const QVariant lineCap = p->property("lineCap"); m_d->m_penCapStyle = lineCap.value(); // if invalid, will return 0 == FlatCap if (update) markSourceDirtyAndUpdate(); break; } case 1: // penStyle { const QVariant penStyle = p->property("pen"); m_d->m_penStyle = penStyle.value(); if (m_d->m_penStyle == Qt::NoPen) m_d->m_penStyle = Qt::SolidLine; if (update) markSourceDirtyAndUpdate(); break; } } } void QDeclarativePolylineMapItem::updateLineStyleParameter(QGeoMapParameter *p, const char *propertyName) { updateLineStyleParameter(p, propertyName, true); } void QDeclarativePolylineMapItem::componentComplete() { QQuickItem::componentComplete(); // Set up Dynamic Parameters QList dynamicParameters = quickChildren(); for (QGeoMapParameter *p : qAsConst(dynamicParameters)) { if (p->type() == QLatin1String("lineStyle")) { updateLineStyleParameter(p, "lineCap", false); updateLineStyleParameter(p, "pen", false); connect(p, &QGeoMapParameter::propertyUpdated, this, static_cast(&QDeclarativePolylineMapItem::updateLineStyleParameter)); markSourceDirtyAndUpdate(); } } } void QDeclarativePolylineMapItem::markSourceDirtyAndUpdate() { m_d->markSourceDirtyAndUpdate(); } /*! \internal */ QSGNode *QDeclarativePolylineMapItem::updateMapItemPaintNode(QSGNode *oldNode, UpdatePaintNodeData *data) { return m_d->updateMapItemPaintNode(oldNode, data); } bool QDeclarativePolylineMapItem::contains(const QPointF &point) const { return m_d->contains(point); } const QGeoShape &QDeclarativePolylineMapItem::geoShape() const { return m_geopath; } void QDeclarativePolylineMapItem::setGeoShape(const QGeoShape &shape) { const QGeoPath geopath(shape); // if shape isn't a path, path will be created as a default-constructed path setPath(geopath); } ////////////////////////////////////////////////////////////////////// /*! \internal */ VisibleNode::VisibleNode() : m_blocked{true}, m_visible{true} { } VisibleNode::~VisibleNode() { } /*! \internal */ bool VisibleNode::subtreeBlocked() const { return m_blocked || !m_visible; } /*! \internal */ void VisibleNode::setSubtreeBlocked(bool blocked) { m_blocked = blocked; } bool VisibleNode::visible() const { return m_visible; } /*! \internal */ void VisibleNode::setVisible(bool visible) { m_visible = visible; } /*! \internal */ MapItemGeometryNode::~MapItemGeometryNode() { } bool MapItemGeometryNode::isSubtreeBlocked() const { return subtreeBlocked(); } /*! \internal */ MapPolylineNode::MapPolylineNode() : geometry_(QSGGeometry::defaultAttributes_Point2D(),0) { geometry_.setDrawingMode(QSGGeometry::DrawTriangleStrip); QSGGeometryNode::setMaterial(&fill_material_); QSGGeometryNode::setGeometry(&geometry_); } /*! \internal */ MapPolylineNode::~MapPolylineNode() { } /*! \internal */ void MapPolylineNode::update(const QColor &fillColor, const QGeoMapItemGeometry *shape) { if (shape->size() == 0) { setSubtreeBlocked(true); return; } else { setSubtreeBlocked(false); } QSGGeometry *fill = QSGGeometryNode::geometry(); shape->allocateAndFill(fill); markDirty(DirtyGeometry); if (fillColor != fill_material_.color()) { fill_material_.setColor(fillColor); setMaterial(&fill_material_); markDirty(DirtyMaterial); } } MapPolylineNodeOpenGLLineStrip::MapPolylineNodeOpenGLLineStrip() : geometry_(QSGGeometry::defaultAttributes_Point2D(), 0) { geometry_.setDrawingMode(QSGGeometry::DrawLineStrip); QSGGeometryNode::setMaterial(&fill_material_); QSGGeometryNode::setGeometry(&geometry_); } MapPolylineNodeOpenGLLineStrip::~MapPolylineNodeOpenGLLineStrip() { } void MapPolylineNodeOpenGLLineStrip::update(const QColor &fillColor, const qreal lineWidth, const QGeoMapPolylineGeometryOpenGL *shape, const QMatrix4x4 &geoProjection, const QDoubleVector3D ¢er, const Qt::PenCapStyle /*capStyle*/) { if (shape->m_screenVertices->size() < 2) { setSubtreeBlocked(true); return; } else { setSubtreeBlocked(false); } QSGGeometry *fill = QSGGeometryNode::geometry(); if (shape->m_dataChanged) { shape->allocateAndFillLineStrip(fill); markDirty(DirtyGeometry); shape->m_dataChanged = false; } fill->setLineWidth(lineWidth); fill_material_.setLineWidth(lineWidth); // to make the material not compare equal if linewidth changes // if (fillColor != fill_material_.color()) { fill_material_.setWrapOffset(shape->m_wrapOffset - 1); fill_material_.setColor(fillColor); fill_material_.setGeoProjection(geoProjection); fill_material_.setCenter(center); setMaterial(&fill_material_); markDirty(DirtyMaterial); } } MapPolylineShaderLineStrip::MapPolylineShaderLineStrip() : QSGMaterialShader(*new QSGMaterialShaderPrivate) { } void MapPolylineShaderLineStrip::updateState(const QSGMaterialShader::RenderState &state, QSGMaterial *newEffect, QSGMaterial *oldEffect) { Q_ASSERT(oldEffect == nullptr || newEffect->type() == oldEffect->type()); MapPolylineMaterial *oldMaterial = static_cast(oldEffect); MapPolylineMaterial *newMaterial = static_cast(newEffect); const QColor &c = newMaterial->color(); const QMatrix4x4 &geoProjection = newMaterial->geoProjection(); const QDoubleVector3D ¢er = newMaterial->center(); QVector3D vecCenter, vecCenter_lowpart; for (int i = 0; i < 3; i++) QLocationUtils::split_double(center.get(i), &vecCenter[i], &vecCenter_lowpart[i]); if (oldMaterial == nullptr || c != oldMaterial->color() || state.isOpacityDirty()) { float opacity = state.opacity() * c.alphaF(); QVector4D v(c.redF() * opacity, c.greenF() * opacity, c.blueF() * opacity, opacity); program()->setUniformValue(m_color_id, v); } if (state.isMatrixDirty()) { program()->setUniformValue(m_matrix_id, state.projectionMatrix()); } program()->setUniformValue(m_mapProjection_id, geoProjection); program()->setUniformValue(m_center_id, vecCenter); program()->setUniformValue(m_center_lowpart_id, vecCenter_lowpart); program()->setUniformValue(m_wrapOffset_id, float(newMaterial->wrapOffset())); } const char * const *MapPolylineShaderLineStrip::attributeNames() const { static char const *const attr[] = { "vertex", nullptr }; return attr; } QSGMaterialShader *MapPolylineMaterial::createShader() const { return new MapPolylineShaderLineStrip(); } QSGMaterialType *MapPolylineMaterial::type() const { static QSGMaterialType type; return &type; } int MapPolylineMaterial::compare(const QSGMaterial *other) const { const MapPolylineMaterial &o = *static_cast(other); if (o.m_center == m_center && o.m_geoProjection == m_geoProjection && o.m_wrapOffset == m_wrapOffset && o.m_lineWidth == m_lineWidth) return QSGFlatColorMaterial::compare(other); return -1; } const QSGGeometry::AttributeSet &MapPolylineNodeOpenGLExtruded::attributesMapPolylineTriangulated() { return MapPolylineEntry::attributes(); } MapPolylineNodeOpenGLExtruded::MapPolylineNodeOpenGLExtruded() : m_geometryTriangulating(MapPolylineNodeOpenGLExtruded::attributesMapPolylineTriangulated(), 0 /* vtx cnt */, 0 /* index cnt */, QSGGeometry::UnsignedIntType /* index type */) { m_geometryTriangulating.setDrawingMode(QSGGeometry::DrawTriangles); QSGGeometryNode::setMaterial(&fill_material_); QSGGeometryNode::setGeometry(&m_geometryTriangulating); } MapPolylineNodeOpenGLExtruded::~MapPolylineNodeOpenGLExtruded() { } bool QGeoMapPolylineGeometryOpenGL::allocateAndFillEntries(QSGGeometry *geom, bool closed, unsigned int zoom) const { // Select LOD. Generate if not present. Assign it to m_screenVertices; if (m_dataChanged) { // it means that the data really changed. // So synchronously produce LOD 1, and enqueue the requested one if != 0 or 1. // Select 0 if 0 is requested, or 1 in all other cases. selectLODOnDataChanged(zoom, m_bboxLeftBoundWrapped.x()); } else { // Data has not changed, but active LOD != requested LOD. // So, if there are no active tasks, try to change to the correct one. if (!selectLODOnLODMismatch(zoom, m_bboxLeftBoundWrapped.x(), closed)) return false; } const QList &v = *m_screenVertices; if (v.size() < 2) { geom->allocate(0, 0); return true; } const int numSegments = (v.size() - 1); const int numIndices = numSegments * 6; // six vertices per line segment geom->allocate(numIndices); MapPolylineNodeOpenGLExtruded::MapPolylineEntry *vertices = static_cast(geom->vertexData()); for (int i = 0; i < numSegments; ++i) { MapPolylineNodeOpenGLExtruded::MapPolylineEntry e; const QDeclarativeGeoMapItemUtils::vec2 &cur = v[i]; const QDeclarativeGeoMapItemUtils::vec2 &next = v[i+1]; e.triangletype = 1.0; e.next = next; e.prev = cur; e.pos = cur; e.direction = 1.0; e.vertextype = -1.0; vertices[i*6] = e; e.direction = -1.0; vertices[i*6+1] = e; e.pos = next; e.vertextype = 1.0; vertices[i*6+2] = e; // Second tri e.triangletype = -1.0; e.direction = -1.0; vertices[i*6+3] = e; e.direction = 1.0; vertices[i*6+4] = e; e.pos = cur; e.vertextype = -1.0; vertices[i*6+5] = e; if (i != 0) { vertices[i*6].prev = vertices[i*6+1].prev = vertices[i*6+5].prev = v[i-1]; } else { if (closed) { vertices[i*6].prev = vertices[i*6+1].prev = vertices[i*6+5].prev = v[numSegments - 1]; } else { vertices[i*6].triangletype = vertices[i*6+1].triangletype = vertices[i*6+5].triangletype = 2.0; } } if (i != numSegments - 1) { vertices[i*6+2].next = vertices[i*6+3].next = vertices[i*6+4].next = v[i+2]; } else { if (closed) { vertices[i*6+2].next = vertices[i*6+3].next = vertices[i*6+4].next = v[1]; } else { vertices[i*6+2].triangletype = vertices[i*6+3].triangletype = vertices[i*6+4].triangletype = 3.0; } } } return true; } void QGeoMapPolylineGeometryOpenGL::allocateAndFillLineStrip(QSGGeometry *geom, int lod) const { // Select LOD. Generate if not present. Assign it to m_screenVertices; Q_UNUSED(lod); const QList &vx = *m_screenVertices; geom->allocate(vx.size()); QSGGeometry::Point2D *pts = geom->vertexDataAsPoint2D(); for (int i = 0; i < vx.size(); ++i) pts[i].set(vx[i].x, vx[i].y); } void MapPolylineNodeOpenGLExtruded::update(const QColor &fillColor, const float lineWidth, const QGeoMapPolylineGeometryOpenGL *shape, const QMatrix4x4 geoProjection, const QDoubleVector3D center, const Qt::PenCapStyle capStyle, bool closed, unsigned int zoom) { // shape->size() == number of triangles if (shape->m_screenVertices->size() < 2 || lineWidth < 0.5 || fillColor.alpha() == 0) { // number of points setSubtreeBlocked(true); return; } else { setSubtreeBlocked(false); } QSGGeometry *fill = QSGGeometryNode::geometry(); if (shape->m_dataChanged || !shape->isLODActive(zoom) || !fill->vertexCount()) { // fill->vertexCount for when node gets destroyed by MapItemBase bcoz of opacity, then recreated. if (shape->allocateAndFillEntries(fill, closed, zoom)) { markDirty(DirtyGeometry); shape->m_dataChanged = false; } } // Update this // if (fillColor != fill_material_.color()) { fill_material_.setWrapOffset(shape->m_wrapOffset - 1); fill_material_.setColor(fillColor); fill_material_.setGeoProjection(geoProjection); fill_material_.setCenter(center); fill_material_.setLineWidth(lineWidth); fill_material_.setMiter(capStyle != Qt::FlatCap); setMaterial(&fill_material_); markDirty(DirtyMaterial); } } MapPolylineShaderExtruded::MapPolylineShaderExtruded() : QSGMaterialShader(*new QSGMaterialShaderPrivate) { } void MapPolylineShaderExtruded::updateState(const QSGMaterialShader::RenderState &state, QSGMaterial *newEffect, QSGMaterial *oldEffect) { Q_ASSERT(oldEffect == nullptr || newEffect->type() == oldEffect->type()); MapPolylineMaterialExtruded *oldMaterial = static_cast(oldEffect); MapPolylineMaterialExtruded *newMaterial = static_cast(newEffect); const QColor &c = newMaterial->color(); const QMatrix4x4 &geoProjection = newMaterial->geoProjection(); const QDoubleVector3D ¢er = newMaterial->center(); QVector3D vecCenter, vecCenter_lowpart; for (int i = 0; i < 3; i++) QLocationUtils::split_double(center.get(i), &vecCenter[i], &vecCenter_lowpart[i]); if (oldMaterial == nullptr || c != oldMaterial->color() || state.isOpacityDirty()) { float opacity = state.opacity() * c.alphaF(); QVector4D v(c.redF() * opacity, c.greenF() * opacity, c.blueF() * opacity, opacity); program()->setUniformValue(m_color_id, v); } if (state.isMatrixDirty()) { program()->setUniformValue(m_matrix_id, state.projectionMatrix()); } // ToDo: dirty-flag all this program()->setUniformValue(m_mapProjection_id, geoProjection); program()->setUniformValue(m_center_id, vecCenter); program()->setUniformValue(m_center_lowpart_id, vecCenter_lowpart); program()->setUniformValue(m_miter_id, newMaterial->miter()); program()->setUniformValue(m_lineWidth_id, newMaterial->lineWidth()); program()->setUniformValue(m_wrapOffset_id, float(newMaterial->wrapOffset())); const QRectF viewportRect = state.viewportRect(); const float aspect = float(viewportRect.width() / viewportRect.height()); program()->setUniformValue(m_aspect_id, aspect); } const char * const *MapPolylineShaderExtruded::attributeNames() const { return MapPolylineNodeOpenGLExtruded::MapPolylineEntry::attributeNames(); } QSGMaterialShader *MapPolylineMaterialExtruded::createShader() const { return new MapPolylineShaderExtruded(); } QSGMaterialType *MapPolylineMaterialExtruded::type() const { static QSGMaterialType type; return &type; } int MapPolylineMaterialExtruded::compare(const QSGMaterial *other) const { const MapPolylineMaterialExtruded &o = *static_cast(other); if (o.m_miter == m_miter) return MapPolylineMaterial::compare(other); return -1; } const char *MapPolylineShaderExtruded::vertexShaderMiteredSegments() const { return "attribute highp vec4 vertex;\n" "attribute highp vec4 previous;\n" "attribute highp vec4 next;\n" "attribute lowp float direction;\n" "attribute lowp float triangletype;\n" "attribute lowp float vertextype;\n" // -1.0 if it is the "left" end of the segment, 1.0 if it is the "right" end. "\n" "uniform highp mat4 qt_Matrix;\n" "uniform highp mat4 mapProjection;\n" "uniform highp vec3 center;\n" "uniform highp vec3 center_lowpart;\n" "uniform lowp float lineWidth;\n" "uniform lowp float aspect;\n" "uniform lowp int miter;\n" // currently unused "uniform lowp vec4 color;\n" "uniform lowp float wrapOffset;\n" "\n" "varying vec4 primitivecolor;\n" "\n" " \n" "vec4 wrapped(in vec4 v) { return vec4(v.x + wrapOffset, v.y, 0.0, 1.0); }\n" "void main() {\n" // ln 22 " primitivecolor = color;\n" " vec2 aspectVec = vec2(aspect, 1.0);\n" " mat4 projViewModel = qt_Matrix * mapProjection;\n" " vec4 cur = wrapped(vertex) - vec4(center, 0.0);\n" " cur = cur - vec4(center_lowpart, 0.0);\n" " vec4 prev = wrapped(previous) - vec4(center, 0.0);\n" " prev = prev - vec4(center_lowpart, 0.0);\n" " vec4 nex = wrapped(next) - vec4(center, 0.0);\n" " nex = nex - vec4(center_lowpart, 0.0);\n" "\n" " vec4 centerProjected = projViewModel * vec4(center, 1.0);\n" " vec4 previousProjected = projViewModel * prev;\n" " vec4 currentProjected = projViewModel * cur;\n" " vec4 nextProjected = projViewModel * nex;\n" "\n" " //get 2D screen space with W divide and aspect correction\n" " vec2 currentScreen = (currentProjected.xy / currentProjected.w) * aspectVec;\n" " vec2 previousScreen = (previousProjected.xy / previousProjected.w) * aspectVec;\n" " vec2 nextScreen = (nextProjected.xy / nextProjected.w) * aspectVec;\n" " float len = (lineWidth);\n" " float orientation = direction;\n" " bool clipped = false;\n" " bool otherEndBelowFrustum = false;\n" " //starting point uses (next - current)\n" " vec2 dir = vec2(0.0);\n" " if (vertextype < 0.0) {\n" " dir = normalize(nextScreen - currentScreen);\n" " if (nextProjected.z < 0.0) dir = -dir;\n" " } else { \n" " dir = normalize(currentScreen - previousScreen);\n" " if (previousProjected.z < 0.0) dir = -dir;\n" " }\n" // first, clip current, and make sure currentProjected.z is > 0 " if (currentProjected.z < 0.0) {\n" " if ((nextProjected.z > 0.0 && vertextype < 0.0) || (vertextype > 0.0 && previousProjected.z > 0.0)) {\n" " dir = -dir;\n" " clipped = true;\n" " if (vertextype < 0.0 && nextProjected.y / nextProjected.w < -1.0) otherEndBelowFrustum = true;\n" " else if (vertextype > 0.0 && previousProjected.y / previousProjected.w < -1.0) otherEndBelowFrustum = true;\n" " } else {\n" " primitivecolor = vec4(0.0,0.0,0.0,0.0);\n" " gl_Position = vec4(-10000000.0, -1000000000.0, -1000000000.0, 1);\n" // get the vertex out of the way if the segment is fully invisible " return;\n" " }\n" " } else if (triangletype < 2.0) {\n" // vertex in the view, try to miter " //get directions from (C - B) and (B - A)\n" " vec2 dirA = normalize((currentScreen - previousScreen));\n" " if (previousProjected.z < 0.0) dirA = -dirA;\n" " vec2 dirB = normalize((nextScreen - currentScreen));\n" " //now compute the miter join normal and length\n" " if (nextProjected.z < 0.0) dirB = -dirB;\n" " vec2 tangent = normalize(dirA + dirB);\n" " vec2 perp = vec2(-dirA.y, dirA.x);\n" " vec2 vmiter = vec2(-tangent.y, tangent.x);\n" " len = lineWidth / dot(vmiter, perp);\n" // The following is an attempt to have a segment-length based miter threshold. // A mediocre workaround until better mitering will be added. " float lenTreshold = clamp( min(length((currentProjected.xy - previousProjected.xy) / aspectVec)," " length((nextProjected.xy - currentProjected.xy) / aspectVec)), 3.0, 6.0 ) * 0.5;\n" " if (len < lineWidth * lenTreshold && len > -lineWidth * lenTreshold \n" " ) {\n" " dir = tangent;\n" " } else {\n" " len = lineWidth;\n" " }\n" " }\n" " vec4 offset;\n" " if (!clipped) {\n" " vec2 normal = normalize(vec2(-dir.y, dir.x));\n" " normal *= len;\n" // fracZL apparently was needed before the (-2.0 / qt_Matrix[1][1]) factor was introduced " normal /= aspectVec;\n" // straighten the normal up again " float scaleFactor = currentProjected.w / centerProjected.w;\n" " offset = vec4(normal * orientation * scaleFactor * (centerProjected.w / (-2.0 / qt_Matrix[1][1])), 0.0, 0.0);\n" // ToDo: figure out why (-2.0 / qt_Matrix[1][1]), that is empirically what works " gl_Position = currentProjected + offset;\n" " } else {\n" " if (otherEndBelowFrustum) offset = vec4((dir * 1.0) / aspectVec, 0.0, 0.0);\n" // the if is necessary otherwise it seems the direction vector still flips in some obscure cases. " else offset = vec4((dir * 500000000000.0) / aspectVec, 0.0, 0.0);\n" // Hack alert: just 1 triangle, long enough to look like a rectangle. " if (vertextype < 0.0) gl_Position = nextProjected - offset; else gl_Position = previousProjected + offset;\n" " }\n" "}\n"; } QList QGeoMapItemLODGeometry::getSimplified( QList &wrappedPath, // reference as it gets copied in the nested call double leftBoundWrapped, unsigned int zoom) { // Try a simplify step QList data; for (auto e: wrappedPath) data << e.toDoubleVector2D(); const QList simplified = QGeoSimplify::geoSimplifyZL(data, leftBoundWrapped, zoom); data.clear(); QList simple; for (auto e: simplified) simple << e; return simple; } bool QGeoMapItemLODGeometry::isLODActive(unsigned int lod) const { return m_screenVertices == m_verticesLOD[zoomToLOD(lod)].data(); } class PolylineSimplifyTask : public QRunnable { public: PolylineSimplifyTask(const QSharedPointer> &input, // reference as it gets copied in the nested call const QSharedPointer> &output, double leftBound, unsigned int zoom, QSharedPointer &working) : m_zoom(zoom), m_leftBound(leftBound), m_input(input), m_output(output), m_working(working) { Q_ASSERT(!input.isNull()); Q_ASSERT(!output.isNull()); } ~PolylineSimplifyTask() override; void run() override { // Skip sending notifications for now. Updated data will be picked up eventually. // ToDo: figure out how to connect a signal from here to a slot in the item. *m_working = QGeoMapPolylineGeometryOpenGL::zoomToLOD(m_zoom); const QList res = QGeoMapPolylineGeometryOpenGL::getSimplified( *m_input, m_leftBound, QGeoMapPolylineGeometryOpenGL::zoomForLOD(m_zoom)); *m_output = res; *m_working = 0; } unsigned int m_zoom; double m_leftBound; QSharedPointer> m_input, m_output; QSharedPointer m_working; }; void QGeoMapItemLODGeometry::enqueueSimplificationTask( const QSharedPointer> &input, const QSharedPointer> &output, double leftBound, unsigned int zoom, QSharedPointer &working) { Q_ASSERT(!input.isNull()); Q_ASSERT(!output.isNull()); PolylineSimplifyTask *task = new PolylineSimplifyTask(input, output, leftBound, zoom, working); threadPool->start(task); } PolylineSimplifyTask::~PolylineSimplifyTask() {} void QGeoMapItemLODGeometry::selectLOD(unsigned int zoom, double leftBound, bool /* closed */) // closed to tell if this is a polygon or a polyline. { unsigned int requestedLod = zoomToLOD(zoom); if (!m_verticesLOD[requestedLod].isNull()) { m_screenVertices = m_verticesLOD[requestedLod].data(); } else if (!m_verticesLOD.at(0)->isEmpty()) { // if here, zoomToLOD != 0 and no current working task. // So select the last filled LOD != m_working (lower-bounded by 1, // guaranteed to exist), and enqueue the right one m_verticesLOD[requestedLod] = QSharedPointer>( new QList); for (unsigned int i = requestedLod - 1; i >= 1; i--) { if (*m_working != i && !m_verticesLOD[i].isNull()) { m_screenVertices = m_verticesLOD[i].data(); break; } else if (i == 1) { // get 1 synchronously if not computed already m_verticesLOD[1] = QSharedPointer>( new QList); *m_verticesLOD[1] = getSimplified( *m_verticesLOD[0], leftBound, zoomForLOD(0)); if (requestedLod == 1) return; } } enqueueSimplificationTask( m_verticesLOD.at(0), m_verticesLOD[requestedLod], leftBound, zoom, m_working); } } void QGeoMapItemLODGeometry::selectLODOnDataChanged(unsigned int zoom, double leftBound) const { unsigned int lod = zoomToLOD(zoom); if (lod > 0) { // Generate ZL 1 as fallback for all cases != 0. Do not do if 0 is requested // (= old behavior, LOD disabled) m_verticesLOD[1] = QSharedPointer>( new QList); *m_verticesLOD[1] = getSimplified( *m_verticesLOD[0], leftBound, zoomForLOD(0)); } if (lod > 1) { if (!m_verticesLOD[lod]) m_verticesLOD[lod] = QSharedPointer>( new QList); enqueueSimplificationTask( m_verticesLOD.at(0), m_verticesLOD[lod], leftBound, zoom, m_working); } m_screenVertices = m_verticesLOD[qMin(lod, 1)].data(); // return only 0,1 synchronously } unsigned int QGeoMapItemLODGeometry::zoomToLOD(unsigned int zoom) { unsigned int res; if (zoom > 20) res = 0; else res = qBound(3, zoom, 20) / 3; // bound LOD'ing between ZL 3 and 20. Every 3 ZoomLevels return res; } unsigned int QGeoMapItemLODGeometry::zoomForLOD(unsigned int zoom) { unsigned int res = (qBound(3, zoom, 20) / 3) * 3; if (zoom < 6) return res; return res + 1; // give more resolution when closing in } QT_END_NAMESPACE