2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vcontainer.cpp
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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 <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-07-13 12:51:31 +02:00
|
|
|
#include "vcontainer.h"
|
2013-07-17 13:38:11 +02:00
|
|
|
|
2013-11-21 13:05:26 +01:00
|
|
|
#include <QDebug>
|
2013-12-29 17:48:57 +01:00
|
|
|
#include <QtAlgorithms>
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2013-08-15 22:39:00 +02:00
|
|
|
qint64 VContainer::_id = 0;
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer::VContainer()
|
2013-12-29 17:48:57 +01:00
|
|
|
:base(QHash<QString, qint32>()), gObjects(QHash<qint64, VGObject *>()),
|
2013-12-30 19:59:33 +01:00
|
|
|
standartTable(QHash<QString, VStandartTableRow>()), incrementTable(QHash<QString, VIncrementTableRow>()),
|
2013-12-29 17:48:57 +01:00
|
|
|
lengthLines(QHash<QString, qreal>()),lineAngles(QHash<QString, qreal>()), lengthSplines(QHash<QString, qreal>()),
|
2013-12-30 19:59:33 +01:00
|
|
|
lengthArcs(QHash<QString, qreal>()), details(QHash<qint64, VDetail>())
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
SetSize(500);
|
|
|
|
SetGrowth(1760);
|
2013-08-13 18:48:36 +02:00
|
|
|
CreateManTableIGroup ();
|
2013-07-13 12:51:31 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer &VContainer::operator =(const VContainer &data)
|
|
|
|
{
|
2013-08-15 22:39:00 +02:00
|
|
|
setData(data);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer::VContainer(const VContainer &data)
|
2013-12-29 17:48:57 +01:00
|
|
|
:base(QHash<QString, qint32>()), gObjects(QHash<qint64, VGObject *>()),
|
2013-12-30 19:59:33 +01:00
|
|
|
standartTable(QHash<QString, VStandartTableRow>()), incrementTable(QHash<QString, VIncrementTableRow>()),
|
2013-12-29 17:48:57 +01:00
|
|
|
lengthLines(QHash<QString, qreal>()), lineAngles(QHash<QString, qreal>()), lengthSplines(QHash<QString, qreal>()),
|
2013-12-30 19:59:33 +01:00
|
|
|
lengthArcs(QHash<QString, qreal>()), details(QHash<qint64, VDetail>())
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-29 12:31:50 +02:00
|
|
|
setData(data);
|
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
VContainer::~VContainer()
|
|
|
|
{
|
|
|
|
qDeleteAll(gObjects);
|
|
|
|
gObjects.clear();
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::setData(const VContainer &data)
|
|
|
|
{
|
2013-08-15 22:39:00 +02:00
|
|
|
base = *data.DataBase();
|
2013-12-30 12:28:33 +01:00
|
|
|
|
|
|
|
qDeleteAll(gObjects);
|
|
|
|
gObjects.clear();
|
|
|
|
const QHash<qint64, VGObject*> *obj = data.DataGObjects();
|
|
|
|
Q_ASSERT(obj != 0);
|
|
|
|
QHashIterator<qint64, VGObject*> i(*obj);
|
|
|
|
while (i.hasNext())
|
|
|
|
{
|
|
|
|
i.next();
|
|
|
|
switch(i.value()->getType())
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
case(GObject::Arc):
|
|
|
|
{
|
2013-12-30 12:28:33 +01:00
|
|
|
VArc *arc = new VArc(*data.GeometricObject<const VArc *>(i.key()));
|
|
|
|
Q_ASSERT(arc != 0);
|
2013-12-30 19:59:33 +01:00
|
|
|
UpdateGObject(i.key(), arc);
|
2013-12-30 12:28:33 +01:00
|
|
|
break;
|
2013-12-30 19:59:33 +01:00
|
|
|
}
|
|
|
|
case(GObject::Point):
|
|
|
|
{
|
2013-12-30 12:28:33 +01:00
|
|
|
VPointF *point = new VPointF(*data.GeometricObject<const VPointF *>(i.key()));
|
|
|
|
Q_ASSERT(point != 0);
|
2013-12-30 19:59:33 +01:00
|
|
|
UpdateGObject(i.key(), point);
|
2013-12-30 12:28:33 +01:00
|
|
|
break;
|
2013-12-30 19:59:33 +01:00
|
|
|
}
|
|
|
|
case(GObject::Spline):
|
|
|
|
{
|
2013-12-30 12:28:33 +01:00
|
|
|
VSpline *spl = new VSpline(*data.GeometricObject<const VSpline *>(i.key()));
|
|
|
|
Q_ASSERT(spl != 0);
|
2013-12-30 19:59:33 +01:00
|
|
|
UpdateGObject(i.key(), spl);
|
2013-12-30 12:28:33 +01:00
|
|
|
break;
|
2013-12-30 19:59:33 +01:00
|
|
|
}
|
|
|
|
case(GObject::SplinePath):
|
|
|
|
{
|
2013-12-30 12:28:33 +01:00
|
|
|
VSplinePath *path = new VSplinePath(*data.GeometricObject<const VSplinePath *>(i.key()));
|
|
|
|
Q_ASSERT(path != 0);
|
2013-12-30 19:59:33 +01:00
|
|
|
UpdateGObject(i.key(), path);
|
2013-12-30 12:28:33 +01:00
|
|
|
break;
|
2013-12-30 19:59:33 +01:00
|
|
|
}
|
2013-12-30 12:28:33 +01:00
|
|
|
}
|
|
|
|
}
|
2013-08-15 22:39:00 +02:00
|
|
|
standartTable = *data.DataStandartTable();
|
|
|
|
incrementTable = *data.DataIncrementTable();
|
|
|
|
lengthLines = *data.DataLengthLines();
|
2013-10-09 20:11:25 +02:00
|
|
|
lineAngles = *data.DataLineAngles();
|
2013-08-15 22:39:00 +02:00
|
|
|
lengthSplines = *data.DataLengthSplines();
|
|
|
|
lengthArcs = *data.DataLengthArcs();
|
2013-08-28 10:55:11 +02:00
|
|
|
details = *data.DataDetails();
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
const VGObject *VContainer::GetGObject(qint64 id)const
|
2013-11-15 18:38:29 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetObject(gObjects, id);
|
2013-11-15 18:38:29 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
template <typename key, typename val>
|
2013-12-30 12:28:33 +01:00
|
|
|
const val VContainer::GetObject(const QHash<key, val> &obj, key id) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (obj.contains(id))
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
return obj.value(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-23 14:08:06 +02:00
|
|
|
throw VExceptionBadId(tr("Can't find object"), id);
|
2013-07-13 12:51:31 +02:00
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
template <typename key, typename val>
|
|
|
|
val VContainer::GetVariable(const QHash<key, val> &obj, key id) const
|
|
|
|
{
|
|
|
|
if (obj.contains(id))
|
|
|
|
{
|
|
|
|
return obj.value(id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw VExceptionBadId(tr("Can't find object"), id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
const VStandartTableRow VContainer::GetStandartTableCell(const QString &name) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-30 19:59:33 +01:00
|
|
|
return GetVariable(standartTable, name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
const VIncrementTableRow VContainer::GetIncrementTableRow(const QString& name) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-30 19:59:33 +01:00
|
|
|
return GetVariable(incrementTable, name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLine(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetVariable(lengthLines, name);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLengthArc(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetVariable(lengthArcs, name);
|
2013-10-13 17:31:42 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLengthSpline(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetVariable(lengthSplines, name);
|
2013-10-13 17:31:42 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLineAngle(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetVariable(lineAngles, name);
|
2013-11-15 18:38:29 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
const VDetail VContainer::GetDetail(qint64 id) const
|
2013-11-15 18:38:29 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
return GetVariable(details, id);
|
2013-11-15 18:38:29 +01:00
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
qint64 VContainer::AddGObject(VGObject *obj)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
return AddObject(gObjects, obj);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
qint64 VContainer::AddDetail(VDetail detail)
|
|
|
|
{
|
|
|
|
qint64 id = getNextId();
|
|
|
|
details[id] = detail;
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VContainer::AddIncrementTableRow(const QString &name, VIncrementTableRow row)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
incrementTable[name] = row;
|
2013-07-13 12:51:31 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qint64 VContainer::getNextId()
|
|
|
|
{
|
2013-09-12 16:18:31 +02:00
|
|
|
_id++;
|
2013-07-13 12:51:31 +02:00
|
|
|
return _id;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::UpdateId(qint64 newId)
|
|
|
|
{
|
|
|
|
if (newId > _id)
|
|
|
|
{
|
2013-09-12 16:18:31 +02:00
|
|
|
_id = newId;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QPainterPath VContainer::ContourPath(qint64 idDetail) const
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
VDetail detail = GetDetail(idDetail);
|
2013-08-29 12:31:50 +02:00
|
|
|
QVector<QPointF> points;
|
2013-10-25 13:10:45 +02:00
|
|
|
QVector<QPointF> pointsEkv;
|
2013-12-30 19:59:33 +01:00
|
|
|
for (ptrdiff_t i = 0; i< detail.CountNode(); ++i)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
switch (detail.at(i).getTypeTool())
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
case (Tool::NodePoint):
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
const VPointF *point = GeometricObject<const VPointF*>(detail.at(i).getId());
|
2013-12-29 17:48:57 +01:00
|
|
|
points.append(point->toQPointF());
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getSupplement() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
QPointF pEkv = point->toQPointF();
|
2013-12-30 19:59:33 +01:00
|
|
|
pEkv.setX(pEkv.x()+detail.at(i).getMx());
|
|
|
|
pEkv.setY(pEkv.y()+detail.at(i).getMy());
|
2013-11-04 21:35:15 +01:00
|
|
|
pointsEkv.append(pEkv);
|
|
|
|
}
|
2013-10-25 13:10:45 +02:00
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
break;
|
2013-11-04 21:35:15 +01:00
|
|
|
case (Tool::NodeArc):
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
const VArc *arc = GeometricObject<const VArc *>(detail.at(i).getId());
|
2013-12-29 17:48:57 +01:00
|
|
|
qreal len1 = GetLengthContour(points, arc->GetPoints());
|
|
|
|
qreal lenReverse = GetLengthContour(points, GetReversePoint(arc->GetPoints()));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (len1 <= lenReverse)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
points << arc->GetPoints();
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getSupplement() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
pointsEkv << biasPoints(arc->GetPoints(), detail.at(i).getMx(), detail.at(i).getMy());
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
2013-10-25 13:10:45 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
points << GetReversePoint(arc->GetPoints());
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getSupplement() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
pointsEkv << biasPoints(GetReversePoint(arc->GetPoints()), detail.at(i).getMx(),
|
|
|
|
detail.at(i).getMy());
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
2013-10-25 13:10:45 +02:00
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
break;
|
2013-11-04 21:35:15 +01:00
|
|
|
case (Tool::NodeSpline):
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
const VSpline *spline = GeometricObject<const VSpline *>(detail.at(i).getId());
|
2013-12-29 17:48:57 +01:00
|
|
|
qreal len1 = GetLengthContour(points, spline->GetPoints());
|
|
|
|
qreal lenReverse = GetLengthContour(points, GetReversePoint(spline->GetPoints()));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (len1 <= lenReverse)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
points << spline->GetPoints();
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getSupplement() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
pointsEkv << biasPoints(spline->GetPoints(), detail.at(i).getMx(), detail.at(i).getMy());
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
2013-10-25 13:10:45 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
points << GetReversePoint(spline->GetPoints());
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getSupplement() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
pointsEkv << biasPoints(GetReversePoint(spline->GetPoints()), detail.at(i).getMx(),
|
|
|
|
detail.at(i).getMy());
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
2013-10-25 13:10:45 +02:00
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
break;
|
2013-11-04 21:35:15 +01:00
|
|
|
case (Tool::NodeSplinePath):
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
const VSplinePath *splinePath = GeometricObject<const VSplinePath *>(detail.at(i).getId());
|
2013-12-29 17:48:57 +01:00
|
|
|
qreal len1 = GetLengthContour(points, splinePath->GetPathPoints());
|
|
|
|
qreal lenReverse = GetLengthContour(points, GetReversePoint(splinePath->GetPathPoints()));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (len1 <= lenReverse)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
points << splinePath->GetPathPoints();
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getSupplement() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
pointsEkv << biasPoints(splinePath->GetPathPoints(), detail.at(i).getMx(), detail.at(i).getMy());
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
2013-10-25 13:10:45 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
points << GetReversePoint(splinePath->GetPathPoints());
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getSupplement() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
pointsEkv << biasPoints(GetReversePoint(splinePath->GetPathPoints()), detail.at(i).getMx(),
|
|
|
|
detail.at(i).getMy());
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
2013-10-25 13:10:45 +02:00
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2013-09-12 16:18:31 +02:00
|
|
|
break;
|
2013-11-04 21:35:15 +01:00
|
|
|
default:
|
2013-12-30 19:59:33 +01:00
|
|
|
qWarning()<<"Get wrong tool type. Ignore."<<detail.at(i).getTypeTool();
|
2013-11-04 21:35:15 +01:00
|
|
|
break;
|
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
}
|
2013-10-25 13:10:45 +02:00
|
|
|
|
2013-08-29 12:31:50 +02:00
|
|
|
QPainterPath path;
|
|
|
|
path.moveTo(points[0]);
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 1; i < points.count(); ++i)
|
|
|
|
{
|
2013-08-29 12:31:50 +02:00
|
|
|
path.lineTo(points[i]);
|
|
|
|
}
|
|
|
|
path.lineTo(points[0]);
|
2013-10-25 13:10:45 +02:00
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getSupplement() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-25 13:10:45 +02:00
|
|
|
QPainterPath ekv;
|
2013-12-30 19:59:33 +01:00
|
|
|
if (detail.getClosed() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
ekv = Equidistant(pointsEkv, Detail::CloseEquidistant, toPixel(detail.getWidth()));
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
ekv = Equidistant(pointsEkv, Detail::OpenEquidistant, toPixel(detail.getWidth()));
|
2013-10-25 13:10:45 +02:00
|
|
|
}
|
|
|
|
path.addPath(ekv);
|
|
|
|
path.setFillRule(Qt::WindingFill);
|
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QVector<QPointF> VContainer::biasPoints(const QVector<QPointF> &points, const qreal &mx, const qreal &my) const
|
|
|
|
{
|
2013-10-25 13:10:45 +02:00
|
|
|
QVector<QPointF> p;
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 0; i < points.size(); ++i)
|
|
|
|
{
|
2013-10-25 13:10:45 +02:00
|
|
|
QPointF point = points.at(i);
|
|
|
|
point.setX(point.x() + mx);
|
2013-11-04 21:35:15 +01:00
|
|
|
point.setY(point.y() + my);
|
2013-10-25 13:10:45 +02:00
|
|
|
p.append(point);
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QPainterPath VContainer::Equidistant(QVector<QPointF> points, const Detail::Equidistant &eqv, const qreal &width) const
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
QPainterPath ekv;
|
|
|
|
QVector<QPointF> ekvPoints;
|
2013-11-04 21:35:15 +01:00
|
|
|
if ( points.size() < 3 )
|
|
|
|
{
|
2013-12-19 11:42:00 +01:00
|
|
|
qDebug()<<"Not enough points for building the equidistant.\n";
|
2013-09-11 16:14:21 +02:00
|
|
|
return ekv;
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 0; i < points.size(); ++i )
|
|
|
|
{
|
|
|
|
if (i != points.size()-1)
|
|
|
|
{
|
|
|
|
if (points[i] == points[i+1])
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
points.remove(i+1);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (points[i] == points[0])
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
points.remove(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (eqv == Detail::CloseEquidistant)
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
points.append(points.at(0));
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 0; i < points.size(); ++i )
|
|
|
|
{
|
|
|
|
if ( i == 0 && eqv == Detail::CloseEquidistant)
|
2013-12-21 15:21:40 +01:00
|
|
|
{//first point, polyline closed
|
2013-11-04 21:35:15 +01:00
|
|
|
ekvPoints<<EkvPoint(QLineF(points[points.size()-2], points[points.size()-1]), QLineF(points[1], points[0]),
|
|
|
|
width);
|
2013-09-11 16:14:21 +02:00
|
|
|
continue;
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else if (i == 0 && eqv == Detail::OpenEquidistant)
|
2013-12-21 15:21:40 +01:00
|
|
|
{//first point, polyline doesn't closed
|
2013-09-11 16:14:21 +02:00
|
|
|
ekvPoints.append(SingleParallelPoint(QLineF(points[0], points[1]), 90, width));
|
|
|
|
continue;
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (i == points.size()-1 && eqv == Detail::CloseEquidistant)
|
2013-12-21 15:21:40 +01:00
|
|
|
{//last point, polyline closed
|
2013-09-11 16:14:21 +02:00
|
|
|
ekvPoints.append(ekvPoints.at(0));
|
|
|
|
continue;
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else if (i == points.size()-1 && eqv == Detail::OpenEquidistant)
|
2013-12-29 17:48:57 +01:00
|
|
|
{//last point, polyline doesn't closed
|
2013-11-04 21:35:15 +01:00
|
|
|
ekvPoints.append(SingleParallelPoint(QLineF(points[points.size()-1], points[points.size()-2]), -90,
|
|
|
|
width));
|
2013-09-11 16:14:21 +02:00
|
|
|
continue;
|
|
|
|
}
|
2013-12-21 15:21:40 +01:00
|
|
|
//points in the middle of polyline
|
2013-09-11 16:14:21 +02:00
|
|
|
ekvPoints<<EkvPoint(QLineF(points[i-1], points[i]), QLineF(points[i+1], points[i]), width);
|
|
|
|
}
|
2013-09-17 19:11:43 +02:00
|
|
|
ekvPoints = CheckLoops(ekvPoints);
|
2013-09-11 16:14:21 +02:00
|
|
|
ekv.moveTo(ekvPoints[0]);
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 1; i < ekvPoints.count(); ++i)
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
ekv.lineTo(ekvPoints[i]);
|
|
|
|
}
|
|
|
|
return ekv;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QLineF VContainer::ParallelLine(const QLineF &line, qreal width)
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
Q_ASSERT(width > 0);
|
2013-11-04 21:35:15 +01:00
|
|
|
QLineF paralel = QLineF (SingleParallelPoint(line, 90, width), SingleParallelPoint(QLineF(line.p2(), line.p1()),
|
|
|
|
-90, width));
|
2013-09-11 16:14:21 +02:00
|
|
|
return paralel;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QPointF VContainer::SingleParallelPoint(const QLineF &line, const qreal &angle, const qreal &width)
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
Q_ASSERT(width > 0);
|
2013-11-04 21:35:15 +01:00
|
|
|
QLineF pLine = line;
|
|
|
|
pLine.setAngle( pLine.angle() + angle );
|
|
|
|
pLine.setLength( width );
|
|
|
|
return pLine.p2();
|
2013-09-11 16:14:21 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QVector<QPointF> VContainer::EkvPoint(const QLineF &line1, const QLineF &line2, const qreal &width) const
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
Q_ASSERT(width > 0);
|
|
|
|
QVector<QPointF> points;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (line1.p2() != line2.p2())
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
qWarning()<<"Last point of two lines must be equal.";
|
|
|
|
}
|
|
|
|
QPointF CrosPoint;
|
|
|
|
QLineF bigLine1 = ParallelLine(line1, width );
|
|
|
|
QLineF bigLine2 = ParallelLine(QLineF(line2.p2(), line2.p1()), width );
|
|
|
|
QLineF::IntersectType type = bigLine1.intersect( bigLine2, &CrosPoint );
|
2013-11-04 21:35:15 +01:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case (QLineF::BoundedIntersection):
|
2013-09-11 16:14:21 +02:00
|
|
|
points.append(CrosPoint);
|
|
|
|
return points;
|
2013-11-04 21:35:15 +01:00
|
|
|
break;
|
|
|
|
case (QLineF::UnboundedIntersection):
|
|
|
|
{
|
|
|
|
QLineF line( line1.p2(), CrosPoint );
|
|
|
|
if (line.length() > width + toPixel(8))
|
|
|
|
{
|
|
|
|
QLineF lineL;
|
|
|
|
lineL = QLineF(bigLine1.p2(), CrosPoint);
|
|
|
|
lineL.setLength(width);
|
|
|
|
points.append(lineL.p2());
|
|
|
|
|
|
|
|
lineL = QLineF(bigLine2.p1(), CrosPoint);
|
|
|
|
lineL.setLength(width);
|
|
|
|
points.append(lineL.p2());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
points.append(CrosPoint);
|
|
|
|
return points;
|
|
|
|
}
|
|
|
|
break;
|
2013-09-11 16:14:21 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
case (QLineF::NoIntersection):
|
|
|
|
/*If we have correct lines this means lines lie on a line.*/
|
|
|
|
points.append(bigLine1.p2());
|
|
|
|
return points;
|
|
|
|
break;
|
2013-11-12 19:29:03 +01:00
|
|
|
default:
|
|
|
|
break;
|
2013-09-11 16:14:21 +02:00
|
|
|
}
|
|
|
|
return points;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QVector<QPointF> VContainer::CheckLoops(const QVector<QPointF> &points) const
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
QVector<QPointF> ekvPoints;
|
|
|
|
/*If we got less than 4 points no need seek loops.*/
|
2013-11-04 21:35:15 +01:00
|
|
|
if (points.size() < 4)
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
return ekvPoints;
|
|
|
|
}
|
|
|
|
bool closed = false;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (points.at(0) == points.at(points.size()-1))
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
closed = true;
|
|
|
|
}
|
|
|
|
qint32 i, j;
|
2013-11-04 21:35:15 +01:00
|
|
|
for (i = 0; i < points.size(); ++i)
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
/*Last three points no need check.*/
|
2013-11-04 21:35:15 +01:00
|
|
|
if (i >= points.size()-3)
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
ekvPoints.append(points.at(i));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QPointF crosPoint;
|
|
|
|
QLineF::IntersectType intersect = QLineF::NoIntersection;
|
2013-11-04 21:35:15 +01:00
|
|
|
QLineF line1(points.at(i), points.at(i+1));
|
|
|
|
for (j = i+2; j < points.size()-1; ++j)
|
|
|
|
{
|
|
|
|
QLineF line2(points.at(j), points.at(j+1));
|
2013-09-17 19:11:43 +02:00
|
|
|
intersect = line1.intersect(line2, &crosPoint);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (intersect == QLineF::BoundedIntersection)
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (intersect == QLineF::BoundedIntersection)
|
|
|
|
{
|
|
|
|
if (i == 0 && j+1 == points.size()-1 && closed)
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
/*We got closed contour.*/
|
|
|
|
ekvPoints.append(points.at(i));
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
/*We found loop.*/
|
|
|
|
ekvPoints.append(points.at(i));
|
|
|
|
ekvPoints.append(crosPoint);
|
|
|
|
ekvPoints.append(points.at(j+1));
|
|
|
|
i = j + 2;
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-17 19:11:43 +02:00
|
|
|
/*We did not found loop.*/
|
|
|
|
ekvPoints.append(points.at(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ekvPoints;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::PrepareDetails(QVector<VItem *> &list) const
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
QHashIterator<qint64, VDetail> idetail(details);
|
2013-12-29 17:48:57 +01:00
|
|
|
while (idetail.hasNext())
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
idetail.next();
|
|
|
|
list.append(new VItem(ContourPath(idetail.key()), list.size()));
|
2013-08-29 12:31:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
template <typename val>
|
2013-12-30 12:28:33 +01:00
|
|
|
void VContainer::UpdateObject(QHash<qint64, val> &obj, const qint64 &id, val point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
Q_ASSERT_X(id > 0, Q_FUNC_INFO, "id <= 0");
|
2013-12-29 17:48:57 +01:00
|
|
|
Q_ASSERT(point != 0);
|
2013-12-30 12:28:33 +01:00
|
|
|
point->setId(id);
|
|
|
|
// if (gObjects.contains(id))
|
|
|
|
// {
|
|
|
|
// delete gObjects.value(id);
|
|
|
|
// }
|
2013-08-13 18:48:36 +02:00
|
|
|
obj[id] = point;
|
|
|
|
UpdateId(id);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::AddLengthSpline(const QString &name, const qreal &value)
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty() == false);
|
2013-08-13 18:48:36 +02:00
|
|
|
lengthSplines[name] = value;
|
|
|
|
}
|
|
|
|
|
2013-11-12 14:04:18 +01:00
|
|
|
void VContainer::AddLengthArc(const qint64 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VArc * arc = GeometricObject<const VArc *>(id);
|
|
|
|
AddLengthArc(arc->name(), toMM(arc->GetLength()));
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::AddLengthArc(const QString &name, const qreal &value)
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty() == false);
|
2013-08-13 18:48:36 +02:00
|
|
|
lengthArcs[name] = value;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::AddLineAngle(const QString &name, const qreal &value)
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty() == false);
|
2013-08-21 10:03:53 +02:00
|
|
|
lineAngles[name] = value;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetValueStandartTableCell(const QString& name) const
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
VStandartTableRow cell = GetStandartTableCell(name);
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal k_size = ( static_cast<qreal> (size()/10.0) - 50.0 ) / 2.0;
|
2013-08-20 12:26:02 +02:00
|
|
|
qreal k_growth = ( static_cast<qreal> (growth()/10.0) - 176.0 ) / 6.0;
|
2013-12-30 19:59:33 +01:00
|
|
|
qreal value = cell.GetBase() + k_size*cell.GetKsize() + k_growth*cell.GetKgrowth();
|
2013-07-17 13:38:11 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetValueIncrementTableRow(const QString& name) const
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
VIncrementTableRow cell = GetIncrementTableRow(name);
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal k_size = ( static_cast<qreal> (size()/10.0) - 50.0 ) / 2.0;
|
2013-08-20 12:26:02 +02:00
|
|
|
qreal k_growth = ( static_cast<qreal> (growth()/10.0) - 176.0 ) / 6.0;
|
2013-12-30 19:59:33 +01:00
|
|
|
qreal value = cell.getBase() + k_size*cell.getKsize() + k_growth*cell.getKgrowth();
|
2013-07-17 13:38:11 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::Clear()
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
_id = 0;
|
2013-07-17 13:38:11 +02:00
|
|
|
standartTable.clear();
|
|
|
|
incrementTable.clear();
|
2013-07-25 14:00:51 +02:00
|
|
|
lengthLines.clear();
|
2013-08-05 10:37:56 +02:00
|
|
|
lengthArcs.clear();
|
2013-08-21 10:03:53 +02:00
|
|
|
lineAngles.clear();
|
2013-08-28 10:55:11 +02:00
|
|
|
details.clear();
|
2013-08-15 22:39:00 +02:00
|
|
|
ClearObject();
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::ClearObject()
|
|
|
|
{
|
2013-12-30 12:28:33 +01:00
|
|
|
if(gObjects.size()>0)
|
|
|
|
{
|
|
|
|
qDeleteAll(gObjects);
|
|
|
|
}
|
2013-12-29 17:48:57 +01:00
|
|
|
gObjects.clear();
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::FindVar(const QString &name, bool *ok)const
|
|
|
|
{
|
|
|
|
if (base.contains(name))
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
*ok = true;
|
2013-07-25 14:00:51 +02:00
|
|
|
return base.value(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
if (standartTable.contains(name))
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
*ok = true;
|
2013-07-25 14:00:51 +02:00
|
|
|
return GetValueStandartTableCell(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (incrementTable.contains(name))
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
*ok = true;
|
2013-07-25 14:00:51 +02:00
|
|
|
return GetValueIncrementTableRow(name);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (lengthLines.contains(name))
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
*ok = true;
|
|
|
|
return lengthLines.value(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (lengthArcs.contains(name))
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
*ok = true;
|
|
|
|
return lengthArcs.value(name);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (lineAngles.contains(name))
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
*ok = true;
|
2013-08-21 10:03:53 +02:00
|
|
|
return lineAngles.value(name);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (lengthSplines.contains(name))
|
|
|
|
{
|
2013-10-13 17:31:42 +02:00
|
|
|
*ok = true;
|
|
|
|
return lengthSplines.value(name);
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
*ok = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
void VContainer::AddLine(const qint64 &firstPointId, const qint64 &secondPointId)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-21 12:36:51 +01:00
|
|
|
QString nameLine = GetNameLine(firstPointId, secondPointId);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *first = GeometricObject<const VPointF *>(firstPointId);
|
|
|
|
const VPointF *second = GeometricObject<const VPointF *>(secondPointId);
|
|
|
|
AddLengthLine(nameLine, toMM(QLineF(first->toQPointF(), second->toQPointF()).length()));
|
2013-12-21 12:36:51 +01:00
|
|
|
nameLine = GetNameLineAngle(firstPointId, secondPointId);
|
2013-12-29 17:48:57 +01:00
|
|
|
AddLineAngle(nameLine, QLineF(first->toQPointF(), second->toQPointF()).angle());
|
2013-07-30 15:09:34 +02:00
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:44 +01:00
|
|
|
template <typename key, typename val>
|
2013-12-30 12:28:33 +01:00
|
|
|
qint64 VContainer::AddObject(QHash<key, val> &obj, val value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
Q_ASSERT(value != 0);
|
2013-10-27 11:22:44 +01:00
|
|
|
qint64 id = getNextId();
|
2013-12-29 17:48:57 +01:00
|
|
|
value->setId(id);
|
2013-10-27 11:22:44 +01:00
|
|
|
obj[id] = value;
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
QString VContainer::GetNameLine(const qint64 &firstPoint, const qint64 &secondPoint) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *first = GeometricObject<const VPointF *>(firstPoint);
|
|
|
|
const VPointF *second = GeometricObject<const VPointF *>(secondPoint);
|
2013-12-21 12:36:51 +01:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
return QString("Line_%1_%2").arg(first->name(), second->name());
|
2013-07-30 15:09:34 +02:00
|
|
|
}
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
QString VContainer::GetNameLineAngle(const qint64 &firstPoint, const qint64 &secondPoint) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *first = GeometricObject<const VPointF *>(firstPoint);
|
|
|
|
const VPointF *second = GeometricObject<const VPointF *>(secondPoint);
|
2013-12-21 12:36:51 +01:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
return QString("AngleLine_%1_%2").arg(first->name(), second->name());
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
void VContainer::UpdateGObject(qint64 id, VGObject* obj)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
UpdateObject(gObjects, id, obj);
|
2013-10-27 11:22:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
void VContainer::UpdateDetail(qint64 id,VDetail detail)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
Q_ASSERT_X(id > 0, Q_FUNC_INFO, "id <= 0");
|
|
|
|
details[id] = detail;
|
|
|
|
UpdateId(id);
|
2013-10-27 11:22:44 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::AddLengthLine(const QString &name, const qreal &value)
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty() == false);
|
2013-08-06 09:56:09 +02:00
|
|
|
lengthLines[name] = value;
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::CreateManTableIGroup ()
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
AddStandartTableCell("Pkor", VStandartTableRow(84, 0, 3));
|
|
|
|
AddStandartTableCell("Vtos", VStandartTableRow(1450, 2, 51));
|
|
|
|
AddStandartTableCell("Vtosh", VStandartTableRow(1506, 2, 54));
|
|
|
|
AddStandartTableCell("Vpt", VStandartTableRow(1438, 3, 52));
|
|
|
|
AddStandartTableCell("Vst", VStandartTableRow(1257, -1, 49));
|
|
|
|
AddStandartTableCell("Vlt", VStandartTableRow(1102, 0, 43));
|
|
|
|
AddStandartTableCell("Vk", VStandartTableRow(503, 0, 22));
|
|
|
|
AddStandartTableCell("Vsht", VStandartTableRow(1522, 2, 54));
|
|
|
|
AddStandartTableCell("Vzy", VStandartTableRow(1328, 0, 49));
|
|
|
|
AddStandartTableCell("Vlop", VStandartTableRow(1320, 0, 49));
|
|
|
|
AddStandartTableCell("Vps", VStandartTableRow(811, -1, 36));
|
|
|
|
AddStandartTableCell("Ssh", VStandartTableRow(202, 4, 1));
|
|
|
|
AddStandartTableCell("SgI", VStandartTableRow(517, 18, 2));
|
|
|
|
AddStandartTableCell("SgII", VStandartTableRow(522, 19, 1));
|
|
|
|
AddStandartTableCell("SgIII", VStandartTableRow(500, 20, 0));
|
|
|
|
AddStandartTableCell("SbI", VStandartTableRow(482, 12, 6));
|
|
|
|
AddStandartTableCell("Obed", VStandartTableRow(566, 18, 6));
|
|
|
|
AddStandartTableCell("Ok", VStandartTableRow(386, 8, 8));
|
|
|
|
AddStandartTableCell("Oi", VStandartTableRow(380, 8, 6));
|
|
|
|
AddStandartTableCell("Osch", VStandartTableRow(234, 4, 4));
|
|
|
|
AddStandartTableCell("Dsb", VStandartTableRow(1120, 0, 44));
|
|
|
|
AddStandartTableCell("Dsp", VStandartTableRow(1110, 0, 43));
|
|
|
|
AddStandartTableCell("Dn", VStandartTableRow(826, -3, 37));
|
|
|
|
AddStandartTableCell("Dps", VStandartTableRow(316, 4, 7));
|
|
|
|
AddStandartTableCell("Dpob", VStandartTableRow(783, 14, 15));
|
|
|
|
AddStandartTableCell("Ds", VStandartTableRow(260, 1, 6));
|
|
|
|
AddStandartTableCell("Op", VStandartTableRow(316, 12, 0));
|
|
|
|
AddStandartTableCell("Ozap", VStandartTableRow(180, 4, 0));
|
|
|
|
AddStandartTableCell("Pkis", VStandartTableRow(250, 4, 0));
|
|
|
|
AddStandartTableCell("SHp", VStandartTableRow(160, 1, 4));
|
|
|
|
AddStandartTableCell("Dlych", VStandartTableRow(500, 2, 15));
|
|
|
|
AddStandartTableCell("Dzap", VStandartTableRow(768, 2, 24));
|
|
|
|
AddStandartTableCell("DIIIp", VStandartTableRow(970, 2, 29));
|
|
|
|
AddStandartTableCell("Vprp", VStandartTableRow(214, 3, 3));
|
|
|
|
AddStandartTableCell("Vg", VStandartTableRow(262, 8, 3));
|
|
|
|
AddStandartTableCell("Dtp", VStandartTableRow(460, 7, 9));
|
|
|
|
AddStandartTableCell("Dp", VStandartTableRow(355, 5, 5));
|
|
|
|
AddStandartTableCell("Vprz", VStandartTableRow(208, 3, 5));
|
|
|
|
AddStandartTableCell("Dts", VStandartTableRow(438, 2, 10));
|
|
|
|
AddStandartTableCell("DtsI", VStandartTableRow(469, 2, 10));
|
|
|
|
AddStandartTableCell("Dvcht", VStandartTableRow(929, 9, 19));
|
|
|
|
AddStandartTableCell("SHg", VStandartTableRow(370, 14, 4));
|
|
|
|
AddStandartTableCell("Cg", VStandartTableRow(224, 6, 0));
|
|
|
|
AddStandartTableCell("SHs", VStandartTableRow(416, 10, 2));
|
|
|
|
AddStandartTableCell("dpzr", VStandartTableRow(121, 6, 0));
|
|
|
|
AddStandartTableCell("Ogol", VStandartTableRow(576, 4, 4));
|
|
|
|
AddStandartTableCell("Ssh1", VStandartTableRow(205, 5, 0));
|
|
|
|
|
|
|
|
//TODO Posible duplicate. Need check.
|
|
|
|
//AddStandartTableCell("St", VStandartTableRow(410, 20, 0));
|
|
|
|
AddStandartTableCell("St", VStandartTableRow(390, 20, 0));
|
|
|
|
|
|
|
|
AddStandartTableCell("Drzap", VStandartTableRow(594, 3, 19));
|
|
|
|
AddStandartTableCell("DbII", VStandartTableRow(1020, 0, 44));
|
|
|
|
|
|
|
|
//TODO Posible duplicate. Need check.
|
|
|
|
//AddStandartTableCell("Sb", VStandartTableRow(504, 15, 4));
|
|
|
|
AddStandartTableCell("Sb", VStandartTableRow(492, 15, 5));
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QVector<QPointF> VContainer::GetReversePoint(const QVector<QPointF> &points) const
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_ASSERT(points.size() > 0);
|
|
|
|
QVector<QPointF> reversePoints;
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = points.size() - 1; i >= 0; --i)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
reversePoints.append(points.at(i));
|
|
|
|
}
|
|
|
|
return reversePoints;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLengthContour(const QVector<QPointF> &contour, const QVector<QPointF> &newPoints) const
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
qreal length = 0;
|
|
|
|
QVector<QPointF> points;
|
|
|
|
points << contour << newPoints;
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 0; i < points.size()-1; ++i)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
QLineF line(points.at(i), points.at(i+1));
|
|
|
|
length += line.length();
|
|
|
|
}
|
|
|
|
return length;
|
|
|
|
}
|