kicad/pcbnew/microwave/microwave_polygon.cpp

364 lines
10 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2015-2016 Wayne Stambaugh <stambaughw@gmail.com>
2021-07-19 23:56:05 +00:00
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
*
* 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 <confirm.h>
#include <trigo.h>
#include <kicad_string.h>
#include <gestfich.h>
2018-01-29 20:58:58 +00:00
#include <pcb_edit_frame.h>
#include <dialog_helpers.h>
#include <dialog_shim.h>
2020-10-24 01:38:50 +00:00
#include <locale_io.h>
#include <richio.h>
#include <filter_reader.h>
#include <base_units.h>
#include <validators.h>
#include <dialogs/dialog_text_entry.h>
#include <board.h>
#include <footprint.h>
#include <fp_shape.h>
#include <microwave/microwave_tool.h>
#include <pad.h>
#include <pcbnew.h>
#include <math/util.h> // for KiROUND
#include <wx/button.h>
#include <wx/dialog.h>
#include <wx/filedlg.h>
#include <wx/radiobox.h>
#include <wx/sizer.h>
static std::vector< wxRealPoint > PolyEdges;
2008-12-06 12:49:33 +00:00
static double ShapeScaleX, ShapeScaleY;
static wxSize ShapeSize;
static int PolyShapeType;
2007-05-06 16:03:28 +00:00
2009-02-26 00:37:04 +00:00
2007-05-06 16:03:28 +00:00
2007-08-08 03:50:44 +00:00
enum id_mw_cmd {
2007-10-07 03:08:24 +00:00
ID_READ_SHAPE_FILE = 1000
2007-05-06 16:03:28 +00:00
};
2007-08-08 03:50:44 +00:00
class MWAVE_POLYGONAL_SHAPE_DLG : public DIALOG_SHIM
2007-05-06 16:03:28 +00:00
{
public:
MWAVE_POLYGONAL_SHAPE_DLG( PCB_EDIT_FRAME* parent, const wxPoint& pos );
~MWAVE_POLYGONAL_SHAPE_DLG() { };
2007-05-06 16:03:28 +00:00
bool TransferDataFromWindow() override;
2007-08-08 03:50:44 +00:00
private:
void OnCancelClick( wxCommandEvent& event );
/**
2021-07-19 23:56:05 +00:00
* Read a description shape file.
*
* File format is
* Unit=MM
* XScale=271.501
* YScale=1.00133
*
* $COORD
* 0 0.6112600148417837
* 0.001851851851851852 0.6104800531118608
* ....
* $ENDCOORD
*
* Each line is the X Y coord (normalized units from 0 to 1)
*/
void ReadDataShapeDescr( wxCommandEvent& event );
2007-05-06 16:03:28 +00:00
2007-08-08 03:50:44 +00:00
DECLARE_EVENT_TABLE()
2021-07-19 23:56:05 +00:00
PCB_EDIT_FRAME* m_Parent;
wxRadioBox* m_ShapeOptionCtrl;
EDA_SIZE_CTRL* m_SizeCtrl;
2007-05-06 16:03:28 +00:00
};
BEGIN_EVENT_TABLE( MWAVE_POLYGONAL_SHAPE_DLG, wxDialog )
EVT_BUTTON( wxID_CANCEL, MWAVE_POLYGONAL_SHAPE_DLG::OnCancelClick )
EVT_BUTTON( ID_READ_SHAPE_FILE, MWAVE_POLYGONAL_SHAPE_DLG::ReadDataShapeDescr )
END_EVENT_TABLE()
2007-05-06 16:03:28 +00:00
MWAVE_POLYGONAL_SHAPE_DLG::MWAVE_POLYGONAL_SHAPE_DLG( PCB_EDIT_FRAME* parent,
const wxPoint& framepos ) :
DIALOG_SHIM( parent, -1, _( "Complex shape" ), framepos, wxDefaultSize,
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER )
2007-05-06 16:03:28 +00:00
{
2007-08-08 03:50:44 +00:00
m_Parent = parent;
PolyEdges.clear();
2007-08-08 03:50:44 +00:00
wxBoxSizer* MainBoxSizer = new wxBoxSizer( wxHORIZONTAL );
SetSizer( MainBoxSizer );
wxBoxSizer* LeftBoxSizer = new wxBoxSizer( wxVERTICAL );
wxBoxSizer* RightBoxSizer = new wxBoxSizer( wxVERTICAL );
MainBoxSizer->Add( LeftBoxSizer, 0, wxGROW | wxALL, 5 );
MainBoxSizer->Add( RightBoxSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5 );
2007-10-07 03:08:24 +00:00
wxButton* Button = new wxButton( this, wxID_OK, _( "OK" ) );
2007-08-08 03:50:44 +00:00
RightBoxSizer->Add( Button, 0, wxGROW | wxALL, 5 );
2007-10-07 03:08:24 +00:00
Button = new wxButton( this, wxID_CANCEL, _( "Cancel" ) );
2007-08-08 03:50:44 +00:00
RightBoxSizer->Add( Button, 0, wxGROW | wxALL, 5 );
Button = new wxButton( this, ID_READ_SHAPE_FILE,
_( "Read Shape Description File..." ) );
2007-08-08 03:50:44 +00:00
RightBoxSizer->Add( Button, 0, wxGROW | wxALL, 5 );
2019-07-01 23:48:05 +00:00
wxString shapelist[] = { _( "Normal" ), _( "Symmetrical" ), _( "Mirrored" ) };
m_ShapeOptionCtrl = new wxRadioBox( this, -1, _( "Shape Option" ),
wxDefaultPosition, wxDefaultSize, 3,
shapelist, 1,
2007-08-08 03:50:44 +00:00
wxRA_SPECIFY_COLS );
LeftBoxSizer->Add( m_ShapeOptionCtrl, 0, wxGROW | wxALL, 5 );
m_SizeCtrl = new EDA_SIZE_CTRL( this, _( "Size" ), ShapeSize, parent->GetUserUnits(),
LeftBoxSizer );
2007-08-08 03:50:44 +00:00
GetSizer()->SetSizeHints( this );
2007-05-06 16:03:28 +00:00
}
2007-08-08 03:50:44 +00:00
void MWAVE_POLYGONAL_SHAPE_DLG::OnCancelClick( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
PolyEdges.clear();
event.Skip();
2007-05-06 16:03:28 +00:00
}
bool MWAVE_POLYGONAL_SHAPE_DLG::TransferDataFromWindow()
2007-05-06 16:03:28 +00:00
{
if( !wxDialog::TransferDataFromWindow() )
return false;
2007-08-08 03:50:44 +00:00
ShapeSize = m_SizeCtrl->GetValue();
PolyShapeType = m_ShapeOptionCtrl->GetSelection();
return true;
2007-05-06 16:03:28 +00:00
}
2007-08-08 03:50:44 +00:00
void MWAVE_POLYGONAL_SHAPE_DLG::ReadDataShapeDescr( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
static wxString lastpath; // To remember the last open path during a session
2020-11-25 00:08:09 +00:00
wxString fullFileName;
wxString mask = wxFileSelectorDefaultWildcardStr;
2021-07-19 23:56:05 +00:00
fullFileName = EDA_FILE_SELECTOR( _( "Read Shape Description File" ), lastpath,
2020-11-25 00:08:09 +00:00
fullFileName, wxEmptyString, mask, this,
wxFD_OPEN, true );
if( fullFileName.IsEmpty() )
2007-08-08 03:50:44 +00:00
return;
2020-11-25 00:08:09 +00:00
wxFileName fn( fullFileName );
lastpath = fn.GetPath();
PolyEdges.clear();
2020-11-25 00:08:09 +00:00
FILE* File = wxFopen( fullFileName, wxT( "rt" ) );
2007-08-08 03:50:44 +00:00
2021-07-19 23:56:05 +00:00
if( File == nullptr )
2007-08-08 03:50:44 +00:00
{
DisplayError( this, _( "File not found" ) );
return;
}
double unitconv = IU_PER_MM;
ShapeScaleX = ShapeScaleY = 1.0;
2020-11-25 00:08:09 +00:00
FILE_LINE_READER fileReader( File, fullFileName );
FILTER_READER reader( fileReader );
2007-08-08 03:50:44 +00:00
2012-02-19 04:02:19 +00:00
LOCALE_IO toggle;
while( reader.ReadLine() )
2007-08-08 03:50:44 +00:00
{
char* Line = reader.Line();
char* param1 = strtok( Line, " =\n\r" );
2021-07-19 23:56:05 +00:00
char* param2 = strtok( nullptr, " \t\n\r" );
2007-08-08 03:50:44 +00:00
if( strncasecmp( param1, "Unit", 4 ) == 0 )
2007-08-08 03:50:44 +00:00
{
if( strncasecmp( param2, "inch", 4 ) == 0 )
unitconv = IU_PER_MILS*1000;
if( strncasecmp( param2, "mm", 2 ) == 0 )
unitconv = IU_PER_MM;
2007-08-08 03:50:44 +00:00
}
if( strncasecmp( param1, "$ENDCOORD", 8 ) == 0 )
2007-08-08 03:50:44 +00:00
break;
if( strncasecmp( param1, "$COORD", 6 ) == 0 )
2007-08-08 03:50:44 +00:00
{
while( reader.ReadLine() )
2007-08-08 03:50:44 +00:00
{
Line = reader.Line();
2007-08-08 03:50:44 +00:00
param1 = strtok( Line, " \t\n\r" );
2021-07-19 23:56:05 +00:00
param2 = strtok( nullptr, " \t\n\r" );
if( strncasecmp( param1, "$ENDCOORD", 8 ) == 0 )
2007-08-08 03:50:44 +00:00
break;
wxRealPoint coord( atof( param1 ), atof( param2 ) );
PolyEdges.push_back( coord );
2007-08-08 03:50:44 +00:00
}
}
if( strncasecmp( Line, "XScale", 6 ) == 0 )
2007-08-08 03:50:44 +00:00
ShapeScaleX = atof( param2 );
if( strncasecmp( Line, "YScale", 6 ) == 0 )
2007-08-08 03:50:44 +00:00
ShapeScaleY = atof( param2 );
}
ShapeScaleX *= unitconv;
ShapeScaleY *= unitconv;
m_SizeCtrl->SetValue( (int) ShapeScaleX, (int) ShapeScaleY );
2007-05-06 16:03:28 +00:00
}
2020-11-13 15:15:52 +00:00
FOOTPRINT* MICROWAVE_TOOL::createPolygonShape()
2007-05-06 16:03:28 +00:00
{
2020-11-13 15:15:52 +00:00
PAD* pad1;
PAD* pad2;
FOOTPRINT* footprint;
wxString cmp_name;
int pad_count = 2;
FP_SHAPE* shape;
2007-08-08 03:50:44 +00:00
PCB_EDIT_FRAME& editFrame = *getEditFrame<PCB_EDIT_FRAME>();
MWAVE_POLYGONAL_SHAPE_DLG dlg( &editFrame, wxDefaultPosition );
int ret = dlg.ShowModal();
2007-08-08 03:50:44 +00:00
if( ret != wxID_OK )
2007-08-08 03:50:44 +00:00
{
PolyEdges.clear();
2021-07-19 23:56:05 +00:00
return nullptr;
2007-08-08 03:50:44 +00:00
}
if( PolyShapeType == 2 ) // mirrored
ShapeScaleY = -ShapeScaleY;
// Dick Hollenbeck's KiROUND R&D // This provides better project control over rounding to int from double // than wxRound() did. This scheme provides better logging in Debug builds // and it provides for compile time calculation of constants. #include <stdio.h> #include <assert.h> #include <limits.h> //-----<KiROUND KIT>------------------------------------------------------------ /** * KiROUND * rounds a floating point number to an int using * "round halfway cases away from zero". * In Debug build an assert fires if will not fit into an int. */ #if defined( DEBUG ) // DEBUG: a macro to capture line and file, then calls this inline static inline int KiRound( double v, int line, const char* filename ) { v = v < 0 ? v - 0.5 : v + 0.5; if( v > INT_MAX + 0.5 ) { printf( "%s: in file %s on line %d, val: %.16g too ' > 0 ' for int\n", __FUNCTION__, filename, line, v ); } else if( v < INT_MIN - 0.5 ) { printf( "%s: in file %s on line %d, val: %.16g too ' < 0 ' for int\n", __FUNCTION__, filename, line, v ); } return int( v ); } #define KiROUND( v ) KiRound( v, __LINE__, __FILE__ ) #else // RELEASE: a macro so compile can pre-compute constants. #define KiROUND( v ) int( (v) < 0 ? (v) - 0.5 : (v) + 0.5 ) #endif //-----</KiROUND KIT>----------------------------------------------------------- // Only a macro is compile time calculated, an inline function causes a static constructor // in a situation like this. // Therefore the Release build is best done with a MACRO not an inline function. int Computed = KiROUND( 14.3 * 8 ); int main( int argc, char** argv ) { for( double d = double(INT_MAX)-1; d < double(INT_MAX)+8; d += 2.0 ) { int i = KiROUND( d ); printf( "t: %d %.16g\n", i, d ); } return 0; }
2012-04-19 06:55:45 +00:00
ShapeSize.x = KiROUND( ShapeScaleX );
ShapeSize.y = KiROUND( ShapeScaleY );
2007-08-08 03:50:44 +00:00
if( ( ShapeSize.x ) == 0 || ( ShapeSize.y == 0 ) )
2007-08-08 03:50:44 +00:00
{
2021-02-23 12:45:37 +00:00
editFrame.ShowInfoBarError( _( "Shape has a null size." ) );
2021-07-19 23:56:05 +00:00
return nullptr;
2007-08-08 03:50:44 +00:00
}
if( PolyEdges.size() == 0 )
2007-08-08 03:50:44 +00:00
{
2021-02-23 12:45:37 +00:00
editFrame.ShowInfoBarError( _( "Shape has no points." ) );
2021-07-19 23:56:05 +00:00
return nullptr;
2007-08-08 03:50:44 +00:00
}
cmp_name = wxT( "muwave_polygon" );
2007-08-08 03:50:44 +00:00
// Create a footprint with 2 pads, orientation = 0, pos 0
2020-11-13 00:43:45 +00:00
footprint = createBaseFootprint( cmp_name, 0, pad_count );
2007-08-08 03:50:44 +00:00
// We try to place the footprint anchor to the middle of the shape len
wxPoint offset;
offset.x = -ShapeSize.x / 2;
2020-11-13 00:43:45 +00:00
auto it = footprint->Pads().begin();
2019-06-01 23:23:36 +00:00
pad1 = *it;
pad1->SetX0( offset.x );
pad1->SetX( pad1->GetPos0().x );
2007-08-08 03:50:44 +00:00
2019-06-01 23:23:36 +00:00
pad2 = *( ++it );
pad2->SetX0( offset.x + ShapeSize.x );
pad2->SetX( pad2->GetPos0().x );
2007-08-08 03:50:44 +00:00
// Add a polygonal edge (corners will be added later) on copper layer
2020-11-13 00:43:45 +00:00
shape = new FP_SHAPE( footprint );
shape->SetShape( SHAPE_T::POLY );
2020-11-14 01:16:02 +00:00
shape->SetFilled( true );
shape->SetLayer( F_Cu );
2007-08-08 03:50:44 +00:00
2020-11-13 00:43:45 +00:00
footprint->Add( shape, ADD_MODE::INSERT );
// Get the corner buffer of the polygonal edge
std::vector<wxPoint> polyPoints;
polyPoints.reserve( PolyEdges.size() + 2 );
2007-08-08 03:50:44 +00:00
// Init start point coord:
2019-07-01 23:48:05 +00:00
polyPoints.emplace_back( wxPoint( offset.x, 0 ) );
2007-08-08 03:50:44 +00:00
wxPoint last_coordinate;
2019-07-01 23:48:05 +00:00
for( wxRealPoint& pt: PolyEdges ) // Copy points
2007-08-08 03:50:44 +00:00
{
2019-07-01 23:48:05 +00:00
last_coordinate.x = KiROUND( pt.x * ShapeScaleX );
last_coordinate.y = -KiROUND( pt.y * ShapeScaleY );
last_coordinate += offset;
polyPoints.push_back( last_coordinate );
2007-08-08 03:50:44 +00:00
}
// finish the polygonal shape
if( last_coordinate.y != 0 )
2019-07-01 23:48:05 +00:00
polyPoints.emplace_back( wxPoint( last_coordinate.x, 0 ) );
2007-08-08 03:50:44 +00:00
switch( PolyShapeType )
{
case 0: // shape from file
case 2: // shape from file, mirrored (the mirror is already done)
2007-08-08 03:50:44 +00:00
break;
case 1: // Symmetric shape: add the symmetric (mirrored) shape
2019-07-01 23:48:05 +00:00
for( int ndx = (int) polyPoints.size() - 1; ndx >= 0; --ndx )
2007-08-08 03:50:44 +00:00
{
wxPoint pt = polyPoints[ndx];
pt.y = -pt.y; // mirror about X axis
polyPoints.push_back( pt );
}
2007-08-08 03:50:44 +00:00
break;
}
shape->SetPolyPoints( polyPoints );
2021-07-19 23:56:05 +00:00
// Set the polygon outline thickness to 0, only the polygonal shape is filled
2021-07-19 23:56:05 +00:00
// without extra thickness.
shape->SetWidth( 0 );
PolyEdges.clear();
editFrame.OnModify();
2020-11-13 00:43:45 +00:00
return footprint;
2007-05-06 16:03:28 +00:00
}