kicad/pcbnew/microwave/microwave_footprint.cpp

231 lines
6.7 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
2022-01-18 02:40:16 +00:00
* Copyright (C) 2017-2022 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 <board_design_settings.h>
#include <footprint.h>
#include <pad.h>
#include <confirm.h>
#include <dialogs/dialog_text_entry.h>
#include <microwave/microwave_tool.h>
2020-10-14 03:37:48 +00:00
#include <trigo.h>
2020-11-13 15:15:52 +00:00
FOOTPRINT* MICROWAVE_TOOL::createFootprint( MICROWAVE_FOOTPRINT_SHAPE aFootprintShape )
{
int offsetX;
int offsetY;
2020-11-13 15:15:52 +00:00
PAD* pad;
FOOTPRINT* footprint;
wxString msg;
wxString cmp_name;
int pad_count = 2;
2022-01-18 02:40:16 +00:00
EDA_ANGLE angle = ANGLE_0;
2022-09-19 09:25:20 +00:00
PCB_EDIT_FRAME* editFrame = getEditFrame<PCB_EDIT_FRAME>();
// Ref and value text size (O = use board default value.
// will be set to a value depending on the footprint size, if possible
int text_size = 0;
// Enter the size of the gap or stub
2022-09-19 09:25:20 +00:00
int gap_size = editFrame->GetDesignSettings().GetCurrentTrackWidth();
switch( aFootprintShape )
{
case MICROWAVE_FOOTPRINT_SHAPE::GAP:
msg = _( "Gap Size:" );
2022-02-05 13:25:43 +00:00
cmp_name = wxT( "muwave_gap" );
text_size = gap_size;
break;
case MICROWAVE_FOOTPRINT_SHAPE::STUB:
msg = _( "Stub Size:" );
2022-02-05 13:25:43 +00:00
cmp_name = wxT( "muwave_stub" );
text_size = gap_size;
pad_count = 2;
break;
case MICROWAVE_FOOTPRINT_SHAPE::STUB_ARC:
msg = _( "Arc Stub Radius Value:" );
2022-02-05 13:25:43 +00:00
cmp_name = wxT( "muwave_arcstub" );
pad_count = 1;
break;
default:
msg = wxT( "???" );
break;
}
2022-09-19 09:25:20 +00:00
wxString value = editFrame->StringFromValue( gap_size );
WX_TEXT_ENTRY_DIALOG dlg( editFrame, msg, _( "Create Microwave Footprint" ), value );
if( dlg.ShowQuasiModal() != wxID_OK )
2021-07-19 23:56:05 +00:00
return nullptr; // cancelled by user
value = dlg.GetValue();
2022-09-19 09:25:20 +00:00
gap_size = editFrame->ValueFromString( value );
bool abort = false;
if( aFootprintShape == MICROWAVE_FOOTPRINT_SHAPE::STUB_ARC )
{
2022-01-18 02:40:16 +00:00
msg = wxT( "0.0" );
2022-09-19 09:25:20 +00:00
WX_TEXT_ENTRY_DIALOG angledlg( editFrame, _( "Angle in degrees:" ),
_( "Create Microwave Footprint" ), msg );
if( angledlg.ShowQuasiModal() != wxID_OK )
2021-07-19 23:56:05 +00:00
return nullptr; // cancelled by user
msg = angledlg.GetValue();
2022-01-18 02:40:16 +00:00
double fval;
if( !msg.ToDouble( &fval ) )
{
2022-09-19 09:25:20 +00:00
DisplayError( editFrame, _( "Incorrect number, abort" ) );
abort = true;
}
2022-01-18 02:40:16 +00:00
angle = EDA_ANGLE( fval, DEGREES_T );
if( angle < ANGLE_0 )
angle = -angle;
2022-01-18 02:40:16 +00:00
if( angle > ANGLE_180 )
angle = ANGLE_180;
}
if( abort )
2021-07-19 23:56:05 +00:00
return nullptr;
2020-11-13 00:43:45 +00:00
footprint = createBaseFootprint( cmp_name, text_size, pad_count );
auto it = footprint->Pads().begin();
pad = *it;
switch( aFootprintShape )
{
case MICROWAVE_FOOTPRINT_SHAPE::GAP: //Gap :
offsetX = -( gap_size + pad->GetSize().x ) / 2;
pad->SetX( pad->GetPosition().x + offsetX );
pad = *( it + 1 );
pad->SetX( pad->GetPosition().x + offsetX + gap_size + pad->GetSize().x );
break;
case MICROWAVE_FOOTPRINT_SHAPE::STUB: //Stub :
pad->SetNumber( wxT( "1" ) );
offsetY = -( gap_size + pad->GetSize().y ) / 2;
pad = *( it + 1 );
pad->SetSize( VECTOR2I( pad->GetSize().x, gap_size ) );
pad->SetY( pad->GetPosition().y + offsetY );
break;
case MICROWAVE_FOOTPRINT_SHAPE::STUB_ARC: // Arc Stub created by a polygonal approach:
{
2021-05-01 12:22:35 +00:00
pad->SetShape( PAD_SHAPE::CUSTOM );
pad->SetAnchorPadShape( PAD_SHAPE::RECTANGLE );
2022-01-18 02:40:16 +00:00
int numPoints = ( angle.AsDegrees() / 5.0 ) + 3;
std::vector<VECTOR2I> polyPoints;
polyPoints.reserve( numPoints );
polyPoints.emplace_back( VECTOR2I( 0, 0 ) );
2022-01-18 02:40:16 +00:00
EDA_ANGLE theta = -angle / 2;
for( int ii = 1; ii < numPoints - 1; ii++ )
{
VECTOR2I pt( 0, -gap_size );
RotatePoint( &pt.x, &pt.y, theta );
polyPoints.push_back( pt );
2022-01-18 02:40:16 +00:00
theta += EDA_ANGLE( 5.0, DEGREES_T );
if( theta > angle / 2 )
theta = angle / 2;
}
// Close the polygon:
polyPoints.push_back( polyPoints[0] );
2020-11-14 01:16:02 +00:00
pad->AddPrimitivePoly( polyPoints, 0, true ); // add a polygonal basic shape
break;
2021-07-19 23:56:05 +00:00
}
default:
break;
}
2020-11-13 00:43:45 +00:00
// Update the footprint and board
2022-09-19 09:25:20 +00:00
editFrame->OnModify();
2020-11-13 00:43:45 +00:00
return footprint;
}
2020-11-13 15:15:52 +00:00
FOOTPRINT* MICROWAVE_TOOL::createBaseFootprint( const wxString& aValue,
int aTextSize, int aPadCount )
{
PCB_EDIT_FRAME& editFrame = *getEditFrame<PCB_EDIT_FRAME>();
FOOTPRINT* footprint = editFrame.CreateNewFootprint( aValue, wxEmptyString, true );
2021-09-24 17:43:38 +00:00
footprint->SetAttributes( FP_EXCLUDE_FROM_POS_FILES | FP_EXCLUDE_FROM_BOM );
if( aTextSize > 0 )
{
footprint->Reference().SetTextSize( VECTOR2I( aTextSize, aTextSize ) );
2020-11-08 21:29:04 +00:00
footprint->Reference().SetTextThickness( aTextSize / 5 );
footprint->Value().SetTextSize( VECTOR2I( aTextSize, aTextSize ) );
2020-11-08 21:29:04 +00:00
footprint->Value().SetTextThickness( aTextSize / 5 );
}
// Create 2 pads used in gaps and stubs. The gap is between these 2 pads
// the stub is the pad 2
int pad_num = 1;
while( aPadCount-- )
{
2020-11-12 22:30:02 +00:00
PAD* pad = new PAD( footprint );
2020-11-08 21:29:04 +00:00
footprint->Add( pad, ADD_MODE::INSERT );
int tw = editFrame.GetDesignSettings().GetCurrentTrackWidth();
pad->SetSize( VECTOR2I( tw, tw ) );
2020-11-08 21:29:04 +00:00
pad->SetPosition( footprint->GetPosition() );
pad->SetShape( PAD_SHAPE::RECTANGLE );
pad->SetAttribute( PAD_ATTRIB::SMD );
pad->SetLayerSet( F_Cu );
pad->SetNumber( wxString::Format( wxT( "%d" ), pad_num ) );
pad_num++;
}
2020-11-08 21:29:04 +00:00
return footprint;
}