2011-10-17 20:01:27 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2012-06-08 09:56:42 +00:00
|
|
|
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
|
|
* Copyright (C) 1992-2012 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 20:01:27 +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
|
|
|
|
*/
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file class_zone.cpp
|
|
|
|
* @brief Implementation of class to handle copper zones.
|
|
|
|
*/
|
2007-12-09 12:59:06 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <wxstruct.h>
|
|
|
|
#include <trigo.h>
|
|
|
|
#include <class_pcb_screen.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <kicad_string.h>
|
|
|
|
#include <pcbcommon.h>
|
|
|
|
#include <colors_selection.h>
|
|
|
|
#include <richio.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <wxBasePcbFrame.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2007-12-09 12:59:06 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <protos.h>
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_zone.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <zones.h>
|
2012-07-30 07:40:25 +00:00
|
|
|
#include <math_for_graphics.h>
|
2012-07-31 17:51:58 +00:00
|
|
|
#include <polygon_test_point_inside.h>
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2007-12-09 12:59:06 +00:00
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
ZONE_CONTAINER::ZONE_CONTAINER( BOARD* aBoard ) :
|
|
|
|
BOARD_CONNECTED_ITEM( aBoard, PCB_ZONE_AREA_T )
|
2007-12-09 12:59:06 +00:00
|
|
|
{
|
2011-12-07 15:49:32 +00:00
|
|
|
SetNet( -1 ); // Net number for fast comparisons
|
2008-01-31 20:53:44 +00:00
|
|
|
m_CornerSelection = -1;
|
2011-01-20 18:40:33 +00:00
|
|
|
m_IsFilled = false; // fill status : true when the zone is filled
|
|
|
|
m_FillMode = 0; // How to fill areas: 0 = use filled polygons, != 0 fill with segments
|
2012-01-29 19:29:19 +00:00
|
|
|
m_priority = 0;
|
2012-07-13 18:55:29 +00:00
|
|
|
m_smoothedPoly = NULL;
|
|
|
|
m_cornerSmoothingType = ZONE_SETTINGS::SMOOTHING_NONE;
|
2012-07-14 16:27:25 +00:00
|
|
|
SetIsKeepout( false );
|
|
|
|
SetDoNotAllowCopperPour( false ); // has meaning only if m_isKeepout == true
|
|
|
|
SetDoNotAllowVias( true ); // has meaning only if m_isKeepout == true
|
|
|
|
SetDoNotAllowTracks( true ); // has meaning only if m_isKeepout == true
|
2012-07-13 18:55:29 +00:00
|
|
|
m_cornerRadius = 0;
|
2013-03-26 09:58:40 +00:00
|
|
|
SetLocalFlags( 0 ); // flags tempoarry used in zone calculations
|
2011-01-20 18:40:33 +00:00
|
|
|
m_Poly = new CPolyLine(); // Outlines
|
2012-02-06 05:44:19 +00:00
|
|
|
aBoard->GetZoneSettings().ExportSetting( *this );
|
2007-12-09 12:59:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-14 19:50:32 +00:00
|
|
|
ZONE_CONTAINER::ZONE_CONTAINER( const ZONE_CONTAINER& aZone ) :
|
|
|
|
BOARD_CONNECTED_ITEM( aZone )
|
|
|
|
{
|
|
|
|
// Should the copy be on the same net?
|
|
|
|
SetNet( aZone.GetNet() );
|
|
|
|
m_Poly = new CPolyLine( *aZone.m_Poly );
|
|
|
|
|
|
|
|
// For corner moving, corner index to drag, or -1 if no selection
|
|
|
|
m_CornerSelection = -1;
|
2012-05-29 18:10:56 +00:00
|
|
|
m_IsFilled = aZone.m_IsFilled;
|
2012-01-14 19:50:32 +00:00
|
|
|
m_ZoneClearance = aZone.m_ZoneClearance; // clearance value
|
|
|
|
m_ZoneMinThickness = aZone.m_ZoneMinThickness;
|
|
|
|
m_FillMode = aZone.m_FillMode; // Filling mode (segments/polygons)
|
2012-01-29 19:29:19 +00:00
|
|
|
m_priority = aZone.m_priority;
|
2012-01-14 19:50:32 +00:00
|
|
|
m_ArcToSegmentsCount = aZone.m_ArcToSegmentsCount;
|
2012-02-24 23:23:46 +00:00
|
|
|
m_PadConnection = aZone.m_PadConnection;
|
2012-01-14 19:50:32 +00:00
|
|
|
m_ThermalReliefGap = aZone.m_ThermalReliefGap;
|
|
|
|
m_ThermalReliefCopperBridge = aZone.m_ThermalReliefCopperBridge;
|
2013-05-14 18:47:01 +00:00
|
|
|
m_FilledPolysList.Append( aZone.m_FilledPolysList );
|
|
|
|
m_FillSegmList = aZone.m_FillSegmList; // vector <> copy
|
2012-05-29 18:10:56 +00:00
|
|
|
|
2012-07-13 18:55:29 +00:00
|
|
|
m_isKeepout = aZone.m_isKeepout;
|
2012-07-14 16:27:25 +00:00
|
|
|
m_doNotAllowCopperPour = aZone.m_doNotAllowCopperPour;
|
2012-07-13 18:55:29 +00:00
|
|
|
m_doNotAllowVias = aZone.m_doNotAllowVias;
|
|
|
|
m_doNotAllowTracks = aZone.m_doNotAllowTracks;
|
|
|
|
|
|
|
|
m_cornerSmoothingType = aZone.m_cornerSmoothingType;
|
|
|
|
m_cornerRadius = aZone.m_cornerRadius;
|
|
|
|
|
2013-03-26 09:58:40 +00:00
|
|
|
SetLocalFlags( aZone.GetLocalFlags() );
|
2012-01-14 19:50:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-04 12:27:16 +00:00
|
|
|
ZONE_CONTAINER::~ZONE_CONTAINER()
|
2007-12-09 12:59:06 +00:00
|
|
|
{
|
2008-01-31 20:53:44 +00:00
|
|
|
delete m_Poly;
|
|
|
|
m_Poly = NULL;
|
2007-12-09 12:59:06 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* ZONE_CONTAINER::Clone() const
|
2012-01-14 19:50:32 +00:00
|
|
|
{
|
|
|
|
return new ZONE_CONTAINER( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-16 16:04:49 +00:00
|
|
|
bool ZONE_CONTAINER::UnFill()
|
|
|
|
{
|
2013-05-09 19:08:12 +00:00
|
|
|
bool change = ( m_FilledPolysList.GetCornersCount() > 0 ) ||
|
|
|
|
( m_FillSegmList.size() > 0 );
|
2011-07-16 16:04:49 +00:00
|
|
|
|
2013-05-14 18:47:01 +00:00
|
|
|
m_FilledPolysList.RemoveAllContours();
|
2011-07-16 16:04:49 +00:00
|
|
|
m_FillSegmList.clear();
|
|
|
|
m_IsFilled = false;
|
|
|
|
|
|
|
|
return change;
|
|
|
|
}
|
2007-12-09 12:59:06 +00:00
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2012-02-20 04:33:54 +00:00
|
|
|
const wxPoint& ZONE_CONTAINER::GetPosition() const
|
2008-10-29 15:26:53 +00:00
|
|
|
{
|
2012-02-20 04:33:54 +00:00
|
|
|
static const wxPoint dummy;
|
2008-10-29 15:26:53 +00:00
|
|
|
|
2012-02-20 04:33:54 +00:00
|
|
|
return m_Poly ? GetCornerPosition( 0 ) : dummy;
|
2011-11-29 17:25:30 +00:00
|
|
|
}
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2011-11-24 17:32:51 +00:00
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
void ZONE_CONTAINER::SetNet( int aNetCode )
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2011-12-07 15:49:32 +00:00
|
|
|
BOARD_CONNECTED_ITEM::SetNet( aNetCode );
|
2007-12-09 12:59:06 +00:00
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
if( aNetCode < 0 )
|
2008-01-31 20:53:44 +00:00
|
|
|
return;
|
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
BOARD* board = GetBoard();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
if( board )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2011-10-17 20:01:27 +00:00
|
|
|
NETINFO_ITEM* net = board->FindNet( aNetCode );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
if( net )
|
2008-12-14 19:45:05 +00:00
|
|
|
m_Netname = net->GetNetname();
|
2008-01-31 20:53:44 +00:00
|
|
|
else
|
|
|
|
m_Netname.Empty();
|
|
|
|
}
|
|
|
|
else
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2008-01-31 20:53:44 +00:00
|
|
|
m_Netname.Empty();
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
2007-12-09 12:59:06 +00:00
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2013-03-20 14:50:12 +00:00
|
|
|
void ZONE_CONTAINER::Draw( EDA_DRAW_PANEL* panel, wxDC* DC, GR_DRAWMODE aDrawMode,
|
|
|
|
const wxPoint& offset )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
2008-01-31 20:53:44 +00:00
|
|
|
if( DC == NULL )
|
|
|
|
return;
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
wxPoint seg_start, seg_end;
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM curr_layer = ( (PCB_SCREEN*) panel->GetScreen() )->m_Active_Layer;
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2011-01-20 18:40:33 +00:00
|
|
|
BOARD* brd = GetBoard();
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T color = brd->GetLayerColor( m_Layer );
|
2010-01-31 20:01:46 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
if( brd->IsLayerVisible( m_Layer ) == false && ( color & HIGHLIGHT_FLAG ) != HIGHLIGHT_FLAG )
|
2007-12-29 19:15:58 +00:00
|
|
|
return;
|
|
|
|
|
2010-12-14 15:56:30 +00:00
|
|
|
GRSetDrawMode( DC, aDrawMode );
|
2007-12-29 19:15:58 +00:00
|
|
|
|
|
|
|
if( DisplayOpt.ContrastModeDisplay )
|
|
|
|
{
|
|
|
|
if( !IsOnLayer( curr_layer ) )
|
2012-09-02 12:06:47 +00:00
|
|
|
ColorTurnToDarkDarkGray( &color );
|
2007-12-29 19:15:58 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
if( aDrawMode & GR_HIGHLIGHT )
|
2012-09-02 12:06:47 +00:00
|
|
|
ColorChangeHighlightFlag( &color, !(aDrawMode & GR_AND) );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-04-04 21:35:01 +00:00
|
|
|
ColorApplyHighlightFlag( &color );
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2008-12-03 10:32:53 +00:00
|
|
|
SetAlpha( &color, 150 );
|
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
// draw the lines
|
|
|
|
int i_start_contour = 0;
|
2010-10-13 19:50:23 +00:00
|
|
|
std::vector<wxPoint> lines;
|
2011-01-20 18:40:33 +00:00
|
|
|
lines.reserve( (GetNumCorners() * 2) + 2 );
|
2010-12-14 15:56:30 +00:00
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
for( int ic = 0; ic < GetNumCorners(); ic++ )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
seg_start = GetCornerPosition( ic ) + offset;
|
2010-12-14 15:56:30 +00:00
|
|
|
|
2013-05-08 18:20:58 +00:00
|
|
|
if( !m_Poly->m_CornersList.IsEndContour( ic ) && ic < GetNumCorners() - 1 )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
seg_end = GetCornerPosition( ic + 1 ) + offset;
|
2007-12-29 19:15:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
seg_end = GetCornerPosition( i_start_contour ) + offset;
|
2007-12-29 19:15:58 +00:00
|
|
|
i_start_contour = ic + 1;
|
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-10-13 19:50:23 +00:00
|
|
|
lines.push_back( seg_start );
|
|
|
|
lines.push_back( seg_end );
|
2007-12-29 19:15:58 +00:00
|
|
|
}
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
GRLineArray( panel->GetClipBox(), DC, lines, 0, color );
|
2008-01-31 20:53:44 +00:00
|
|
|
|
|
|
|
// draw hatches
|
2010-10-13 19:50:23 +00:00
|
|
|
lines.clear();
|
2011-01-20 18:40:33 +00:00
|
|
|
lines.reserve( (m_Poly->m_HatchLines.size() * 2) + 2 );
|
2010-12-14 15:56:30 +00:00
|
|
|
|
2008-01-04 12:27:16 +00:00
|
|
|
for( unsigned ic = 0; ic < m_Poly->m_HatchLines.size(); ic++ )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
2012-07-13 18:55:29 +00:00
|
|
|
seg_start = m_Poly->m_HatchLines[ic].m_Start + offset;
|
|
|
|
seg_end = m_Poly->m_HatchLines[ic].m_End + offset;
|
2010-10-13 19:50:23 +00:00
|
|
|
lines.push_back( seg_start );
|
|
|
|
lines.push_back( seg_end );
|
2007-12-29 19:15:58 +00:00
|
|
|
}
|
2010-12-14 15:56:30 +00:00
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
GRLineArray( panel->GetClipBox(), DC, lines, 0, color );
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
void ZONE_CONTAINER::DrawFilledArea( EDA_DRAW_PANEL* panel,
|
2012-09-01 13:38:27 +00:00
|
|
|
wxDC* DC, GR_DRAWMODE aDrawMode, const wxPoint& offset )
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2012-08-03 15:43:15 +00:00
|
|
|
static std::vector <char> CornersTypeBuffer;
|
|
|
|
static std::vector <wxPoint> CornersBuffer;
|
2009-01-05 05:21:35 +00:00
|
|
|
|
2008-12-12 21:30:07 +00:00
|
|
|
// outline_mode is false to show filled polys,
|
|
|
|
// and true to show polygons outlines only (test and debug purposes)
|
2009-01-05 05:21:35 +00:00
|
|
|
bool outline_mode = DisplayOpt.DisplayZonesMode == 2 ? true : false;
|
2008-09-26 19:51:36 +00:00
|
|
|
|
|
|
|
if( DC == NULL )
|
|
|
|
return;
|
|
|
|
|
2008-12-12 21:30:07 +00:00
|
|
|
if( DisplayOpt.DisplayZonesMode == 1 ) // Do not show filled areas
|
2008-09-26 19:51:36 +00:00
|
|
|
return;
|
|
|
|
|
2013-05-09 19:08:12 +00:00
|
|
|
if( m_FilledPolysList.GetCornersCount() == 0 ) // Nothing to draw
|
2008-09-26 19:51:36 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-20 18:40:33 +00:00
|
|
|
BOARD* brd = GetBoard();
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM curr_layer = ( (PCB_SCREEN*) panel->GetScreen() )->m_Active_Layer;
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T color = brd->GetLayerColor( m_Layer );
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
if( brd->IsLayerVisible( m_Layer ) == false && ( color & HIGHLIGHT_FLAG ) != HIGHLIGHT_FLAG )
|
2008-09-26 19:51:36 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
GRSetDrawMode( DC, aDrawMode );
|
|
|
|
|
|
|
|
if( DisplayOpt.ContrastModeDisplay )
|
|
|
|
{
|
|
|
|
if( !IsOnLayer( curr_layer ) )
|
2012-09-02 12:06:47 +00:00
|
|
|
ColorTurnToDarkDarkGray( &color );
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
if( aDrawMode & GR_HIGHLIGHT )
|
2012-09-02 12:06:47 +00:00
|
|
|
ColorChangeHighlightFlag( &color, !(aDrawMode & GR_AND) );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-04-04 21:35:01 +00:00
|
|
|
ColorApplyHighlightFlag( &color );
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2008-12-03 10:32:53 +00:00
|
|
|
SetAlpha( &color, 150 );
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2008-12-03 10:32:53 +00:00
|
|
|
CornersTypeBuffer.clear();
|
|
|
|
CornersBuffer.clear();
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2008-09-27 19:26:29 +00:00
|
|
|
// Draw all filled areas
|
2013-05-09 19:08:12 +00:00
|
|
|
int imax = m_FilledPolysList.GetCornersCount() - 1;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-03 10:32:53 +00:00
|
|
|
for( int ic = 0; ic <= imax; ic++ )
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
const CPolyPt& corner = m_FilledPolysList.GetCorner( ic );
|
|
|
|
wxPoint coord( corner.x + offset.x, corner.y + offset.y );
|
2011-01-20 18:40:33 +00:00
|
|
|
CornersBuffer.push_back( coord );
|
2013-05-08 18:20:58 +00:00
|
|
|
CornersTypeBuffer.push_back( (char) corner.m_utility );
|
2009-01-05 05:21:35 +00:00
|
|
|
|
2013-03-20 14:50:12 +00:00
|
|
|
// the last corner of a filled area is found: draw it
|
2013-05-08 18:20:58 +00:00
|
|
|
if( (corner.end_contour) || (ic == imax) )
|
2009-01-05 05:21:35 +00:00
|
|
|
{
|
2011-07-14 15:42:44 +00:00
|
|
|
/* Draw the current filled area: draw segments outline first
|
|
|
|
* Curiously, draw segments outline first and after draw filled polygons
|
|
|
|
* with outlines thickness = 0 is a faster than
|
|
|
|
* just draw filled polygons but with outlines thickness = m_ZoneMinThickness
|
|
|
|
* So DO NOT use draw filled polygons with outlines having a thickness > 0
|
2013-02-19 09:21:55 +00:00
|
|
|
* Note: Extra segments ( added to joint holes with external outline) flagged by
|
|
|
|
* m_utility != 0 are not drawn
|
|
|
|
* Note not all polygon libraries provide a flag for these extra-segments, therefore
|
|
|
|
* the m_utility member can be always 0
|
2008-12-29 18:02:54 +00:00
|
|
|
*/
|
2008-11-22 20:50:30 +00:00
|
|
|
{
|
|
|
|
// Draw outlines:
|
2009-01-05 05:21:35 +00:00
|
|
|
if( (m_ZoneMinThickness > 1) || outline_mode )
|
2008-11-22 20:50:30 +00:00
|
|
|
{
|
2011-01-20 18:40:33 +00:00
|
|
|
int ilim = CornersBuffer.size() - 1;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
for( int is = 0, ie = ilim; is <= ilim; ie = is, is++ )
|
2008-11-22 20:50:30 +00:00
|
|
|
{
|
2008-12-03 10:32:53 +00:00
|
|
|
int x0 = CornersBuffer[is].x;
|
|
|
|
int y0 = CornersBuffer[is].y;
|
|
|
|
int x1 = CornersBuffer[ie].x;
|
|
|
|
int y1 = CornersBuffer[ie].y;
|
2009-01-05 05:21:35 +00:00
|
|
|
|
2013-03-20 14:50:12 +00:00
|
|
|
// Draw only basic outlines, not extra segments.
|
|
|
|
if( CornersTypeBuffer[ie] == 0 )
|
2008-12-03 10:32:53 +00:00
|
|
|
{
|
2009-01-05 05:21:35 +00:00
|
|
|
if( !DisplayOpt.DisplayPcbTrackFill || GetState( FORCE_SKETCH ) )
|
2011-12-29 20:11:42 +00:00
|
|
|
GRCSegm( panel->GetClipBox(), DC,
|
2011-01-20 18:40:33 +00:00
|
|
|
x0, y0, x1, y1,
|
|
|
|
m_ZoneMinThickness, color );
|
2008-12-03 10:32:53 +00:00
|
|
|
else
|
2011-12-29 20:11:42 +00:00
|
|
|
GRFillCSegm( panel->GetClipBox(), DC,
|
2011-01-20 18:40:33 +00:00
|
|
|
x0, y0, x1, y1,
|
|
|
|
m_ZoneMinThickness, color );
|
2008-12-03 10:32:53 +00:00
|
|
|
}
|
2008-11-22 20:50:30 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-05 05:21:35 +00:00
|
|
|
|
2008-11-22 20:50:30 +00:00
|
|
|
// Draw areas:
|
2009-01-05 05:21:35 +00:00
|
|
|
if( m_FillMode==0 && !outline_mode )
|
2011-12-29 20:11:42 +00:00
|
|
|
GRPoly( panel->GetClipBox(), DC, CornersBuffer.size(), &CornersBuffer[0],
|
2011-01-20 18:40:33 +00:00
|
|
|
true, 0, color, color );
|
2008-11-22 20:50:30 +00:00
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-29 18:02:54 +00:00
|
|
|
CornersTypeBuffer.clear();
|
|
|
|
CornersBuffer.clear();
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
}
|
2009-08-06 18:30:46 +00:00
|
|
|
|
|
|
|
if( m_FillMode == 1 && !outline_mode ) // filled with segments
|
|
|
|
{
|
|
|
|
for( unsigned ic = 0; ic < m_FillSegmList.size(); ic++ )
|
|
|
|
{
|
2011-01-20 18:40:33 +00:00
|
|
|
wxPoint start = m_FillSegmList[ic].m_Start + offset;
|
|
|
|
wxPoint end = m_FillSegmList[ic].m_End + offset;
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2009-08-06 18:30:46 +00:00
|
|
|
if( !DisplayOpt.DisplayPcbTrackFill || GetState( FORCE_SKETCH ) )
|
2011-12-29 20:11:42 +00:00
|
|
|
GRCSegm( panel->GetClipBox(), DC, start.x, start.y, end.x, end.y,
|
2010-12-10 19:47:44 +00:00
|
|
|
m_ZoneMinThickness, color );
|
2009-08-06 18:30:46 +00:00
|
|
|
else
|
2011-12-29 20:11:42 +00:00
|
|
|
GRFillCSegm( panel->GetClipBox(), DC, start.x, start.y, end.x, end.y,
|
2010-12-10 19:47:44 +00:00
|
|
|
m_ZoneMinThickness, color );
|
2009-08-06 18:30:46 +00:00
|
|
|
}
|
|
|
|
}
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT ZONE_CONTAINER::GetBoundingBox() const
|
2008-05-02 05:16:35 +00:00
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
const int PRELOAD = 0x7FFFFFFF; // Biggest integer (32 bits)
|
2008-05-02 05:16:35 +00:00
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
int ymax = -PRELOAD;
|
|
|
|
int ymin = PRELOAD;
|
|
|
|
int xmin = PRELOAD;
|
|
|
|
int xmax = -PRELOAD;
|
2008-05-02 05:16:35 +00:00
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
int count = GetNumCorners();
|
2008-05-02 05:16:35 +00:00
|
|
|
|
2011-01-20 18:40:33 +00:00
|
|
|
for( int i = 0; i<count; ++i )
|
2008-05-02 05:16:35 +00:00
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
wxPoint corner = GetCornerPosition( i );
|
2008-05-02 05:16:35 +00:00
|
|
|
|
2012-09-22 11:19:37 +00:00
|
|
|
ymax = std::max( ymax, corner.y );
|
|
|
|
xmax = std::max( xmax, corner.x );
|
|
|
|
ymin = std::min( ymin, corner.y );
|
|
|
|
xmin = std::min( xmin, corner.x );
|
2008-05-02 05:16:35 +00:00
|
|
|
}
|
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT ret( wxPoint( xmin, ymin ), wxSize( xmax - xmin + 1, ymax - ymin + 1 ) );
|
2008-05-02 05:16:35 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-01 13:38:27 +00:00
|
|
|
void ZONE_CONTAINER::DrawWhileCreateOutline( EDA_DRAW_PANEL* panel, wxDC* DC,
|
|
|
|
GR_DRAWMODE draw_mode )
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2012-09-01 13:38:27 +00:00
|
|
|
GR_DRAWMODE current_gr_mode = draw_mode;
|
2008-09-26 19:51:36 +00:00
|
|
|
bool is_close_segment = false;
|
2008-03-04 04:22:27 +00:00
|
|
|
wxPoint seg_start, seg_end;
|
2008-01-31 20:53:44 +00:00
|
|
|
|
|
|
|
if( DC == NULL )
|
|
|
|
return;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM curr_layer = ( (PCB_SCREEN*) panel->GetScreen() )->m_Active_Layer;
|
2011-01-20 18:40:33 +00:00
|
|
|
BOARD* brd = GetBoard();
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T color = brd->GetLayerColor( m_Layer );
|
2008-01-31 20:53:44 +00:00
|
|
|
|
|
|
|
if( DisplayOpt.ContrastModeDisplay )
|
|
|
|
{
|
|
|
|
if( !IsOnLayer( curr_layer ) )
|
2012-09-02 12:06:47 +00:00
|
|
|
ColorTurnToDarkDarkGray( &color );
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
// draw the lines
|
2008-09-26 19:51:36 +00:00
|
|
|
wxPoint start_contour_pos = GetCornerPosition( 0 );
|
2008-10-19 18:18:45 +00:00
|
|
|
int icmax = GetNumCorners() - 1;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-10-17 06:17:48 +00:00
|
|
|
for( int ic = 0; ic <= icmax; ic++ )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
int xi = GetCornerPosition( ic ).x;
|
|
|
|
int yi = GetCornerPosition( ic ).y;
|
2008-01-31 20:53:44 +00:00
|
|
|
int xf, yf;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-05-08 18:20:58 +00:00
|
|
|
if( !m_Poly->m_CornersList.IsEndContour( ic ) && ic < icmax )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
is_close_segment = false;
|
2008-09-26 19:51:36 +00:00
|
|
|
xf = GetCornerPosition( ic + 1 ).x;
|
|
|
|
yf = GetCornerPosition( ic + 1 ).y;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-05-08 18:20:58 +00:00
|
|
|
if( m_Poly->m_CornersList.IsEndContour( ic + 1 ) || (ic == icmax - 1) )
|
2008-03-04 04:22:27 +00:00
|
|
|
current_gr_mode = GR_XOR;
|
|
|
|
else
|
|
|
|
current_gr_mode = draw_mode;
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
2011-07-14 15:42:44 +00:00
|
|
|
else // Draw the line from last corner to the first corner of the current contour
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
is_close_segment = true;
|
2008-09-26 19:51:36 +00:00
|
|
|
current_gr_mode = GR_XOR;
|
2008-01-31 20:53:44 +00:00
|
|
|
xf = start_contour_pos.x;
|
|
|
|
yf = start_contour_pos.y;
|
2008-10-19 18:18:45 +00:00
|
|
|
|
2008-10-17 06:17:48 +00:00
|
|
|
// Prepare the next contour for drawing, if exists
|
2008-10-19 18:18:45 +00:00
|
|
|
if( ic < icmax )
|
2008-10-17 06:17:48 +00:00
|
|
|
start_contour_pos = GetCornerPosition( ic + 1 );
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
GRSetDrawMode( DC, current_gr_mode );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
if( is_close_segment )
|
2011-12-29 20:11:42 +00:00
|
|
|
GRLine( panel->GetClipBox(), DC, xi, yi, xf, yf, 0, WHITE );
|
2008-03-04 04:22:27 +00:00
|
|
|
else
|
2011-12-29 20:11:42 +00:00
|
|
|
GRLine( panel->GetClipBox(), DC, xi, yi, xf, yf, 0, color );
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
2007-12-09 12:59:06 +00:00
|
|
|
}
|
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2012-03-08 20:44:03 +00:00
|
|
|
int ZONE_CONTAINER::GetThermalReliefGap( D_PAD* aPad ) const
|
|
|
|
{
|
|
|
|
if( aPad == NULL || aPad->GetThermalGap() == 0 )
|
|
|
|
return m_ThermalReliefGap;
|
|
|
|
else
|
|
|
|
return aPad->GetThermalGap();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int ZONE_CONTAINER::GetThermalReliefCopperBridge( D_PAD* aPad ) const
|
|
|
|
{
|
|
|
|
if( aPad == NULL || aPad->GetThermalWidth() == 0 )
|
|
|
|
return m_ThermalReliefCopperBridge;
|
|
|
|
else
|
|
|
|
return aPad->GetThermalWidth();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool ZONE_CONTAINER::HitTest( const wxPoint& aPosition )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
2012-03-15 14:31:16 +00:00
|
|
|
if( HitTestForCorner( aPosition ) )
|
2007-12-29 19:15:58 +00:00
|
|
|
return true;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
if( HitTestForEdge( aPosition ) )
|
2007-12-29 19:15:58 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-06-17 16:06:12 +00:00
|
|
|
// Zones outlines have no thickness, so it Hit Test functions
|
|
|
|
// we must have a default distance between the test point
|
|
|
|
// and a corner or a zone edge:
|
|
|
|
#define MIN_DIST_IN_MILS 10
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
bool ZONE_CONTAINER::HitTestForCorner( const wxPoint& refPos )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
2011-03-01 13:59:21 +00:00
|
|
|
m_CornerSelection = -1; // Set to not found
|
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
// distance (in internal units) to detect a corner in a zone outline.
|
2012-06-17 16:06:12 +00:00
|
|
|
int min_dist = MIN_DIST_IN_MILS*IU_PER_MILS;
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
wxPoint delta;
|
2013-05-09 19:08:12 +00:00
|
|
|
unsigned lim = m_Poly->m_CornersList.GetCornersCount();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-03-01 13:59:21 +00:00
|
|
|
for( unsigned item_pos = 0; item_pos < lim; item_pos++ )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
delta.x = refPos.x - m_Poly->m_CornersList.GetX( item_pos );
|
|
|
|
delta.y = refPos.y - m_Poly->m_CornersList.GetY( item_pos );
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
|
2011-03-01 13:59:21 +00:00
|
|
|
// Calculate a distance:
|
2012-09-22 11:19:37 +00:00
|
|
|
int dist = std::max( abs( delta.x ), abs( delta.y ) );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
if( dist < min_dist ) // this corner is a candidate:
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
|
|
|
m_CornerSelection = item_pos;
|
2011-09-14 15:08:44 +00:00
|
|
|
min_dist = dist;
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-01 13:59:21 +00:00
|
|
|
return m_CornerSelection >= 0;
|
2007-12-29 19:15:58 +00:00
|
|
|
}
|
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
bool ZONE_CONTAINER::HitTestForEdge( const wxPoint& refPos )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
2013-05-09 19:08:12 +00:00
|
|
|
unsigned lim = m_Poly->m_CornersList.GetCornersCount();
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2011-03-01 13:59:21 +00:00
|
|
|
m_CornerSelection = -1; // Set to not found
|
|
|
|
|
2012-06-17 16:06:12 +00:00
|
|
|
// distance (in internal units) to detect a zone outline
|
|
|
|
int min_dist = MIN_DIST_IN_MILS*IU_PER_MILS;
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
|
2011-03-01 13:59:21 +00:00
|
|
|
unsigned first_corner_pos = 0;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-03-01 13:59:21 +00:00
|
|
|
for( unsigned item_pos = 0; item_pos < lim; item_pos++ )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2011-03-01 13:59:21 +00:00
|
|
|
unsigned end_segm = item_pos + 1;
|
2008-01-31 20:53:44 +00:00
|
|
|
|
|
|
|
/* the last corner of the current outline is tested
|
|
|
|
* the last segment of the current outline starts at current corner, and ends
|
|
|
|
* at the first corner of the outline
|
|
|
|
*/
|
2013-05-08 18:20:58 +00:00
|
|
|
if( m_Poly->m_CornersList.IsEndContour ( item_pos ) || end_segm >= lim )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
|
|
|
unsigned tmp = first_corner_pos;
|
|
|
|
first_corner_pos = end_segm; // first_corner_pos is now the beginning of the next outline
|
|
|
|
end_segm = tmp; // end_segm is the beginning of the current outline
|
|
|
|
}
|
|
|
|
|
2013-05-04 11:57:09 +00:00
|
|
|
// test the dist between segment and ref point
|
2013-05-08 18:20:58 +00:00
|
|
|
int dist = KiROUND( GetPointToLineSegmentDistance(
|
|
|
|
refPos.x, refPos.y,
|
|
|
|
m_Poly->m_CornersList.GetX( item_pos ),
|
|
|
|
m_Poly->m_CornersList.GetY( item_pos ),
|
|
|
|
m_Poly->m_CornersList.GetX( end_segm ),
|
|
|
|
m_Poly->m_CornersList.GetY( end_segm ) ) );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
if( dist < min_dist )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
|
|
|
m_CornerSelection = item_pos;
|
2011-09-14 15:08:44 +00:00
|
|
|
min_dist = dist;
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-01 13:59:21 +00:00
|
|
|
return m_CornerSelection >= 0;
|
2007-12-29 19:15:58 +00:00
|
|
|
}
|
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool ZONE_CONTAINER::HitTest( const EDA_RECT& aRect ) const
|
2008-01-06 12:43:57 +00:00
|
|
|
{
|
2008-01-31 20:53:44 +00:00
|
|
|
bool is_out_of_box = false;
|
2008-01-06 12:43:57 +00:00
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
CRect rect = m_Poly->GetCornerBounds();
|
2008-01-06 12:43:57 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
if( rect.left < aRect.GetX() )
|
2008-01-06 12:43:57 +00:00
|
|
|
is_out_of_box = true;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
if( rect.top < aRect.GetY() )
|
2008-01-06 12:43:57 +00:00
|
|
|
is_out_of_box = true;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
if( rect.right > aRect.GetRight() )
|
2008-01-06 12:43:57 +00:00
|
|
|
is_out_of_box = true;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
if( rect.bottom > aRect.GetBottom() )
|
2008-01-06 12:43:57 +00:00
|
|
|
is_out_of_box = true;
|
|
|
|
|
|
|
|
return is_out_of_box ? false : true;
|
|
|
|
}
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2011-08-09 03:41:20 +00:00
|
|
|
int ZONE_CONTAINER::GetClearance( BOARD_CONNECTED_ITEM* aItem ) const
|
|
|
|
{
|
|
|
|
int myClearance = m_ZoneClearance;
|
|
|
|
|
2011-08-09 14:13:01 +00:00
|
|
|
#if 0 // Maybe the netclass clearance should not come into play for a zone?
|
|
|
|
// At least the policy decision can be controlled by the zone
|
|
|
|
// itself, i.e. here. On reasons of insufficient documentation,
|
|
|
|
// the user will be less bewildered if we simply respect the
|
|
|
|
// "zone clearance" setting in the zone properties dialog. (At least
|
|
|
|
// until there is a UI boolean for this.)
|
2011-08-09 03:41:20 +00:00
|
|
|
|
2011-08-09 14:13:01 +00:00
|
|
|
NETCLASS* myClass = GetNetClass();
|
|
|
|
|
|
|
|
if( myClass )
|
|
|
|
myClearance = std::max( myClearance, myClass->GetClearance() );
|
2011-08-09 03:41:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if( aItem )
|
|
|
|
{
|
|
|
|
int hisClearance = aItem->GetClearance( NULL );
|
2012-08-03 15:43:15 +00:00
|
|
|
myClearance = std::max( hisClearance, myClearance );
|
2011-08-09 03:41:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return myClearance;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool ZONE_CONTAINER::HitTestFilledArea( const wxPoint& aRefPos ) const
|
2008-11-27 10:12:46 +00:00
|
|
|
{
|
|
|
|
unsigned indexstart = 0, indexend;
|
2011-01-20 18:40:33 +00:00
|
|
|
bool inside = false;
|
|
|
|
|
2013-05-09 19:08:12 +00:00
|
|
|
for( indexend = 0; indexend < m_FilledPolysList.GetCornersCount(); indexend++ )
|
2008-11-27 10:12:46 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
if( m_FilledPolysList.IsEndContour( indexend ) ) // end of a filled sub-area found
|
2008-11-27 10:12:46 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
if( TestPointInsidePolygon( m_FilledPolysList, indexstart, indexend,
|
|
|
|
aRefPos.x, aRefPos.y ) )
|
2008-11-27 10:12:46 +00:00
|
|
|
{
|
|
|
|
inside = true;
|
|
|
|
break;
|
|
|
|
}
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
// Prepare test of next area which starts after the current index end (if exists)
|
2011-01-20 18:40:33 +00:00
|
|
|
indexstart = indexend + 1;
|
2008-11-27 10:12:46 +00:00
|
|
|
}
|
|
|
|
}
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2008-11-27 10:12:46 +00:00
|
|
|
return inside;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
void ZONE_CONTAINER::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2008-01-31 20:53:44 +00:00
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
BOARD* board = (BOARD*) m_Parent;
|
|
|
|
|
|
|
|
wxASSERT( board );
|
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
msg = _( "Zone Outline" );
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2012-11-23 09:10:37 +00:00
|
|
|
// Display Cutout instead of Outline for holes inside a zone
|
|
|
|
// i.e. when num contour !=0
|
2008-01-31 20:53:44 +00:00
|
|
|
int ncont = m_Poly->GetContour( m_CornerSelection );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
if( ncont )
|
|
|
|
msg << wxT( " " ) << _( "(Cutout)" );
|
2008-01-05 13:37:51 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Type" ), msg, DARKCYAN ) );
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2012-11-23 09:10:37 +00:00
|
|
|
if( GetIsKeepout() )
|
|
|
|
{
|
|
|
|
msg.Empty();
|
2013-01-12 17:32:24 +00:00
|
|
|
|
2012-11-23 09:10:37 +00:00
|
|
|
if( GetDoNotAllowVias() )
|
2013-04-07 11:55:18 +00:00
|
|
|
AccumulateDescription( msg, _("No via") );
|
2013-01-12 17:32:24 +00:00
|
|
|
|
2012-11-23 09:10:37 +00:00
|
|
|
if( GetDoNotAllowTracks() )
|
2013-04-07 11:55:18 +00:00
|
|
|
AccumulateDescription( msg, _("No track") );
|
2013-01-12 17:32:24 +00:00
|
|
|
|
2012-11-23 09:10:37 +00:00
|
|
|
if( GetDoNotAllowCopperPour() )
|
2013-04-07 11:55:18 +00:00
|
|
|
AccumulateDescription( msg, _("No copper pour") );
|
2012-11-23 09:10:37 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Keepout" ), msg, RED ) );
|
2012-11-23 09:10:37 +00:00
|
|
|
}
|
|
|
|
else if( IsOnCopperLayer() )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
if( GetNet() >= 0 )
|
|
|
|
{
|
2013-01-12 17:32:24 +00:00
|
|
|
NETINFO_ITEM* equipot = board->FindNet( GetNet() );
|
2008-01-31 20:53:44 +00:00
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
if( equipot )
|
2008-12-14 19:45:05 +00:00
|
|
|
msg = equipot->GetNetname();
|
2008-09-26 19:51:36 +00:00
|
|
|
else
|
|
|
|
msg = wxT( "<noname>" );
|
|
|
|
}
|
|
|
|
else // a netcode < 0 is an error
|
|
|
|
{
|
|
|
|
msg = wxT( " [" );
|
|
|
|
msg << m_Netname + wxT( "]" );
|
|
|
|
msg << wxT( " <" ) << _( "Not Found" ) << wxT( ">" );
|
|
|
|
}
|
2008-01-31 20:53:44 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NetName" ), msg, RED ) );
|
|
|
|
|
2012-01-29 19:29:19 +00:00
|
|
|
#if 1
|
|
|
|
// Display net code : (useful in test or debug)
|
|
|
|
msg.Printf( wxT( "%d" ), GetNet() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NetCode" ), msg, RED ) );
|
2012-01-29 19:29:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Display priority level
|
|
|
|
msg.Printf( wxT( "%d" ), GetPriority() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Priority" ), msg, BLUE ) );
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
else
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Non Copper Zone" ), wxEmptyString, RED ) );
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2008-01-31 20:53:44 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Layer" ), GetLayerName(), BROWN ) );
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2013-05-09 19:08:12 +00:00
|
|
|
msg.Printf( wxT( "%d" ), (int) m_Poly->m_CornersList.GetCornersCount() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Corners" ), msg, BLUE ) );
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2008-12-03 10:32:53 +00:00
|
|
|
if( m_FillMode )
|
2012-05-29 18:10:56 +00:00
|
|
|
msg = _( "Segments" );
|
2008-10-08 12:36:27 +00:00
|
|
|
else
|
2008-12-03 10:32:53 +00:00
|
|
|
msg = _( "Polygons" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Fill mode" ), msg, BROWN ) );
|
2008-10-07 09:32:56 +00:00
|
|
|
|
2008-10-08 12:36:27 +00:00
|
|
|
// Useful for statistics :
|
2012-02-10 22:26:42 +00:00
|
|
|
msg.Printf( wxT( "%d" ), (int) m_Poly->m_HatchLines.size() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Hatch lines" ), msg, BLUE ) );
|
2008-10-08 12:36:27 +00:00
|
|
|
|
2013-05-09 19:08:12 +00:00
|
|
|
if( m_FilledPolysList.GetCornersCount() )
|
2008-10-08 12:36:27 +00:00
|
|
|
{
|
2013-05-09 19:08:12 +00:00
|
|
|
msg.Printf( wxT( "%d" ), (int) m_FilledPolysList.GetCornersCount() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Corners in DrawList" ), msg, BLUE ) );
|
2008-10-08 12:36:27 +00:00
|
|
|
}
|
2007-12-29 19:15:58 +00:00
|
|
|
}
|
2008-01-06 12:43:57 +00:00
|
|
|
|
|
|
|
|
2008-02-01 21:30:45 +00:00
|
|
|
/* Geometric transforms: */
|
2008-01-31 20:53:44 +00:00
|
|
|
|
|
|
|
void ZONE_CONTAINER::Move( const wxPoint& offset )
|
2008-01-06 12:43:57 +00:00
|
|
|
{
|
2008-12-03 10:32:53 +00:00
|
|
|
/* move outlines */
|
2013-05-09 19:08:12 +00:00
|
|
|
for( unsigned ii = 0; ii < m_Poly->m_CornersList.GetCornersCount(); ii++ )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
SetCornerPosition( ii, GetCornerPosition( ii ) + offset );
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_Poly->Hatch();
|
2008-12-03 10:32:53 +00:00
|
|
|
|
|
|
|
/* move filled areas: */
|
2013-05-09 19:08:12 +00:00
|
|
|
for( unsigned ic = 0; ic < m_FilledPolysList.GetCornersCount(); ic++ )
|
2008-12-03 10:32:53 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
m_FilledPolysList.SetX( ic, m_FilledPolysList.GetX( ic ) + offset.x );
|
2013-05-14 18:47:01 +00:00
|
|
|
m_FilledPolysList.SetY( ic, m_FilledPolysList.GetY( ic ) + offset.y );
|
2008-12-03 10:32:53 +00:00
|
|
|
}
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2009-08-06 18:30:46 +00:00
|
|
|
for( unsigned ic = 0; ic < m_FillSegmList.size(); ic++ )
|
|
|
|
{
|
|
|
|
m_FillSegmList[ic].m_Start += offset;
|
2011-01-20 18:40:33 +00:00
|
|
|
m_FillSegmList[ic].m_End += offset;
|
2009-08-06 18:30:46 +00:00
|
|
|
}
|
2008-01-06 12:43:57 +00:00
|
|
|
}
|
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2008-02-01 21:30:45 +00:00
|
|
|
void ZONE_CONTAINER::MoveEdge( const wxPoint& offset )
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
int ii = m_CornerSelection;
|
2008-02-01 21:30:45 +00:00
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
// Move the start point of the selected edge:
|
2008-09-26 19:51:36 +00:00
|
|
|
SetCornerPosition( ii, GetCornerPosition( ii ) + offset );
|
2008-02-01 21:30:45 +00:00
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
// Move the end point of the selected edge:
|
2013-05-08 18:20:58 +00:00
|
|
|
if( m_Poly->m_CornersList.IsEndContour( ii ) || ii == GetNumCorners() - 1 )
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
|
|
|
int icont = m_Poly->GetContour( ii );
|
|
|
|
ii = m_Poly->GetContourStart( icont );
|
|
|
|
}
|
|
|
|
else
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
ii++;
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
SetCornerPosition( ii, GetCornerPosition( ii ) + offset );
|
2008-02-01 21:30:45 +00:00
|
|
|
|
|
|
|
m_Poly->Hatch();
|
|
|
|
}
|
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
void ZONE_CONTAINER::Rotate( const wxPoint& centre, double angle )
|
2008-01-06 12:43:57 +00:00
|
|
|
{
|
2009-08-01 19:58:01 +00:00
|
|
|
wxPoint pos;
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2013-05-09 19:08:12 +00:00
|
|
|
for( unsigned ic = 0; ic < m_Poly->m_CornersList.GetCornersCount(); ic++ )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
pos = m_Poly->m_CornersList.GetPos( ic );
|
2008-01-31 20:53:44 +00:00
|
|
|
RotatePoint( &pos, centre, angle );
|
2013-05-08 18:20:58 +00:00
|
|
|
m_Poly->SetX( ic, pos.x );
|
|
|
|
m_Poly->SetY( ic, pos.y );
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_Poly->Hatch();
|
2009-08-01 19:58:01 +00:00
|
|
|
|
|
|
|
/* rotate filled areas: */
|
2013-05-09 19:08:12 +00:00
|
|
|
for( unsigned ic = 0; ic < m_FilledPolysList.GetCornersCount(); ic++ )
|
2009-08-01 19:58:01 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
pos = m_FilledPolysList.GetPos( ic );
|
2009-08-01 19:58:01 +00:00
|
|
|
RotatePoint( &pos, centre, angle );
|
2013-05-08 18:20:58 +00:00
|
|
|
m_FilledPolysList.SetX( ic, pos.x );
|
|
|
|
m_FilledPolysList.SetY( ic, pos.y );
|
2009-08-01 19:58:01 +00:00
|
|
|
}
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2009-08-06 18:30:46 +00:00
|
|
|
for( unsigned ic = 0; ic < m_FillSegmList.size(); ic++ )
|
|
|
|
{
|
|
|
|
RotatePoint( &m_FillSegmList[ic].m_Start, centre, angle );
|
|
|
|
RotatePoint( &m_FillSegmList[ic].m_End, centre, angle );
|
|
|
|
}
|
2008-01-06 12:43:57 +00:00
|
|
|
}
|
|
|
|
|
2011-01-20 18:40:33 +00:00
|
|
|
|
|
|
|
void ZONE_CONTAINER::Flip( const wxPoint& aCentre )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
|
|
|
Mirror( aCentre );
|
2013-04-05 19:04:58 +00:00
|
|
|
SetLayer( FlipLayer( GetLayer() ) );
|
2009-08-01 19:26:05 +00:00
|
|
|
}
|
2008-01-06 12:43:57 +00:00
|
|
|
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
void ZONE_CONTAINER::Mirror( const wxPoint& mirror_ref )
|
2008-01-06 12:43:57 +00:00
|
|
|
{
|
2013-05-09 19:08:12 +00:00
|
|
|
for( unsigned ic = 0; ic < m_Poly->m_CornersList.GetCornersCount(); ic++ )
|
2008-01-31 20:53:44 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
int py = m_Poly->m_CornersList.GetY( ic ) - mirror_ref.y;
|
|
|
|
NEGATE( py );
|
|
|
|
m_Poly->m_CornersList.SetY( ic, py + mirror_ref.y );
|
2008-01-31 20:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_Poly->Hatch();
|
2009-08-01 19:58:01 +00:00
|
|
|
|
|
|
|
/* mirror filled areas: */
|
2013-05-09 19:08:12 +00:00
|
|
|
for( unsigned ic = 0; ic < m_FilledPolysList.GetCornersCount(); ic++ )
|
2009-08-01 19:58:01 +00:00
|
|
|
{
|
2013-05-08 18:20:58 +00:00
|
|
|
int py = m_FilledPolysList.GetY( ic ) - mirror_ref.y;
|
|
|
|
NEGATE( py );
|
|
|
|
m_FilledPolysList.SetY( ic, py + mirror_ref.y );
|
2009-08-01 19:58:01 +00:00
|
|
|
}
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2009-08-06 18:30:46 +00:00
|
|
|
for( unsigned ic = 0; ic < m_FillSegmList.size(); ic++ )
|
|
|
|
{
|
|
|
|
m_FillSegmList[ic].m_Start.y -= mirror_ref.y;
|
2011-01-20 18:40:33 +00:00
|
|
|
NEGATE( m_FillSegmList[ic].m_Start.y );
|
2009-08-06 18:30:46 +00:00
|
|
|
m_FillSegmList[ic].m_Start.y += mirror_ref.y;
|
2011-01-20 18:40:33 +00:00
|
|
|
m_FillSegmList[ic].m_End.y -= mirror_ref.y;
|
|
|
|
NEGATE( m_FillSegmList[ic].m_End.y );
|
2009-08-06 18:30:46 +00:00
|
|
|
m_FillSegmList[ic].m_End.y += mirror_ref.y;
|
|
|
|
}
|
2008-01-06 12:43:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
void ZONE_CONTAINER::Copy( ZONE_CONTAINER* src )
|
2008-01-06 12:43:57 +00:00
|
|
|
{
|
2008-01-31 20:53:44 +00:00
|
|
|
m_Parent = src->m_Parent;
|
|
|
|
m_Layer = src->m_Layer;
|
|
|
|
SetNet( src->GetNet() );
|
2011-12-12 08:37:05 +00:00
|
|
|
SetTimeStamp( src->m_TimeStamp );
|
2009-08-23 15:22:44 +00:00
|
|
|
m_Poly->RemoveAllContours();
|
2008-01-31 20:53:44 +00:00
|
|
|
m_Poly->Copy( src->m_Poly ); // copy outlines
|
2011-01-20 18:40:33 +00:00
|
|
|
m_CornerSelection = -1; // For corner moving, corner index to drag, or -1 if no selection
|
|
|
|
m_ZoneClearance = src->m_ZoneClearance; // clearance value
|
|
|
|
m_ZoneMinThickness = src->m_ZoneMinThickness;
|
|
|
|
m_FillMode = src->m_FillMode; // Filling mode (segments/polygons)
|
|
|
|
m_ArcToSegmentsCount = src->m_ArcToSegmentsCount;
|
2012-02-24 23:23:46 +00:00
|
|
|
m_PadConnection = src->m_PadConnection;
|
2011-11-30 21:15:56 +00:00
|
|
|
m_ThermalReliefGap = src->m_ThermalReliefGap;
|
|
|
|
m_ThermalReliefCopperBridge = src->m_ThermalReliefCopperBridge;
|
2012-04-11 09:47:57 +00:00
|
|
|
m_Poly->SetHatchStyle( src->m_Poly->GetHatchStyle() );
|
|
|
|
m_Poly->SetHatchPitch( src->m_Poly->GetHatchPitch() );
|
2009-09-17 17:48:40 +00:00
|
|
|
m_Poly->m_HatchLines = src->m_Poly->m_HatchLines; // Copy vector <CSegment>
|
2013-05-14 18:47:01 +00:00
|
|
|
m_FilledPolysList.RemoveAllContours();
|
|
|
|
m_FilledPolysList.Append( src->m_FilledPolysList );
|
2009-08-23 15:22:44 +00:00
|
|
|
m_FillSegmList.clear();
|
2009-08-06 18:30:46 +00:00
|
|
|
m_FillSegmList = src->m_FillSegmList;
|
2008-01-06 12:43:57 +00:00
|
|
|
}
|
2008-10-23 10:26:06 +00:00
|
|
|
|
2011-01-20 18:40:33 +00:00
|
|
|
|
2008-10-23 10:26:06 +00:00
|
|
|
bool ZONE_CONTAINER::SetNetNameFromNetCode( void )
|
|
|
|
{
|
2009-05-24 18:28:36 +00:00
|
|
|
NETINFO_ITEM* net;
|
2011-01-20 18:40:33 +00:00
|
|
|
|
|
|
|
if( m_Parent && ( net = ( (BOARD*) m_Parent )->FindNet( GetNet() ) ) )
|
2008-10-23 10:26:06 +00:00
|
|
|
{
|
2008-12-14 19:45:05 +00:00
|
|
|
m_Netname = net->GetNetname();
|
2008-10-23 10:26:06 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
|
2012-02-24 23:23:46 +00:00
|
|
|
ZoneConnection ZONE_CONTAINER::GetPadConnection( D_PAD* aPad ) const
|
|
|
|
{
|
|
|
|
if( aPad == NULL || aPad->GetZoneConnection() == UNDEFINED_CONNECTION )
|
|
|
|
return m_PadConnection;
|
|
|
|
else
|
|
|
|
return aPad->GetZoneConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-09 17:00:13 +00:00
|
|
|
void ZONE_CONTAINER::AddPolygon( std::vector< wxPoint >& aPolygon )
|
|
|
|
{
|
|
|
|
if( aPolygon.empty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
for( unsigned i = 0; i < aPolygon.size(); i++ )
|
|
|
|
{
|
|
|
|
if( i == 0 )
|
|
|
|
m_Poly->Start( GetLayer(), aPolygon[i].x, aPolygon[i].y, GetHatchStyle() );
|
|
|
|
else
|
|
|
|
AppendCorner( aPolygon[i] );
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:40:25 +00:00
|
|
|
m_Poly->CloseLastContour();
|
2012-06-09 17:00:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
wxString ZONE_CONTAINER::GetSelectMenuText() const
|
|
|
|
{
|
|
|
|
wxString text;
|
|
|
|
NETINFO_ITEM* net;
|
|
|
|
BOARD* board = GetBoard();
|
|
|
|
|
|
|
|
int ncont = m_Poly->GetContour( m_CornerSelection );
|
|
|
|
|
|
|
|
if( ncont )
|
|
|
|
text << wxT( " " ) << _( "(Cutout)" );
|
|
|
|
|
2013-02-07 17:56:41 +00:00
|
|
|
if( GetIsKeepout() )
|
|
|
|
text << wxT( " " ) << _( "(Keepout)" );
|
|
|
|
|
2013-04-09 17:49:01 +00:00
|
|
|
text << wxString::Format( wxT( " (%08lX)" ), m_TimeStamp );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2013-02-09 20:03:20 +00:00
|
|
|
// Display net name for copper zones
|
|
|
|
if( !GetIsKeepout() )
|
2011-07-14 15:42:44 +00:00
|
|
|
{
|
2013-02-09 20:03:20 +00:00
|
|
|
if( GetNet() >= 0 )
|
2011-07-14 15:42:44 +00:00
|
|
|
{
|
2013-02-09 20:03:20 +00:00
|
|
|
if( board )
|
|
|
|
{
|
|
|
|
net = board->FindNet( GetNet() );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2013-02-09 20:03:20 +00:00
|
|
|
if( net )
|
|
|
|
{
|
|
|
|
text << wxT( " [" ) << net->GetNetname() << wxT( "]" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2011-07-14 15:42:44 +00:00
|
|
|
{
|
2013-02-09 20:03:20 +00:00
|
|
|
text << _( "** NO BOARD DEFINED **" );
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2013-02-09 20:03:20 +00:00
|
|
|
{ // A netcode < 0 is an error:
|
|
|
|
// Netname not found or area not initialised
|
|
|
|
text << wxT( " [" ) << m_Netname << wxT( "]" );
|
|
|
|
text << wxT( " <" ) << _( "Not Found" ) << wxT( ">" );
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-18 17:27:47 +00:00
|
|
|
wxString msg;
|
|
|
|
msg.Printf( _( "Zone Outline %s on %s" ), GetChars( text ),
|
2013-04-09 17:49:01 +00:00
|
|
|
GetChars( GetLayerName() ) );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2013-06-18 17:27:47 +00:00
|
|
|
return msg;
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|