2013-07-13 12:51:31 +02:00
|
|
|
|
#include "vcontainer.h"
|
|
|
|
|
#include <QDebug>
|
2013-09-10 14:29:06 +02:00
|
|
|
|
#include "options.h"
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2013-08-15 22:39:00 +02:00
|
|
|
|
qint64 VContainer::_id = 0;
|
|
|
|
|
|
2013-08-20 12:26:02 +02:00
|
|
|
|
VContainer::VContainer():base(QMap<QString, qint32>()), points(QMap<qint64, VPointF>()),
|
2013-08-28 10:55:11 +02:00
|
|
|
|
modelingPoints(QMap<qint64, VPointF>()),
|
2013-08-20 12:26:02 +02:00
|
|
|
|
standartTable(QMap<QString, VStandartTableCell>()), incrementTable(QMap<QString, VIncrementTableRow>()),
|
2013-08-21 10:03:53 +02:00
|
|
|
|
lengthLines(QMap<QString, qreal>()), lineAngles(QMap<QString, qreal>()), splines(QMap<qint64, VSpline>()),
|
2013-08-28 10:55:11 +02:00
|
|
|
|
modelingSplines(QMap<qint64, VSpline>()),
|
|
|
|
|
lengthSplines(QMap<QString, qreal>()), arcs(QMap<qint64, VArc>()), modelingArcs(QMap<qint64, VArc>()),
|
|
|
|
|
lengthArcs(QMap<QString, qreal>()),
|
|
|
|
|
splinePaths(QMap<qint64, VSplinePath>()), modelingSplinePaths(QMap<qint64, VSplinePath>()),
|
|
|
|
|
details(QMap<qint64, VDetail>()){
|
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-09-12 15:25:24 +02:00
|
|
|
|
VContainer &VContainer::operator =(const VContainer &data){
|
2013-08-15 22:39:00 +02:00
|
|
|
|
setData(data);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-29 12:31:50 +02:00
|
|
|
|
VContainer::VContainer(const VContainer &data):base(QMap<QString, qint32>()), points(QMap<qint64, VPointF>()),
|
|
|
|
|
modelingPoints(QMap<qint64, VPointF>()),
|
|
|
|
|
standartTable(QMap<QString, VStandartTableCell>()), incrementTable(QMap<QString, VIncrementTableRow>()),
|
|
|
|
|
lengthLines(QMap<QString, qreal>()), lineAngles(QMap<QString, qreal>()), splines(QMap<qint64, VSpline>()),
|
|
|
|
|
modelingSplines(QMap<qint64, VSpline>()),
|
|
|
|
|
lengthSplines(QMap<QString, qreal>()), arcs(QMap<qint64, VArc>()), modelingArcs(QMap<qint64, VArc>()),
|
|
|
|
|
lengthArcs(QMap<QString, qreal>()),
|
|
|
|
|
splinePaths(QMap<qint64, VSplinePath>()), modelingSplinePaths(QMap<qint64, VSplinePath>()),
|
|
|
|
|
details(QMap<qint64, VDetail>()){
|
|
|
|
|
setData(data);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-15 22:39:00 +02:00
|
|
|
|
void VContainer::setData(const VContainer &data){
|
|
|
|
|
base = *data.DataBase();
|
|
|
|
|
points = *data.DataPoints();
|
2013-08-28 10:55:11 +02:00
|
|
|
|
modelingPoints = *data.DataModelingPoints();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
standartTable = *data.DataStandartTable();
|
|
|
|
|
incrementTable = *data.DataIncrementTable();
|
|
|
|
|
lengthLines = *data.DataLengthLines();
|
2013-08-21 10:03:53 +02:00
|
|
|
|
lineAngles = *data.DataLengthArcs();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
splines = *data.DataSplines();
|
2013-08-28 10:55:11 +02:00
|
|
|
|
modelingSplines = *data.DataModelingSplines();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
lengthSplines = *data.DataLengthSplines();
|
|
|
|
|
arcs = *data.DataArcs();
|
2013-08-28 10:55:11 +02:00
|
|
|
|
modelingArcs = *data.DataModelingArcs();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
lengthArcs = *data.DataLengthArcs();
|
|
|
|
|
splinePaths = *data.DataSplinePaths();
|
2013-08-28 10:55:11 +02:00
|
|
|
|
modelingSplinePaths = *data.DataModelingSplinePaths();
|
|
|
|
|
details = *data.DataDetails();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
template <typename key, typename val>
|
2013-09-12 15:25:24 +02:00
|
|
|
|
val VContainer::GetObject(const QMap<key,val> &obj, key id){
|
2013-08-13 18:48:36 +02:00
|
|
|
|
if(obj.contains(id)){
|
|
|
|
|
return obj.value(id);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
} else {
|
2013-08-13 18:48:36 +02:00
|
|
|
|
qCritical()<<"Не можу знайти key = "<<id<<" в таблиці.";
|
|
|
|
|
throw"Не можу знайти об'єкт за ключем.";
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
VPointF VContainer::GetPoint(qint64 id) const{
|
|
|
|
|
return GetObject(points, id);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
VPointF VContainer::GetModelingPoint(qint64 id) const{
|
|
|
|
|
return GetObject(modelingPoints, id);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-17 13:38:11 +02:00
|
|
|
|
VStandartTableCell VContainer::GetStandartTableCell(const QString &name) const{
|
2013-08-13 18:48:36 +02:00
|
|
|
|
Q_ASSERT(!name.isEmpty());
|
|
|
|
|
return GetObject(standartTable, name);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VIncrementTableRow VContainer::GetIncrementTableRow(const QString& name) const{
|
2013-08-13 18:48:36 +02:00
|
|
|
|
Q_ASSERT(!name.isEmpty());
|
|
|
|
|
return GetObject(incrementTable, name);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
qreal VContainer::GetLine(const QString &name) const{
|
|
|
|
|
Q_ASSERT(!name.isEmpty());
|
|
|
|
|
return GetObject(lengthLines, name);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-20 12:26:02 +02:00
|
|
|
|
qreal VContainer::GetLineArc(const QString &name) const{
|
2013-08-13 18:48:36 +02:00
|
|
|
|
Q_ASSERT(!name.isEmpty());
|
2013-08-21 10:03:53 +02:00
|
|
|
|
return GetObject(lineAngles, name);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VSpline VContainer::GetSpline(qint64 id) const{
|
|
|
|
|
return GetObject(splines, id);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
VSpline VContainer::GetModelingSpline(qint64 id) const{
|
|
|
|
|
return GetObject(modelingSplines, id);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
VArc VContainer::GetArc(qint64 id) const{
|
|
|
|
|
return GetObject(arcs, id);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
VArc VContainer::GetModelingArc(qint64 id) const{
|
|
|
|
|
return GetObject(modelingArcs, id);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
VSplinePath VContainer::GetSplinePath(qint64 id) const{
|
|
|
|
|
return GetObject(splinePaths, id);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
VSplinePath VContainer::GetModelingSplinePath(qint64 id) const{
|
|
|
|
|
return GetObject(modelingSplinePaths, id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VDetail VContainer::GetDetail(qint64 id) const{
|
|
|
|
|
return GetObject(details, id);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-17 13:38:11 +02:00
|
|
|
|
void VContainer::AddStandartTableCell(const QString& name, const VStandartTableCell& cell){
|
|
|
|
|
standartTable[name] = cell;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VContainer::AddIncrementTableRow(const QString& name, const VIncrementTableRow& cell){
|
|
|
|
|
incrementTable[name] = cell;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-13 12:51:31 +02:00
|
|
|
|
qint64 VContainer::getId(){
|
|
|
|
|
return _id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint64 VContainer::getNextId(){
|
2013-09-12 15:25:24 +02:00
|
|
|
|
this->_id++;
|
2013-07-13 12:51:31 +02:00
|
|
|
|
return _id;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
void VContainer::UpdateId(qint64 newId){
|
2013-09-12 15:25:24 +02:00
|
|
|
|
if(newId > this->_id){
|
|
|
|
|
this->_id = newId;
|
2013-08-13 18:48:36 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
|
void VContainer::IncrementReferens(qint64 id, Scene::Type obj, Draw::Mode mode){
|
2013-08-28 10:55:11 +02:00
|
|
|
|
switch( obj ){
|
|
|
|
|
case(Scene::Line):
|
|
|
|
|
break;
|
|
|
|
|
case(Scene::Point):{
|
2013-09-10 14:29:06 +02:00
|
|
|
|
VPointF point;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
point = GetPoint(id);
|
|
|
|
|
} else {
|
|
|
|
|
point = GetModelingPoint(id);
|
|
|
|
|
}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
point.incrementReferens();
|
2013-09-10 14:29:06 +02:00
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
UpdatePoint(id, point);
|
|
|
|
|
} else {
|
|
|
|
|
UpdateModelingPoint(id, point);
|
|
|
|
|
}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case(Scene::Arc):{
|
2013-09-10 14:29:06 +02:00
|
|
|
|
VArc arc;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
arc = GetArc(id);
|
|
|
|
|
} else {
|
|
|
|
|
arc = GetModelingArc(id);
|
|
|
|
|
}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
arc.incrementReferens();
|
2013-09-10 14:29:06 +02:00
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
UpdateArc(id, arc);
|
|
|
|
|
} else {
|
|
|
|
|
UpdateModelingArc(id, arc);
|
|
|
|
|
}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case(Scene::Spline):{
|
2013-09-10 14:29:06 +02:00
|
|
|
|
VSpline spl;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
spl = GetSpline(id);
|
|
|
|
|
} else {
|
|
|
|
|
spl = GetModelingSpline(id);
|
|
|
|
|
}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
spl.incrementReferens();
|
2013-09-10 14:29:06 +02:00
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
UpdateSpline(id, spl);
|
|
|
|
|
} else {
|
|
|
|
|
UpdateModelingSpline(id, spl);
|
|
|
|
|
}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case(Scene::SplinePath):{
|
2013-09-10 14:29:06 +02:00
|
|
|
|
VSplinePath splPath;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
splPath = GetSplinePath(id);
|
|
|
|
|
} else {
|
|
|
|
|
splPath = GetModelingSplinePath(id);
|
|
|
|
|
}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
splPath.incrementReferens();
|
2013-09-10 14:29:06 +02:00
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
UpdateSplinePath(id, splPath);
|
|
|
|
|
} else {
|
|
|
|
|
UpdateModelingSplinePath(id, splPath);
|
|
|
|
|
}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-29 12:31:50 +02:00
|
|
|
|
QPainterPath VContainer::ContourPath(qint64 idDetail) const{
|
|
|
|
|
VDetail detail = GetDetail(idDetail);
|
|
|
|
|
QVector<QPointF> points;
|
|
|
|
|
for(qint32 i = 0; i< detail.CountNode(); ++i){
|
|
|
|
|
switch(detail[i].getTypeTool()){
|
2013-09-10 14:29:06 +02:00
|
|
|
|
case(Tools::NodePoint):{
|
2013-08-29 12:31:50 +02:00
|
|
|
|
VPointF point = GetModelingPoint(detail[i].getId());
|
|
|
|
|
points.append(point.toQPointF());
|
|
|
|
|
}
|
|
|
|
|
break;
|
2013-09-10 14:29:06 +02:00
|
|
|
|
case(Tools::NodeArc):{
|
2013-08-29 12:31:50 +02:00
|
|
|
|
VArc arc = GetModelingArc(detail[i].getId());
|
2013-09-10 14:29:06 +02:00
|
|
|
|
qreal len1 = GetLengthContour(points, arc.GetPoints());
|
|
|
|
|
qreal lenReverse = GetLengthContour(points, GetReversePoint(arc.GetPoints()));
|
|
|
|
|
if(len1 <= lenReverse){
|
|
|
|
|
points << arc.GetPoints();
|
|
|
|
|
} else {
|
|
|
|
|
points << GetReversePoint(arc.GetPoints());
|
|
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
2013-09-10 14:29:06 +02:00
|
|
|
|
case(Tools::NodeSpline):{
|
2013-08-29 12:31:50 +02:00
|
|
|
|
VSpline spline = GetModelingSpline(detail[i].getId());
|
2013-09-10 14:29:06 +02:00
|
|
|
|
qreal len1 = GetLengthContour(points, spline.GetPoints());
|
|
|
|
|
qreal lenReverse = GetLengthContour(points, GetReversePoint(spline.GetPoints()));
|
|
|
|
|
if(len1 <= lenReverse){
|
|
|
|
|
points << spline.GetPoints();
|
|
|
|
|
} else {
|
|
|
|
|
points << GetReversePoint(spline.GetPoints());
|
|
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
2013-09-10 14:29:06 +02:00
|
|
|
|
case(Tools::NodeSplinePath):{
|
2013-08-29 12:31:50 +02:00
|
|
|
|
VSplinePath splinePath = GetModelingSplinePath(detail[i].getId());
|
2013-09-10 14:29:06 +02:00
|
|
|
|
qreal len1 = GetLengthContour(points, splinePath.GetPathPoints());
|
|
|
|
|
qreal lenReverse = GetLengthContour(points, GetReversePoint(splinePath.GetPathPoints()));
|
|
|
|
|
if(len1 <= lenReverse){
|
|
|
|
|
points << splinePath.GetPathPoints();
|
|
|
|
|
} else {
|
|
|
|
|
points << GetReversePoint(splinePath.GetPathPoints());
|
|
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-09-11 16:14:21 +02:00
|
|
|
|
QPainterPath ekv = Equidistant(points, Detail::CloseEquidistant, toPixel(10));
|
2013-08-29 12:31:50 +02:00
|
|
|
|
QPainterPath path;
|
|
|
|
|
path.moveTo(points[0]);
|
|
|
|
|
for (qint32 i = 1; i < points.count(); ++i){
|
|
|
|
|
path.lineTo(points[i]);
|
|
|
|
|
}
|
|
|
|
|
path.lineTo(points[0]);
|
2013-09-11 16:14:21 +02:00
|
|
|
|
path.addPath(ekv);
|
2013-08-29 12:31:50 +02:00
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-11 16:14:21 +02:00
|
|
|
|
QPainterPath VContainer::Equidistant(QVector<QPointF> points, const Detail::Equidistant &eqv,
|
|
|
|
|
const qreal &width) const{
|
|
|
|
|
QPainterPath ekv;
|
|
|
|
|
QVector<QPointF> ekvPoints;
|
|
|
|
|
if ( points.size() < 3 ){
|
|
|
|
|
qDebug()<<"Not enough points for build equidistant.\n";
|
|
|
|
|
return ekv;
|
|
|
|
|
}
|
|
|
|
|
for (qint32 i = 0; i < points.size(); ++i ){
|
|
|
|
|
if(i != points.size()-1){
|
|
|
|
|
if(points[i] == points[i+1]){
|
|
|
|
|
points.remove(i+1);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if(points[i] == points[0]){
|
|
|
|
|
points.remove(i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(eqv == Detail::CloseEquidistant){
|
|
|
|
|
points.append(points.at(0));
|
|
|
|
|
}
|
|
|
|
|
for (qint32 i = 0; i < points.size(); ++i ){
|
|
|
|
|
if ( i == 0 && eqv == Detail::CloseEquidistant){//перша точка, ламана замкнена
|
|
|
|
|
ekvPoints<<EkvPoint(QLineF(points[points.size()-2], points[points.size()-1]),
|
|
|
|
|
QLineF(points[1], points[0]), width);
|
|
|
|
|
continue;
|
|
|
|
|
} else if(i == 0 && eqv == Detail::OpenEquidistant){//перша точка, ламана не замкнена
|
|
|
|
|
ekvPoints.append(SingleParallelPoint(QLineF(points[0], points[1]), 90, width));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if(i == points.size()-1 && eqv == Detail::CloseEquidistant){//остання точка, ламана замкнена
|
|
|
|
|
ekvPoints.append(ekvPoints.at(0));
|
|
|
|
|
continue;
|
|
|
|
|
} else if(i == points.size()-1 && eqv == Detail::OpenEquidistant){//остання точка, ламана не замкнена
|
|
|
|
|
ekvPoints.append(SingleParallelPoint(QLineF(points[points.size()-1],
|
|
|
|
|
points[points.size()-2]), -90, width));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
//точка яка не лежить ні на початку ні в кінці
|
|
|
|
|
ekvPoints<<EkvPoint(QLineF(points[i-1], points[i]), QLineF(points[i+1], points[i]), width);
|
|
|
|
|
}
|
|
|
|
|
ekv.moveTo(ekvPoints[0]);
|
|
|
|
|
for (qint32 i = 1; i < ekvPoints.count(); ++i){
|
|
|
|
|
ekv.lineTo(ekvPoints[i]);
|
|
|
|
|
}
|
|
|
|
|
return ekv;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-12 15:25:24 +02:00
|
|
|
|
QLineF VContainer::ParallelLine(const QLineF &line, qreal width){
|
2013-09-11 16:14:21 +02:00
|
|
|
|
Q_ASSERT(width > 0);
|
|
|
|
|
QLineF paralel = QLineF (SingleParallelPoint(line, 90, width),
|
|
|
|
|
SingleParallelPoint(QLineF(line.p2(), line.p1()), -90, width));
|
|
|
|
|
return paralel;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-12 15:25:24 +02: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);
|
|
|
|
|
QLineF l = line;
|
|
|
|
|
l.setAngle( l.angle() + angle );
|
|
|
|
|
l.setLength( width );
|
|
|
|
|
return l.p2();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVector<QPointF> VContainer::EkvPoint(const QLineF &line1, const QLineF &line2, const qreal &width) const{
|
|
|
|
|
Q_ASSERT(width > 0);
|
|
|
|
|
QVector<QPointF> points;
|
|
|
|
|
if(line1.p2() != line2.p2()){
|
|
|
|
|
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 );
|
|
|
|
|
switch(type){
|
|
|
|
|
case(QLineF::BoundedIntersection):
|
|
|
|
|
points.append(CrosPoint);
|
|
|
|
|
return points;
|
|
|
|
|
break;
|
|
|
|
|
case(QLineF::UnboundedIntersection):{
|
|
|
|
|
QLineF line( line1.p2(), CrosPoint );
|
|
|
|
|
if(line.length() > width + toPixel(3)){
|
|
|
|
|
points.append(bigLine1.p2());
|
|
|
|
|
line.setLength( width );
|
|
|
|
|
points.append(line.p2() );
|
|
|
|
|
points.append(bigLine2.p1());
|
|
|
|
|
} else {
|
|
|
|
|
points.append(CrosPoint);
|
|
|
|
|
return points;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case(QLineF::NoIntersection):
|
|
|
|
|
/*If we have correct lines this means lines lie on a line.*/
|
|
|
|
|
points.append(bigLine1.p2());
|
|
|
|
|
return points;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return points;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-29 12:31:50 +02:00
|
|
|
|
void VContainer::PrepareDetails(QVector<VItem *> &list) const{
|
|
|
|
|
QMapIterator<qint64, VDetail> iDetail(details);
|
|
|
|
|
while (iDetail.hasNext()) {
|
|
|
|
|
iDetail.next();
|
|
|
|
|
list.append(new VItem(ContourPath(iDetail.key()), list.size()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-17 13:38:11 +02:00
|
|
|
|
void VContainer::RemoveIncrementTableRow(const QString& name){
|
|
|
|
|
incrementTable.remove(name);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
template <typename val>
|
|
|
|
|
void VContainer::UpdateObject(QMap<qint64, val> &obj, const qint64 &id, const val& point){
|
2013-09-11 16:14:21 +02:00
|
|
|
|
Q_ASSERT_X(id > 0, Q_FUNC_INFO, "id <= 0");
|
2013-08-13 18:48:36 +02:00
|
|
|
|
obj[id] = point;
|
|
|
|
|
UpdateId(id);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-13 12:51:31 +02:00
|
|
|
|
void VContainer::UpdatePoint(qint64 id, const VPointF& point){
|
2013-08-13 18:48:36 +02:00
|
|
|
|
UpdateObject(points, id, point);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
void VContainer::UpdateModelingPoint(qint64 id, const VPointF &point){
|
|
|
|
|
UpdateObject(modelingPoints, id, point);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VContainer::UpdateDetail(qint64 id, const VDetail &detail){
|
|
|
|
|
UpdateObject(details, id, detail);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
|
void VContainer::UpdateSpline(qint64 id, const VSpline &spl){
|
2013-08-13 18:48:36 +02:00
|
|
|
|
UpdateObject(splines, id, spl);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
void VContainer::UpdateModelingSpline(qint64 id, const VSpline &spl){
|
|
|
|
|
UpdateObject(modelingSplines, id, spl);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-09 08:49:34 +02:00
|
|
|
|
void VContainer::UpdateSplinePath(qint64 id, const VSplinePath &splPath){
|
2013-08-13 18:48:36 +02:00
|
|
|
|
UpdateObject(splinePaths, id, splPath);
|
2013-08-09 08:49:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
void VContainer::UpdateModelingSplinePath(qint64 id, const VSplinePath &splPath){
|
|
|
|
|
UpdateObject(modelingSplinePaths, id, splPath);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
|
void VContainer::UpdateArc(qint64 id, const VArc &arc){
|
2013-08-13 18:48:36 +02:00
|
|
|
|
UpdateObject(arcs, id, arc);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
void VContainer::UpdateModelingArc(qint64 id, const VArc &arc){
|
|
|
|
|
UpdateObject(modelingArcs, id, arc);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-17 13:38:11 +02:00
|
|
|
|
void VContainer::UpdateStandartTableCell(const QString& name, const VStandartTableCell& cell){
|
|
|
|
|
standartTable[name] = cell;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VContainer::UpdateIncrementTableRow(const QString& name, const VIncrementTableRow& cell){
|
|
|
|
|
incrementTable[name] = cell;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
void VContainer::AddLengthSpline(const QString &name, const qreal &value){
|
|
|
|
|
Q_ASSERT(!name.isEmpty());
|
|
|
|
|
lengthSplines[name] = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VContainer::AddLengthArc(const qint64 ¢er, const qint64 &id){
|
|
|
|
|
AddLengthArc(GetNameArc(center, id), GetArc(id).GetLength());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VContainer::AddLengthArc(const QString &name, const qreal &value){
|
|
|
|
|
Q_ASSERT(!name.isEmpty());
|
|
|
|
|
lengthArcs[name] = value;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-21 10:03:53 +02:00
|
|
|
|
void VContainer::AddLineAngle(const QString &name, const qreal &value){
|
2013-08-13 18:48:36 +02:00
|
|
|
|
Q_ASSERT(!name.isEmpty());
|
2013-08-21 10:03:53 +02:00
|
|
|
|
lineAngles[name] = value;
|
2013-08-13 18:48:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-17 13:38:11 +02:00
|
|
|
|
qreal VContainer::GetValueStandartTableCell(const QString& name) const{
|
|
|
|
|
VStandartTableCell cell = GetStandartTableCell(name);
|
2013-08-20 12:26:02 +02:00
|
|
|
|
qreal k_size = ( static_cast<qreal> (size()/10.0) - 50.0 ) / 2.0;
|
|
|
|
|
qreal k_growth = ( static_cast<qreal> (growth()/10.0) - 176.0 ) / 6.0;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
qreal value = cell.GetBase() + k_size*cell.GetKsize() + k_growth*cell.GetKgrowth();
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qreal VContainer::GetValueIncrementTableRow(const QString& name) const{
|
|
|
|
|
VIncrementTableRow cell = GetIncrementTableRow(name);
|
2013-08-20 12:26:02 +02:00
|
|
|
|
qreal k_size = ( static_cast<qreal> (size()/10.0) - 50.0 ) / 2.0;
|
|
|
|
|
qreal k_growth = ( static_cast<qreal> (growth()/10.0) - 176.0 ) / 6.0;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
qreal value = cell.getBase() + k_size*cell.getKsize() + k_growth*cell.getKgrowth();
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-13 12:51:31 +02:00
|
|
|
|
void VContainer::Clear(){
|
|
|
|
|
_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();
|
|
|
|
|
modelingArcs.clear();
|
|
|
|
|
modelingPoints.clear();
|
|
|
|
|
modelingSplinePaths.clear();
|
|
|
|
|
modelingSplines.clear();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
ClearObject();
|
2013-08-13 18:48:36 +02:00
|
|
|
|
CreateManTableIGroup ();
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-15 22:39:00 +02:00
|
|
|
|
void VContainer::ClearObject(){
|
|
|
|
|
points.clear();
|
|
|
|
|
splines.clear();
|
|
|
|
|
arcs.clear();
|
2013-08-28 10:55:11 +02:00
|
|
|
|
splinePaths.clear();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-17 13:38:11 +02:00
|
|
|
|
void VContainer::ClearIncrementTable(){
|
|
|
|
|
incrementTable.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-25 14:00:51 +02:00
|
|
|
|
void VContainer::ClearLengthLines(){
|
|
|
|
|
lengthLines.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
|
void VContainer::ClearLengthSplines(){
|
|
|
|
|
lengthSplines.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VContainer::ClearLengthArcs(){
|
|
|
|
|
lengthArcs.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-21 10:03:53 +02:00
|
|
|
|
void VContainer::ClearLineAngles(){
|
|
|
|
|
lineAngles.clear();
|
2013-08-06 09:56:09 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-17 13:38:11 +02:00
|
|
|
|
void VContainer::SetSize(qint32 size){
|
|
|
|
|
base["Сг"] = size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VContainer::SetGrowth(qint32 growth){
|
|
|
|
|
base["Р"] = growth;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint32 VContainer::size() const{
|
|
|
|
|
return base.value("Сг");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint32 VContainer::growth() const{
|
|
|
|
|
return base.value("Р");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool VContainer::IncrementTableContains(const QString& name){
|
|
|
|
|
return incrementTable.contains(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qreal VContainer::FindVar(const QString &name, bool *ok)const{
|
|
|
|
|
if(base.contains(name)){
|
|
|
|
|
*ok = true;
|
2013-07-25 14:00:51 +02:00
|
|
|
|
return base.value(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(standartTable.contains(name)){
|
|
|
|
|
*ok = true;
|
2013-07-25 14:00:51 +02:00
|
|
|
|
return GetValueStandartTableCell(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
if(incrementTable.contains(name)){
|
|
|
|
|
*ok = true;
|
2013-07-25 14:00:51 +02:00
|
|
|
|
return GetValueIncrementTableRow(name);
|
|
|
|
|
}
|
|
|
|
|
if(lengthLines.contains(name)){
|
|
|
|
|
*ok = true;
|
|
|
|
|
return lengthLines.value(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
2013-08-06 09:56:09 +02:00
|
|
|
|
if(lengthArcs.contains(name)){
|
|
|
|
|
*ok = true;
|
|
|
|
|
return lengthArcs.value(name);
|
|
|
|
|
}
|
2013-08-21 10:03:53 +02: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-07-17 13:38:11 +02:00
|
|
|
|
*ok = false;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-25 14:00:51 +02:00
|
|
|
|
const QMap<qint64, VPointF> *VContainer::DataPoints() const{
|
|
|
|
|
return &points;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
const QMap<qint64, VPointF> *VContainer::DataModelingPoints() const{
|
|
|
|
|
return &modelingPoints;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
|
const QMap<qint64, VSpline> *VContainer::DataSplines() const{
|
|
|
|
|
return &splines;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
const QMap<qint64, VSpline> *VContainer::DataModelingSplines() const{
|
|
|
|
|
return &modelingSplines;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
|
const QMap<qint64, VArc> *VContainer::DataArcs() const{
|
|
|
|
|
return &arcs;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
const QMap<qint64, VArc> *VContainer::DataModelingArcs() const{
|
|
|
|
|
return &modelingArcs;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-25 14:00:51 +02:00
|
|
|
|
const QMap<QString, qint32> *VContainer::DataBase() const{
|
|
|
|
|
return &base;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2013-07-25 14:00:51 +02:00
|
|
|
|
const QMap<QString, VStandartTableCell> *VContainer::DataStandartTable() const{
|
|
|
|
|
return &standartTable;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2013-07-25 14:00:51 +02:00
|
|
|
|
const QMap<QString, VIncrementTableRow> *VContainer::DataIncrementTable() const{
|
|
|
|
|
return &incrementTable;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2013-07-25 14:00:51 +02:00
|
|
|
|
const QMap<QString, qreal> *VContainer::DataLengthLines() const{
|
|
|
|
|
return &lengthLines;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
|
const QMap<QString, qreal> *VContainer::DataLengthSplines() const{
|
|
|
|
|
return &lengthSplines;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
const QMap<QString, qreal> *VContainer::DataLengthArcs() const{
|
|
|
|
|
return &lengthArcs;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-21 10:03:53 +02:00
|
|
|
|
const QMap<QString, qreal> *VContainer::DataLineAngles() const{
|
|
|
|
|
return &lineAngles;
|
2013-08-13 18:48:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QMap<qint64, VSplinePath> *VContainer::DataSplinePaths() const{
|
|
|
|
|
return &splinePaths;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
const QMap<qint64, VSplinePath> *VContainer::DataModelingSplinePaths() const{
|
|
|
|
|
return &modelingSplinePaths;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QMap<qint64, VDetail> *VContainer::DataDetails() const{
|
|
|
|
|
return &details;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
|
void VContainer::AddLine(const qint64 &firstPointId, const qint64 &secondPointId, Draw::Mode mode){
|
|
|
|
|
QString nameLine = GetNameLine(firstPointId, secondPointId, mode);
|
|
|
|
|
VPointF first;
|
|
|
|
|
VPointF second;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
first = GetPoint(firstPointId);
|
|
|
|
|
second = GetPoint(secondPointId);
|
|
|
|
|
} else {
|
|
|
|
|
first = GetModelingPoint(firstPointId);
|
|
|
|
|
second = GetModelingPoint(secondPointId);
|
|
|
|
|
}
|
|
|
|
|
AddLengthLine(nameLine, QLineF(first.toQPointF(), second.toQPointF()).length()/PrintDPI*25.4);
|
|
|
|
|
nameLine = GetNameLineAngle(firstPointId, secondPointId, mode);
|
|
|
|
|
AddLineAngle(nameLine, QLineF(first.toQPointF(), second.toQPointF()).angle());
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
template <typename key, typename val>
|
|
|
|
|
qint64 VContainer::AddObject(QMap<key, val> &obj, const val& value){
|
2013-08-05 10:37:56 +02:00
|
|
|
|
qint64 id = getNextId();
|
2013-08-13 18:48:36 +02:00
|
|
|
|
obj[id] = value;
|
2013-08-05 10:37:56 +02:00
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
qint64 VContainer::AddPoint(const VPointF& point){
|
|
|
|
|
return AddObject(points, point);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
qint64 VContainer::AddModelingPoint(const VPointF &point){
|
|
|
|
|
return AddObject(modelingPoints, point);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint64 VContainer::AddDetail(const VDetail &detail){
|
|
|
|
|
return AddObject(details, detail);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
qint64 VContainer::AddSpline(const VSpline &spl){
|
|
|
|
|
return AddObject(splines, spl);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
qint64 VContainer::AddModelingSpline(const VSpline &spl){
|
|
|
|
|
return AddObject(modelingSplines, spl);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-09 08:49:34 +02:00
|
|
|
|
qint64 VContainer::AddSplinePath(const VSplinePath &splPath){
|
2013-08-13 18:48:36 +02:00
|
|
|
|
return AddObject(splinePaths, splPath);
|
2013-08-09 08:49:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
qint64 VContainer::AddModelingSplinePath(const VSplinePath &splPath){
|
|
|
|
|
return AddObject(modelingSplinePaths, splPath);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
|
qint64 VContainer::AddArc(const VArc &arc){
|
2013-08-13 18:48:36 +02:00
|
|
|
|
return AddObject(arcs, arc);
|
2013-07-30 15:09:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
qint64 VContainer::AddModelingArc(const VArc &arc){
|
|
|
|
|
return AddObject(modelingArcs, arc);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
|
QString VContainer::GetNameLine(const qint64 &firstPoint, const qint64 &secondPoint, Draw::Mode mode) const{
|
|
|
|
|
VPointF first;
|
|
|
|
|
VPointF second;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
first = GetPoint(firstPoint);
|
|
|
|
|
second = GetPoint(secondPoint);
|
|
|
|
|
} else {
|
|
|
|
|
first = GetModelingPoint(firstPoint);
|
|
|
|
|
second = GetModelingPoint(secondPoint);
|
|
|
|
|
}
|
2013-07-30 15:09:34 +02:00
|
|
|
|
return QString("Line_%1_%2").arg(first.name(), second.name());
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
|
QString VContainer::GetNameLineAngle(const qint64 &firstPoint, const qint64 &secondPoint,
|
|
|
|
|
Draw::Mode mode) const{
|
|
|
|
|
VPointF first;
|
|
|
|
|
VPointF second;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
first = GetPoint(firstPoint);
|
|
|
|
|
second = GetPoint(secondPoint);
|
|
|
|
|
} else {
|
|
|
|
|
first = GetModelingPoint(firstPoint);
|
|
|
|
|
second = GetModelingPoint(secondPoint);
|
|
|
|
|
}
|
2013-08-21 10:03:53 +02:00
|
|
|
|
return QString("AngleLine_%1_%2").arg(first.name(), second.name());
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
|
QString VContainer::GetNameSpline(const qint64 &firstPoint, const qint64 &secondPoint,
|
|
|
|
|
Draw::Mode mode) const{
|
|
|
|
|
VPointF first;
|
|
|
|
|
VPointF second;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
first = GetPoint(firstPoint);
|
|
|
|
|
second = GetPoint(secondPoint);
|
|
|
|
|
} else {
|
|
|
|
|
first = GetModelingPoint(firstPoint);
|
|
|
|
|
second = GetModelingPoint(secondPoint);
|
|
|
|
|
}
|
2013-08-06 09:56:09 +02:00
|
|
|
|
return QString("Spl_%1_%2").arg(first.name(), second.name());
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
|
QString VContainer::GetNameSplinePath(const VSplinePath &path, Draw::Mode mode) const{
|
2013-08-09 08:49:34 +02:00
|
|
|
|
if(path.Count() == 0){
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
QString name("SplPath");
|
|
|
|
|
for(qint32 i = 1; i <= path.Count(); ++i){
|
|
|
|
|
VSpline spl = path.GetSpline(i);
|
2013-09-10 14:29:06 +02:00
|
|
|
|
VPointF first;
|
|
|
|
|
VPointF second;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
first = GetPoint(spl.GetP1());
|
|
|
|
|
second = GetPoint(spl.GetP4());
|
|
|
|
|
} else {
|
|
|
|
|
first = GetModelingPoint(spl.GetP1());
|
|
|
|
|
second = GetModelingPoint(spl.GetP4());
|
|
|
|
|
}
|
2013-08-09 08:49:34 +02:00
|
|
|
|
QString splName = QString("_%1_%2").arg(first.name(), second.name());
|
|
|
|
|
name.append(splName);
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
|
QString VContainer::GetNameArc(const qint64 ¢er, const qint64 &id, Draw::Mode mode) const{
|
|
|
|
|
VPointF centerPoint;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
centerPoint = GetPoint(center);
|
|
|
|
|
} else {
|
|
|
|
|
centerPoint = GetModelingPoint(center);
|
|
|
|
|
}
|
2013-08-20 12:26:02 +02:00
|
|
|
|
return QString ("Arc(%1)%2").arg(centerPoint.name()).arg(id);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VContainer::AddLengthLine(const QString &name, const qreal &value){
|
2013-07-25 14:00:51 +02:00
|
|
|
|
Q_ASSERT(!name.isEmpty());
|
2013-08-06 09:56:09 +02:00
|
|
|
|
lengthLines[name] = value;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
|
void VContainer::AddLengthSpline(const qint64 &firstPointId, const qint64 &secondPointId, Draw::Mode mode){
|
|
|
|
|
QString nameLine = GetNameSpline(firstPointId, secondPointId, mode);
|
|
|
|
|
VPointF first;
|
|
|
|
|
VPointF second;
|
|
|
|
|
if(mode == Draw::Calculation){
|
|
|
|
|
first = GetPoint(firstPointId);
|
|
|
|
|
second = GetPoint(secondPointId);
|
|
|
|
|
} else {
|
|
|
|
|
first = GetModelingPoint(firstPointId);
|
|
|
|
|
second = GetModelingPoint(secondPointId);
|
|
|
|
|
}
|
|
|
|
|
AddLengthSpline(nameLine, QLineF(first.toQPointF(), second.toQPointF()).length());
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
void VContainer::CreateManTableIGroup (){
|
|
|
|
|
AddStandartTableCell("Pkor", VStandartTableCell(84, 0, 3));
|
|
|
|
|
AddStandartTableCell("Pkor", VStandartTableCell(84, 0, 3));
|
|
|
|
|
AddStandartTableCell("Vtos", VStandartTableCell(1450, 2, 51));
|
|
|
|
|
AddStandartTableCell("Vtosh", VStandartTableCell(1506, 2, 54));
|
|
|
|
|
AddStandartTableCell("Vpt", VStandartTableCell(1438, 3, 52));
|
|
|
|
|
AddStandartTableCell("Vst", VStandartTableCell(1257, -1, 49));
|
|
|
|
|
AddStandartTableCell("Vlt", VStandartTableCell(1102, 0, 43));
|
|
|
|
|
AddStandartTableCell("Vk", VStandartTableCell(503, 0, 22));
|
|
|
|
|
AddStandartTableCell("Vsht", VStandartTableCell(1522, 2, 54));
|
|
|
|
|
AddStandartTableCell("Vzy", VStandartTableCell(1328, 0, 49));
|
|
|
|
|
AddStandartTableCell("Vlop", VStandartTableCell(1320, 0, 49));
|
|
|
|
|
AddStandartTableCell("Vps", VStandartTableCell(811, -1, 36));
|
|
|
|
|
AddStandartTableCell("Osh", VStandartTableCell(404,8, 2));
|
|
|
|
|
AddStandartTableCell("OgI", VStandartTableCell(1034, 36, 4));
|
|
|
|
|
AddStandartTableCell("OgII", VStandartTableCell(1044, 38, 2));
|
|
|
|
|
AddStandartTableCell("OgIII", VStandartTableCell(1000, 40, 0));
|
|
|
|
|
AddStandartTableCell("Ot", VStandartTableCell(780, 40, 0));
|
|
|
|
|
AddStandartTableCell("Ob", VStandartTableCell(984, 30, 10));
|
|
|
|
|
AddStandartTableCell("ObI", VStandartTableCell(964, 24, 12));
|
|
|
|
|
AddStandartTableCell("Obed", VStandartTableCell(566, 18, 6));
|
|
|
|
|
AddStandartTableCell("Ok", VStandartTableCell(386, 8, 8));
|
|
|
|
|
AddStandartTableCell("Oi", VStandartTableCell(380, 8, 6));
|
|
|
|
|
AddStandartTableCell("Osch", VStandartTableCell(234, 4, 4));
|
|
|
|
|
AddStandartTableCell("Os", VStandartTableCell(350, 2, 8));
|
|
|
|
|
AddStandartTableCell("Dsb", VStandartTableCell(1120, 0, 44));
|
|
|
|
|
AddStandartTableCell("Dsp", VStandartTableCell(1110, 0, 43));
|
|
|
|
|
AddStandartTableCell("Dn", VStandartTableCell(826, -3, 37));
|
|
|
|
|
AddStandartTableCell("Dps", VStandartTableCell(316, 4, 7));
|
|
|
|
|
AddStandartTableCell("Dpob", VStandartTableCell(783, 14, 15));
|
|
|
|
|
AddStandartTableCell("Ds", VStandartTableCell(260, 1, 6));
|
|
|
|
|
AddStandartTableCell("Op", VStandartTableCell(316, 12, 0));
|
|
|
|
|
AddStandartTableCell("Ozap", VStandartTableCell(180, 4, 0));
|
|
|
|
|
AddStandartTableCell("Pkis", VStandartTableCell(250, 4, 0));
|
|
|
|
|
AddStandartTableCell("SHp", VStandartTableCell(160, 1, 4));
|
|
|
|
|
AddStandartTableCell("Dlych", VStandartTableCell(500, 2, 15));
|
|
|
|
|
AddStandartTableCell("Dzap", VStandartTableCell(768, 2, 24));
|
|
|
|
|
AddStandartTableCell("DIIIp", VStandartTableCell(970, 2, 29));
|
|
|
|
|
AddStandartTableCell("Vprp", VStandartTableCell(214, 3, 3));
|
|
|
|
|
AddStandartTableCell("Vg", VStandartTableCell(262, 8, 3));
|
|
|
|
|
AddStandartTableCell("Dtp", VStandartTableCell(460, 7, 9));
|
|
|
|
|
AddStandartTableCell("Dp", VStandartTableCell(355, 5, 5));
|
|
|
|
|
AddStandartTableCell("Vprz", VStandartTableCell(208, 3, 5));
|
|
|
|
|
AddStandartTableCell("Dts", VStandartTableCell(438, 2, 10));
|
|
|
|
|
AddStandartTableCell("DtsI", VStandartTableCell(469, 2, 10));
|
|
|
|
|
AddStandartTableCell("Dvcht", VStandartTableCell(929, 9, 19));
|
|
|
|
|
AddStandartTableCell("SHg", VStandartTableCell(370, 14, 4));
|
|
|
|
|
AddStandartTableCell("Cg", VStandartTableCell(224, 6, 0));
|
|
|
|
|
AddStandartTableCell("SHs", VStandartTableCell(416, 10, 2));
|
|
|
|
|
AddStandartTableCell("dpzr", VStandartTableCell(121, 6, 0));
|
|
|
|
|
AddStandartTableCell("Ogol", VStandartTableCell(576, 4, 4));
|
|
|
|
|
AddStandartTableCell("Ssh1", VStandartTableCell(205, 5, 0));
|
|
|
|
|
AddStandartTableCell("St", VStandartTableCell(410, 20, 0));
|
|
|
|
|
AddStandartTableCell("Drzap", VStandartTableCell(594, 3, 19));
|
|
|
|
|
AddStandartTableCell("DbII", VStandartTableCell(1020, 0, 44));
|
|
|
|
|
AddStandartTableCell("Sb", VStandartTableCell(504, 15, 4));
|
2013-08-09 08:49:34 +02:00
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
|
|
|
|
|
|
QVector<QPointF> VContainer::GetReversePoint(const QVector<QPointF> &points) const{
|
|
|
|
|
Q_ASSERT(points.size() > 0);
|
|
|
|
|
QVector<QPointF> reversePoints;
|
|
|
|
|
for (qint32 i = points.size() - 1; i >= 0; --i) {
|
|
|
|
|
reversePoints.append(points.at(i));
|
|
|
|
|
}
|
|
|
|
|
return reversePoints;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qreal VContainer::GetLengthContour(const QVector<QPointF> &contour, const QVector<QPointF> &newPoints) const{
|
|
|
|
|
qreal length = 0;
|
|
|
|
|
QVector<QPointF> points;
|
|
|
|
|
points << contour << newPoints;
|
|
|
|
|
for (qint32 i = 0; i < points.size()-1; ++i) {
|
|
|
|
|
QLineF line(points.at(i), points.at(i+1));
|
|
|
|
|
length += line.length();
|
|
|
|
|
}
|
|
|
|
|
return length;
|
|
|
|
|
}
|