2009-11-18 12:52:19 +00:00
|
|
|
/*******************************************/
|
|
|
|
/* mounde.cpp - Microwave pcb layout code. */
|
|
|
|
/*******************************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "confirm.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "trigo.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "kicad_string.h"
|
|
|
|
#include "gestfich.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "pcbnew.h"
|
2009-07-30 11:04:07 +00:00
|
|
|
#include "wxPcbStruct.h"
|
2009-10-28 11:48:47 +00:00
|
|
|
#include "class_board_design_settings.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "protos.h"
|
2010-11-18 21:16:28 +00:00
|
|
|
#include "dialog_helpers.h"
|
2011-01-14 17:43:30 +00:00
|
|
|
#include "richio.h"
|
|
|
|
#include "filter_reader.h"
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
#define COEFF_COUNT 6
|
2008-12-06 12:49:33 +00:00
|
|
|
static double* PolyEdges;
|
|
|
|
static int PolyEdgesCount;
|
|
|
|
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
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
static void Exit_Self( EDA_DRAW_PANEL* Panel, wxDC* DC );
|
2010-07-17 11:14:57 +00:00
|
|
|
static void gen_arc( std::vector <wxPoint>& aBuffer,
|
|
|
|
wxPoint aStartPoint,
|
|
|
|
wxPoint aCenter,
|
|
|
|
int a_ArcAngle );
|
2011-02-03 19:27:28 +00:00
|
|
|
static void ShowBoundingBoxMicroWaveInductor( EDA_DRAW_PANEL* apanel,
|
|
|
|
wxDC* aDC,
|
|
|
|
const wxPoint& aPosition,
|
|
|
|
bool aErase );
|
2009-02-26 00:37:04 +00:00
|
|
|
|
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
int BuildCornersList_S_Shape( std::vector <wxPoint>& aBuffer,
|
|
|
|
wxPoint aStartPoint, wxPoint aEndPoint,
|
|
|
|
int aLength, int aWidth );
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
class SELFPCB
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-07-17 11:14:57 +00:00
|
|
|
int forme; // Shape: coil, spiral, etc ..
|
2009-02-26 00:37:04 +00:00
|
|
|
wxPoint m_Start;
|
2009-11-18 12:52:19 +00:00
|
|
|
wxPoint m_End;
|
2009-02-26 00:37:04 +00:00
|
|
|
wxSize m_Size;
|
2009-11-18 12:52:19 +00:00
|
|
|
int lng; // Trace length.
|
2010-07-17 11:14:57 +00:00
|
|
|
int m_Width; // Trace width.
|
2009-02-26 00:37:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static SELFPCB Mself;
|
|
|
|
static int Self_On;
|
|
|
|
|
|
|
|
|
2009-11-23 21:03:26 +00:00
|
|
|
/* This function shows on screen the bounding box of the inductor that will be
|
|
|
|
* created at the end of the build inductor process
|
|
|
|
*/
|
2011-02-03 19:27:28 +00:00
|
|
|
static void ShowBoundingBoxMicroWaveInductor( EDA_DRAW_PANEL* aPanel, wxDC* aDC,
|
|
|
|
const wxPoint& aPosition, bool aErase )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
2010-07-17 11:14:57 +00:00
|
|
|
/* Calculate the orientation and size of the box containing the inductor:
|
|
|
|
* the box is a rectangle with height = lenght/2
|
|
|
|
* the shape is defined by a rectangle, nor necessary horizontal or vertical
|
2009-02-26 00:37:04 +00:00
|
|
|
*/
|
2011-02-03 19:27:28 +00:00
|
|
|
GRSetDrawMode( aDC, GR_XOR );
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
wxPoint poly[5];
|
|
|
|
wxPoint pt = Mself.m_End - Mself.m_Start;
|
|
|
|
int angle = -wxRound( atan2( (double) pt.y, (double) pt.x ) * 1800.0 / M_PI );
|
|
|
|
int len = wxRound( sqrt( (double) pt.x * pt.x + (double) pt.y * pt.y ) );
|
|
|
|
|
|
|
|
// calculate corners
|
|
|
|
pt.x = 0; pt.y = len / 4;
|
|
|
|
RotatePoint( &pt, angle );
|
|
|
|
poly[0] = Mself.m_Start + pt;
|
|
|
|
poly[1] = Mself.m_End + pt;
|
|
|
|
pt.x = 0; pt.y = -len / 4;
|
|
|
|
RotatePoint( &pt, angle );
|
|
|
|
poly[2] = Mself.m_End + pt;
|
|
|
|
poly[3] = Mself.m_Start + pt;
|
|
|
|
poly[4] = poly[0];
|
|
|
|
|
2011-02-03 19:27:28 +00:00
|
|
|
if( aErase )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
2011-02-03 19:27:28 +00:00
|
|
|
GRPoly( &aPanel->m_ClipBox, aDC, 5, poly, false, 0, YELLOW, YELLOW );
|
2009-02-26 00:37:04 +00:00
|
|
|
}
|
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
Mself.m_End = aPanel->GetScreen()->GetCrossHairPosition();
|
2010-07-17 11:14:57 +00:00
|
|
|
pt = Mself.m_End - Mself.m_Start;
|
|
|
|
angle = -wxRound( atan2( (double) pt.y, (double) pt.x ) * 1800.0 / M_PI );
|
|
|
|
len = wxRound( sqrt( (double) pt.x * pt.x + (double) pt.y * pt.y ) );
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// calculate new corners
|
|
|
|
pt.x = 0; pt.y = len / 4;
|
|
|
|
RotatePoint( &pt, angle );
|
|
|
|
poly[0] = Mself.m_Start + pt;
|
|
|
|
poly[1] = Mself.m_End + pt;
|
|
|
|
pt.x = 0; pt.y = -len / 4;
|
|
|
|
RotatePoint( &pt, angle );
|
|
|
|
poly[2] = Mself.m_End + pt;
|
|
|
|
poly[3] = Mself.m_Start + pt;
|
|
|
|
poly[4] = poly[0];
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2011-02-03 19:27:28 +00:00
|
|
|
GRPoly( &aPanel->m_ClipBox, aDC, 5, poly, false, 0, YELLOW, YELLOW );
|
2009-02-26 00:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void Exit_Self( EDA_DRAW_PANEL* Panel, wxDC* DC )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
|
|
|
if( Self_On )
|
|
|
|
{
|
|
|
|
Self_On = 0;
|
2011-02-11 20:48:13 +00:00
|
|
|
Panel->m_mouseCaptureCallback( Panel, DC, wxDefaultPosition, 0 );
|
2009-02-26 00:37:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::Begin_Self( wxDC* DC )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
|
|
|
if( Self_On )
|
|
|
|
{
|
|
|
|
Genere_Self( DC );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
Mself.m_Start = GetScreen()->GetCrossHairPosition();
|
2010-07-17 11:14:57 +00:00
|
|
|
Mself.m_End = Mself.m_Start;
|
2009-02-26 00:37:04 +00:00
|
|
|
|
|
|
|
Self_On = 1;
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Update the initial coordinates. */
|
2011-02-11 20:48:13 +00:00
|
|
|
GetScreen()->m_O_Curseur = GetScreen()->GetCrossHairPosition();
|
2009-04-05 20:49:15 +00:00
|
|
|
UpdateStatusBar();
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
DrawPanel->SetMouseCapture( ShowBoundingBoxMicroWaveInductor, Exit_Self );
|
|
|
|
DrawPanel->m_mouseCaptureCallback( DrawPanel, DC, wxDefaultPosition, false );
|
2009-02-26 00:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Create a self-shaped coil
|
|
|
|
* - Length Mself.lng
|
|
|
|
* - Extremities Mself.m_Start and Mself.m_End
|
2009-02-26 00:37:04 +00:00
|
|
|
*
|
2009-11-18 12:52:19 +00:00
|
|
|
* We must determine:
|
|
|
|
* Mself.nbrin = number of segments perpendicular to the direction
|
|
|
|
* (The coil nbrin will demicercles + 1 + 2 1 / 4 circle)
|
|
|
|
* Mself.lbrin = length of a strand
|
2010-07-17 11:14:57 +00:00
|
|
|
* Mself.radius = radius of rounded parts of the coil
|
2009-11-18 12:52:19 +00:00
|
|
|
* Mself.delta = segments extremities connection between him and the coil even
|
2009-02-26 00:37:04 +00:00
|
|
|
*
|
2009-11-18 12:52:19 +00:00
|
|
|
* The equations are
|
2010-07-17 11:14:57 +00:00
|
|
|
* Mself.m_Size.x = 2 * Mself.radius + Mself.lbrin
|
|
|
|
* Mself.m_Size.y * Mself.delta = 2 + 2 * Mself.nbrin * Mself.radius
|
2009-11-18 12:52:19 +00:00
|
|
|
* Mself.lng = 2 * Mself.delta / / connections to the coil
|
|
|
|
+ (Mself.nbrin-2) * Mself.lbrin / / length of the strands except 1st and last
|
2010-07-17 11:14:57 +00:00
|
|
|
+ (Mself.nbrin 1) * (PI * Mself.radius) / / length of rounded
|
|
|
|
* Mself.lbrin + / 2 - Melf.radius * 2) / / length of 1st and last bit
|
2009-02-26 00:37:04 +00:00
|
|
|
*
|
2009-11-18 12:52:19 +00:00
|
|
|
* The constraints are:
|
|
|
|
* Nbrin >= 2
|
2010-07-17 11:14:57 +00:00
|
|
|
* Mself.radius < Mself.m_Size.x
|
|
|
|
* Mself.m_Size.y = Mself.radius * 4 + 2 * Mself.raccord
|
|
|
|
* Mself.lbrin> Mself.radius * 2
|
2009-02-26 00:37:04 +00:00
|
|
|
*
|
2009-11-18 12:52:19 +00:00
|
|
|
* The calculation is conducted in the following way:
|
|
|
|
* Initially:
|
|
|
|
* Nbrin = 2
|
|
|
|
* Radius = 4 * m_Size.x (arbitrarily fixed value)
|
|
|
|
* Then:
|
|
|
|
* Increasing the number of segments to the desired length
|
|
|
|
* (Radius decreases if necessary)
|
2009-02-26 00:37:04 +00:00
|
|
|
*
|
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
MODULE* PCB_EDIT_FRAME::Genere_Self( wxDC* DC )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
2010-07-17 11:14:57 +00:00
|
|
|
D_PAD* PtPad;
|
|
|
|
int ll;
|
|
|
|
wxString msg;
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
DrawPanel->m_mouseCaptureCallback( DrawPanel, DC, wxDefaultPosition, false );
|
|
|
|
DrawPanel->SetMouseCapture( NULL, NULL );
|
2009-02-26 00:37:04 +00:00
|
|
|
|
|
|
|
if( Self_On == 0 )
|
|
|
|
{
|
|
|
|
DisplayError( this, wxT( "Starting point not init.." ) );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Self_On = 0;
|
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
Mself.m_End = GetScreen()->GetCrossHairPosition();
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
wxPoint pt = Mself.m_End - Mself.m_Start;
|
|
|
|
int min_len = wxRound( sqrt( (double) pt.x * pt.x + (double) pt.y * pt.y ) );
|
|
|
|
Mself.lng = min_len;
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Enter the desired length. */
|
2010-07-20 18:11:34 +00:00
|
|
|
msg = ReturnStringFromValue( g_UserUnit, Mself.lng, GetScreen()->GetInternalUnits() );
|
|
|
|
wxTextEntryDialog dlg( this, _( "Length:" ), _( "Length" ), msg );
|
|
|
|
if( dlg.ShowModal() != wxID_OK )
|
|
|
|
return NULL; // cancelled by user
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-21 08:15:54 +00:00
|
|
|
msg = dlg.GetValue();
|
2010-07-20 18:11:34 +00:00
|
|
|
Mself.lng = ReturnValueFromString( g_UserUnit, msg, GetScreen()->GetInternalUnits() );
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Control values (ii = minimum length) */
|
2010-07-17 11:14:57 +00:00
|
|
|
if( Mself.lng < min_len )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
|
|
|
DisplayError( this, _( "Requested length < minimum length" ) );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Calculate the elements. */
|
2010-07-17 11:14:57 +00:00
|
|
|
Mself.m_Width = GetBoard()->GetCurrentTrackWidth();
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
std::vector <wxPoint> buffer;
|
|
|
|
ll = BuildCornersList_S_Shape( buffer, Mself.m_Start, Mself.m_End,
|
|
|
|
Mself.lng, Mself.m_Width );
|
|
|
|
if( !ll )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
2010-07-17 11:14:57 +00:00
|
|
|
DisplayError( this, _( "Requested length too large" ) );
|
|
|
|
return NULL;
|
2009-02-26 00:37:04 +00:00
|
|
|
}
|
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Generate module. */
|
2010-07-17 11:14:57 +00:00
|
|
|
MODULE* Module;
|
2010-07-20 18:11:34 +00:00
|
|
|
Module = Create_1_Module( wxEmptyString );
|
2009-02-26 00:37:04 +00:00
|
|
|
if( Module == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// here the Module is already in the BOARD, Create_1_Module() does that.
|
|
|
|
Module->m_LibRef = wxT( "MuSelf" );
|
|
|
|
Module->m_Attributs = MOD_VIRTUAL | MOD_CMS;
|
2009-11-18 12:52:19 +00:00
|
|
|
Module->m_Flags = 0;
|
2010-07-17 11:14:57 +00:00
|
|
|
Module->m_Pos = Mself.m_End;
|
|
|
|
|
|
|
|
/* Generate segments. */
|
|
|
|
for( unsigned jj = 1; jj < buffer.size(); jj++ )
|
|
|
|
{
|
|
|
|
EDGE_MODULE* PtSegm;
|
|
|
|
PtSegm = new EDGE_MODULE( Module );
|
|
|
|
PtSegm->m_Start = buffer[jj - 1];
|
|
|
|
PtSegm->m_End = buffer[jj];
|
|
|
|
PtSegm->m_Width = Mself.m_Width;
|
|
|
|
PtSegm->SetLayer( Module->GetLayer() );
|
|
|
|
PtSegm->m_Shape = S_SEGMENT;
|
|
|
|
PtSegm->m_Start0 = PtSegm->m_Start - Module->m_Pos;
|
|
|
|
PtSegm->m_End0 = PtSegm->m_End - Module->m_Pos;
|
|
|
|
Module->m_Drawings.PushBack( PtSegm );
|
2009-02-26 00:37:04 +00:00
|
|
|
}
|
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
/* Place a pad on each end of coil. */
|
2009-02-26 00:37:04 +00:00
|
|
|
PtPad = new D_PAD( Module );
|
|
|
|
|
|
|
|
Module->m_Pads.PushFront( PtPad );
|
|
|
|
|
|
|
|
PtPad->SetPadName( wxT( "1" ) );
|
2010-07-17 11:14:57 +00:00
|
|
|
PtPad->m_Pos = Mself.m_End;
|
|
|
|
PtPad->m_Pos0 = PtPad->m_Pos - Module->m_Pos;
|
|
|
|
PtPad->m_Size.x = PtPad->m_Size.y = Mself.m_Width;
|
|
|
|
PtPad->m_Masque_Layer = g_TabOneLayerMask[Module->GetLayer()];
|
2009-11-18 12:52:19 +00:00
|
|
|
PtPad->m_Attribut = PAD_SMD;
|
|
|
|
PtPad->m_PadShape = PAD_CIRCLE;
|
2010-09-18 17:55:08 +00:00
|
|
|
PtPad->ComputeShapeMaxRadius();
|
2009-02-26 00:37:04 +00:00
|
|
|
|
|
|
|
D_PAD* newpad = new D_PAD( Module );
|
|
|
|
newpad->Copy( PtPad );
|
|
|
|
|
|
|
|
Module->m_Pads.Insert( newpad, PtPad->Next() );
|
|
|
|
|
|
|
|
PtPad = newpad;
|
|
|
|
PtPad->SetPadName( wxT( "2" ) );
|
2010-07-17 11:14:57 +00:00
|
|
|
PtPad->m_Pos = Mself.m_Start;
|
2009-02-26 00:37:04 +00:00
|
|
|
PtPad->m_Pos0 = PtPad->m_Pos - Module->m_Pos;
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Modify text positions. */
|
2009-04-17 08:51:02 +00:00
|
|
|
Module->DisplayInfo( this );
|
2009-11-18 12:52:19 +00:00
|
|
|
Module->m_Value->m_Pos.x = Module->m_Reference->m_Pos.x =
|
2010-07-17 11:14:57 +00:00
|
|
|
( Mself.m_Start.x + Mself.m_End.x ) / 2;
|
2009-11-18 12:52:19 +00:00
|
|
|
Module->m_Value->m_Pos.y = Module->m_Reference->m_Pos.y =
|
2010-07-17 11:14:57 +00:00
|
|
|
( Mself.m_Start.y + Mself.m_End.y ) / 2;
|
2009-02-26 00:37:04 +00:00
|
|
|
|
|
|
|
Module->m_Reference->m_Pos.y -= Module->m_Reference->m_Size.y;
|
2010-07-17 11:14:57 +00:00
|
|
|
Module->m_Value->m_Pos.y += Module->m_Value->m_Size.y;
|
|
|
|
Module->m_Reference->m_Pos0 = Module->m_Reference->m_Pos - Module->m_Pos;
|
2009-02-26 00:37:04 +00:00
|
|
|
Module->m_Value->m_Pos0 = Module->m_Value->m_Pos - Module->m_Pos;
|
|
|
|
|
|
|
|
|
|
|
|
Module->Set_Rectangle_Encadrement();
|
|
|
|
Module->Draw( DrawPanel, DC, GR_OR );
|
|
|
|
|
|
|
|
return Module;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
/** gen_arc
|
|
|
|
* Generate an arc using arc approximation by lines:
|
|
|
|
* Center aCenter
|
|
|
|
* Angle "angle" (in 0.1 deg)
|
|
|
|
* @param aBuffer = a buffer to store points.
|
|
|
|
* @param aStartPoint = starting point of arc.
|
|
|
|
* @param aCenter = arc centre.
|
|
|
|
* @param a_ArcAngle = arc length in 0.1 degrees.
|
2009-02-26 00:37:04 +00:00
|
|
|
*/
|
2010-07-17 11:14:57 +00:00
|
|
|
static void gen_arc( std::vector <wxPoint>& aBuffer,
|
|
|
|
wxPoint aStartPoint,
|
|
|
|
wxPoint aCenter,
|
|
|
|
int a_ArcAngle )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
2010-07-17 11:14:57 +00:00
|
|
|
#define SEGM_COUNT_PER_360DEG 16
|
|
|
|
wxPoint first_point = aStartPoint - aCenter;
|
2010-07-21 08:15:54 +00:00
|
|
|
int seg_count = ( ( abs( a_ArcAngle ) ) * SEGM_COUNT_PER_360DEG ) / 3600;
|
2010-07-17 11:14:57 +00:00
|
|
|
|
|
|
|
if( seg_count == 0 )
|
|
|
|
seg_count = 1;
|
|
|
|
|
|
|
|
double increment_angle = (double) a_ArcAngle * 3.14159 / 1800 / seg_count;
|
|
|
|
|
|
|
|
// Creates nb_seg point to approximate arc by segments:
|
|
|
|
for( int ii = 1; ii <= seg_count; ii++ )
|
|
|
|
{
|
|
|
|
double rot_angle = increment_angle * ii;
|
|
|
|
double fcos = cos( rot_angle );
|
|
|
|
double fsin = sin( rot_angle );
|
|
|
|
wxPoint currpt;
|
|
|
|
|
|
|
|
// Rotate current point:
|
|
|
|
currpt.x = wxRound( ( first_point.x * fcos + first_point.y * fsin ) );
|
|
|
|
currpt.y = wxRound( ( first_point.y * fcos - first_point.x * fsin ) );
|
|
|
|
|
|
|
|
wxPoint corner = aCenter + currpt;
|
|
|
|
aBuffer.push_back( corner );
|
|
|
|
}
|
|
|
|
}
|
2009-02-26 00:37:04 +00:00
|
|
|
|
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function BuildCornersList_S_Shape
|
2010-07-17 11:14:57 +00:00
|
|
|
* Create a path like a S-shaped coil
|
2010-12-28 11:24:42 +00:00
|
|
|
* @param aBuffer = a buffer where to store points (ends of segments)
|
|
|
|
* @param aStartPoint = starting point of the path
|
2010-07-17 11:14:57 +00:00
|
|
|
* @param aEndPoint = ending point of the path
|
|
|
|
* @param aLength = full lenght of the path
|
2010-12-28 11:24:42 +00:00
|
|
|
* @param aWidth = segment width
|
2010-07-17 11:14:57 +00:00
|
|
|
*/
|
|
|
|
int BuildCornersList_S_Shape( std::vector <wxPoint>& aBuffer,
|
|
|
|
wxPoint aStartPoint, wxPoint aEndPoint,
|
|
|
|
int aLength, int aWidth )
|
|
|
|
{
|
|
|
|
/* We must determine:
|
|
|
|
* segm_count = number of segments perpendicular to the direction
|
|
|
|
* segm_len = length of a strand
|
|
|
|
* radius = radius of rounded parts of the coil
|
|
|
|
* stubs_len = length of the 2 stubs( segments parallel to the direction)
|
|
|
|
* connecting the start point to the start point of the S shape
|
|
|
|
* and the ending point to the end point of the S shape
|
|
|
|
* The equations are (assuming the area size of the entire shape is Size:
|
|
|
|
* Size.x = 2 * radius + segm_len
|
|
|
|
* Size.y = (segm_count + 2 ) * 2 * radius + 2 * stubs_len
|
|
|
|
* Mself.lng = 2 * delta // connections to the coil
|
|
|
|
* + (segm_count-2) * segm_len // length of the strands except 1st and last
|
|
|
|
* + (segm_count) * (PI * radius) // length of rounded
|
|
|
|
* segm_len + / 2 - radius * 2) // length of 1st and last bit
|
|
|
|
*
|
|
|
|
* The constraints are:
|
|
|
|
* segm_count >= 2
|
|
|
|
* radius < m_Size.x
|
|
|
|
* Size.y = (radius * 4) + (2 * stubs_len)
|
|
|
|
* segm_len > radius * 2
|
|
|
|
*
|
|
|
|
* The calculation is conducted in the following way:
|
|
|
|
* first:
|
|
|
|
* segm_count = 2
|
|
|
|
* radius = 4 * Size.x (arbitrarily fixed value)
|
|
|
|
* Then:
|
|
|
|
* Increasing the number of segments to the desired length
|
|
|
|
* (radius decreases if necessary)
|
|
|
|
*/
|
2010-07-21 08:15:54 +00:00
|
|
|
wxSize size;
|
2010-07-17 11:14:57 +00:00
|
|
|
|
|
|
|
// This scale factor adjust the arc lenght to handle
|
|
|
|
// the arc to segment approximation.
|
|
|
|
// because we use SEGM_COUNT_PER_360DEG segment to approximate a circle,
|
|
|
|
// the trace len must be corrected when calculated using arcs
|
|
|
|
// this factor adjust calculations and must be canged if SEGM_COUNT_PER_360DEG is modified
|
|
|
|
// because trace using segment is shorter the corresponding arc
|
|
|
|
// ADJUST_SIZE is the ratio between tline len and the arc len for an arc
|
|
|
|
// of 360/ADJUST_SIZE angle
|
|
|
|
#define ADJUST_SIZE 0.988
|
|
|
|
|
|
|
|
wxPoint pt = aEndPoint - aStartPoint;
|
|
|
|
int angle = -wxRound( atan2( (double) pt.y, (double) pt.x ) * 1800.0 / M_PI );
|
|
|
|
int min_len = wxRound( sqrt( (double) pt.x * pt.x + (double) pt.y * pt.y ) );
|
|
|
|
int segm_len = 0; // lenght of segments
|
|
|
|
int full_len; // full len of shape (sum of lenght of all segments + arcs)
|
|
|
|
|
|
|
|
|
|
|
|
/* Note: calculations are made for a vertical coil (more easy calculations)
|
|
|
|
* and after points are rotated to their actual position
|
|
|
|
* So the main direction is the Y axis.
|
|
|
|
* the 2 stubs are on the Y axis
|
|
|
|
* the others segments are parallel to the X axis.
|
|
|
|
*/
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// Calculate the size of area (for a vertical shape)
|
|
|
|
size.x = min_len / 2;
|
|
|
|
size.y = min_len;
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// Choose a reasonable starting value for the radius of the arcs.
|
|
|
|
int radius = MIN( aWidth * 5, size.x / 4 );
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
int segm_count; // number of full len segments
|
|
|
|
// the half size segments (first and last segment) are not counted here
|
|
|
|
int stubs_len = 0; // lenght of first or last segment (half size of others segments)
|
|
|
|
for( segm_count = 0; ; segm_count++ )
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
2010-07-17 11:14:57 +00:00
|
|
|
stubs_len = ( size.y - ( radius * 2 * (segm_count + 2 ) ) ) / 2;
|
|
|
|
if( stubs_len < size.y / 10 ) // Reduce radius.
|
2009-02-26 00:37:04 +00:00
|
|
|
{
|
2010-07-17 11:14:57 +00:00
|
|
|
stubs_len = size.y / 10;
|
|
|
|
radius = ( size.y - (2 * stubs_len) ) / ( 2 * (segm_count + 2) );
|
|
|
|
if( radius < aWidth ) // Radius too small.
|
|
|
|
{
|
|
|
|
// Unable to create line: Requested length value is too large for room
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
segm_len = size.x - ( radius * 2 );
|
2010-07-21 08:15:54 +00:00
|
|
|
full_len = 2 * stubs_len; // Length of coil connections.
|
|
|
|
full_len += segm_len * segm_count; // Length of full length segments.
|
|
|
|
full_len += wxRound( ( segm_count + 2 ) * M_PI * ADJUST_SIZE * radius ); // Ard arcs len
|
|
|
|
full_len += segm_len - (2 * radius); // Length of first and last segments
|
|
|
|
// (half size segments len = segm_len/2 - radius).
|
2010-07-17 11:14:57 +00:00
|
|
|
|
|
|
|
if( full_len >= aLength )
|
|
|
|
break;
|
|
|
|
}
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// Adjust len by adjusting segm_len:
|
|
|
|
int delta_size = full_len - aLength;
|
2010-07-21 08:15:54 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// reduce len of the segm_count segments + 2 half size segments (= 1 full size segment)
|
2010-07-21 08:15:54 +00:00
|
|
|
segm_len -= delta_size / (segm_count + 1);
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// Generate first line (the first stub) and first arc (90 deg arc)
|
|
|
|
pt = aStartPoint;
|
|
|
|
aBuffer.push_back( pt );
|
|
|
|
pt.y += stubs_len;
|
|
|
|
aBuffer.push_back( pt );
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
wxPoint centre = pt;
|
|
|
|
centre.x -= radius;
|
|
|
|
gen_arc( aBuffer, pt, centre, -900 );
|
|
|
|
pt = aBuffer.back();
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
int half_size_seg_len = segm_len / 2 - radius;
|
|
|
|
if( half_size_seg_len )
|
|
|
|
{
|
|
|
|
pt.x -= half_size_seg_len;
|
|
|
|
aBuffer.push_back( pt );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create shape. */
|
|
|
|
int ii;
|
|
|
|
int sign = 1;
|
|
|
|
segm_count += 1; // increase segm_count to create the last half_size segment
|
|
|
|
for( ii = 0; ii < segm_count; ii++ )
|
|
|
|
{
|
|
|
|
int arc_angle;
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
if( ii & 1 ) /* odd order arcs are greater than 0 */
|
|
|
|
sign = -1;
|
|
|
|
else
|
|
|
|
sign = 1;
|
|
|
|
arc_angle = 1800 * sign;
|
|
|
|
centre = pt;
|
|
|
|
centre.y += radius;
|
|
|
|
gen_arc( aBuffer, pt, centre, arc_angle );
|
|
|
|
pt = aBuffer.back();
|
|
|
|
pt.x += segm_len * sign;
|
|
|
|
aBuffer.push_back( pt );
|
|
|
|
}
|
|
|
|
|
|
|
|
// The last point is false:
|
|
|
|
// it is the end of a full size segment, but must be
|
|
|
|
// the end of the second half_size segment. Change it.
|
|
|
|
sign *= -1;
|
|
|
|
aBuffer.back().x = aStartPoint.x + radius * sign;
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// create last arc
|
|
|
|
pt = aBuffer.back();
|
|
|
|
centre = pt;
|
|
|
|
centre.y += radius;
|
|
|
|
gen_arc( aBuffer, pt, centre, 900 * sign ); pt = aBuffer.back();
|
2009-02-26 00:37:04 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// Rotate point
|
|
|
|
angle += 900;
|
|
|
|
for( unsigned jj = 0; jj < aBuffer.size(); jj++ )
|
|
|
|
{
|
|
|
|
RotatePoint( &aBuffer[jj].x, &aBuffer[jj].y,
|
|
|
|
aStartPoint.x, aStartPoint.y, angle );
|
2009-02-26 00:37:04 +00:00
|
|
|
}
|
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
// push last point (end point)
|
|
|
|
aBuffer.push_back( aEndPoint );
|
|
|
|
|
|
|
|
return 1;
|
2009-02-26 00:37:04 +00:00
|
|
|
}
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
/* Create a footprint with pad_count pads for micro wave applications
|
2007-08-08 03:50:44 +00:00
|
|
|
* This footprint has pad_count pads:
|
2008-01-05 17:30:56 +00:00
|
|
|
* PAD_SMD, rectangular, H size = V size = current track width.
|
2007-08-08 03:50:44 +00:00
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
MODULE* PCB_EDIT_FRAME::Create_MuWaveBasicShape( const wxString& name, int pad_count )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
MODULE* Module;
|
|
|
|
int pad_num = 1;
|
|
|
|
wxString Line;
|
|
|
|
|
2010-07-20 18:11:34 +00:00
|
|
|
Module = Create_1_Module( name );
|
2007-08-08 03:50:44 +00:00
|
|
|
if( Module == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
2010-07-21 08:15:54 +00:00
|
|
|
#define DEFAULT_SIZE 30
|
2010-07-17 11:14:57 +00:00
|
|
|
Module->m_TimeStamp = GetTimeStamp();
|
2010-07-21 08:15:54 +00:00
|
|
|
Module->m_Value->m_Size = wxSize( DEFAULT_SIZE, DEFAULT_SIZE );
|
|
|
|
Module->m_Value->m_Pos0.y = -DEFAULT_SIZE;
|
2007-08-08 03:50:44 +00:00
|
|
|
Module->m_Value->m_Pos.y += Module->m_Value->m_Pos0.y;
|
2010-11-27 13:09:18 +00:00
|
|
|
Module->m_Value->m_Thickness = DEFAULT_SIZE / 4;
|
2010-07-21 08:15:54 +00:00
|
|
|
Module->m_Reference->m_Size = wxSize( DEFAULT_SIZE, DEFAULT_SIZE );
|
|
|
|
Module->m_Reference->m_Pos0.y = DEFAULT_SIZE;
|
2007-08-08 03:50:44 +00:00
|
|
|
Module->m_Reference->m_Pos.y += Module->m_Reference->m_Pos0.y;
|
2010-11-27 13:09:18 +00:00
|
|
|
Module->m_Reference->m_Thickness = DEFAULT_SIZE / 4;
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2010-07-21 08:15:54 +00:00
|
|
|
/* Create 2 pads used in gaps and stubs.
|
|
|
|
* The gap is between these 2 pads
|
|
|
|
* the stub is the pad 2
|
|
|
|
*/
|
2007-08-08 03:50:44 +00:00
|
|
|
while( pad_count-- )
|
|
|
|
{
|
2009-11-18 12:52:19 +00:00
|
|
|
D_PAD* pad = new D_PAD( Module );
|
2008-12-04 04:28:11 +00:00
|
|
|
|
|
|
|
Module->m_Pads.PushFront( pad );
|
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
pad->m_Size.x = pad->m_Size.y = GetBoard()->GetCurrentTrackWidth();
|
|
|
|
pad->m_Pos = Module->m_Pos;
|
2008-01-05 17:30:56 +00:00
|
|
|
pad->m_PadShape = PAD_RECT;
|
|
|
|
pad->m_Attribut = PAD_SMD;
|
2009-12-21 13:05:11 +00:00
|
|
|
pad->m_Masque_Layer = LAYER_FRONT;
|
2007-08-08 03:50:44 +00:00
|
|
|
Line.Printf( wxT( "%d" ), pad_num );
|
|
|
|
pad->SetPadName( Line );
|
|
|
|
pad_num++;
|
|
|
|
}
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
return Module;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Create a module "GAP" or "STUB"
|
2007-08-08 03:50:44 +00:00
|
|
|
* This a "gap" or "stub" used in micro wave designs
|
2009-11-18 12:52:19 +00:00
|
|
|
* This module has 2 pads:
|
2008-01-05 17:30:56 +00:00
|
|
|
* PAD_SMD, rectangular, H size = V size = current track width.
|
2007-08-08 03:50:44 +00:00
|
|
|
* the "gap" is isolation created between this 2 pads
|
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
MODULE* PCB_EDIT_FRAME::Create_MuWaveComponent( int shape_type )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2008-12-29 18:02:54 +00:00
|
|
|
int oX;
|
2008-12-06 12:49:33 +00:00
|
|
|
D_PAD* pad;
|
2007-08-08 03:50:44 +00:00
|
|
|
MODULE* Module;
|
|
|
|
wxString msg, cmp_name;
|
|
|
|
int pad_count = 2;
|
2009-11-18 12:52:19 +00:00
|
|
|
int angle = 0;
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2008-12-06 12:49:33 +00:00
|
|
|
/* Enter the size of the gap or stub*/
|
2009-11-18 12:52:19 +00:00
|
|
|
int gap_size = GetBoard()->GetCurrentTrackWidth();
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
switch( shape_type )
|
|
|
|
{
|
|
|
|
case 0:
|
2009-11-18 12:52:19 +00:00
|
|
|
msg = _( "Gap" );
|
2007-08-08 03:50:44 +00:00
|
|
|
cmp_name = wxT( "GAP" );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2009-11-18 12:52:19 +00:00
|
|
|
msg = _( "Stub" );
|
2007-08-08 03:50:44 +00:00
|
|
|
cmp_name = wxT( "STUB" );
|
|
|
|
pad_count = 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2009-11-18 12:52:19 +00:00
|
|
|
msg = _( "Arc Stub" );
|
2007-08-08 03:50:44 +00:00
|
|
|
cmp_name = wxT( "ASTUB" );
|
|
|
|
pad_count = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
msg = wxT( "???" );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-07-21 08:15:54 +00:00
|
|
|
wxString value = ReturnStringFromValue( g_UserUnit, gap_size,
|
|
|
|
GetScreen()->GetInternalUnits() );
|
|
|
|
wxTextEntryDialog dlg( this, msg, _( "Create microwave module" ), value );
|
2010-07-20 18:11:34 +00:00
|
|
|
if( dlg.ShowModal() != wxID_OK )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
DrawPanel->MoveCursorToCrossHair();
|
2010-07-20 18:11:34 +00:00
|
|
|
return NULL; // cancelled by user
|
2007-08-08 03:50:44 +00:00
|
|
|
}
|
|
|
|
|
2010-07-21 08:15:54 +00:00
|
|
|
value = dlg.GetValue();
|
|
|
|
gap_size = ReturnValueFromString( g_UserUnit, value, GetScreen()->GetInternalUnits() );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2010-07-20 18:11:34 +00:00
|
|
|
bool abort = false;
|
|
|
|
if( shape_type == 2 )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
2010-07-21 08:15:54 +00:00
|
|
|
double fcoeff = 10.0, fval;
|
2010-07-20 18:11:34 +00:00
|
|
|
msg.Printf( wxT( "%3.1f" ), angle / fcoeff );
|
2010-07-21 08:15:54 +00:00
|
|
|
wxTextEntryDialog angledlg( this, _( "Angle (0.1deg):" ), _(
|
|
|
|
"Create microwave module" ), msg );
|
|
|
|
if( angledlg.ShowModal() != wxID_OK )
|
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
DrawPanel->MoveCursorToCrossHair();
|
2010-07-21 08:15:54 +00:00
|
|
|
return NULL; // cancelled by user
|
|
|
|
}
|
|
|
|
msg = angledlg.GetValue();
|
2010-07-20 18:11:34 +00:00
|
|
|
if( !msg.ToDouble( &fval ) )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
|
|
|
DisplayError( this, _( "Incorrect number, abort" ) );
|
|
|
|
abort = TRUE;
|
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
angle = ABS( wxRound( fval * fcoeff ) );
|
2007-08-08 03:50:44 +00:00
|
|
|
if( angle > 1800 )
|
|
|
|
angle = 1800;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( abort )
|
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
DrawPanel->MoveCursorToCrossHair();
|
2007-08-08 03:50:44 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-12-06 12:49:33 +00:00
|
|
|
Module = Create_MuWaveBasicShape( cmp_name, pad_count );
|
2009-11-18 12:52:19 +00:00
|
|
|
pad = Module->m_Pads;
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
switch( shape_type )
|
|
|
|
{
|
|
|
|
case 0: //Gap :
|
2009-11-18 12:52:19 +00:00
|
|
|
oX = pad->m_Pos0.x = -( gap_size + pad->m_Size.x ) / 2;
|
2008-12-06 12:49:33 +00:00
|
|
|
pad->m_Pos.x += pad->m_Pos0.x;
|
|
|
|
pad = pad->Next();
|
|
|
|
pad->m_Pos0.x = oX + gap_size + pad->m_Size.x;
|
|
|
|
pad->m_Pos.x += pad->m_Pos0.x;
|
2007-08-08 03:50:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: //Stub :
|
2008-12-06 12:49:33 +00:00
|
|
|
pad->SetPadName( wxT( "1" ) );
|
|
|
|
pad = pad->Next();
|
2009-11-18 12:52:19 +00:00
|
|
|
pad->m_Pos0.y = -( gap_size + pad->m_Size.y ) / 2;
|
2008-12-06 12:49:33 +00:00
|
|
|
pad->m_Size.y = gap_size;
|
|
|
|
pad->m_Pos.y += pad->m_Pos0.y;
|
2007-08-08 03:50:44 +00:00
|
|
|
break;
|
|
|
|
|
2008-12-29 18:02:54 +00:00
|
|
|
case 2: // Arc Stub created by a polygonal approach:
|
2009-11-18 12:52:19 +00:00
|
|
|
{
|
|
|
|
EDGE_MODULE* edge = new EDGE_MODULE( Module );
|
|
|
|
Module->m_Drawings.PushFront( edge );
|
2008-12-29 18:02:54 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
edge->m_Shape = S_POLYGON;
|
2009-12-07 03:46:13 +00:00
|
|
|
edge->SetLayer( LAYER_N_FRONT );
|
2008-12-29 18:02:54 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
int numPoints = angle / 50 + 3; // Note: angles are in 0.1 degrees
|
|
|
|
edge->m_PolyPoints.reserve( numPoints );
|
2008-12-29 18:02:54 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
edge->m_Start0.y = -pad->m_Size.y / 2;
|
2008-12-29 18:02:54 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
edge->m_PolyPoints.push_back( wxPoint( 0, 0 ) );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
int theta = -angle / 2;
|
|
|
|
for( int ii = 1; ii<numPoints - 1; ii++ )
|
|
|
|
{
|
|
|
|
wxPoint pt( 0, -gap_size );
|
2008-12-29 18:02:54 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
RotatePoint( &pt.x, &pt.y, theta );
|
2008-12-29 18:02:54 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
edge->m_PolyPoints.push_back( pt );
|
2008-12-29 18:02:54 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
theta += 50;
|
|
|
|
if( theta > angle / 2 )
|
|
|
|
theta = angle / 2;
|
2008-12-29 18:02:54 +00:00
|
|
|
}
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// Close the polygon:
|
|
|
|
edge->m_PolyPoints.push_back( edge->m_PolyPoints[0] );
|
|
|
|
}
|
|
|
|
break;
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Module->Set_Rectangle_Encadrement();
|
2009-01-05 05:21:35 +00:00
|
|
|
GetBoard()->m_Status_Pcb = 0;
|
2010-02-19 13:23:58 +00:00
|
|
|
OnModify();
|
2007-08-08 03:50:44 +00:00
|
|
|
return Module;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************** Polygon Shapes ***********************/
|
|
|
|
|
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
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Setting polynomial form parameters
|
2007-08-08 03:50:44 +00:00
|
|
|
*/
|
2009-11-18 12:52:19 +00:00
|
|
|
class WinEDA_SetParamShapeFrame : public wxDialog
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
|
|
|
private:
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME* m_Parent;
|
2007-08-08 03:50:44 +00:00
|
|
|
wxRadioBox* m_ShapeOptionCtrl;
|
|
|
|
WinEDA_SizeCtrl* m_SizeCtrl;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
public: WinEDA_SetParamShapeFrame( PCB_EDIT_FRAME* parent, const wxPoint& pos );
|
2007-09-01 12:00:30 +00:00
|
|
|
~WinEDA_SetParamShapeFrame() { };
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
private:
|
2009-11-18 12:52:19 +00:00
|
|
|
void OnOkClick( wxCommandEvent& event );
|
|
|
|
void OnCancelClick( wxCommandEvent& event );
|
|
|
|
void ReadDataShapeDescr( wxCommandEvent& event );
|
|
|
|
void AcceptOptions( wxCommandEvent& event );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2007-05-06 16:03:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
BEGIN_EVENT_TABLE( WinEDA_SetParamShapeFrame, wxDialog )
|
2010-07-17 11:14:57 +00:00
|
|
|
EVT_BUTTON( wxID_OK, WinEDA_SetParamShapeFrame::OnOkClick )
|
|
|
|
EVT_BUTTON( wxID_CANCEL, WinEDA_SetParamShapeFrame::OnCancelClick )
|
|
|
|
EVT_BUTTON( ID_READ_SHAPE_FILE,
|
|
|
|
WinEDA_SetParamShapeFrame::ReadDataShapeDescr )
|
2009-11-18 12:52:19 +00:00
|
|
|
END_EVENT_TABLE()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
WinEDA_SetParamShapeFrame::WinEDA_SetParamShapeFrame( PCB_EDIT_FRAME* parent,
|
|
|
|
const wxPoint& framepos ) :
|
2007-08-08 03:50:44 +00:00
|
|
|
wxDialog( parent, -1, _( "Complex shape" ), framepos, wxSize( 350, 280 ),
|
|
|
|
DIALOG_STYLE )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
m_Parent = parent;
|
|
|
|
|
|
|
|
if( PolyEdges )
|
|
|
|
free( PolyEdges );
|
2009-11-18 12:52:19 +00:00
|
|
|
PolyEdges = NULL;
|
2007-08-08 03:50:44 +00:00
|
|
|
PolyEdgesCount = 0;
|
|
|
|
|
|
|
|
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 );
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
Button =
|
|
|
|
new wxButton( this, ID_READ_SHAPE_FILE,
|
2010-07-17 11:14:57 +00:00
|
|
|
_( "Read Shape Description File..." ) );
|
2007-08-08 03:50:44 +00:00
|
|
|
RightBoxSizer->Add( Button, 0, wxGROW | wxALL, 5 );
|
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
wxString shapelist[3] =
|
|
|
|
{
|
|
|
|
_( "Normal" ), _( "Symmetrical" ),
|
|
|
|
_( "Mirrored" )
|
|
|
|
};
|
2009-11-18 12:52:19 +00:00
|
|
|
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 );
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
m_SizeCtrl = new WinEDA_SizeCtrl( this, _( "Size" ), ShapeSize,
|
2010-07-12 14:07:09 +00:00
|
|
|
g_UserUnit, LeftBoxSizer,
|
2009-11-18 12:52:19 +00:00
|
|
|
PCB_INTERNAL_UNIT );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
GetSizer()->Fit( this );
|
|
|
|
GetSizer()->SetSizeHints( this );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2010-12-21 15:13:09 +00:00
|
|
|
void WinEDA_SetParamShapeFrame::OnCancelClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
if( PolyEdges )
|
|
|
|
free( PolyEdges );
|
2009-11-18 12:52:19 +00:00
|
|
|
PolyEdges = NULL;
|
2007-08-08 03:50:44 +00:00
|
|
|
PolyEdgesCount = 0;
|
2007-10-07 03:08:24 +00:00
|
|
|
EndModal( -1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
void WinEDA_SetParamShapeFrame::OnOkClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
ShapeSize = m_SizeCtrl->GetValue();
|
|
|
|
PolyShapeType = m_ShapeOptionCtrl->GetSelection();
|
|
|
|
EndModal( 1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/* Read a description shape file
|
2007-08-08 03:50:44 +00:00
|
|
|
* File format is
|
|
|
|
* Unit=MM
|
|
|
|
* XScale=271.501
|
|
|
|
* YScale=1.00133
|
2008-04-01 05:21:50 +00:00
|
|
|
*
|
2007-08-08 03:50:44 +00:00
|
|
|
* $COORD
|
|
|
|
* 0 0.6112600148417837
|
|
|
|
* 0.001851851851851852 0.6104800531118608
|
|
|
|
* ....
|
|
|
|
* $ENDCOORD
|
2008-04-01 05:21:50 +00:00
|
|
|
*
|
2009-11-18 12:52:19 +00:00
|
|
|
* Each line is the X Y coord (normalized units from 0 to 1)
|
2007-08-08 03:50:44 +00:00
|
|
|
*/
|
2009-11-18 12:52:19 +00:00
|
|
|
void WinEDA_SetParamShapeFrame::ReadDataShapeDescr( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
wxString FullFileName;
|
|
|
|
wxString ext, mask;
|
|
|
|
FILE* File;
|
2011-01-14 17:43:30 +00:00
|
|
|
char* Line;
|
2007-08-08 03:50:44 +00:00
|
|
|
double unitconv = 10000;
|
|
|
|
char* param1, * param2;
|
|
|
|
int bufsize;
|
|
|
|
double* ptbuf;
|
|
|
|
|
|
|
|
ext = wxT( ".txt" );
|
|
|
|
mask = wxT( "*" ) + ext;
|
|
|
|
FullFileName = EDA_FileSelector( _( "Read descr shape file" ),
|
2009-11-18 12:52:19 +00:00
|
|
|
wxEmptyString,
|
|
|
|
FullFileName,
|
|
|
|
ext,
|
|
|
|
mask,
|
2007-08-08 03:50:44 +00:00
|
|
|
this,
|
|
|
|
wxFD_OPEN,
|
2009-11-18 12:52:19 +00:00
|
|
|
TRUE );
|
2007-08-08 03:50:44 +00:00
|
|
|
if( FullFileName.IsEmpty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
File = wxFopen( FullFileName, wxT( "rt" ) );
|
|
|
|
|
|
|
|
if( File == NULL )
|
|
|
|
{
|
|
|
|
DisplayError( this, _( "File not found" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-14 17:43:30 +00:00
|
|
|
FILE_LINE_READER fileReader( File, FullFileName );
|
|
|
|
|
|
|
|
FILTER_READER reader( fileReader );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
bufsize = 100;
|
|
|
|
ptbuf = PolyEdges = (double*) MyZMalloc( bufsize * 2 * sizeof(double) );
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
SetLocaleTo_C_standard();
|
2011-01-14 17:43:30 +00:00
|
|
|
while( reader.ReadLine() )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
2011-01-14 17:43:30 +00:00
|
|
|
Line = reader.Line();
|
2007-08-08 03:50:44 +00:00
|
|
|
param1 = strtok( Line, " =\n\r" );
|
|
|
|
param2 = strtok( NULL, " \t\n\r" );
|
|
|
|
|
|
|
|
if( strnicmp( param1, "Unit", 4 ) == 0 )
|
|
|
|
{
|
|
|
|
if( strnicmp( param2, "inch", 4 ) == 0 )
|
|
|
|
unitconv = 10000;
|
|
|
|
if( strnicmp( param2, "mm", 2 ) == 0 )
|
|
|
|
unitconv = 10000 / 25.4;
|
|
|
|
}
|
|
|
|
if( strnicmp( param1, "$ENDCOORD", 8 ) == 0 )
|
|
|
|
break;
|
|
|
|
if( strnicmp( param1, "$COORD", 6 ) == 0 )
|
|
|
|
{
|
2011-01-14 17:43:30 +00:00
|
|
|
while( reader.ReadLine() )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
2011-01-14 17:43:30 +00:00
|
|
|
Line = reader.Line();
|
2007-08-08 03:50:44 +00:00
|
|
|
param1 = strtok( Line, " \t\n\r" );
|
|
|
|
param2 = strtok( NULL, " \t\n\r" );
|
|
|
|
if( strnicmp( param1, "$ENDCOORD", 8 ) == 0 )
|
|
|
|
break;
|
|
|
|
if( bufsize <= PolyEdgesCount )
|
|
|
|
{
|
|
|
|
int index = ptbuf - PolyEdges;
|
|
|
|
bufsize *= 2;
|
2009-11-18 12:52:19 +00:00
|
|
|
ptbuf = PolyEdges = (double*) realloc(
|
2010-07-17 11:14:57 +00:00
|
|
|
PolyEdges, bufsize * 2 *
|
2009-11-18 12:52:19 +00:00
|
|
|
sizeof(double) );
|
|
|
|
ptbuf += index;
|
2007-08-08 03:50:44 +00:00
|
|
|
}
|
|
|
|
*ptbuf = atof( param1 );
|
|
|
|
ptbuf++;
|
|
|
|
*ptbuf = atof( param2 );
|
|
|
|
ptbuf++;
|
|
|
|
PolyEdgesCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( strnicmp( Line, "XScale", 6 ) == 0 )
|
|
|
|
{
|
|
|
|
ShapeScaleX = atof( param2 );
|
|
|
|
}
|
|
|
|
if( strnicmp( Line, "YScale", 6 ) == 0 )
|
|
|
|
{
|
|
|
|
ShapeScaleY = atof( param2 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( PolyEdgesCount == 0 )
|
|
|
|
{
|
|
|
|
free( PolyEdges );
|
|
|
|
PolyEdges = NULL;
|
|
|
|
}
|
2009-11-18 12:52:19 +00:00
|
|
|
SetLocaleTo_Default(); // revert to the current locale
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
ShapeScaleX *= unitconv;
|
|
|
|
ShapeScaleY *= unitconv;
|
|
|
|
|
|
|
|
m_SizeCtrl->SetValue( (int) ShapeScaleX, (int) ShapeScaleY );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
MODULE* PCB_EDIT_FRAME::Create_MuWavePolygonShape()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
D_PAD* pad1, * pad2;
|
|
|
|
MODULE* Module;
|
|
|
|
wxString cmp_name;
|
|
|
|
int pad_count = 2;
|
2008-12-29 18:02:54 +00:00
|
|
|
EDGE_MODULE* edge;
|
2007-08-08 03:50:44 +00:00
|
|
|
int ii, npoints;
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
WinEDA_SetParamShapeFrame* frame = new WinEDA_SetParamShapeFrame(
|
2010-07-17 11:14:57 +00:00
|
|
|
this, wxPoint( -1, -1 ) );
|
2008-12-29 18:02:54 +00:00
|
|
|
|
|
|
|
int ok = frame->ShowModal();
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2008-12-29 18:02:54 +00:00
|
|
|
frame->Destroy();
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
DrawPanel->MoveCursorToCrossHair();
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
if( ok != 1 )
|
|
|
|
{
|
|
|
|
if( PolyEdges )
|
|
|
|
free( PolyEdges );
|
2009-11-18 12:52:19 +00:00
|
|
|
PolyEdges = NULL;
|
2007-08-08 03:50:44 +00:00
|
|
|
PolyEdgesCount = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( PolyShapeType == 2 ) // mirrored
|
|
|
|
ShapeScaleY = -ShapeScaleY;
|
2008-12-29 18:02:54 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
ShapeSize.x = wxRound( ShapeScaleX );
|
|
|
|
ShapeSize.y = wxRound( ShapeScaleY );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
if( ( ShapeSize.x ) == 0 || ( ShapeSize.y == 0 ) )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
|
|
|
DisplayError( this, _( "Shape has a null size!" ) );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if( PolyEdgesCount == 0 )
|
|
|
|
{
|
|
|
|
DisplayError( this, _( "Shape has no points!" ) );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmp_name = wxT( "POLY" );
|
|
|
|
|
2008-12-06 12:49:33 +00:00
|
|
|
Module = Create_MuWaveBasicShape( cmp_name, pad_count );
|
2007-08-08 03:50:44 +00:00
|
|
|
pad1 = Module->m_Pads;
|
|
|
|
|
|
|
|
pad1->m_Pos0.x = -ShapeSize.x / 2;
|
|
|
|
pad1->m_Pos.x += pad1->m_Pos0.x;
|
|
|
|
|
2008-11-24 06:53:43 +00:00
|
|
|
pad2 = (D_PAD*) pad1->Next();
|
2007-08-08 03:50:44 +00:00
|
|
|
pad2->m_Pos0.x = pad1->m_Pos0.x + ShapeSize.x;
|
|
|
|
pad2->m_Pos.x += pad2->m_Pos0.x;
|
|
|
|
|
|
|
|
edge = new EDGE_MODULE( Module );
|
2008-12-04 04:28:11 +00:00
|
|
|
|
|
|
|
Module->m_Drawings.PushFront( edge );
|
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
edge->m_Shape = S_POLYGON;
|
2009-12-07 03:46:13 +00:00
|
|
|
edge->SetLayer( LAYER_N_FRONT );
|
2007-08-08 03:50:44 +00:00
|
|
|
npoints = PolyEdgesCount;
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
edge->m_PolyPoints.reserve( 2 * PolyEdgesCount + 2 );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
// Init start point coord:
|
2009-11-18 12:52:19 +00:00
|
|
|
edge->m_PolyPoints.push_back( wxPoint( pad1->m_Pos0.x, 0 ) );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
double* dptr = PolyEdges;
|
2008-12-29 18:02:54 +00:00
|
|
|
wxPoint first_coordinate, last_coordinate;
|
2007-08-08 03:50:44 +00:00
|
|
|
for( ii = 0; ii < npoints; ii++ ) // Copy points
|
|
|
|
{
|
2009-11-18 12:52:19 +00:00
|
|
|
last_coordinate.x = wxRound( *dptr++ *ShapeScaleX ) + pad1->m_Pos0.x;
|
|
|
|
last_coordinate.y = -wxRound( *dptr++ *ShapeScaleY );
|
2008-12-29 18:02:54 +00:00
|
|
|
edge->m_PolyPoints.push_back( last_coordinate );
|
2007-08-08 03:50:44 +00:00
|
|
|
}
|
|
|
|
|
2008-12-29 18:02:54 +00:00
|
|
|
first_coordinate.y = edge->m_PolyPoints[1].y;
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
switch( PolyShapeType )
|
|
|
|
{
|
|
|
|
case 0: // Single
|
|
|
|
case 2: // Single mirrored
|
|
|
|
// Init end point coord:
|
2008-12-29 18:02:54 +00:00
|
|
|
pad2->m_Pos0.x = last_coordinate.x;
|
|
|
|
edge->m_PolyPoints.push_back( wxPoint( last_coordinate.x, 0 ) );
|
|
|
|
|
|
|
|
pad1->m_Size.x = pad1->m_Size.y = ABS( first_coordinate.y );
|
|
|
|
pad2->m_Size.x = pad2->m_Size.y = ABS( last_coordinate.y );
|
|
|
|
pad1->m_Pos0.y = first_coordinate.y / 2;
|
|
|
|
pad2->m_Pos0.y = last_coordinate.y / 2;
|
2007-08-08 03:50:44 +00:00
|
|
|
pad1->m_Pos.y = pad1->m_Pos0.y + Module->m_Pos.y;
|
|
|
|
pad2->m_Pos.y = pad2->m_Pos0.y + Module->m_Pos.y;
|
|
|
|
break;
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
case 1: // Symmetric
|
|
|
|
for( int ndx = edge->m_PolyPoints.size() - 1; ndx>=0; --ndx )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
2008-12-29 18:02:54 +00:00
|
|
|
wxPoint pt = edge->m_PolyPoints[ndx];
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2008-12-29 18:02:54 +00:00
|
|
|
pt.y = -pt.y; // mirror about X axis
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2008-12-29 18:02:54 +00:00
|
|
|
edge->m_PolyPoints.push_back( pt );
|
|
|
|
}
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2008-12-29 18:02:54 +00:00
|
|
|
pad1->m_Size.x = pad1->m_Size.y = 2 * ABS( first_coordinate.y );
|
|
|
|
pad2->m_Size.x = pad2->m_Size.y = 2 * ABS( last_coordinate.y );
|
2007-08-08 03:50:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
free( PolyEdges );
|
|
|
|
PolyEdgesCount = 0;
|
|
|
|
PolyEdges = NULL;
|
|
|
|
|
|
|
|
Module->Set_Rectangle_Encadrement();
|
2009-01-05 05:21:35 +00:00
|
|
|
GetBoard()->m_Status_Pcb = 0;
|
2010-02-19 13:23:58 +00:00
|
|
|
OnModify();
|
2007-08-08 03:50:44 +00:00
|
|
|
return Module;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-11-18 12:52:19 +00:00
|
|
|
* Edit the GAP module, if it has changed the position and/or size
|
|
|
|
* Pads that form the gap to get a new value of the gap.
|
2007-05-06 16:03:28 +00:00
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::Edit_Gap( wxDC* DC, MODULE* Module )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
int gap_size, oX;
|
|
|
|
D_PAD* pad, * next_pad;
|
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
if( Module == NULL )
|
2009-11-18 12:52:19 +00:00
|
|
|
return;
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Test if module is a gap type (name begins with GAP, and has 2 pads). */
|
2007-08-08 03:50:44 +00:00
|
|
|
msg = Module->m_Reference->m_Text.Left( 3 );
|
|
|
|
if( msg != wxT( "GAP" ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
pad = Module->m_Pads;
|
|
|
|
if( pad == NULL )
|
|
|
|
{
|
2009-11-18 12:52:19 +00:00
|
|
|
DisplayError( this, _( "No pad for this module" ) );
|
|
|
|
return;
|
2007-08-08 03:50:44 +00:00
|
|
|
}
|
2008-11-24 06:53:43 +00:00
|
|
|
next_pad = (D_PAD*) pad->Next();
|
2007-08-08 03:50:44 +00:00
|
|
|
if( next_pad == NULL )
|
|
|
|
{
|
2009-11-18 12:52:19 +00:00
|
|
|
DisplayError( this, _( "Only one pad for this module" ) );
|
|
|
|
return;
|
2007-08-08 03:50:44 +00:00
|
|
|
}
|
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
Module->Draw( DrawPanel, DC, GR_XOR );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Calculate the current dimension. */
|
2007-08-08 03:50:44 +00:00
|
|
|
gap_size = next_pad->m_Pos0.x - pad->m_Pos0.x - pad->m_Size.x;
|
|
|
|
|
2010-07-20 18:11:34 +00:00
|
|
|
/* Entrer the desired length of the gap. */
|
|
|
|
msg = ReturnStringFromValue( g_UserUnit, gap_size, GetScreen()->GetInternalUnits() );
|
|
|
|
wxTextEntryDialog dlg( this, _( "Gap:" ), _( "Create Microwave Gap" ), msg );
|
|
|
|
if( dlg.ShowModal() != wxID_OK )
|
|
|
|
return; // cancelled by user
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2010-07-21 08:15:54 +00:00
|
|
|
msg = dlg.GetValue();
|
2010-07-20 18:11:34 +00:00
|
|
|
gap_size = ReturnValueFromString( g_UserUnit, msg, GetScreen()->GetInternalUnits() );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Updating sizes of pads forming the gap. */
|
2009-10-30 17:58:15 +00:00
|
|
|
pad->m_Size.x = pad->m_Size.y = GetBoard()->GetCurrentTrackWidth();
|
2007-08-08 03:50:44 +00:00
|
|
|
pad->m_Pos0.y = 0;
|
|
|
|
oX = pad->m_Pos0.x = -( (gap_size + pad->m_Size.x) / 2 );
|
|
|
|
pad->m_Pos.x = pad->m_Pos0.x + Module->m_Pos.x;
|
|
|
|
pad->m_Pos.y = pad->m_Pos0.y + Module->m_Pos.y;
|
2009-11-18 12:52:19 +00:00
|
|
|
RotatePoint( &pad->m_Pos.x, &pad->m_Pos.y,
|
2007-08-08 03:50:44 +00:00
|
|
|
Module->m_Pos.x, Module->m_Pos.y, Module->m_Orient );
|
|
|
|
|
2009-10-30 17:58:15 +00:00
|
|
|
next_pad->m_Size.x = next_pad->m_Size.y = GetBoard()->GetCurrentTrackWidth();
|
2007-08-08 03:50:44 +00:00
|
|
|
next_pad->m_Pos0.y = 0;
|
|
|
|
next_pad->m_Pos0.x = oX + gap_size + next_pad->m_Size.x;
|
|
|
|
next_pad->m_Pos.x = next_pad->m_Pos0.x + Module->m_Pos.x;
|
|
|
|
next_pad->m_Pos.y = next_pad->m_Pos0.y + Module->m_Pos.y;
|
2009-11-18 12:52:19 +00:00
|
|
|
RotatePoint( &next_pad->m_Pos.x, &next_pad->m_Pos.y,
|
2007-08-08 03:50:44 +00:00
|
|
|
Module->m_Pos.x, Module->m_Pos.y, Module->m_Orient );
|
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
Module->Draw( DrawPanel, DC, GR_OR );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|