2016-09-02 10:08:40 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Cirilo Bernardo <cirilo.bernardo@gmail.com>
|
2022-05-09 20:02:33 +00:00
|
|
|
* Copyright (C) 2021-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2016-09-02 10:08:40 +00:00
|
|
|
*
|
|
|
|
* This program 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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cmath>
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <wx/filename.h>
|
2018-09-20 09:05:52 +00:00
|
|
|
#include <wx/filefn.h>
|
2020-08-26 02:27:08 +00:00
|
|
|
#include <wx/stdpaths.h>
|
|
|
|
#include <wx/wfstream.h>
|
2021-02-28 00:41:14 +00:00
|
|
|
#include <wx/zipstrm.h>
|
2020-08-26 02:27:08 +00:00
|
|
|
|
|
|
|
#include <decompress.hpp>
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
#include "oce_utils.h"
|
|
|
|
#include "kicadpad.h"
|
2017-03-09 02:40:41 +00:00
|
|
|
#include "streamwrapper.h"
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
#include <IGESCAFControl_Reader.hxx>
|
|
|
|
#include <IGESCAFControl_Writer.hxx>
|
|
|
|
#include <IGESControl_Controller.hxx>
|
|
|
|
#include <IGESData_GlobalSection.hxx>
|
|
|
|
#include <IGESData_IGESModel.hxx>
|
|
|
|
#include <Interface_Static.hxx>
|
|
|
|
#include <Quantity_Color.hxx>
|
|
|
|
#include <STEPCAFControl_Reader.hxx>
|
|
|
|
#include <STEPCAFControl_Writer.hxx>
|
|
|
|
#include <APIHeaderSection_MakeHeader.hxx>
|
2018-01-26 00:38:29 +00:00
|
|
|
#include <Standard_Version.hxx>
|
2016-09-02 10:08:40 +00:00
|
|
|
#include <TCollection_ExtendedString.hxx>
|
|
|
|
#include <TDataStd_Name.hxx>
|
2021-09-12 21:41:18 +00:00
|
|
|
#include <TDataStd_TreeNode.hxx>
|
2016-09-02 10:08:40 +00:00
|
|
|
#include <TDF_LabelSequence.hxx>
|
|
|
|
#include <TDF_ChildIterator.hxx>
|
|
|
|
#include <TopExp_Explorer.hxx>
|
2021-09-12 21:41:18 +00:00
|
|
|
#include <XCAFDoc.hxx>
|
2016-09-02 10:08:40 +00:00
|
|
|
#include <XCAFDoc_DocumentTool.hxx>
|
|
|
|
#include <XCAFDoc_ColorTool.hxx>
|
|
|
|
|
|
|
|
#include <BRep_Tool.hxx>
|
|
|
|
#include <BRepMesh_IncrementalMesh.hxx>
|
2016-12-23 23:46:20 +00:00
|
|
|
#include <BRepBuilderAPI.hxx>
|
2016-09-02 10:08:40 +00:00
|
|
|
#include <BRepBuilderAPI_MakeEdge.hxx>
|
|
|
|
#include <BRepBuilderAPI_Transform.hxx>
|
2019-05-28 15:40:34 +00:00
|
|
|
#include <BRepBuilderAPI_GTransform.hxx>
|
2016-09-02 10:08:40 +00:00
|
|
|
#include <BRepBuilderAPI_MakeFace.hxx>
|
|
|
|
#include <BRepPrimAPI_MakePrism.hxx>
|
|
|
|
#include <BRepPrimAPI_MakeCylinder.hxx>
|
|
|
|
#include <BRepAlgoAPI_Cut.hxx>
|
|
|
|
|
|
|
|
#include <TopoDS.hxx>
|
|
|
|
#include <TopoDS_Wire.hxx>
|
|
|
|
#include <TopoDS_Face.hxx>
|
|
|
|
#include <TopoDS_Compound.hxx>
|
|
|
|
#include <TopoDS_Builder.hxx>
|
|
|
|
|
2018-06-18 12:20:25 +00:00
|
|
|
#include <Standard_Failure.hxx>
|
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
#include <gp_Ax2.hxx>
|
|
|
|
#include <gp_Circ.hxx>
|
|
|
|
#include <gp_Dir.hxx>
|
|
|
|
#include <gp_Pnt.hxx>
|
2020-10-21 08:18:03 +00:00
|
|
|
#include <Geom_BezierCurve.hxx>
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-08-27 17:02:55 +00:00
|
|
|
#include <macros.h>
|
|
|
|
|
2018-06-19 07:59:09 +00:00
|
|
|
static constexpr double USER_PREC = 1e-4;
|
|
|
|
static constexpr double USER_ANGLE_PREC = 1e-6;
|
2021-07-29 11:10:58 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// minimum PCB thickness in mm (2 microns assumes a very thin polyimide film)
|
2018-06-19 07:59:09 +00:00
|
|
|
static constexpr double THICKNESS_MIN = 0.002;
|
2021-07-29 11:10:58 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// default PCB thickness in mm
|
2018-06-19 07:59:09 +00:00
|
|
|
static constexpr double THICKNESS_DEFAULT = 1.6;
|
2021-07-29 11:10:58 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// nominal offset from the board
|
2018-06-19 07:59:09 +00:00
|
|
|
static constexpr double BOARD_OFFSET = 0.05;
|
2021-07-29 11:10:58 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// min. length**2 below which 2 points are considered coincident
|
2018-06-19 08:14:10 +00:00
|
|
|
static constexpr double MIN_LENGTH2 = MIN_DISTANCE * MIN_DISTANCE;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
static void getEndPoints( const KICADCURVE& aCurve, double& spx0, double& spy0,
|
2021-07-29 11:10:58 +00:00
|
|
|
double& epx0, double& epy0 )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
if( CURVE_ARC == aCurve.m_form )
|
|
|
|
{
|
|
|
|
spx0 = aCurve.m_end.x;
|
|
|
|
spy0 = aCurve.m_end.y;
|
|
|
|
epx0 = aCurve.m_ep.x;
|
|
|
|
epy0 = aCurve.m_ep.y;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// assume a line
|
|
|
|
spx0 = aCurve.m_start.x;
|
|
|
|
spy0 = aCurve.m_start.y;
|
|
|
|
epx0 = aCurve.m_end.x;
|
|
|
|
epy0 = aCurve.m_end.y;
|
|
|
|
}
|
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
static void getCurveEndPoint( const KICADCURVE& aCurve, DOUBLET& aEndPoint )
|
|
|
|
{
|
|
|
|
if( CURVE_CIRCLE == aCurve.m_form )
|
|
|
|
return; // circles are closed loops and have no end point
|
|
|
|
|
|
|
|
if( CURVE_ARC == aCurve.m_form )
|
|
|
|
{
|
|
|
|
aEndPoint.x = aCurve.m_ep.x;
|
|
|
|
aEndPoint.y = aCurve.m_ep.y;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// assume a line
|
|
|
|
aEndPoint.x = aCurve.m_end.x;
|
|
|
|
aEndPoint.y = aCurve.m_end.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void reverseCurve( KICADCURVE& aCurve )
|
|
|
|
{
|
|
|
|
if( CURVE_NONE == aCurve.m_form || CURVE_CIRCLE == aCurve.m_form )
|
|
|
|
return;
|
|
|
|
|
2020-10-20 12:28:43 +00:00
|
|
|
if( CURVE_LINE == aCurve.m_form )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
std::swap( aCurve.m_start, aCurve.m_end );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-20 12:28:43 +00:00
|
|
|
if( CURVE_BEZIER == aCurve.m_form )
|
|
|
|
{
|
|
|
|
std::swap( aCurve.m_start, aCurve.m_end );
|
|
|
|
std::swap( aCurve.m_bezierctrl1, aCurve.m_bezierctrl2 );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
std::swap( aCurve.m_end, aCurve.m_ep );
|
|
|
|
std::swap( aCurve.m_endangle, aCurve.m_startangle );
|
|
|
|
aCurve.m_angle = -aCurve.m_angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// supported file types
|
|
|
|
enum FormatType
|
|
|
|
{
|
2020-08-26 02:27:08 +00:00
|
|
|
FMT_NONE,
|
|
|
|
FMT_STEP,
|
|
|
|
FMT_STEPZ,
|
|
|
|
FMT_IGES,
|
|
|
|
FMT_EMN,
|
|
|
|
FMT_IDF,
|
|
|
|
FMT_WRL,
|
|
|
|
FMT_WRZ
|
2016-09-02 10:08:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
FormatType fileType( const char* aFileName )
|
|
|
|
{
|
2017-03-09 02:40:41 +00:00
|
|
|
wxFileName lfile( wxString::FromUTF8Unchecked( aFileName ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
if( !lfile.FileExists() )
|
|
|
|
{
|
2020-02-15 09:58:44 +00:00
|
|
|
wxString msg;
|
2022-02-08 21:47:43 +00:00
|
|
|
msg.Printf( wxT( " * fileType(): no such file: %s\n" ),
|
2020-02-15 09:58:44 +00:00
|
|
|
wxString::FromUTF8Unchecked( aFileName ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2020-02-15 09:58:44 +00:00
|
|
|
ReportMessage( msg );
|
2016-09-02 10:08:40 +00:00
|
|
|
return FMT_NONE;
|
|
|
|
}
|
|
|
|
|
2020-08-26 02:27:08 +00:00
|
|
|
wxString ext = lfile.GetExt().Lower();
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2022-02-08 21:47:43 +00:00
|
|
|
if( ext == wxT( "wrl" ) )
|
2017-11-04 12:44:13 +00:00
|
|
|
return FMT_WRL;
|
|
|
|
|
2022-02-08 21:47:43 +00:00
|
|
|
if( ext == wxT( "wrz" ) )
|
2020-08-26 02:27:08 +00:00
|
|
|
return FMT_WRZ;
|
|
|
|
|
2022-02-08 21:47:43 +00:00
|
|
|
if( ext == wxT( "idf" ) )
|
2016-09-02 10:08:40 +00:00
|
|
|
return FMT_IDF; // component outline
|
2020-08-26 02:27:08 +00:00
|
|
|
|
2022-02-08 21:47:43 +00:00
|
|
|
if( ext == wxT( "emn" ) )
|
2016-09-02 10:08:40 +00:00
|
|
|
return FMT_EMN; // PCB assembly
|
|
|
|
|
2022-02-08 21:47:43 +00:00
|
|
|
if( ext == wxT( "stpz" ) || ext == wxT( "gz" ) )
|
2020-08-26 02:27:08 +00:00
|
|
|
return FMT_STEPZ;
|
|
|
|
|
2017-03-09 02:40:41 +00:00
|
|
|
OPEN_ISTREAM( ifile, aFileName );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2017-03-09 02:40:41 +00:00
|
|
|
if( ifile.fail() )
|
2016-09-02 10:08:40 +00:00
|
|
|
return FMT_NONE;
|
|
|
|
|
|
|
|
char iline[82];
|
|
|
|
memset( iline, 0, 82 );
|
|
|
|
ifile.getline( iline, 82 );
|
2017-03-09 02:40:41 +00:00
|
|
|
CLOSE_STREAM( ifile );
|
2016-09-02 10:08:40 +00:00
|
|
|
iline[81] = 0; // ensure NULL termination when string is too long
|
|
|
|
|
|
|
|
// check for STEP in Part 21 format
|
|
|
|
// (this can give false positives since Part 21 is not exclusively STEP)
|
|
|
|
if( !strncmp( iline, "ISO-10303-21;", 13 ) )
|
|
|
|
return FMT_STEP;
|
|
|
|
|
|
|
|
std::string fstr = iline;
|
|
|
|
|
|
|
|
// check for STEP in XML format
|
|
|
|
// (this can give both false positive and false negatives)
|
|
|
|
if( fstr.find( "urn:oid:1.0.10303." ) != std::string::npos )
|
|
|
|
return FMT_STEP;
|
|
|
|
|
|
|
|
// Note: this is a very simple test which can yield false positives; the only
|
|
|
|
// sure method for determining if a file *not* an IGES model is to attempt
|
|
|
|
// to load it.
|
|
|
|
if( iline[72] == 'S' && ( iline[80] == 0 || iline[80] == 13 || iline[80] == 10 ) )
|
|
|
|
return FMT_IGES;
|
|
|
|
|
|
|
|
return FMT_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-12 21:41:18 +00:00
|
|
|
PCBMODEL::PCBMODEL( const wxString& aPcbName )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
m_app = XCAFApp_Application::GetApplication();
|
|
|
|
m_app->NewDocument( "MDTV-XCAF", m_doc );
|
|
|
|
m_assy = XCAFDoc_DocumentTool::ShapeTool ( m_doc->Main() );
|
|
|
|
m_assy_label = m_assy->NewShape();
|
|
|
|
m_hasPCB = false;
|
|
|
|
m_components = 0;
|
|
|
|
m_precision = USER_PREC;
|
|
|
|
m_angleprec = USER_ANGLE_PREC;
|
|
|
|
m_thickness = THICKNESS_DEFAULT;
|
2018-06-19 08:14:10 +00:00
|
|
|
m_minDistance2 = MIN_LENGTH2;
|
2016-09-02 10:08:40 +00:00
|
|
|
m_minx = 1.0e10; // absurdly large number; any valid PCB X value will be smaller
|
|
|
|
m_mincurve = m_curves.end();
|
2021-09-12 21:41:18 +00:00
|
|
|
m_pcbName = aPcbName;
|
2021-01-03 08:40:40 +00:00
|
|
|
BRepBuilderAPI::Precision( MIN_DISTANCE );
|
2016-09-02 10:08:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PCBMODEL::~PCBMODEL()
|
|
|
|
{
|
|
|
|
m_doc->Close();
|
|
|
|
}
|
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
bool PCBMODEL::AddOutlineSegment( KICADCURVE* aCurve )
|
|
|
|
{
|
|
|
|
if( NULL == aCurve || LAYER_EDGE != aCurve->m_layer || CURVE_NONE == aCurve->m_form )
|
|
|
|
return false;
|
|
|
|
|
2020-10-20 12:28:43 +00:00
|
|
|
if( CURVE_LINE == aCurve->m_form || CURVE_BEZIER == aCurve->m_form )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
// reject zero - length lines
|
|
|
|
double dx = aCurve->m_end.x - aCurve->m_start.x;
|
|
|
|
double dy = aCurve->m_end.y - aCurve->m_start.y;
|
|
|
|
double distance = dx * dx + dy * dy;
|
|
|
|
|
2018-06-19 08:14:10 +00:00
|
|
|
if( distance < m_minDistance2 )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2020-02-15 09:58:44 +00:00
|
|
|
wxString msg;
|
2022-02-08 21:47:43 +00:00
|
|
|
msg.Printf( wxT( " * AddOutlineSegment() rejected a zero-length %s\n" ),
|
|
|
|
aCurve->Describe() );
|
2020-02-15 09:58:44 +00:00
|
|
|
ReportMessage( msg );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// ensure that the start (center) and end (start of arc) are not the same point
|
|
|
|
double dx = aCurve->m_end.x - aCurve->m_start.x;
|
|
|
|
double dy = aCurve->m_end.y - aCurve->m_start.y;
|
|
|
|
double rad = dx * dx + dy * dy;
|
|
|
|
|
2018-06-19 08:14:10 +00:00
|
|
|
if( rad < m_minDistance2 )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2020-02-15 09:58:44 +00:00
|
|
|
wxString msg;
|
2022-02-08 21:47:43 +00:00
|
|
|
msg.Printf( wxT( " * AddOutlineSegment() rejected a zero-radius %s\n" ),
|
|
|
|
aCurve->Describe() );
|
2020-02-15 09:58:44 +00:00
|
|
|
ReportMessage( msg );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate the radius and, if applicable, end point
|
|
|
|
rad = sqrt( rad );
|
|
|
|
aCurve->m_radius = rad;
|
|
|
|
|
|
|
|
if( CURVE_ARC == aCurve->m_form )
|
|
|
|
{
|
|
|
|
aCurve->m_startangle = atan2( dy, dx );
|
|
|
|
|
|
|
|
if( aCurve->m_startangle < 0.0 )
|
|
|
|
aCurve->m_startangle += 2.0 * M_PI;
|
|
|
|
|
2020-11-18 19:50:36 +00:00
|
|
|
double eang = aCurve->m_startangle + aCurve->m_angle;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
if( eang < 0.0 )
|
|
|
|
eang += 2.0 * M_PI;
|
|
|
|
|
|
|
|
if( aCurve->m_angle < 0.0 && eang > aCurve->m_startangle )
|
|
|
|
aCurve->m_startangle += 2.0 * M_PI;
|
|
|
|
else if( aCurve->m_angle >= 0.0 && eang < aCurve->m_startangle )
|
|
|
|
eang += 2.0 * M_PI;
|
|
|
|
|
|
|
|
aCurve->m_endangle = eang;
|
|
|
|
aCurve->m_ep.x = aCurve->m_start.x + rad * cos( eang );
|
|
|
|
aCurve->m_ep.y = aCurve->m_start.y + rad * sin( eang );
|
|
|
|
|
|
|
|
dx = aCurve->m_ep.x - aCurve->m_end.x;
|
|
|
|
dy = aCurve->m_ep.y - aCurve->m_end.y;
|
|
|
|
rad = dx * dx + dy * dy;
|
|
|
|
|
2018-06-19 08:14:10 +00:00
|
|
|
if( rad < m_minDistance2 )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( " * AddOutlineSegment() rejected an arc "
|
|
|
|
"with equivalent end points, %s\n" ),
|
2021-09-04 17:05:30 +00:00
|
|
|
aCurve->Describe() ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_curves.push_back( *aCurve );
|
|
|
|
|
|
|
|
// check if this curve has the current leftmost feature
|
|
|
|
switch( aCurve->m_form )
|
|
|
|
{
|
2021-07-29 11:10:58 +00:00
|
|
|
case CURVE_LINE:
|
|
|
|
if( aCurve->m_start.x < m_minx )
|
|
|
|
{
|
|
|
|
m_minx = aCurve->m_start.x;
|
|
|
|
m_mincurve = --( m_curves.end() );
|
|
|
|
}
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( aCurve->m_end.x < m_minx )
|
|
|
|
{
|
|
|
|
m_minx = aCurve->m_end.x;
|
|
|
|
m_mincurve = --( m_curves.end() );
|
|
|
|
}
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
break;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
case CURVE_CIRCLE:
|
|
|
|
do
|
|
|
|
{
|
|
|
|
double dx = aCurve->m_start.x - aCurve->m_radius;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( dx < m_minx )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2021-07-29 11:10:58 +00:00
|
|
|
m_minx = dx;
|
|
|
|
m_mincurve = --( m_curves.end() );
|
|
|
|
}
|
|
|
|
} while( 0 );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
break;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
case CURVE_ARC:
|
|
|
|
do
|
|
|
|
{
|
|
|
|
double dx0 = aCurve->m_end.x - aCurve->m_start.x;
|
|
|
|
double dy0 = aCurve->m_end.y - aCurve->m_start.y;
|
|
|
|
int q0; // quadrant of start point
|
|
|
|
|
|
|
|
if( dx0 > 0.0 && dy0 >= 0.0 )
|
|
|
|
q0 = 1;
|
|
|
|
else if( dx0 <= 0.0 && dy0 > 0.0 )
|
|
|
|
q0 = 2;
|
|
|
|
else if( dx0 < 0.0 && dy0 <= 0.0 )
|
|
|
|
q0 = 3;
|
|
|
|
else
|
|
|
|
q0 = 4;
|
|
|
|
|
|
|
|
double dx1 = aCurve->m_ep.x - aCurve->m_start.x;
|
|
|
|
double dy1 = aCurve->m_ep.y - aCurve->m_start.y;
|
|
|
|
int q1; // quadrant of end point
|
|
|
|
|
|
|
|
if( dx1 > 0.0 && dy1 >= 0.0 )
|
|
|
|
q1 = 1;
|
|
|
|
else if( dx1 <= 0.0 && dy1 > 0.0 )
|
|
|
|
q1 = 2;
|
|
|
|
else if( dx1 < 0.0 && dy1 <= 0.0 )
|
|
|
|
q1 = 3;
|
|
|
|
else
|
|
|
|
q1 = 4;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
// calculate x0, y0 for the start point on a CCW arc
|
|
|
|
double x0 = aCurve->m_end.x;
|
|
|
|
double x1 = aCurve->m_ep.x;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( aCurve->m_angle < 0.0 )
|
|
|
|
{
|
|
|
|
std::swap( q0, q1 );
|
|
|
|
std::swap( x0, x1 );
|
|
|
|
}
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
double minx;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( ( q0 <= 2 && q1 >= 3 ) || ( q0 >= 3 && x0 > x1 ) )
|
|
|
|
minx = aCurve->m_start.x - aCurve->m_radius;
|
|
|
|
else
|
|
|
|
minx = std::min( x0, x1 );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( minx < m_minx )
|
2020-10-20 12:28:43 +00:00
|
|
|
{
|
2021-07-29 11:10:58 +00:00
|
|
|
m_minx = minx;
|
|
|
|
m_mincurve = --( m_curves.end() );
|
2020-10-20 12:28:43 +00:00
|
|
|
}
|
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
} while( 0 );
|
2020-10-20 12:28:43 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
break;
|
2020-10-20 12:28:43 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
case CURVE_BEZIER:
|
|
|
|
if( aCurve->m_start.x < m_minx )
|
|
|
|
{
|
|
|
|
m_minx = aCurve->m_start.x;
|
|
|
|
m_mincurve = --( m_curves.end() );
|
|
|
|
}
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( aCurve->m_end.x < m_minx )
|
|
|
|
{
|
|
|
|
m_minx = aCurve->m_end.x;
|
|
|
|
m_mincurve = --( m_curves.end() );
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// unexpected curve type
|
|
|
|
do
|
|
|
|
{
|
|
|
|
wxString msg;
|
2022-02-08 21:47:43 +00:00
|
|
|
msg.Printf( wxT( " * AddOutlineSegment() unsupported curve type: %d\n" ),
|
|
|
|
aCurve->m_form );
|
2021-07-29 11:10:58 +00:00
|
|
|
ReportMessage( msg );
|
|
|
|
} while( 0 );
|
|
|
|
|
|
|
|
return false;
|
2016-09-02 10:08:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-18 19:50:36 +00:00
|
|
|
bool PCBMODEL::AddPadHole( const KICADPAD* aPad )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
if( NULL == aPad || !aPad->IsThruHole() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( !aPad->m_drill.oval )
|
|
|
|
{
|
|
|
|
TopoDS_Shape s = BRepPrimAPI_MakeCylinder( aPad->m_drill.size.x * 0.5,
|
2021-07-29 11:10:58 +00:00
|
|
|
m_thickness * 2.0 ).Shape();
|
2016-09-02 10:08:40 +00:00
|
|
|
gp_Trsf shift;
|
2021-07-29 11:10:58 +00:00
|
|
|
shift.SetTranslation( gp_Vec( aPad->m_position.x, aPad->m_position.y,
|
|
|
|
-m_thickness * 0.5 ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
BRepBuilderAPI_Transform hole( s, shift );
|
|
|
|
m_cutouts.push_back( hole.Shape() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// slotted hole
|
|
|
|
double angle_offset = 0.0;
|
|
|
|
double rad; // radius of the slot
|
|
|
|
double hlen; // half length of the slot
|
|
|
|
|
|
|
|
if( aPad->m_drill.size.x < aPad->m_drill.size.y )
|
|
|
|
{
|
|
|
|
angle_offset = M_PI_2;
|
|
|
|
rad = aPad->m_drill.size.x * 0.5;
|
|
|
|
hlen = aPad->m_drill.size.y * 0.5 - rad;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rad = aPad->m_drill.size.y * 0.5;
|
|
|
|
hlen = aPad->m_drill.size.x * 0.5 - rad;
|
|
|
|
}
|
|
|
|
|
|
|
|
DOUBLET c0( -hlen, 0.0 );
|
|
|
|
DOUBLET c1( hlen, 0.0 );
|
|
|
|
DOUBLET p0( -hlen, rad );
|
|
|
|
DOUBLET p1( -hlen, -rad );
|
|
|
|
DOUBLET p2( hlen, -rad );
|
|
|
|
DOUBLET p3( hlen, rad );
|
|
|
|
|
|
|
|
angle_offset += aPad->m_rotation;
|
|
|
|
double dlim = (double)std::numeric_limits< float >::epsilon();
|
|
|
|
|
|
|
|
if( angle_offset < -dlim || angle_offset > dlim )
|
|
|
|
{
|
|
|
|
double vsin = sin( angle_offset );
|
|
|
|
double vcos = cos( angle_offset );
|
|
|
|
|
|
|
|
double x = c0.x * vcos - c0.y * vsin;
|
|
|
|
double y = c0.x * vsin + c0.y * vcos;
|
|
|
|
c0.x = x;
|
|
|
|
c0.y = y;
|
|
|
|
|
|
|
|
x = c1.x * vcos - c1.y * vsin;
|
|
|
|
y = c1.x * vsin + c1.y * vcos;
|
|
|
|
c1.x = x;
|
|
|
|
c1.y = y;
|
|
|
|
|
|
|
|
x = p0.x * vcos - p0.y * vsin;
|
|
|
|
y = p0.x * vsin + p0.y * vcos;
|
|
|
|
p0.x = x;
|
|
|
|
p0.y = y;
|
|
|
|
|
|
|
|
x = p1.x * vcos - p1.y * vsin;
|
|
|
|
y = p1.x * vsin + p1.y * vcos;
|
|
|
|
p1.x = x;
|
|
|
|
p1.y = y;
|
|
|
|
|
|
|
|
x = p2.x * vcos - p2.y * vsin;
|
|
|
|
y = p2.x * vsin + p2.y * vcos;
|
|
|
|
p2.x = x;
|
|
|
|
p2.y = y;
|
|
|
|
|
|
|
|
x = p3.x * vcos - p3.y * vsin;
|
|
|
|
y = p3.x * vsin + p3.y * vcos;
|
|
|
|
p3.x = x;
|
|
|
|
p3.y = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
c0.x += aPad->m_position.x;
|
|
|
|
c0.y += aPad->m_position.y;
|
|
|
|
c1.x += aPad->m_position.x;
|
|
|
|
c1.y += aPad->m_position.y;
|
|
|
|
p0.x += aPad->m_position.x;
|
|
|
|
p0.y += aPad->m_position.y;
|
|
|
|
p1.x += aPad->m_position.x;
|
|
|
|
p1.y += aPad->m_position.y;
|
|
|
|
p2.x += aPad->m_position.x;
|
|
|
|
p2.y += aPad->m_position.y;
|
|
|
|
p3.x += aPad->m_position.x;
|
|
|
|
p3.y += aPad->m_position.y;
|
|
|
|
|
|
|
|
OUTLINE oln;
|
2018-06-19 08:14:10 +00:00
|
|
|
oln.SetMinSqDistance( m_minDistance2 );
|
2016-09-02 10:08:40 +00:00
|
|
|
KICADCURVE crv0, crv1, crv2, crv3;
|
|
|
|
|
|
|
|
// crv0 = arc
|
|
|
|
crv0.m_start = c0;
|
|
|
|
crv0.m_end = p0;
|
|
|
|
crv0.m_ep = p1;
|
|
|
|
crv0.m_angle = M_PI;
|
|
|
|
crv0.m_radius = rad;
|
|
|
|
crv0.m_form = CURVE_ARC;
|
|
|
|
|
|
|
|
// crv1 = line
|
|
|
|
crv1.m_start = p1;
|
|
|
|
crv1.m_end = p2;
|
|
|
|
crv1.m_form = CURVE_LINE;
|
|
|
|
|
|
|
|
// crv2 = arc
|
|
|
|
crv2.m_start = c1;
|
|
|
|
crv2.m_end = p2;
|
|
|
|
crv2.m_ep = p3;
|
|
|
|
crv2.m_angle = M_PI;
|
|
|
|
crv2.m_radius = rad;
|
|
|
|
crv2.m_form = CURVE_ARC;
|
|
|
|
|
|
|
|
// crv3 = line
|
|
|
|
crv3.m_start = p3;
|
|
|
|
crv3.m_end = p0;
|
|
|
|
crv3.m_form = CURVE_LINE;
|
|
|
|
|
|
|
|
oln.AddSegment( crv0 );
|
|
|
|
oln.AddSegment( crv1 );
|
|
|
|
oln.AddSegment( crv2 );
|
|
|
|
oln.AddSegment( crv3 );
|
|
|
|
TopoDS_Shape slot;
|
|
|
|
|
|
|
|
if( oln.MakeShape( slot, m_thickness ) )
|
|
|
|
{
|
|
|
|
if( !slot.IsNull() )
|
|
|
|
m_cutouts.push_back( slot );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-27 12:34:49 +00:00
|
|
|
bool PCBMODEL::AddComponent( const std::string& aFileNameUTF8, const std::string& aRefDes,
|
2021-07-06 20:22:06 +00:00
|
|
|
bool aBottom, DOUBLET aPosition, double aRotation,
|
|
|
|
TRIPLET aOffset, TRIPLET aOrientation, TRIPLET aScale,
|
|
|
|
bool aSubstituteModels )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2021-08-27 12:34:49 +00:00
|
|
|
if( aFileNameUTF8.empty() )
|
2018-03-19 11:17:09 +00:00
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "No model defined for component %s.\n" ), aRefDes ) );
|
2018-03-19 11:17:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-27 17:02:55 +00:00
|
|
|
wxString fileName( wxString::FromUTF8( aFileNameUTF8.c_str() ) );
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "Add component %s.\n" ), aRefDes ) );
|
2018-09-20 09:05:52 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// first retrieve a label
|
|
|
|
TDF_Label lmodel;
|
2021-07-08 15:22:33 +00:00
|
|
|
wxString errorMessage;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-08-27 12:34:49 +00:00
|
|
|
if( !getModelLabel( aFileNameUTF8, aScale, lmodel, aSubstituteModels, &errorMessage ) )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2021-07-08 15:22:33 +00:00
|
|
|
if( errorMessage.IsEmpty() )
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "No model for filename '%s'.\n" ), fileName ) );
|
2021-07-08 15:22:33 +00:00
|
|
|
else
|
|
|
|
ReportMessage( errorMessage );
|
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate the Location transform
|
|
|
|
TopLoc_Location toploc;
|
|
|
|
|
|
|
|
if( !getModelLocation( aBottom, aPosition, aRotation, aOffset, aOrientation, toploc ) )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "No location data for filename '%s'.\n" ),
|
|
|
|
fileName ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add the located sub-assembly
|
|
|
|
TDF_Label llabel = m_assy->AddComponent( m_assy_label, lmodel, toploc );
|
|
|
|
|
|
|
|
if( llabel.IsNull() )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "Could not add component with filename '%s'.\n" ),
|
2021-08-27 12:34:49 +00:00
|
|
|
fileName ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// attach the RefDes name
|
|
|
|
TCollection_ExtendedString refdes( aRefDes.c_str() );
|
|
|
|
TDataStd_Name::Set( llabel, refdes );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PCBMODEL::SetPCBThickness( double aThickness )
|
|
|
|
{
|
|
|
|
if( aThickness < 0.0 )
|
|
|
|
m_thickness = THICKNESS_DEFAULT;
|
|
|
|
else if( aThickness < THICKNESS_MIN )
|
|
|
|
m_thickness = THICKNESS_MIN;
|
|
|
|
else
|
|
|
|
m_thickness = aThickness;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-05-09 20:02:33 +00:00
|
|
|
void PCBMODEL::SetBoardColor( double r, double g, double b )
|
|
|
|
{
|
|
|
|
m_boardColor[0] = r;
|
|
|
|
m_boardColor[1] = g;
|
|
|
|
m_boardColor[2] = b;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-03 08:40:40 +00:00
|
|
|
void PCBMODEL::SetMinDistance( double aDistance )
|
|
|
|
{
|
|
|
|
// m_minDistance2 keeps a squared distance value
|
|
|
|
m_minDistance2 = aDistance * aDistance;
|
|
|
|
BRepBuilderAPI::Precision( aDistance );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
bool PCBMODEL::CreatePCB()
|
|
|
|
{
|
|
|
|
if( m_hasPCB )
|
|
|
|
{
|
|
|
|
if( m_pcb_label.IsNull() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( m_curves.empty() || m_mincurve == m_curves.end() )
|
|
|
|
{
|
|
|
|
m_hasPCB = true;
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "No valid board outline.\n" ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_hasPCB = true; // whether or not operations fail we note that CreatePCB has been invoked
|
|
|
|
TopoDS_Shape board;
|
2018-10-02 06:34:07 +00:00
|
|
|
OUTLINE oln; // loop to assemble (represents PCB outline and cutouts)
|
2018-06-19 08:14:10 +00:00
|
|
|
oln.SetMinSqDistance( m_minDistance2 );
|
2016-09-02 10:08:40 +00:00
|
|
|
oln.AddSegment( *m_mincurve );
|
|
|
|
m_curves.erase( m_mincurve );
|
|
|
|
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "Build board outline (%d items).\n" ),
|
2020-02-15 09:58:44 +00:00
|
|
|
(int)m_curves.size() ) );
|
2018-10-02 06:34:07 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
while( !m_curves.empty() )
|
|
|
|
{
|
|
|
|
if( oln.IsClosed() )
|
|
|
|
{
|
|
|
|
if( board.IsNull() )
|
|
|
|
{
|
|
|
|
if( !oln.MakeShape( board, m_thickness ) )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "Could not create board extrusion.\n" ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TopoDS_Shape hole;
|
|
|
|
|
|
|
|
if( oln.MakeShape( hole, m_thickness ) )
|
|
|
|
{
|
|
|
|
m_cutouts.push_back( hole );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "Could not create board cutout.\n" ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
oln.Clear();
|
|
|
|
|
|
|
|
if( !m_curves.empty() )
|
|
|
|
{
|
|
|
|
oln.AddSegment( m_curves.front() );
|
|
|
|
m_curves.pop_front();
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::list< KICADCURVE >::iterator sC = m_curves.begin();
|
2020-02-01 14:15:51 +00:00
|
|
|
bool added = false;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2020-02-01 14:15:51 +00:00
|
|
|
while( sC != m_curves.end() )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
if( oln.AddSegment( *sC ) )
|
|
|
|
{
|
2020-02-01 14:15:51 +00:00
|
|
|
added = true;
|
2016-09-02 10:08:40 +00:00
|
|
|
m_curves.erase( sC );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
++sC;
|
|
|
|
}
|
|
|
|
|
2020-02-01 14:15:51 +00:00
|
|
|
if( !added && !oln.m_curves.empty() )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2018-09-20 09:05:52 +00:00
|
|
|
wxString msg;
|
2022-02-08 21:47:43 +00:00
|
|
|
msg.Printf( wxT( "Could not close outline (dropping outline data with %d segments).\n" ),
|
2020-10-06 19:40:39 +00:00
|
|
|
static_cast<int>( oln.m_curves.size() ) );
|
2018-06-18 12:20:25 +00:00
|
|
|
|
|
|
|
for( const auto& c : oln.m_curves )
|
2018-09-20 09:05:52 +00:00
|
|
|
msg << " + " << c.Describe() << "\n";
|
2018-06-18 12:20:25 +00:00
|
|
|
|
2018-09-20 09:05:52 +00:00
|
|
|
ReportMessage( msg );
|
2016-09-02 10:08:40 +00:00
|
|
|
oln.Clear();
|
|
|
|
|
|
|
|
if( !m_curves.empty() )
|
|
|
|
{
|
|
|
|
oln.AddSegment( m_curves.front() );
|
|
|
|
m_curves.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( oln.IsClosed() )
|
|
|
|
{
|
|
|
|
if( board.IsNull() )
|
|
|
|
{
|
|
|
|
if( !oln.MakeShape( board, m_thickness ) )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "Could not create board extrusion.\n" ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TopoDS_Shape hole;
|
|
|
|
|
|
|
|
if( oln.MakeShape( hole, m_thickness ) )
|
|
|
|
{
|
|
|
|
m_cutouts.push_back( hole );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "Could not create board cutout.\n" ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-06 14:03:08 +00:00
|
|
|
else
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "Could not create closed board outlines.\n" ) );
|
2020-10-06 14:03:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
// subtract cutouts (if any)
|
2018-10-02 06:34:07 +00:00
|
|
|
if( m_cutouts.size() )
|
2021-07-06 20:22:06 +00:00
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "Build board cutouts and holes (%d holes).\n" ),
|
|
|
|
(int) m_cutouts.size() ) );
|
2021-07-06 20:22:06 +00:00
|
|
|
}
|
2018-10-02 06:34:07 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
#if 0
|
|
|
|
// First version for holes removing: very slow when having many (> 300) holes
|
2018-10-02 06:34:07 +00:00
|
|
|
// Substract holes (cutouts) can be time consuming, so display activity
|
|
|
|
// state to be sure there is no hang:
|
|
|
|
int char_count = 0;
|
|
|
|
int cur_count = 0;
|
|
|
|
int cntmax = m_cutouts.size();
|
|
|
|
|
|
|
|
for( auto hole : m_cutouts )
|
|
|
|
{
|
|
|
|
board = BRepAlgoAPI_Cut( board, hole );
|
|
|
|
|
|
|
|
cur_count++;
|
|
|
|
char_count++;
|
|
|
|
|
|
|
|
if( char_count < 80 )
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "." ) );
|
2018-10-02 06:34:07 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
char_count = 0;
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( ". %d/%d\n" ), cur_count, cntmax ) );
|
2018-10-02 06:34:07 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-15 09:58:44 +00:00
|
|
|
#else // Much faster than first version: group all holes and cut only once
|
2020-04-22 08:43:28 +00:00
|
|
|
if( m_cutouts.size() )
|
2020-02-15 09:58:44 +00:00
|
|
|
{
|
|
|
|
BRepAlgoAPI_Cut Cut;
|
|
|
|
TopTools_ListOfShape mainbrd;
|
|
|
|
mainbrd.Append( board );
|
|
|
|
|
|
|
|
Cut.SetArguments( mainbrd );
|
|
|
|
TopTools_ListOfShape holelist;
|
2018-10-02 06:34:07 +00:00
|
|
|
|
2020-02-15 09:58:44 +00:00
|
|
|
for( auto hole : m_cutouts )
|
|
|
|
holelist.Append( hole );
|
|
|
|
|
|
|
|
Cut.SetTools( holelist );
|
|
|
|
Cut.Build();
|
|
|
|
board = Cut.Shape();
|
|
|
|
}
|
|
|
|
#endif
|
2020-04-22 08:43:28 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// push the board to the data structure
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "\nGenerate board full shape.\n" ) );
|
2021-09-11 04:27:48 +00:00
|
|
|
|
2021-09-14 01:17:22 +00:00
|
|
|
// Dont expand the component or else coloring it gets hard
|
|
|
|
m_pcb_label = m_assy->AddComponent( m_assy_label, board, false );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
if( m_pcb_label.IsNull() )
|
|
|
|
return false;
|
|
|
|
|
2021-09-12 21:41:18 +00:00
|
|
|
// AddComponent adds a label that has a reference (not a parent/child relation) to the real label
|
|
|
|
// We need to extract that real label to name it for the STEP output cleanly
|
|
|
|
// Why are we trying to name the bare board? Because CAD tools like SolidWorks do fun things
|
|
|
|
// like "deduplicate" imported STEPs by swapping STEP assembly components with already identically named assemblies
|
|
|
|
// So we want to avoid having the PCB be generally defaulted to "Component" or "Assembly".
|
2021-09-14 01:17:22 +00:00
|
|
|
Handle( TDataStd_TreeNode ) node;
|
2021-09-12 21:41:18 +00:00
|
|
|
|
2021-09-14 01:17:22 +00:00
|
|
|
if( m_pcb_label.FindAttribute( XCAFDoc::ShapeRefGUID(), node ) )
|
2021-09-12 21:41:18 +00:00
|
|
|
{
|
2021-09-14 01:17:22 +00:00
|
|
|
TDF_Label label = node->Father()->Label();
|
2021-09-12 21:41:18 +00:00
|
|
|
if( !label.IsNull() )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
wxString pcbName = wxString::Format( wxT( "%s PCB" ), m_pcbName );
|
2021-09-12 21:41:18 +00:00
|
|
|
std::string pcbNameStdString( pcbName.ToUTF8() );
|
|
|
|
TCollection_ExtendedString partname( pcbNameStdString.c_str() );
|
|
|
|
TDataStd_Name::Set( label, partname );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// color the PCB
|
2022-05-09 20:02:33 +00:00
|
|
|
Handle( XCAFDoc_ColorTool ) colorTool = XCAFDoc_DocumentTool::ColorTool( m_doc->Main () );
|
|
|
|
Quantity_Color color( m_boardColor[0], m_boardColor[1], m_boardColor[2], Quantity_TOC_RGB );
|
|
|
|
|
|
|
|
colorTool->SetColor( m_pcb_label, color, XCAFDoc_ColorSurf );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
TopExp_Explorer topex;
|
|
|
|
topex.Init( m_assy->GetShape( m_pcb_label ), TopAbs_SOLID );
|
|
|
|
|
|
|
|
while( topex.More() )
|
|
|
|
{
|
2022-05-09 20:02:33 +00:00
|
|
|
colorTool->SetColor( topex.Current(), color, XCAFDoc_ColorSurf );
|
2016-09-02 10:08:40 +00:00
|
|
|
topex.Next();
|
|
|
|
}
|
|
|
|
|
2018-01-26 00:38:29 +00:00
|
|
|
#if ( defined OCC_VERSION_HEX ) && ( OCC_VERSION_HEX > 0x070101 )
|
|
|
|
m_assy->UpdateAssemblies();
|
|
|
|
#endif
|
2016-09-02 10:08:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef SUPPORTS_IGES
|
|
|
|
// write the assembly model in IGES format
|
2018-09-20 09:05:52 +00:00
|
|
|
bool PCBMODEL::WriteIGES( const wxString& aFileName )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
if( m_pcb_label.IsNull() )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "No valid PCB assembly; cannot create output file "
|
|
|
|
"'%s'.\n" ),
|
2021-07-06 20:22:06 +00:00
|
|
|
aFileName ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxFileName fn( aFileName );
|
|
|
|
IGESControl_Controller::Init();
|
|
|
|
IGESCAFControl_Writer writer;
|
|
|
|
writer.SetColorMode( Standard_True );
|
|
|
|
writer.SetNameMode( Standard_True );
|
|
|
|
IGESData_GlobalSection header = writer.Model()->GlobalSection();
|
2020-02-15 09:58:44 +00:00
|
|
|
header.SetFileName( new TCollection_HAsciiString( fn.GetFullName().ToAscii() ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
header.SetSendName( new TCollection_HAsciiString( "KiCad electronic assembly" ) );
|
|
|
|
header.SetAuthorName( new TCollection_HAsciiString( Interface_Static::CVal( "write.iges.header.author" ) ) );
|
|
|
|
header.SetCompanyName( new TCollection_HAsciiString( Interface_Static::CVal( "write.iges.header.company" ) ) );
|
|
|
|
writer.Model()->SetGlobalSection( header );
|
|
|
|
|
|
|
|
if( Standard_False == writer.Perform( m_doc, aFileName.c_str() ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2018-09-20 09:05:52 +00:00
|
|
|
bool PCBMODEL::WriteSTEP( const wxString& aFileName )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
if( m_pcb_label.IsNull() )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "No valid PCB assembly; cannot create output file "
|
|
|
|
"'%s'.\n" ),
|
2021-07-06 20:22:06 +00:00
|
|
|
aFileName ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-03-03 14:26:20 +00:00
|
|
|
wxFileName fn( aFileName );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
STEPCAFControl_Writer writer;
|
|
|
|
writer.SetColorMode( Standard_True );
|
|
|
|
writer.SetNameMode( Standard_True );
|
|
|
|
|
2021-03-03 14:26:20 +00:00
|
|
|
// This must be set before we "transfer" the document.
|
|
|
|
// Should default to kicad_pcb.general.title_block.title,
|
|
|
|
// but in the meantime, defaulting to the basename of the output
|
|
|
|
// target is still better than "open cascade step translter v..."
|
|
|
|
// UTF8 should be ok from ISO 10303-21:2016, but... older stuff? use boring ascii
|
2021-07-06 20:22:06 +00:00
|
|
|
if( !Interface_Static::SetCVal( "write.step.product.name", fn.GetName().ToAscii() ) )
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "Failed to set step product name, but will attempt to continue." ) );
|
2021-03-03 14:26:20 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
if( Standard_False == writer.Transfer( m_doc, STEPControl_AsIs ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
APIHeaderSection_MakeHeader hdr( writer.ChangeWriter().Model() );
|
2021-07-29 11:10:58 +00:00
|
|
|
|
2020-02-15 09:58:44 +00:00
|
|
|
// Note: use only Ascii7 chars, non Ascii7 chars (therefore UFT8 chars)
|
|
|
|
// are creating issues in the step file
|
|
|
|
hdr.SetName( new TCollection_HAsciiString( fn.GetFullName().ToAscii() ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// TODO: how to control and ensure consistency with IGES?
|
2020-02-15 09:58:44 +00:00
|
|
|
hdr.SetAuthorValue( 1, new TCollection_HAsciiString( "Pcbnew" ) );
|
|
|
|
hdr.SetOrganizationValue( 1, new TCollection_HAsciiString( "Kicad" ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
hdr.SetOriginatingSystem( new TCollection_HAsciiString( "KiCad to STEP converter" ) );
|
|
|
|
hdr.SetDescriptionValue( 1, new TCollection_HAsciiString( "KiCad electronic assembly" ) );
|
|
|
|
|
2018-09-20 09:05:52 +00:00
|
|
|
bool success = true;
|
2021-07-29 11:10:58 +00:00
|
|
|
|
|
|
|
// Creates a temporary file with a ascii7 name, because writer does not know unicode filenames.
|
2018-09-20 09:05:52 +00:00
|
|
|
wxString currCWD = wxGetCwd();
|
2021-07-29 11:10:58 +00:00
|
|
|
wxString workCWD = fn.GetPath();
|
2020-02-15 09:58:44 +00:00
|
|
|
|
|
|
|
if( !workCWD.IsEmpty() )
|
|
|
|
wxSetWorkingDirectory( workCWD );
|
|
|
|
|
2018-09-20 09:05:52 +00:00
|
|
|
char tmpfname[] = "$tempfile$.step";
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2018-09-20 09:05:52 +00:00
|
|
|
if( Standard_False == writer.Write( tmpfname ) )
|
|
|
|
success = false;
|
|
|
|
|
|
|
|
if( success )
|
|
|
|
{
|
2020-07-30 08:40:51 +00:00
|
|
|
if( !wxRenameFile( tmpfname, fn.GetFullName(), true ) )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "Cannot rename temporary file '%s' to '%s'.\n" ),
|
2021-07-06 20:22:06 +00:00
|
|
|
tmpfname,
|
|
|
|
fn.GetFullName() ) );
|
2020-07-30 08:40:51 +00:00
|
|
|
success = false;
|
|
|
|
}
|
2018-09-20 09:05:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxSetWorkingDirectory( currCWD );
|
|
|
|
|
|
|
|
return success;
|
2016-09-02 10:08:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-27 12:34:49 +00:00
|
|
|
bool PCBMODEL::getModelLabel( const std::string& aFileNameUTF8, TRIPLET aScale, TDF_Label& aLabel,
|
2021-07-08 15:22:33 +00:00
|
|
|
bool aSubstituteModels, wxString* aErrorMessage )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2021-08-27 12:34:49 +00:00
|
|
|
std::string model_key = aFileNameUTF8 + "_" + std::to_string( aScale.x )
|
2020-02-15 09:58:44 +00:00
|
|
|
+ "_" + std::to_string( aScale.y ) + "_" + std::to_string( aScale.z );
|
2019-05-28 15:40:34 +00:00
|
|
|
|
|
|
|
MODEL_MAP::const_iterator mm = m_models.find( model_key );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
if( mm != m_models.end() )
|
|
|
|
{
|
|
|
|
aLabel = mm->second;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
aLabel.Nullify();
|
|
|
|
|
|
|
|
Handle( TDocStd_Document ) doc;
|
|
|
|
m_app->NewDocument( "MDTV-XCAF", doc );
|
|
|
|
|
2021-08-27 17:02:55 +00:00
|
|
|
wxString fileName( wxString::FromUTF8( aFileNameUTF8.c_str() ) );
|
2021-08-27 12:34:49 +00:00
|
|
|
FormatType modelFmt = fileType( aFileNameUTF8.c_str() );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
switch( modelFmt )
|
|
|
|
{
|
2021-07-29 11:10:58 +00:00
|
|
|
case FMT_IGES:
|
2021-08-27 12:34:49 +00:00
|
|
|
if( !readIGES( doc, aFileNameUTF8.c_str() ) )
|
2021-07-29 11:10:58 +00:00
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "readIGES() failed on filename '%s'.\n" ),
|
|
|
|
fileName ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
case FMT_STEP:
|
2021-08-27 12:34:49 +00:00
|
|
|
if( !readSTEP( doc, aFileNameUTF8.c_str() ) )
|
2020-08-26 02:27:08 +00:00
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "readSTEP() failed on filename '%s'.\n" ),
|
|
|
|
fileName ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2020-08-26 02:27:08 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
case FMT_STEPZ:
|
|
|
|
{
|
2021-08-27 12:34:49 +00:00
|
|
|
// To export a compressed step file (.stpz or .stp.gz file), the best way is to
|
|
|
|
// decaompress it in a temporaty file and load this temporary file
|
|
|
|
wxFFileInputStream ifile( fileName );
|
|
|
|
wxFileName outFile( fileName );
|
2020-08-26 02:27:08 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
outFile.SetPath( wxStandardPaths::Get().GetTempDir() );
|
2022-02-08 21:47:43 +00:00
|
|
|
outFile.SetExt( wxT( "step" ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
wxFileOffset size = ifile.GetLength();
|
2020-08-26 02:27:08 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( size == wxInvalidOffset )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "getModelLabel() failed on filename '%s'.\n" ),
|
2021-08-27 12:34:49 +00:00
|
|
|
fileName ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-08-26 02:27:08 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
{
|
|
|
|
bool success = false;
|
|
|
|
wxFFileOutputStream ofile( outFile.GetFullPath() );
|
2020-08-26 02:27:08 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( !ofile.IsOk() )
|
|
|
|
return false;
|
2020-08-26 02:27:08 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
char* buffer = new char[size];
|
2020-08-26 21:18:54 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
ifile.Read( buffer, size );
|
|
|
|
std::string expanded;
|
2021-02-28 00:41:14 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
expanded = gzip::decompress( buffer, size );
|
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
catch( ... )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "failed to decompress '%s'.\n" ),
|
|
|
|
fileName ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
}
|
2021-02-28 00:41:14 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( expanded.empty() )
|
|
|
|
{
|
|
|
|
ifile.Reset();
|
|
|
|
ifile.SeekI( 0 );
|
|
|
|
wxZipInputStream izipfile( ifile );
|
|
|
|
std::unique_ptr<wxZipEntry> zip_file( izipfile.GetNextEntry() );
|
|
|
|
|
|
|
|
if( zip_file && !zip_file->IsDir() && izipfile.CanRead() )
|
2021-02-28 00:41:14 +00:00
|
|
|
{
|
2021-07-29 11:10:58 +00:00
|
|
|
izipfile.Read( ofile );
|
|
|
|
success = true;
|
2020-08-26 21:18:54 +00:00
|
|
|
}
|
2021-07-29 11:10:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ofile.Write( expanded.data(), expanded.size() );
|
2020-08-26 02:27:08 +00:00
|
|
|
}
|
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
delete[] buffer;
|
|
|
|
ofile.Close();
|
|
|
|
|
2021-08-27 12:34:49 +00:00
|
|
|
if( success )
|
|
|
|
{
|
2021-08-27 17:02:55 +00:00
|
|
|
std::string altFileNameUTF8 = TO_UTF8( outFile.GetFullPath() );
|
2021-08-27 12:34:49 +00:00
|
|
|
success = getModelLabel( altFileNameUTF8, TRIPLET( 1.0, 1.0, 1.0 ), aLabel, false );
|
|
|
|
}
|
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
return success;
|
2020-08-26 02:27:08 +00:00
|
|
|
}
|
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case FMT_WRL:
|
|
|
|
case FMT_WRZ:
|
|
|
|
/* WRL files are preferred for internal rendering, due to superior material properties, etc.
|
|
|
|
* However they are not suitable for MCAD export.
|
|
|
|
*
|
|
|
|
* If a .wrl file is specified, attempt to locate a replacement file for it.
|
|
|
|
*
|
|
|
|
* If a valid replacement file is found, the label for THAT file will be associated with
|
|
|
|
* the .wrl file
|
|
|
|
*/
|
|
|
|
if( aSubstituteModels )
|
|
|
|
{
|
2021-08-27 12:34:49 +00:00
|
|
|
wxFileName wrlName( fileName );
|
2021-07-29 11:10:58 +00:00
|
|
|
|
|
|
|
wxString basePath = wrlName.GetPath();
|
|
|
|
wxString baseName = wrlName.GetName();
|
|
|
|
|
|
|
|
// List of alternate files to look for
|
|
|
|
// Given in order of preference
|
|
|
|
// (Break if match is found)
|
|
|
|
wxArrayString alts;
|
|
|
|
|
|
|
|
// Step files
|
2022-02-08 21:47:43 +00:00
|
|
|
alts.Add( wxT( "stp" ) );
|
|
|
|
alts.Add( wxT( "step" ) );
|
|
|
|
alts.Add( wxT( "STP" ) );
|
|
|
|
alts.Add( wxT( "STEP" ) );
|
|
|
|
alts.Add( wxT( "Stp" ) );
|
|
|
|
alts.Add( wxT( "Step" ) );
|
|
|
|
alts.Add( wxT( "stpz" ) );
|
|
|
|
alts.Add( wxT( "stpZ" ) );
|
|
|
|
alts.Add( wxT( "STPZ" ) );
|
|
|
|
alts.Add( wxT( "step.gz" ) );
|
|
|
|
alts.Add( wxT( "stp.gz" ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
|
|
|
|
// IGES files
|
2022-02-08 21:47:43 +00:00
|
|
|
alts.Add( wxT( "iges" ) );
|
|
|
|
alts.Add( wxT( "IGES" ) );
|
|
|
|
alts.Add( wxT( "igs" ) );
|
|
|
|
alts.Add( wxT( "IGS" ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
|
|
|
|
//TODO - Other alternative formats?
|
|
|
|
|
|
|
|
for( const auto& alt : alts )
|
2017-11-04 12:44:13 +00:00
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
wxFileName altFile( basePath, baseName + wxT( "." ) + alt );
|
2017-11-04 12:44:13 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( altFile.IsOk() && altFile.FileExists() )
|
|
|
|
{
|
2021-08-27 17:02:55 +00:00
|
|
|
std::string altFileNameUTF8 = TO_UTF8( altFile.GetFullPath() );
|
2021-07-29 11:10:58 +00:00
|
|
|
|
|
|
|
// When substituting a STEP/IGS file for VRML, do not apply the VRML scaling
|
|
|
|
// to the new STEP model. This process of auto-substitution is janky as all
|
|
|
|
// heck so let's not mix up un-displayed scale factors with potentially
|
|
|
|
// mis-matched files. And hope that the user doesn't have multiples files
|
|
|
|
// named "model.wrl" and "model.stp" referring to different parts.
|
|
|
|
// TODO: Fix model handling in v7. Default models should only be STP.
|
|
|
|
// Have option to override this in DISPLAY.
|
2021-08-27 12:34:49 +00:00
|
|
|
if( getModelLabel( altFileNameUTF8, TRIPLET( 1.0, 1.0, 1.0 ), aLabel, false ) )
|
2017-11-04 12:44:13 +00:00
|
|
|
{
|
2021-07-29 11:10:58 +00:00
|
|
|
return true;
|
2017-11-04 12:44:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
return false; // No replacement model found
|
|
|
|
}
|
|
|
|
else // Substitution is not allowed
|
|
|
|
{
|
|
|
|
if( aErrorMessage )
|
2022-02-08 21:47:43 +00:00
|
|
|
aErrorMessage->Printf( wxT( "Cannot add a VRML model to a STEP file.\n" ) );
|
2021-08-14 10:07:58 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2017-11-04 12:44:13 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// TODO: implement IDF and EMN converters
|
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
default:
|
|
|
|
return false;
|
2016-09-02 10:08:40 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 15:40:34 +00:00
|
|
|
aLabel = transferModel( doc, m_doc, aScale );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
if( aLabel.IsNull() )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "Could not transfer model data from file '%s'.\n" ),
|
2021-08-27 12:34:49 +00:00
|
|
|
fileName ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// attach the PART NAME ( base filename: note that in principle
|
|
|
|
// different models may have the same base filename )
|
2021-08-27 12:34:49 +00:00
|
|
|
wxFileName afile( fileName );
|
2016-09-02 10:08:40 +00:00
|
|
|
std::string pname( afile.GetName().ToUTF8() );
|
|
|
|
TCollection_ExtendedString partname( pname.c_str() );
|
|
|
|
TDataStd_Name::Set( aLabel, partname );
|
|
|
|
|
2019-05-28 15:40:34 +00:00
|
|
|
m_models.insert( MODEL_DATUM( model_key, aLabel ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
++m_components;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-06 20:22:06 +00:00
|
|
|
bool PCBMODEL::getModelLocation( bool aBottom, DOUBLET aPosition, double aRotation, TRIPLET aOffset,
|
|
|
|
TRIPLET aOrientation, TopLoc_Location& aLocation )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
// Order of operations:
|
|
|
|
// a. aOrientation is applied -Z*-Y*-X
|
|
|
|
// b. aOffset is applied
|
|
|
|
// Top ? add thickness to the Z offset
|
|
|
|
// c. Bottom ? Rotate on X axis (in contrast to most ECAD which mirror on Y),
|
|
|
|
// then rotate on +Z
|
|
|
|
// Top ? rotate on -Z
|
|
|
|
// d. aPosition is applied
|
|
|
|
//
|
|
|
|
// Note: Y axis is inverted in KiCad
|
|
|
|
|
|
|
|
gp_Trsf lPos;
|
|
|
|
lPos.SetTranslation( gp_Vec( aPosition.x, -aPosition.y, 0.0 ) );
|
|
|
|
|
2017-11-08 09:56:57 +00:00
|
|
|
// Offset board thickness
|
|
|
|
aOffset.z += BOARD_OFFSET;
|
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
gp_Trsf lRot;
|
|
|
|
|
|
|
|
if( aBottom )
|
|
|
|
{
|
|
|
|
lRot.SetRotation( gp_Ax1( gp_Pnt( 0.0, 0.0, 0.0 ), gp_Dir( 0.0, 0.0, 1.0 ) ), aRotation );
|
|
|
|
lPos.Multiply( lRot );
|
|
|
|
lRot.SetRotation( gp_Ax1( gp_Pnt( 0.0, 0.0, 0.0 ), gp_Dir( 1.0, 0.0, 0.0 ) ), M_PI );
|
|
|
|
lPos.Multiply( lRot );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aOffset.z += m_thickness;
|
|
|
|
lRot.SetRotation( gp_Ax1( gp_Pnt( 0.0, 0.0, 0.0 ), gp_Dir( 0.0, 0.0, 1.0 ) ), aRotation );
|
|
|
|
lPos.Multiply( lRot );
|
|
|
|
}
|
|
|
|
|
|
|
|
gp_Trsf lOff;
|
|
|
|
lOff.SetTranslation( gp_Vec( aOffset.x, aOffset.y, aOffset.z ) );
|
|
|
|
lPos.Multiply( lOff );
|
|
|
|
|
|
|
|
gp_Trsf lOrient;
|
2021-09-04 17:05:30 +00:00
|
|
|
lOrient.SetRotation( gp_Ax1( gp_Pnt( 0.0, 0.0, 0.0 ), gp_Dir( 0.0, 0.0, 1.0 ) ),
|
|
|
|
-aOrientation.z );
|
2016-09-02 10:08:40 +00:00
|
|
|
lPos.Multiply( lOrient );
|
2021-09-04 17:05:30 +00:00
|
|
|
lOrient.SetRotation( gp_Ax1( gp_Pnt( 0.0, 0.0, 0.0 ), gp_Dir( 0.0, 1.0, 0.0 ) ),
|
|
|
|
-aOrientation.y );
|
2016-09-02 10:08:40 +00:00
|
|
|
lPos.Multiply( lOrient );
|
2021-09-04 17:05:30 +00:00
|
|
|
lOrient.SetRotation( gp_Ax1( gp_Pnt( 0.0, 0.0, 0.0 ), gp_Dir( 1.0, 0.0, 0.0 ) ),
|
|
|
|
-aOrientation.x );
|
2016-09-02 10:08:40 +00:00
|
|
|
lPos.Multiply( lOrient );
|
|
|
|
|
|
|
|
aLocation = TopLoc_Location( lPos );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PCBMODEL::readIGES( Handle( TDocStd_Document )& doc, const char* fname )
|
|
|
|
{
|
|
|
|
IGESControl_Controller::Init();
|
|
|
|
IGESCAFControl_Reader reader;
|
|
|
|
IFSelect_ReturnStatus stat = reader.ReadFile( fname );
|
|
|
|
|
|
|
|
if( stat != IFSelect_RetDone )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Enable user-defined shape precision
|
|
|
|
if( !Interface_Static::SetIVal( "read.precision.mode", 1 ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Set the shape conversion precision to USER_PREC (default 0.0001 has too many triangles)
|
|
|
|
if( !Interface_Static::SetRVal( "read.precision.val", USER_PREC ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// set other translation options
|
|
|
|
reader.SetColorMode(true); // use model colors
|
|
|
|
reader.SetNameMode(false); // don't use IGES label names
|
|
|
|
reader.SetLayerMode(false); // ignore LAYER data
|
|
|
|
|
|
|
|
if ( !reader.Transfer( doc ) )
|
|
|
|
{
|
|
|
|
doc->Close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// are there any shapes to translate?
|
|
|
|
if( reader.NbShapes() < 1 )
|
|
|
|
{
|
|
|
|
doc->Close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PCBMODEL::readSTEP( Handle(TDocStd_Document)& doc, const char* fname )
|
|
|
|
{
|
|
|
|
STEPCAFControl_Reader reader;
|
|
|
|
IFSelect_ReturnStatus stat = reader.ReadFile( fname );
|
|
|
|
|
|
|
|
if( stat != IFSelect_RetDone )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Enable user-defined shape precision
|
|
|
|
if( !Interface_Static::SetIVal( "read.precision.mode", 1 ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Set the shape conversion precision to USER_PREC (default 0.0001 has too many triangles)
|
|
|
|
if( !Interface_Static::SetRVal( "read.precision.val", USER_PREC ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// set other translation options
|
|
|
|
reader.SetColorMode(true); // use model colors
|
|
|
|
reader.SetNameMode(false); // don't use label names
|
|
|
|
reader.SetLayerMode(false); // ignore LAYER data
|
|
|
|
|
|
|
|
if ( !reader.Transfer( doc ) )
|
|
|
|
{
|
|
|
|
doc->Close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// are there any shapes to translate?
|
|
|
|
if( reader.NbRootsForTransfer() < 1 )
|
|
|
|
{
|
|
|
|
doc->Close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TDF_Label PCBMODEL::transferModel( Handle( TDocStd_Document )& source,
|
2021-07-06 20:22:06 +00:00
|
|
|
Handle( TDocStd_Document )& dest, TRIPLET aScale )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
// transfer data from Source into a top level component of Dest
|
|
|
|
|
2019-05-28 15:40:34 +00:00
|
|
|
gp_GTrsf scale_transform;
|
|
|
|
scale_transform.SetVectorialPart( gp_Mat( aScale.x, 0, 0,
|
|
|
|
0, aScale.y, 0,
|
|
|
|
0, 0, aScale.z ) );
|
|
|
|
BRepBuilderAPI_GTransform brep( scale_transform );
|
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
// s_assy = shape tool for the source
|
|
|
|
Handle(XCAFDoc_ShapeTool) s_assy = XCAFDoc_DocumentTool::ShapeTool ( source->Main() );
|
|
|
|
|
|
|
|
// retrieve all free shapes within the assembly
|
|
|
|
TDF_LabelSequence frshapes;
|
|
|
|
s_assy->GetFreeShapes( frshapes );
|
|
|
|
|
|
|
|
// d_assy = shape tool for the destination
|
|
|
|
Handle(XCAFDoc_ShapeTool) d_assy = XCAFDoc_DocumentTool::ShapeTool ( dest->Main() );
|
|
|
|
|
|
|
|
// create a new shape within the destination and set the assembly tool to point to it
|
|
|
|
TDF_Label component = d_assy->NewShape();
|
|
|
|
|
|
|
|
int nshapes = frshapes.Length();
|
|
|
|
int id = 1;
|
|
|
|
Handle( XCAFDoc_ColorTool ) scolor = XCAFDoc_DocumentTool::ColorTool( source->Main() );
|
|
|
|
Handle( XCAFDoc_ColorTool ) dcolor = XCAFDoc_DocumentTool::ColorTool( dest->Main() );
|
|
|
|
TopExp_Explorer dtop;
|
|
|
|
TopExp_Explorer stop;
|
|
|
|
|
|
|
|
while( id <= nshapes )
|
|
|
|
{
|
|
|
|
TopoDS_Shape shape = s_assy->GetShape( frshapes.Value(id) );
|
|
|
|
|
|
|
|
if ( !shape.IsNull() )
|
|
|
|
{
|
2019-05-28 15:40:34 +00:00
|
|
|
brep.Perform( shape, Standard_False );
|
|
|
|
TopoDS_Shape scaled_shape;
|
|
|
|
|
2020-02-15 09:58:44 +00:00
|
|
|
if ( brep.IsDone() )
|
|
|
|
{
|
2019-05-28 15:40:34 +00:00
|
|
|
scaled_shape = brep.Shape();
|
2020-02-15 09:58:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( " * transfertModel(): failed to scale model\n" ) );
|
2020-02-15 09:58:44 +00:00
|
|
|
|
2019-05-28 15:40:34 +00:00
|
|
|
scaled_shape = shape;
|
|
|
|
}
|
|
|
|
|
|
|
|
TDF_Label niulab = d_assy->AddComponent( component, scaled_shape, Standard_False );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
// check for per-surface colors
|
|
|
|
stop.Init( shape, TopAbs_FACE );
|
|
|
|
dtop.Init( d_assy->GetShape( niulab ), TopAbs_FACE );
|
|
|
|
|
|
|
|
while( stop.More() && dtop.More() )
|
|
|
|
{
|
|
|
|
Quantity_Color face_color;
|
|
|
|
|
|
|
|
TDF_Label tl;
|
|
|
|
|
|
|
|
// give priority to the base shape's color
|
|
|
|
if( s_assy->FindShape( stop.Current(), tl ) )
|
|
|
|
{
|
|
|
|
if( scolor->GetColor( tl, XCAFDoc_ColorSurf, face_color )
|
|
|
|
|| scolor->GetColor( tl, XCAFDoc_ColorGen, face_color )
|
|
|
|
|| scolor->GetColor( tl, XCAFDoc_ColorCurv, face_color ) )
|
|
|
|
{
|
|
|
|
dcolor->SetColor( dtop.Current(), face_color, XCAFDoc_ColorSurf );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( scolor->GetColor( stop.Current(), XCAFDoc_ColorSurf, face_color )
|
|
|
|
|| scolor->GetColor( stop.Current(), XCAFDoc_ColorGen, face_color )
|
|
|
|
|| scolor->GetColor( stop.Current(), XCAFDoc_ColorCurv, face_color ) )
|
|
|
|
{
|
|
|
|
dcolor->SetColor( dtop.Current(), face_color, XCAFDoc_ColorSurf );
|
|
|
|
}
|
|
|
|
|
|
|
|
stop.Next();
|
|
|
|
dtop.Next();
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for per-solid colors
|
|
|
|
stop.Init( shape, TopAbs_SOLID );
|
|
|
|
dtop.Init( d_assy->GetShape( niulab ), TopAbs_SOLID, TopAbs_FACE );
|
|
|
|
|
|
|
|
while( stop.More() && dtop.More() )
|
|
|
|
{
|
|
|
|
Quantity_Color face_color;
|
|
|
|
|
|
|
|
TDF_Label tl;
|
|
|
|
|
|
|
|
// give priority to the base shape's color
|
|
|
|
if( s_assy->FindShape( stop.Current(), tl ) )
|
|
|
|
{
|
|
|
|
if( scolor->GetColor( tl, XCAFDoc_ColorSurf, face_color )
|
|
|
|
|| scolor->GetColor( tl, XCAFDoc_ColorGen, face_color )
|
|
|
|
|| scolor->GetColor( tl, XCAFDoc_ColorCurv, face_color ) )
|
|
|
|
{
|
|
|
|
dcolor->SetColor( dtop.Current(), face_color, XCAFDoc_ColorGen );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( scolor->GetColor( stop.Current(), XCAFDoc_ColorSurf, face_color )
|
|
|
|
|| scolor->GetColor( stop.Current(), XCAFDoc_ColorGen, face_color )
|
|
|
|
|| scolor->GetColor( stop.Current(), XCAFDoc_ColorCurv, face_color ) )
|
|
|
|
{
|
|
|
|
dcolor->SetColor( dtop.Current(), face_color, XCAFDoc_ColorSurf );
|
|
|
|
}
|
|
|
|
|
|
|
|
stop.Next();
|
|
|
|
dtop.Next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
++id;
|
|
|
|
};
|
|
|
|
|
|
|
|
return component;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OUTLINE::OUTLINE()
|
|
|
|
{
|
|
|
|
m_closed = false;
|
2018-06-19 08:14:10 +00:00
|
|
|
m_minDistance2 = MIN_LENGTH2;
|
2016-09-02 10:08:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OUTLINE::~OUTLINE()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OUTLINE::Clear()
|
|
|
|
{
|
|
|
|
m_closed = false;
|
|
|
|
m_curves.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool OUTLINE::AddSegment( const KICADCURVE& aCurve )
|
|
|
|
{
|
|
|
|
if( m_closed )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( m_curves.empty() )
|
|
|
|
{
|
|
|
|
m_curves.push_back( aCurve );
|
|
|
|
|
|
|
|
if( CURVE_CIRCLE == aCurve.m_form )
|
|
|
|
m_closed = true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( CURVE_CIRCLE == aCurve.m_form )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// get the end points of the first curve
|
|
|
|
double spx0, spy0;
|
|
|
|
double epx0, epy0;
|
|
|
|
getEndPoints( m_curves.front(), spx0, spy0, epx0, epy0 );
|
|
|
|
|
|
|
|
// get the end points of the free curve
|
|
|
|
double spx1, spy1;
|
|
|
|
double epx1, epy1;
|
|
|
|
getEndPoints( aCurve, spx1, spy1, epx1, epy1 );
|
|
|
|
|
|
|
|
// check if the curve attaches to the front
|
|
|
|
double dx, dy;
|
|
|
|
dx = epx1 - spx0;
|
|
|
|
dy = epy1 - spy0;
|
|
|
|
|
2018-06-19 08:14:10 +00:00
|
|
|
if( dx * dx + dy * dy < m_minDistance2 )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
m_curves.push_front( aCurve );
|
|
|
|
m_closed = testClosed( m_curves.front(), m_curves.back() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dx = spx1 - spx0;
|
|
|
|
dy = spy1 - spy0;
|
|
|
|
|
2018-06-19 08:14:10 +00:00
|
|
|
if( dx * dx + dy * dy < m_minDistance2 )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
KICADCURVE curve = aCurve;
|
|
|
|
reverseCurve( curve );
|
|
|
|
m_curves.push_front( curve );
|
|
|
|
m_closed = testClosed( m_curves.front(), m_curves.back() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if the curve attaches to the back
|
|
|
|
getEndPoints( m_curves.back(), spx0, spy0, epx0, epy0 );
|
|
|
|
dx = spx1 - epx0;
|
|
|
|
dy = spy1 - epy0;
|
|
|
|
|
2018-06-19 08:14:10 +00:00
|
|
|
if( dx * dx + dy * dy < m_minDistance2 )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
m_curves.push_back( aCurve );
|
|
|
|
m_closed = testClosed( m_curves.front(), m_curves.back() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dx = epx1 - epx0;
|
|
|
|
dy = epy1 - epy0;
|
|
|
|
|
2018-06-19 08:14:10 +00:00
|
|
|
if( dx * dx + dy * dy < m_minDistance2 )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
KICADCURVE curve = aCurve;
|
|
|
|
reverseCurve( curve );
|
|
|
|
m_curves.push_back( curve );
|
|
|
|
m_closed = testClosed( m_curves.front(), m_curves.back() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this curve is not an end segment of the current loop
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool OUTLINE::MakeShape( TopoDS_Shape& aShape, double aThickness )
|
|
|
|
{
|
|
|
|
if( !aShape.IsNull() )
|
|
|
|
return false; // there is already data in the shape object
|
|
|
|
|
|
|
|
if( m_curves.empty() )
|
2020-03-24 16:24:53 +00:00
|
|
|
return true; // succeeded in doing nothing
|
2016-09-02 10:08:40 +00:00
|
|
|
|
|
|
|
if( !m_closed )
|
|
|
|
return false; // the loop is not closed
|
|
|
|
|
|
|
|
BRepBuilderAPI_MakeWire wire;
|
|
|
|
DOUBLET lastPoint;
|
|
|
|
getCurveEndPoint( m_curves.back(), lastPoint );
|
|
|
|
|
2021-09-04 17:05:30 +00:00
|
|
|
for( KICADCURVE& i : m_curves )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2018-06-18 12:20:25 +00:00
|
|
|
bool success = false;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
success = addEdge( &wire, i, lastPoint );
|
|
|
|
}
|
|
|
|
catch( const Standard_Failure& e )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "Exception caught: %s\n" ),
|
|
|
|
e.GetMessageString() ) );
|
2018-06-18 12:20:25 +00:00
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !success )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "failed to add edge: %s\n"
|
|
|
|
"last valid outline point: %f %f\n" ),
|
2021-09-04 17:05:30 +00:00
|
|
|
i.Describe().c_str(),
|
|
|
|
lastPoint.x,
|
|
|
|
lastPoint.y ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TopoDS_Face face = BRepBuilderAPI_MakeFace( wire );
|
|
|
|
aShape = BRepPrimAPI_MakePrism( face, gp_Vec( 0, 0, aThickness ) );
|
|
|
|
|
|
|
|
if( aShape.IsNull() )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "failed to create a prismatic shape\n" ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool OUTLINE::addEdge( BRepBuilderAPI_MakeWire* aWire, KICADCURVE& aCurve, DOUBLET& aLastPoint )
|
|
|
|
{
|
|
|
|
TopoDS_Edge edge;
|
|
|
|
DOUBLET endPoint;
|
|
|
|
getCurveEndPoint( aCurve, endPoint );
|
|
|
|
|
|
|
|
switch( aCurve.m_form )
|
|
|
|
{
|
2021-07-29 11:10:58 +00:00
|
|
|
case CURVE_LINE:
|
|
|
|
edge = BRepBuilderAPI_MakeEdge( gp_Pnt( aLastPoint.x, aLastPoint.y, 0.0 ),
|
|
|
|
gp_Pnt( endPoint.x, endPoint.y, 0.0 ) );
|
|
|
|
break;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
case CURVE_ARC:
|
|
|
|
{
|
|
|
|
gp_Circ arc( gp_Ax2( gp_Pnt( aCurve.m_start.x, aCurve.m_start.y, 0.0 ),
|
|
|
|
gp_Dir( 0.0, 0.0, 1.0 ) ), aCurve.m_radius );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
gp_Pnt sa( aLastPoint.x, aLastPoint.y, 0.0 );
|
|
|
|
gp_Pnt ea( endPoint.x, endPoint.y, 0.0 );
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
if( aCurve.m_angle < 0.0 )
|
|
|
|
edge = BRepBuilderAPI_MakeEdge( arc, ea, sa );
|
|
|
|
else
|
|
|
|
edge = BRepBuilderAPI_MakeEdge( arc, sa, ea );
|
|
|
|
}
|
|
|
|
break;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
case CURVE_CIRCLE:
|
|
|
|
edge = BRepBuilderAPI_MakeEdge(
|
|
|
|
gp_Circ( gp_Ax2( gp_Pnt( aCurve.m_start.x, aCurve.m_start.y, 0.0 ),
|
|
|
|
gp_Dir( 0.0, 0.0, 1.0 ) ), aCurve.m_radius ) );
|
|
|
|
break;
|
2016-09-02 10:08:40 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
case CURVE_BEZIER:
|
|
|
|
{
|
|
|
|
TColgp_Array1OfPnt poles( 0, 3 );
|
|
|
|
gp_Pnt pt = gp_Pnt( aCurve.m_start.x, aCurve.m_start.y, 0.0 );
|
2021-09-04 17:05:30 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
poles( 0 ) = pt;
|
|
|
|
pt = gp_Pnt( aCurve.m_bezierctrl1.x, aCurve.m_bezierctrl1.y, 0.0 );
|
|
|
|
poles( 1 ) = pt;
|
|
|
|
pt = gp_Pnt( aCurve.m_bezierctrl2.x, aCurve.m_bezierctrl2.y, 0.0 );
|
|
|
|
poles( 2 ) = pt;
|
|
|
|
pt = gp_Pnt( endPoint.x, endPoint.y, 0.0 );
|
|
|
|
poles( 3 ) = pt;
|
|
|
|
|
|
|
|
Geom_BezierCurve* bezier_curve = new Geom_BezierCurve( poles );
|
|
|
|
edge = BRepBuilderAPI_MakeEdge( bezier_curve );
|
|
|
|
}
|
|
|
|
break;
|
2020-10-20 12:28:43 +00:00
|
|
|
|
2021-07-29 11:10:58 +00:00
|
|
|
default:
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxString::Format( wxT( "unsupported curve type: %d\n" ), aCurve.m_form ) );
|
2021-07-29 11:10:58 +00:00
|
|
|
return false;
|
2016-09-02 10:08:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( edge.IsNull() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
aLastPoint = endPoint;
|
|
|
|
aWire->Add( edge );
|
|
|
|
|
|
|
|
if( BRepBuilderAPI_DisconnectedWire == aWire->Error() )
|
|
|
|
{
|
2022-02-08 21:47:43 +00:00
|
|
|
ReportMessage( wxT( "failed to add curve\n" ) );
|
2016-09-02 10:08:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-18 19:50:36 +00:00
|
|
|
bool OUTLINE::testClosed( const KICADCURVE& aFrontCurve, const KICADCURVE& aBackCurve )
|
2016-09-02 10:08:40 +00:00
|
|
|
{
|
|
|
|
double spx0, spy0, epx0, epy0;
|
|
|
|
getEndPoints( aFrontCurve, spx0, spy0, epx0, epy0 );
|
2021-09-04 17:05:30 +00:00
|
|
|
|
2016-09-02 10:08:40 +00:00
|
|
|
double spx1, spy1, epx1, epy1;
|
|
|
|
getEndPoints( aBackCurve, spx1, spy1, epx1, epy1 );
|
|
|
|
|
|
|
|
double dx = epx1 - spx0;
|
|
|
|
double dy = epy1 - spy0;
|
|
|
|
double r = dx * dx + dy * dy;
|
|
|
|
|
2018-06-19 08:14:10 +00:00
|
|
|
if( r < m_minDistance2 )
|
2016-09-02 10:08:40 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|