/************************************************************************ ** ** @file vcontour.cpp ** @author Roman Telezhynskyi ** @date 21 1, 2015 ** ** @brief ** @copyright ** This source code is part of the Valentina project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2013-2015 Valentina project ** All Rights Reserved. ** ** Valentina is free software: you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation, either version 3 of the License, or ** (at your option) any later version. ** ** Valentina is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with Valentina. If not, see . ** *************************************************************************/ #include "vcontour.h" #include #include #include #include #include #include #include #include "vcontour_p.h" #include "vlayoutpiece.h" #include "../vmisc/vmath.h" namespace { //--------------------------------------------------------------------------------------------------------------------- void AppendToContour(QVector &contour, QPointF point) { if (not contour.isEmpty()) { if (not VFuzzyComparePoints(contour.last(), point)) { contour.append(point); } } else { contour.append(point); } } } //--------------------------------------------------------------------------------------------------------------------- VContour::VContour() :d(new VContourData()) {} //--------------------------------------------------------------------------------------------------------------------- VContour::VContour(int height, int width, qreal layoutWidth) :d(new VContourData(height, width, layoutWidth)) {} //--------------------------------------------------------------------------------------------------------------------- VContour::VContour(const VContour &contour) :d (contour.d) {} //--------------------------------------------------------------------------------------------------------------------- VContour &VContour::operator=(const VContour &contour) { if ( &contour == this ) { return *this; } d = contour.d; return *this; } //--------------------------------------------------------------------------------------------------------------------- VContour::~VContour() {} //--------------------------------------------------------------------------------------------------------------------- void VContour::CeateEmptySheetContour() { if (d->globalContour.isEmpty()) { d->globalContour = CutEmptySheetEdge(); d->globalContour.append(d->globalContour.first()); // Close path } } //--------------------------------------------------------------------------------------------------------------------- void VContour::SetContour(const QVector &contour) { d->globalContour = contour; } //--------------------------------------------------------------------------------------------------------------------- QVector VContour::GetContour() const { return d->globalContour; } //--------------------------------------------------------------------------------------------------------------------- quint32 VContour::GetShift() const { return d->shift; } //--------------------------------------------------------------------------------------------------------------------- void VContour::SetShift(quint32 shift) { d->shift = shift; } //--------------------------------------------------------------------------------------------------------------------- int VContour::GetHeight() const { return d->paperHeight; } //--------------------------------------------------------------------------------------------------------------------- void VContour::SetHeight(int height) { d->paperHeight = height; } //--------------------------------------------------------------------------------------------------------------------- int VContour::GetWidth() const { return d->paperWidth; } //--------------------------------------------------------------------------------------------------------------------- void VContour::SetWidth(int width) { d->paperWidth = width; } //--------------------------------------------------------------------------------------------------------------------- QSizeF VContour::GetSize() const { return QSizeF(d->paperWidth, d->paperHeight); } //--------------------------------------------------------------------------------------------------------------------- QVector VContour::UniteWithContour(const VLayoutPiece &detail, int globalI, int detJ, BestFrom type) const { QVector newContour; if (d->globalContour.isEmpty()) //-V807 { AppendWhole(newContour, detail, 0); } else { if (globalI <= 0 || globalI > GlobalEdgesCount()) { return QVector(); } if (detJ <= 0 || detJ > detail.LayoutEdgesCount()) { return QVector(); } const int i2 = globalI == d->globalContour.count() ? 0 : globalI; int i=0; while (i < d->globalContour.count()) { if (i == i2) { if (type == BestFrom::Rotation) { AppendWhole(newContour, detail, detJ); } else { InsertDetail(newContour, detail, detJ); } } AppendToContour(newContour, d->globalContour.at(i)); ++i; } } return newContour; } //--------------------------------------------------------------------------------------------------------------------- int VContour::GlobalEdgesCount() const { int count = 0; if (not d->globalContour.isEmpty()) { count = d->globalContour.count(); } else { const qreal shift = d->shift == 0 ? ToPixel(0.5, Unit::Cm) : d->shift; count = qFloor(EmptySheetEdge().length()/shift); } return count; } //--------------------------------------------------------------------------------------------------------------------- QLineF VContour::GlobalEdge(int i) const { QLineF edge; if (d->globalContour.isEmpty()) //-V807 { // Because sheet is blank we have one global edge for all cases. if (i < 1 || i > GlobalEdgesCount()) { // Doesn't exist such edge return EmptySheetEdge(); } const qreal nShift = EmptySheetEdge().length()/GlobalEdgesCount(); edge = IsPortrait() ? QLineF(nShift*(i-1), 0, nShift*i, 0) : QLineF(0, nShift*(i-1), 0, nShift*i); } else { if (i < 1 || i > GlobalEdgesCount()) { // Doesn't exist such edge return QLineF(); } if (i < GlobalEdgesCount()) { edge = QLineF(d->globalContour.at(i-1), d->globalContour.at(i)); } else { // Closed countour edge = QLineF(d->globalContour.at(GlobalEdgesCount()-1), d->globalContour.at(0)); } } return edge; } //--------------------------------------------------------------------------------------------------------------------- QVector VContour::CutEdge(const QLineF &edge) const { QVector points; if (d->shift == 0) { points.append(edge.p1()); points.append(edge.p2()); } else { const int n = qFloor(edge.length()/d->shift); if (n <= 0) { points.append(edge.p1()); points.append(edge.p2()); } else { const qreal nShift = edge.length()/n; for (int i = 1; i <= n+1; ++i) { QLineF l1 = edge; l1.setLength(nShift*(i-1)); points.append(l1.p2()); } } } return points; } //--------------------------------------------------------------------------------------------------------------------- QVector VContour::CutEmptySheetEdge() const { QVector points; const qreal nShift = EmptySheetEdge().length()/GlobalEdgesCount(); for (int i = 1; i <= GlobalEdgesCount()+1; ++i) { QLineF l1 = EmptySheetEdge(); l1.setLength(nShift*(i-1)); points.append(l1.p2()); } return points; } //--------------------------------------------------------------------------------------------------------------------- const QPointF &VContour::at(int i) const { return d->globalContour.at(i); } //--------------------------------------------------------------------------------------------------------------------- QRectF VContour::BoundingRect() const { QVector points = GetContour(); if (points.isEmpty()) { return QRectF(); } points.append(points.first()); return QPolygonF(points).boundingRect(); } //--------------------------------------------------------------------------------------------------------------------- QPainterPath VContour::ContourPath() const { QPainterPath path; path.setFillRule(Qt::WindingFill); const QVector points = GetContour(); path.moveTo(points.at(0)); for (qint32 i = 1; i < points.count(); ++i) { path.lineTo(points.at(i)); } path.lineTo(points.at(0)); return path; } //--------------------------------------------------------------------------------------------------------------------- void VContour::AppendWhole(QVector &contour, const VLayoutPiece &detail, int detJ) const { int processedEdges = 0; const int nD = detail.LayoutEdgesCount(); int j = detJ+1; do { if (j > nD) { j=1; } const QVector points = CutEdge(detail.LayoutEdge(j)); for (int i = 0; i < points.size()-1; ++i) { contour.append(points.at(i)); } ++processedEdges; ++j; }while (processedEdges < nD); } //--------------------------------------------------------------------------------------------------------------------- void VContour::InsertDetail(QVector &contour, const VLayoutPiece &detail, int detJ) const { int processedEdges = 0; const int nD = detail.LayoutEdgesCount(); int j = detJ+1; do { if (j > nD) { j=1; } if (j != detJ) { for(auto &point : CutEdge(detail.LayoutEdge(j))) { AppendToContour(contour, point); } } ++processedEdges; ++j; } while (processedEdges <= nD); } //--------------------------------------------------------------------------------------------------------------------- bool VContour::IsPortrait() const { return d->paperHeight >= d->paperWidth; } //--------------------------------------------------------------------------------------------------------------------- QLineF VContour::EmptySheetEdge() const { static const int offset = 2; const int layoutOffset = qCeil(d->layoutWidth + accuracyPointOnLine); return IsPortrait() ? QLineF(offset, -layoutOffset, d->paperWidth-offset, -layoutOffset) : QLineF(-layoutOffset, offset, -layoutOffset, d->paperHeight-offset); }