2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file class_board.cpp
|
|
|
|
* @brief BOARD class functions.
|
|
|
|
*/
|
|
|
|
|
2012-06-08 09:56:42 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
|
|
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992-2012 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-02-25 16:23:24 +00:00
|
|
|
#include <limits.h>
|
2011-10-31 13:44:13 +00:00
|
|
|
#include <algorithm>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <common.h>
|
2012-04-01 20:51:56 +00:00
|
|
|
#include <kicad_string.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <wxBasePcbFrame.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2013-09-14 20:33:22 +00:00
|
|
|
#include <pcb_netlist.h>
|
2013-04-25 16:29:35 +00:00
|
|
|
#include <reporter.h>
|
2013-08-24 08:08:55 +00:00
|
|
|
#include <base_units.h>
|
2013-11-25 15:50:03 +00:00
|
|
|
#include <ratsnest_data.h>
|
2014-03-03 16:15:41 +00:00
|
|
|
#include <ratsnest_viewitem.h>
|
|
|
|
#include <worksheet_viewitem.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <colors_selection.h>
|
2013-11-02 00:24:38 +00:00
|
|
|
#include <collectors.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_track.h>
|
|
|
|
#include <class_zone.h>
|
|
|
|
#include <class_marker_pcb.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2007-12-01 05:37:44 +00:00
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
/* This is an odd place for this, but CvPcb won't link if it is
|
2009-05-28 08:42:24 +00:00
|
|
|
* in class_board_item.cpp like I first tried it.
|
|
|
|
*/
|
|
|
|
wxPoint BOARD_ITEM::ZeroOffset( 0, 0 );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
|
++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
|
|
|
BOARD::BOARD() :
|
2011-11-28 04:32:29 +00:00
|
|
|
BOARD_ITEM( (BOARD_ITEM*) NULL, PCB_T ),
|
2011-12-10 05:33:24 +00:00
|
|
|
m_NetInfo( this ),
|
2014-05-13 09:22:51 +00:00
|
|
|
m_paper( PAGE_INFO::A4 )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
++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
|
|
|
// we have not loaded a board yet, assume latest until then.
|
2012-04-07 18:05:56 +00:00
|
|
|
m_fileFormatVersionAtLoad = LEGACY_BOARD_FILE_VERSION;
|
++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
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
m_Status_Pcb = 0; // Status word: bit 1 = calculate.
|
2011-11-28 04:32:29 +00:00
|
|
|
SetColorsSettings( &g_ColorsSettings );
|
2013-01-09 18:52:44 +00:00
|
|
|
m_nodeCount = 0; // Number of connected pads.
|
|
|
|
m_unconnectedNetCount = 0; // Number of unconnected nets.
|
2009-11-12 15:43:38 +00:00
|
|
|
|
|
|
|
m_CurrentZoneContour = NULL; // This ZONE_CONTAINER handle the
|
2011-09-15 17:58:35 +00:00
|
|
|
// zone contour currently in progress
|
2011-12-10 05:33:24 +00:00
|
|
|
|
|
|
|
BuildListOfNets(); // prepare pad and netlist containers.
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
for( LAYER_NUM layer = 0; layer < LAYER_ID_COUNT; ++layer )
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
2014-06-29 13:05:51 +00:00
|
|
|
m_Layer[layer].m_name = GetStandardLayerName( ToLAYER_ID( layer ) );
|
2012-06-16 22:49:24 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( IsCopperLayer( layer ) )
|
|
|
|
m_Layer[layer].m_type = LT_SIGNAL;
|
2012-06-16 22:49:24 +00:00
|
|
|
else
|
2014-06-24 16:17:18 +00:00
|
|
|
m_Layer[layer].m_type = LT_UNDEFINED;
|
2008-03-04 04:22:27 +00:00
|
|
|
}
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2014-05-20 09:29:37 +00:00
|
|
|
NETCLASSPTR defaultClass = m_designSettings.GetDefault();
|
2014-05-13 09:22:51 +00:00
|
|
|
defaultClass->SetDescription( _( "This is the default net class." ) );
|
2012-02-06 07:14:51 +00:00
|
|
|
|
2011-12-09 10:36:00 +00:00
|
|
|
// Initialize default values in default netclass.
|
2014-05-13 09:22:51 +00:00
|
|
|
defaultClass->SetParams( m_designSettings );
|
|
|
|
m_designSettings.SetCurrentNetClass( defaultClass->GetName() );
|
2013-11-25 15:50:03 +00:00
|
|
|
|
2014-05-13 09:22:51 +00:00
|
|
|
// Set sensible initial values for custom track width & via size
|
2014-05-13 09:22:51 +00:00
|
|
|
m_designSettings.UseCustomTrackViaSize( false );
|
|
|
|
m_designSettings.SetCustomTrackWidth( m_designSettings.GetCurrentTrackWidth() );
|
|
|
|
m_designSettings.SetCustomViaSize( m_designSettings.GetCurrentViaSize() );
|
|
|
|
m_designSettings.SetCustomViaDrill( m_designSettings.GetCurrentViaDrill() );
|
2014-05-13 09:22:51 +00:00
|
|
|
|
2014-03-03 16:15:41 +00:00
|
|
|
// Initialize ratsnest
|
2013-11-25 15:50:03 +00:00
|
|
|
m_ratsnest = new RN_DATA( this );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
BOARD::~BOARD()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
while( m_ZoneDescriptorList.size() )
|
2008-12-03 10:32:53 +00:00
|
|
|
{
|
|
|
|
ZONE_CONTAINER* area_to_remove = m_ZoneDescriptorList[0];
|
|
|
|
Delete( area_to_remove );
|
|
|
|
}
|
|
|
|
|
2014-02-11 13:26:33 +00:00
|
|
|
delete m_ratsnest;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
m_FullRatsnest.clear();
|
|
|
|
m_LocalRatsnest.clear();
|
2007-11-27 22:49:35 +00:00
|
|
|
|
|
|
|
DeleteMARKERs();
|
2008-02-12 01:02:53 +00:00
|
|
|
DeleteZONEOutlines();
|
|
|
|
|
|
|
|
delete m_CurrentZoneContour;
|
|
|
|
m_CurrentZoneContour = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-08-29 10:06:06 +00:00
|
|
|
const wxPoint& BOARD::GetPosition() const
|
2012-06-01 07:39:32 +00:00
|
|
|
{
|
2013-08-29 10:06:06 +00:00
|
|
|
wxLogWarning( wxT( "This should not be called on the BOARD object") );
|
|
|
|
|
|
|
|
return ZeroOffset;
|
|
|
|
}
|
2012-06-01 07:39:32 +00:00
|
|
|
|
2013-08-29 10:06:06 +00:00
|
|
|
void BOARD::SetPosition( const wxPoint& aPos )
|
|
|
|
{
|
|
|
|
wxLogWarning( wxT( "This should not be called on the BOARD object") );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD::Move( const wxPoint& aMoveVector ) // overload
|
|
|
|
{
|
2013-11-02 00:24:38 +00:00
|
|
|
// Implement 'interface INSPECTOR' which is only INSPECTOR::Inspect(),
|
|
|
|
// here it does the moving.
|
|
|
|
struct MOVER : public INSPECTOR
|
|
|
|
{
|
|
|
|
SEARCH_RESULT Inspect( EDA_ITEM* item, const void* data )
|
|
|
|
{
|
|
|
|
BOARD_ITEM* brd_item = (BOARD_ITEM*) item;
|
|
|
|
const wxPoint* vector = (const wxPoint*) data;
|
|
|
|
|
|
|
|
brd_item->Move( *vector );
|
|
|
|
|
|
|
|
return SEARCH_CONTINUE;
|
|
|
|
}
|
|
|
|
} inspector;
|
|
|
|
|
|
|
|
// @todo : anything like this elsewhere? maybe put into GENERAL_COLLECTOR class.
|
|
|
|
static const KICAD_T top_level_board_stuff[] = {
|
|
|
|
PCB_MARKER_T,
|
|
|
|
PCB_TEXT_T,
|
|
|
|
PCB_LINE_T,
|
|
|
|
PCB_DIMENSION_T,
|
|
|
|
PCB_TARGET_T,
|
|
|
|
PCB_VIA_T,
|
|
|
|
PCB_TRACE_T,
|
2014-09-10 15:18:42 +00:00
|
|
|
// PCB_PAD_T, Can't be at board level
|
|
|
|
// PCB_MODULE_TEXT_T, Can't be at board level
|
2013-11-02 00:24:38 +00:00
|
|
|
PCB_MODULE_T,
|
2013-11-02 19:49:46 +00:00
|
|
|
PCB_ZONE_AREA_T,
|
2013-11-02 00:24:38 +00:00
|
|
|
EOT
|
|
|
|
};
|
|
|
|
|
|
|
|
// visit this BOARD with the above inspector, which moves all items.
|
|
|
|
Visit( &inspector, &aMoveVector, top_level_board_stuff );
|
2012-06-01 07:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
void BOARD::chainMarkedSegments( wxPoint aPosition, LSET aLayerMask, TRACK_PTRS* aList )
|
2011-09-16 15:54:50 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
TRACK* segment; // The current segment being analyzed.
|
|
|
|
TRACK* via; // The via identified, eventually destroy
|
|
|
|
TRACK* candidate; // The end segment to destroy (or NULL = segment)
|
|
|
|
int NbSegm;
|
2011-09-16 15:54:50 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( !m_Track )
|
2011-09-16 15:54:50 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Set the BUSY flag of all connected segments, first search starting at
|
|
|
|
* aPosition. The search ends when a pad is found (end of a track), a
|
|
|
|
* segment end has more than one other segment end connected, or when no
|
|
|
|
* connected item found.
|
|
|
|
*
|
|
|
|
* Vias are a special case because they must look for segments connected
|
|
|
|
* on other layers and they change the layer mask. They can be a track
|
|
|
|
* end or not. They will be analyzer later and vias on terminal points
|
|
|
|
* of the track will be considered as part of this track if they do not
|
|
|
|
* connect segments of an other track together and will be considered as
|
|
|
|
* part of an other track when removing the via, the segments of that other
|
|
|
|
* track are disconnected.
|
|
|
|
*/
|
|
|
|
for( ; ; )
|
|
|
|
{
|
2014-01-29 13:51:50 +00:00
|
|
|
if( GetPad( aPosition, aLayerMask ) != NULL )
|
2011-09-16 15:54:50 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Test for a via: a via changes the layer mask and can connect a lot
|
|
|
|
* of segments at location aPosition. When found, the via is just
|
|
|
|
* pushed in list. Vias will be examined later, when all connected
|
|
|
|
* segment are found and push in list. This is because when a via
|
|
|
|
* is found we do not know at this time the number of connected items
|
|
|
|
* and we do not know if this via is on the track or finish the track
|
|
|
|
*/
|
|
|
|
via = m_Track->GetVia( NULL, aPosition, aLayerMask );
|
|
|
|
|
|
|
|
if( via )
|
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
aLayerMask = via->GetLayerSet();
|
2011-09-16 15:54:50 +00:00
|
|
|
|
|
|
|
aList->push_back( via );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now we search all segments connected to point aPosition
|
|
|
|
* if only 1 segment: this segment is candidate
|
|
|
|
* if > 1 segment:
|
|
|
|
* end of track (more than 2 segment connected at this location)
|
|
|
|
*/
|
|
|
|
segment = m_Track; candidate = NULL;
|
|
|
|
NbSegm = 0;
|
|
|
|
|
2014-04-25 06:00:04 +00:00
|
|
|
while( ( segment = ::GetTrack( segment, NULL, aPosition, aLayerMask ) ) != NULL )
|
2011-09-16 15:54:50 +00:00
|
|
|
{
|
|
|
|
if( segment->GetState( BUSY ) ) // already found and selected: skip it
|
|
|
|
{
|
|
|
|
segment = segment->Next();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( segment == via ) // just previously found: skip it
|
|
|
|
{
|
|
|
|
segment = segment->Next();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
NbSegm++;
|
|
|
|
|
|
|
|
if( NbSegm == 1 ) /* First time we found a connected item: segment is candidate */
|
|
|
|
{
|
|
|
|
candidate = segment;
|
|
|
|
segment = segment->Next();
|
|
|
|
}
|
|
|
|
else /* More than 1 segment connected -> this location is an end of the track */
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( candidate ) // A candidate is found: flag it an push it in list
|
|
|
|
{
|
|
|
|
/* Initialize parameters to search items connected to this
|
|
|
|
* candidate:
|
|
|
|
* we must analyze connections to its other end
|
|
|
|
*/
|
2014-06-24 16:17:18 +00:00
|
|
|
aLayerMask = candidate->GetLayerSet();
|
2011-09-16 15:54:50 +00:00
|
|
|
|
2013-01-13 00:04:00 +00:00
|
|
|
if( aPosition == candidate->GetStart() )
|
2011-09-16 15:54:50 +00:00
|
|
|
{
|
2013-01-13 00:04:00 +00:00
|
|
|
aPosition = candidate->GetEnd();
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-13 00:04:00 +00:00
|
|
|
aPosition = candidate->GetStart();
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
segment = m_Track; /* restart list of tracks to analyze */
|
|
|
|
|
|
|
|
/* flag this item an push it in list of selected items */
|
|
|
|
aList->push_back( candidate );
|
2013-03-30 17:24:04 +00:00
|
|
|
candidate->SetState( BUSY, true );
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
void BOARD::PushHighLight()
|
2011-04-14 18:44:46 +00:00
|
|
|
{
|
2012-04-01 20:51:56 +00:00
|
|
|
m_highLightPrevious = m_highLight;
|
2011-04-14 18:44:46 +00:00
|
|
|
}
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
void BOARD::PopHighLight()
|
2011-04-14 18:44:46 +00:00
|
|
|
{
|
2012-04-01 20:51:56 +00:00
|
|
|
m_highLight = m_highLightPrevious;
|
|
|
|
m_highLightPrevious.Clear();
|
2011-04-14 18:44:46 +00:00
|
|
|
}
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
bool BOARD::SetLayer( LAYER_ID aIndex, const LAYER& aLayer )
|
2012-06-09 17:00:13 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
if( unsigned( aIndex ) < DIM( m_Layer ) )
|
2012-06-09 17:00:13 +00:00
|
|
|
{
|
|
|
|
m_Layer[ aIndex ] = aLayer;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-30 15:03:20 +00:00
|
|
|
const wxString BOARD::GetLayerName( LAYER_ID aLayer ) const
|
2008-01-23 01:50:16 +00:00
|
|
|
{
|
2012-06-16 22:49:24 +00:00
|
|
|
// All layer names are stored in the BOARD.
|
2013-04-09 16:00:46 +00:00
|
|
|
if( IsLayerEnabled( aLayer ) )
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
2013-03-20 04:46:32 +00:00
|
|
|
// Standard names were set in BOARD::BOARD() but they may be
|
|
|
|
// over-ridden by BOARD::SetLayerName().
|
|
|
|
// For copper layers, return the actual copper layer name,
|
|
|
|
// otherwise return the Standard English layer name.
|
2013-04-09 16:00:46 +00:00
|
|
|
if( IsCopperLayer( aLayer ) )
|
2014-06-24 16:17:18 +00:00
|
|
|
return m_Layer[aLayer].m_name;
|
2008-03-04 04:22:27 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 16:00:46 +00:00
|
|
|
return GetStandardLayerName( aLayer );
|
2009-12-07 03:46:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
bool BOARD::SetLayerName( LAYER_ID aLayer, const wxString& aLayerName )
|
2008-03-01 13:15:41 +00:00
|
|
|
{
|
2013-04-09 16:00:46 +00:00
|
|
|
if( !IsCopperLayer( aLayer ) )
|
2009-10-18 23:22:26 +00:00
|
|
|
return false;
|
|
|
|
|
2012-06-09 17:00:13 +00:00
|
|
|
if( aLayerName == wxEmptyString || aLayerName.Len() > 20 )
|
2009-10-18 23:22:26 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// no quote chars in the name allowed
|
|
|
|
if( aLayerName.Find( wxChar( '"' ) ) != wxNOT_FOUND )
|
|
|
|
return false;
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
wxString nameTemp = aLayerName;
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2009-10-18 23:22:26 +00:00
|
|
|
// replace any spaces with underscores before we do any comparing
|
2014-06-24 16:17:18 +00:00
|
|
|
nameTemp.Replace( wxT( " " ), wxT( "_" ) );
|
2009-10-18 23:22:26 +00:00
|
|
|
|
2013-04-09 16:00:46 +00:00
|
|
|
if( IsLayerEnabled( aLayer ) )
|
2009-10-18 23:22:26 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
#if 0
|
2013-03-31 13:27:46 +00:00
|
|
|
for( LAYER_NUM i = FIRST_COPPER_LAYER; i < NB_COPPER_LAYERS; ++i )
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
if( i != aLayer && IsLayerEnabled( i ) && nameTemp == m_Layer[i].m_Name )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
for( LSEQ cu = GetEnabledLayers().CuStack(); cu; ++cu )
|
|
|
|
{
|
|
|
|
LAYER_ID id = *cu;
|
|
|
|
|
|
|
|
// veto changing the name if it exists elsewhere.
|
|
|
|
if( id != aLayer && nameTemp == m_Layer[id].m_name )
|
2014-06-27 17:07:42 +00:00
|
|
|
// if( id != aLayer && nameTemp == wxString( m_Layer[id].m_name ) )
|
2008-03-04 04:22:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-24 16:17:18 +00:00
|
|
|
#endif
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
m_Layer[aLayer].m_name = nameTemp;
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2008-03-01 13:15:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
LAYER_T BOARD::GetLayerType( LAYER_ID aLayer ) const
|
2008-03-01 13:15:41 +00:00
|
|
|
{
|
2013-04-09 16:00:46 +00:00
|
|
|
if( !IsCopperLayer( aLayer ) )
|
2009-10-18 23:22:26 +00:00
|
|
|
return LT_SIGNAL;
|
|
|
|
|
|
|
|
//@@IMB: The original test was broken due to the discontinuity
|
|
|
|
// in the layer sequence.
|
2013-04-09 16:00:46 +00:00
|
|
|
if( IsLayerEnabled( aLayer ) )
|
2014-06-24 16:17:18 +00:00
|
|
|
return m_Layer[aLayer].m_type;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-03-01 13:15:41 +00:00
|
|
|
return LT_SIGNAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
bool BOARD::SetLayerType( LAYER_ID aLayer, LAYER_T aLayerType )
|
2008-03-01 13:15:41 +00:00
|
|
|
{
|
2013-04-09 16:00:46 +00:00
|
|
|
if( !IsCopperLayer( aLayer ) )
|
2009-10-18 23:22:26 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
//@@IMB: The original test was broken due to the discontinuity
|
|
|
|
// in the layer sequence.
|
2013-04-09 16:00:46 +00:00
|
|
|
if( IsLayerEnabled( aLayer ) )
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
m_Layer[aLayer].m_type = aLayerType;
|
2008-03-04 04:22:27 +00:00
|
|
|
return true;
|
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char* LAYER::ShowType( LAYER_T aType )
|
|
|
|
{
|
|
|
|
const char* cp;
|
|
|
|
|
|
|
|
switch( aType )
|
|
|
|
{
|
|
|
|
default:
|
2009-05-28 08:42:24 +00:00
|
|
|
case LT_SIGNAL:
|
2009-11-12 15:43:38 +00:00
|
|
|
cp = "signal";
|
|
|
|
break;
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
|
|
case LT_POWER:
|
2009-11-12 15:43:38 +00:00
|
|
|
cp = "power";
|
|
|
|
break;
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
|
|
case LT_MIXED:
|
2009-11-12 15:43:38 +00:00
|
|
|
cp = "mixed";
|
|
|
|
break;
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
|
|
case LT_JUMPER:
|
2009-11-12 15:43:38 +00:00
|
|
|
cp = "jumper";
|
|
|
|
break;
|
2008-03-04 04:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LAYER_T LAYER::ParseType( const char* aType )
|
|
|
|
{
|
|
|
|
if( strcmp( aType, "signal" ) == 0 )
|
|
|
|
return LT_SIGNAL;
|
|
|
|
else if( strcmp( aType, "power" ) == 0 )
|
|
|
|
return LT_POWER;
|
|
|
|
else if( strcmp( aType, "mixed" ) == 0 )
|
|
|
|
return LT_MIXED;
|
|
|
|
else if( strcmp( aType, "jumper" ) == 0 )
|
|
|
|
return LT_JUMPER;
|
|
|
|
else
|
2012-06-09 17:00:13 +00:00
|
|
|
return LT_UNDEFINED;
|
2008-03-01 13:15:41 +00:00
|
|
|
}
|
|
|
|
|
2012-06-09 17:00:13 +00:00
|
|
|
|
2008-01-23 01:50:16 +00:00
|
|
|
int BOARD::GetCopperLayerCount() const
|
|
|
|
{
|
++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
|
|
|
return m_designSettings.GetCopperLayerCount();
|
2008-01-23 01:50:16 +00:00
|
|
|
}
|
2010-01-31 20:01:46 +00:00
|
|
|
|
2012-06-09 17:00:13 +00:00
|
|
|
|
2010-01-21 07:41:30 +00:00
|
|
|
void BOARD::SetCopperLayerCount( int aCount )
|
|
|
|
{
|
++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
|
|
|
m_designSettings.SetCopperLayerCount( aCount );
|
2010-01-21 07:41:30 +00:00
|
|
|
}
|
2008-01-23 01:50:16 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
LSET BOARD::GetEnabledLayers() const
|
2009-10-18 23:22:26 +00:00
|
|
|
{
|
++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
|
|
|
return m_designSettings.GetEnabledLayers();
|
2009-10-18 23:22:26 +00:00
|
|
|
}
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
LSET BOARD::GetVisibleLayers() const
|
2009-10-18 23:22:26 +00:00
|
|
|
{
|
++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
|
|
|
return m_designSettings.GetVisibleLayers();
|
2009-10-18 23:22:26 +00:00
|
|
|
}
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
void BOARD::SetEnabledLayers( LSET aLayerMask )
|
2009-10-18 23:22:26 +00:00
|
|
|
{
|
++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
|
|
|
m_designSettings.SetEnabledLayers( aLayerMask );
|
2009-10-18 23:22:26 +00:00
|
|
|
}
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
void BOARD::SetVisibleLayers( LSET aLayerMask )
|
2009-10-18 23:22:26 +00:00
|
|
|
{
|
++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
|
|
|
m_designSettings.SetVisibleLayers( aLayerMask );
|
2009-10-18 23:22:26 +00:00
|
|
|
}
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2009-10-18 23:22:26 +00:00
|
|
|
void BOARD::SetVisibleElements( int aMask )
|
|
|
|
{
|
2012-03-12 00:40:48 +00:00
|
|
|
// Call SetElementVisibility for each item
|
|
|
|
// to ensure specific calculations that can be needed by some items,
|
|
|
|
// just changing the visibility flags could be not sufficient.
|
2011-09-14 20:04:58 +00:00
|
|
|
for( int ii = 0; ii < PCB_VISIBLE( END_PCB_VISIBLE_LIST ); ii++ )
|
2010-01-30 14:46:26 +00:00
|
|
|
{
|
|
|
|
int item_mask = 1 << ii;
|
2013-03-31 13:27:46 +00:00
|
|
|
SetElementVisibility( ii, aMask & item_mask );
|
2010-01-30 14:46:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
|
|
|
|
void BOARD::SetVisibleAlls()
|
2010-01-30 14:46:26 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
SetVisibleLayers( LSET().set() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
// Call SetElementVisibility for each item,
|
|
|
|
// to ensure specific calculations that can be needed by some items
|
2010-01-30 14:46:26 +00:00
|
|
|
for( int ii = 0; ii < PCB_VISIBLE(END_PCB_VISIBLE_LIST); ii++ )
|
|
|
|
SetElementVisibility( ii, true );
|
2009-10-18 23:22:26 +00:00
|
|
|
}
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
|
|
|
|
int BOARD::GetVisibleElements() const
|
2009-10-18 23:22:26 +00:00
|
|
|
{
|
++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
|
|
|
return m_designSettings.GetVisibleElements();
|
2009-10-18 23:22:26 +00:00
|
|
|
}
|
|
|
|
|
2010-01-21 20:53:01 +00:00
|
|
|
|
2010-01-25 06:45:34 +00:00
|
|
|
bool BOARD::IsElementVisible( int aPCB_VISIBLE ) const
|
|
|
|
{
|
++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
|
|
|
return m_designSettings.IsElementVisible( aPCB_VISIBLE );
|
2010-01-25 06:45:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD::SetElementVisibility( int aPCB_VISIBLE, bool isEnabled )
|
|
|
|
{
|
2012-02-06 05:44:19 +00:00
|
|
|
m_designSettings.SetElementVisibility( aPCB_VISIBLE, isEnabled );
|
|
|
|
|
2010-01-25 06:45:34 +00:00
|
|
|
switch( aPCB_VISIBLE )
|
|
|
|
{
|
2010-01-30 14:46:26 +00:00
|
|
|
case RATSNEST_VISIBLE:
|
2012-02-06 05:44:19 +00:00
|
|
|
|
2012-03-12 00:40:48 +00:00
|
|
|
// we must clear or set the CH_VISIBLE flags to hide/show ratsnest
|
|
|
|
// because we have a tool to show/hide ratsnest relative to a pad or a module
|
2010-01-30 14:46:26 +00:00
|
|
|
// so the hide/show option is a per item selection
|
2012-02-06 05:44:19 +00:00
|
|
|
if( IsElementVisible( RATSNEST_VISIBLE ) )
|
2010-01-30 14:46:26 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
for( unsigned ii = 0; ii < GetRatsnestsCount(); ii++ )
|
|
|
|
m_FullRatsnest[ii].m_Status |= CH_VISIBLE;
|
2010-01-30 14:46:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for( unsigned ii = 0; ii < GetRatsnestsCount(); ii++ )
|
|
|
|
m_FullRatsnest[ii].m_Status &= ~CH_VISIBLE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-01-25 06:45:34 +00:00
|
|
|
default:
|
2012-02-06 05:44:19 +00:00
|
|
|
;
|
2010-01-25 06:45:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T BOARD::GetVisibleElementColor( int aPCB_VISIBLE )
|
2010-01-21 20:53:01 +00:00
|
|
|
{
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T color = UNSPECIFIED_COLOR;
|
2010-01-21 20:53:01 +00:00
|
|
|
|
|
|
|
switch( aPCB_VISIBLE )
|
|
|
|
{
|
2013-04-07 16:20:46 +00:00
|
|
|
case NON_PLATED_VISIBLE:
|
2010-01-29 20:36:12 +00:00
|
|
|
case VIA_THROUGH_VISIBLE:
|
|
|
|
case VIA_MICROVIA_VISIBLE:
|
|
|
|
case VIA_BBLIND_VISIBLE:
|
|
|
|
case MOD_TEXT_FR_VISIBLE:
|
|
|
|
case MOD_TEXT_BK_VISIBLE:
|
|
|
|
case MOD_TEXT_INVISIBLE:
|
|
|
|
case ANCHOR_VISIBLE:
|
|
|
|
case PAD_FR_VISIBLE:
|
|
|
|
case PAD_BK_VISIBLE:
|
|
|
|
case RATSNEST_VISIBLE:
|
|
|
|
case GRID_VISIBLE:
|
2010-02-01 21:23:27 +00:00
|
|
|
color = GetColorsSettings()->GetItemColor( aPCB_VISIBLE );
|
2010-01-29 20:36:12 +00:00
|
|
|
break;
|
|
|
|
|
2010-01-21 20:53:01 +00:00
|
|
|
default:
|
2010-01-22 18:13:43 +00:00
|
|
|
wxLogDebug( wxT( "BOARD::GetVisibleElementColor(): bad arg %d" ), aPCB_VISIBLE );
|
2010-01-21 20:53:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-02 12:06:47 +00:00
|
|
|
void BOARD::SetVisibleElementColor( int aPCB_VISIBLE, EDA_COLOR_T aColor )
|
2010-01-21 20:53:01 +00:00
|
|
|
{
|
|
|
|
switch( aPCB_VISIBLE )
|
|
|
|
{
|
2013-04-07 16:20:46 +00:00
|
|
|
case NON_PLATED_VISIBLE:
|
2010-01-29 20:36:12 +00:00
|
|
|
case VIA_THROUGH_VISIBLE:
|
|
|
|
case VIA_MICROVIA_VISIBLE:
|
|
|
|
case VIA_BBLIND_VISIBLE:
|
|
|
|
case MOD_TEXT_FR_VISIBLE:
|
|
|
|
case MOD_TEXT_BK_VISIBLE:
|
|
|
|
case MOD_TEXT_INVISIBLE:
|
|
|
|
case ANCHOR_VISIBLE:
|
|
|
|
case PAD_FR_VISIBLE:
|
|
|
|
case PAD_BK_VISIBLE:
|
2010-02-01 21:23:27 +00:00
|
|
|
case GRID_VISIBLE:
|
2010-03-01 17:48:17 +00:00
|
|
|
case RATSNEST_VISIBLE:
|
2010-01-31 20:01:46 +00:00
|
|
|
GetColorsSettings()->SetItemColor( aPCB_VISIBLE, aColor );
|
2010-01-29 20:36:12 +00:00
|
|
|
break;
|
|
|
|
|
2010-01-21 20:53:01 +00:00
|
|
|
default:
|
2010-01-22 18:13:43 +00:00
|
|
|
wxLogDebug( wxT( "BOARD::SetVisibleElementColor(): bad arg %d" ), aPCB_VISIBLE );
|
2010-01-21 20:53:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
void BOARD::SetLayerColor( LAYER_ID aLayer, EDA_COLOR_T aColor )
|
2010-01-21 07:41:30 +00:00
|
|
|
{
|
2010-01-31 20:01:46 +00:00
|
|
|
GetColorsSettings()->SetLayerColor( aLayer, aColor );
|
2010-01-21 07:41:30 +00:00
|
|
|
}
|
|
|
|
|
2010-01-21 20:53:01 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
EDA_COLOR_T BOARD::GetLayerColor( LAYER_ID aLayer ) const
|
2010-01-21 07:41:30 +00:00
|
|
|
{
|
2010-01-31 20:01:46 +00:00
|
|
|
return GetColorsSettings()->GetLayerColor( aLayer );
|
2010-01-21 07:41:30 +00:00
|
|
|
}
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
bool BOARD::IsModuleLayerVisible( LAYER_ID layer )
|
2010-01-31 20:01:46 +00:00
|
|
|
{
|
2013-04-07 11:55:18 +00:00
|
|
|
switch( layer )
|
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
case F_Cu:
|
2010-01-31 20:01:46 +00:00
|
|
|
return IsElementVisible( PCB_VISIBLE(MOD_FR_VISIBLE) );
|
2013-04-07 11:55:18 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
case B_Cu:
|
2010-01-31 20:01:46 +00:00
|
|
|
return IsElementVisible( PCB_VISIBLE(MOD_BK_VISIBLE) );
|
2013-04-07 11:55:18 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
wxFAIL_MSG( wxT( "BOARD::IsModuleLayerVisible() param error: bad layer" ) );
|
2010-01-31 20:01:46 +00:00
|
|
|
return true;
|
2013-04-07 11:55:18 +00:00
|
|
|
}
|
2010-01-31 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
void BOARD::Add( BOARD_ITEM* aBoardItem, int aControl )
|
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
if( aBoardItem == NULL )
|
2008-02-12 01:02:53 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
wxFAIL_MSG( wxT( "BOARD::Add() param error: aBoardItem NULL" ) );
|
2008-02-12 01:02:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
switch( aBoardItem->Type() )
|
|
|
|
{
|
|
|
|
// this one uses a vector
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MARKER_T:
|
2008-11-24 06:53:43 +00:00
|
|
|
aBoardItem->SetParent( this );
|
2009-08-01 19:26:05 +00:00
|
|
|
m_markers.push_back( (MARKER_PCB*) aBoardItem );
|
2007-11-27 22:49:35 +00:00
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2008-01-06 17:19:36 +00:00
|
|
|
// this one uses a vector
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_ZONE_AREA_T:
|
2008-11-24 06:53:43 +00:00
|
|
|
aBoardItem->SetParent( this );
|
2008-01-06 17:19:36 +00:00
|
|
|
m_ZoneDescriptorList.push_back( (ZONE_CONTAINER*) aBoardItem );
|
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_TRACE_T:
|
|
|
|
case PCB_VIA_T:
|
2011-08-09 14:13:01 +00:00
|
|
|
TRACK* insertAid;
|
|
|
|
insertAid = ( (TRACK*) aBoardItem )->GetBestInsertPoint( this );
|
2009-05-28 08:42:24 +00:00
|
|
|
m_Track.Insert( (TRACK*) aBoardItem, insertAid );
|
2014-10-02 17:09:32 +00:00
|
|
|
aBoardItem->SetParent( this );
|
2011-08-09 14:13:01 +00:00
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_ZONE_T:
|
2008-12-04 04:28:11 +00:00
|
|
|
if( aControl & ADD_APPEND )
|
|
|
|
m_Zone.PushBack( (SEGZONE*) aBoardItem );
|
|
|
|
else
|
|
|
|
m_Zone.PushFront( (SEGZONE*) aBoardItem );
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
aBoardItem->SetParent( this );
|
2008-12-03 10:32:53 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_T:
|
2008-12-04 04:28:11 +00:00
|
|
|
if( aControl & ADD_APPEND )
|
|
|
|
m_Modules.PushBack( (MODULE*) aBoardItem );
|
|
|
|
else
|
|
|
|
m_Modules.PushFront( (MODULE*) aBoardItem );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
aBoardItem->SetParent( this );
|
2009-09-27 11:00:21 +00:00
|
|
|
|
2009-06-05 15:57:41 +00:00
|
|
|
// Because the list of pads has changed, reset the status
|
2011-09-14 20:04:58 +00:00
|
|
|
// This indicate the list of pad and nets must be recalculated before use
|
2009-06-05 15:57:41 +00:00
|
|
|
m_Status_Pcb = 0;
|
2008-12-04 04:28:11 +00:00
|
|
|
break;
|
|
|
|
|
2014-07-09 12:23:13 +00:00
|
|
|
case PCB_MODULE_EDGE_T:
|
|
|
|
assert( false ); // TODO Orson: I am just checking if it is supposed to be here
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_DIMENSION_T:
|
|
|
|
case PCB_LINE_T:
|
|
|
|
case PCB_TEXT_T:
|
2011-09-07 19:41:04 +00:00
|
|
|
case PCB_TARGET_T:
|
2008-12-04 04:28:11 +00:00
|
|
|
if( aControl & ADD_APPEND )
|
|
|
|
m_Drawings.PushBack( aBoardItem );
|
|
|
|
else
|
|
|
|
m_Drawings.PushFront( aBoardItem );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
aBoardItem->SetParent( this );
|
|
|
|
break;
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
// other types may use linked list
|
2007-11-27 22:49:35 +00:00
|
|
|
default:
|
2011-08-09 14:13:01 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2011-09-07 19:41:04 +00:00
|
|
|
msg.Printf( wxT( "BOARD::Add() needs work: BOARD_ITEM type (%d) not handled" ),
|
|
|
|
aBoardItem->Type() );
|
2011-08-09 14:13:01 +00:00
|
|
|
wxFAIL_MSG( msg );
|
|
|
|
}
|
|
|
|
break;
|
2007-11-27 22:49:35 +00:00
|
|
|
}
|
2014-01-30 14:46:39 +00:00
|
|
|
|
|
|
|
m_ratsnest->Add( aBoardItem );
|
2007-11-27 22:49:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-06 21:20:50 +00:00
|
|
|
BOARD_ITEM* BOARD::Remove( BOARD_ITEM* aBoardItem )
|
2007-11-27 22:49:35 +00:00
|
|
|
{
|
2011-09-14 20:04:58 +00:00
|
|
|
// find these calls and fix them! Don't send me no stinking' NULL.
|
2008-12-06 21:20:50 +00:00
|
|
|
wxASSERT( aBoardItem );
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
switch( aBoardItem->Type() )
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MARKER_T:
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2008-12-06 21:20:50 +00:00
|
|
|
// find the item in the vector, then remove it
|
2009-11-12 15:43:38 +00:00
|
|
|
for( unsigned i = 0; i<m_markers.size(); ++i )
|
2007-11-27 22:49:35 +00:00
|
|
|
{
|
2009-08-01 19:26:05 +00:00
|
|
|
if( m_markers[i] == (MARKER_PCB*) aBoardItem )
|
2007-11-27 22:49:35 +00:00
|
|
|
{
|
2008-12-06 21:20:50 +00:00
|
|
|
m_markers.erase( m_markers.begin() + i );
|
2007-11-27 22:49:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
break;
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_ZONE_AREA_T: // this one uses a vector
|
2007-12-29 19:15:58 +00:00
|
|
|
// find the item in the vector, then delete then erase it.
|
2009-11-12 15:43:38 +00:00
|
|
|
for( unsigned i = 0; i<m_ZoneDescriptorList.size(); ++i )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
|
|
|
if( m_ZoneDescriptorList[i] == (ZONE_CONTAINER*) aBoardItem )
|
|
|
|
{
|
2008-12-06 21:20:50 +00:00
|
|
|
m_ZoneDescriptorList.erase( m_ZoneDescriptorList.begin() + i );
|
2007-12-29 19:15:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_T:
|
2008-12-06 21:20:50 +00:00
|
|
|
m_Modules.Remove( (MODULE*) aBoardItem );
|
2008-12-06 08:21:54 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_TRACE_T:
|
|
|
|
case PCB_VIA_T:
|
2008-12-06 21:20:50 +00:00
|
|
|
m_Track.Remove( (TRACK*) aBoardItem );
|
2008-12-06 08:21:54 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_ZONE_T:
|
2008-12-06 21:20:50 +00:00
|
|
|
m_Zone.Remove( (SEGZONE*) aBoardItem );
|
2008-12-06 08:21:54 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_DIMENSION_T:
|
|
|
|
case PCB_LINE_T:
|
|
|
|
case PCB_TEXT_T:
|
|
|
|
case PCB_MODULE_EDGE_T:
|
2011-09-07 19:41:04 +00:00
|
|
|
case PCB_TARGET_T:
|
2008-12-06 21:20:50 +00:00
|
|
|
m_Drawings.Remove( aBoardItem );
|
2008-12-06 08:21:54 +00:00
|
|
|
break;
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
// other types may use linked list
|
|
|
|
default:
|
2009-05-28 08:42:24 +00:00
|
|
|
wxFAIL_MSG( wxT( "BOARD::Remove() needs more ::Type() support" ) );
|
2007-11-27 22:49:35 +00:00
|
|
|
}
|
|
|
|
|
2014-01-30 14:46:39 +00:00
|
|
|
m_ratsnest->Remove( aBoardItem );
|
|
|
|
|
2008-12-06 21:20:50 +00:00
|
|
|
return aBoardItem;
|
2007-12-03 05:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
void BOARD::DeleteMARKERs()
|
|
|
|
{
|
2009-08-01 19:26:05 +00:00
|
|
|
// the vector does not know how to delete the MARKER_PCB, it holds pointers
|
2009-11-12 15:43:38 +00:00
|
|
|
for( unsigned i = 0; i<m_markers.size(); ++i )
|
2007-11-27 22:49:35 +00:00
|
|
|
delete m_markers[i];
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
m_markers.clear();
|
|
|
|
}
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
void BOARD::DeleteZONEOutlines()
|
|
|
|
{
|
2009-11-12 15:43:38 +00:00
|
|
|
// the vector does not know how to delete the ZONE Outlines, it holds
|
|
|
|
// pointers
|
|
|
|
for( unsigned i = 0; i<m_ZoneDescriptorList.size(); ++i )
|
2007-12-29 19:15:58 +00:00
|
|
|
delete m_ZoneDescriptorList[i];
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
m_ZoneDescriptorList.clear();
|
|
|
|
}
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
|
2011-12-10 05:33:24 +00:00
|
|
|
int BOARD::GetNumSegmTrack() const
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
return m_Track.GetCount();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2007-08-04 20:05:54 +00:00
|
|
|
|
|
|
|
|
2011-12-10 05:33:24 +00:00
|
|
|
int BOARD::GetNumSegmZone() const
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
return m_Zone.GetCount();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-10 05:33:24 +00:00
|
|
|
unsigned BOARD::GetNodesCount() const
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2013-01-09 18:52:44 +00:00
|
|
|
return m_nodeCount;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
++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
|
|
|
EDA_RECT BOARD::ComputeBoundingBox( bool aBoardEdgesOnly )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-02-25 16:23:24 +00:00
|
|
|
bool hasItems = false;
|
2011-09-01 21:39:38 +00:00
|
|
|
EDA_RECT area;
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2011-02-25 16:23:24 +00:00
|
|
|
// Check segments, dimensions, texts, and fiducials
|
2011-12-10 05:33:24 +00:00
|
|
|
for( BOARD_ITEM* item = m_Drawings; item; item = item->Next() )
|
2007-08-04 20:05:54 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
if( aBoardEdgesOnly && (item->Type() != PCB_LINE_T || item->GetLayer() != Edge_Cuts ) )
|
2011-09-01 21:39:38 +00:00
|
|
|
continue;
|
2011-02-25 16:23:24 +00:00
|
|
|
|
2011-09-01 21:39:38 +00:00
|
|
|
if( !hasItems )
|
|
|
|
area = item->GetBoundingBox();
|
|
|
|
else
|
|
|
|
area.Merge( item->GetBoundingBox() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-01 21:39:38 +00:00
|
|
|
hasItems = true;
|
2011-02-25 16:23:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( !aBoardEdgesOnly )
|
|
|
|
{
|
|
|
|
// Check modules
|
|
|
|
for( MODULE* module = m_Modules; module; module = module->Next() )
|
|
|
|
{
|
2011-09-01 21:39:38 +00:00
|
|
|
if( !hasItems )
|
|
|
|
area = module->GetBoundingBox();
|
|
|
|
else
|
|
|
|
area.Merge( module->GetBoundingBox() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-25 16:23:24 +00:00
|
|
|
hasItems = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check tracks
|
|
|
|
for( TRACK* track = m_Track; track; track = track->Next() )
|
2007-08-04 20:05:54 +00:00
|
|
|
{
|
2011-09-01 21:39:38 +00:00
|
|
|
if( !hasItems )
|
|
|
|
area = track->GetBoundingBox();
|
|
|
|
else
|
|
|
|
area.Merge( track->GetBoundingBox() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-25 16:23:24 +00:00
|
|
|
hasItems = true;
|
2007-08-04 20:05:54 +00:00
|
|
|
}
|
|
|
|
|
2011-02-25 16:23:24 +00:00
|
|
|
// Check segment zones
|
|
|
|
for( TRACK* track = m_Zone; track; track = track->Next() )
|
|
|
|
{
|
2011-09-01 21:39:38 +00:00
|
|
|
if( !hasItems )
|
|
|
|
area = track->GetBoundingBox();
|
|
|
|
else
|
|
|
|
area.Merge( track->GetBoundingBox() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-25 16:23:24 +00:00
|
|
|
hasItems = true;
|
|
|
|
}
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2011-02-25 16:23:24 +00:00
|
|
|
// Check polygonal zones
|
|
|
|
for( unsigned int i = 0; i < m_ZoneDescriptorList.size(); i++ )
|
|
|
|
{
|
|
|
|
ZONE_CONTAINER* aZone = m_ZoneDescriptorList[i];
|
2011-09-01 21:39:38 +00:00
|
|
|
|
|
|
|
if( !hasItems )
|
|
|
|
area = aZone->GetBoundingBox();
|
|
|
|
else
|
|
|
|
area.Merge( aZone->GetBoundingBox() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-01 21:39:38 +00:00
|
|
|
area.Merge( aZone->GetBoundingBox() );
|
2011-02-25 16:23:24 +00:00
|
|
|
hasItems = true;
|
|
|
|
}
|
2007-08-04 20:05:54 +00:00
|
|
|
}
|
|
|
|
|
++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
|
|
|
m_BoundingBox = area; // save for BOARD::GetBoundingBox()
|
2007-08-04 20:05:54 +00:00
|
|
|
|
++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
|
|
|
return area;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2007-08-06 02:02:39 +00:00
|
|
|
|
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
// virtual, see pcbstruct.h
|
2013-01-12 17:32:24 +00:00
|
|
|
void BOARD::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
wxString txt;
|
2013-01-12 17:32:24 +00:00
|
|
|
int viasCount = 0;
|
|
|
|
int trackSegmentsCount = 0;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
for( BOARD_ITEM* item = m_Track; item; item = item->Next() )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( item->Type() == PCB_VIA_T )
|
2009-05-28 08:42:24 +00:00
|
|
|
viasCount++;
|
2010-09-18 08:29:40 +00:00
|
|
|
else
|
|
|
|
trackSegmentsCount++;
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
|
2011-12-10 05:33:24 +00:00
|
|
|
txt.Printf( wxT( "%d" ), GetPadCount() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Pads" ), txt, DARKGREEN ) );
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), viasCount );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Vias" ), txt, DARKGREEN ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2010-09-18 08:29:40 +00:00
|
|
|
txt.Printf( wxT( "%d" ), trackSegmentsCount );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "trackSegm" ), txt, DARKGREEN ) );
|
2010-09-18 08:29:40 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
txt.Printf( wxT( "%d" ), GetNodesCount() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Nodes" ), txt, DARKCYAN ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2011-12-10 05:33:24 +00:00
|
|
|
txt.Printf( wxT( "%d" ), m_NetInfo.GetNetCount() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Nets" ), txt, RED ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
/* These parameters are known only if the full ratsnest is available,
|
|
|
|
* so, display them only if this is the case
|
|
|
|
*/
|
|
|
|
if( (m_Status_Pcb & NET_CODES_OK) )
|
|
|
|
{
|
|
|
|
txt.Printf( wxT( "%d" ), GetRatsnestsCount() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Links" ), txt, DARKGREEN ) );
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2013-01-09 18:52:44 +00:00
|
|
|
txt.Printf( wxT( "%d" ), GetRatsnestsCount() - GetUnconnectedNetCount() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Connect" ), txt, DARKGREEN ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2013-01-09 18:52:44 +00:00
|
|
|
txt.Printf( wxT( "%d" ), GetUnconnectedNetCount() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Unconnected" ), txt, BLUE ) );
|
2009-05-28 08:42:24 +00:00
|
|
|
}
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
// virtual, see pcbstruct.h
|
|
|
|
SEARCH_RESULT BOARD::Visit( INSPECTOR* inspector, const void* testData,
|
2009-05-28 08:42:24 +00:00
|
|
|
const KICAD_T scanTypes[] )
|
2007-08-06 02:02:39 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
KICAD_T stype;
|
|
|
|
SEARCH_RESULT result = SEARCH_CONTINUE;
|
|
|
|
const KICAD_T* p = scanTypes;
|
|
|
|
bool done = false;
|
2007-08-24 03:40:04 +00:00
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
#if 0 && defined(DEBUG)
|
2009-05-28 08:42:24 +00:00
|
|
|
std::cout << GetClass().mb_str() << ' ';
|
2008-02-12 01:02:53 +00:00
|
|
|
#endif
|
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
while( !done )
|
2007-08-06 02:02:39 +00:00
|
|
|
{
|
2007-08-24 03:40:04 +00:00
|
|
|
stype = *p;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
switch( stype )
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_T:
|
2007-08-09 21:15:08 +00:00
|
|
|
result = inspector->Inspect( this, testData ); // inspect me
|
2007-08-24 03:40:04 +00:00
|
|
|
// skip over any types handled in the above call.
|
|
|
|
++p;
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Instances of the requested KICAD_T live in a list, either one
|
2009-05-28 08:42:24 +00:00
|
|
|
* that I manage, or that my modules manage. If it's a type managed
|
|
|
|
* by class MODULE, then simply pass it on to each module's
|
|
|
|
* MODULE::Visit() function by way of the
|
|
|
|
* IterateForward( m_Modules, ... ) call.
|
|
|
|
*/
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_T:
|
|
|
|
case PCB_PAD_T:
|
|
|
|
case PCB_MODULE_TEXT_T:
|
|
|
|
case PCB_MODULE_EDGE_T:
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
// this calls MODULE::Visit() on each module.
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Modules, inspector, testData, p );
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
// skip over any types handled in the above call.
|
2009-05-28 08:42:24 +00:00
|
|
|
for( ; ; )
|
2007-08-24 03:40:04 +00:00
|
|
|
{
|
|
|
|
switch( stype = *++p )
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_T:
|
|
|
|
case PCB_PAD_T:
|
|
|
|
case PCB_MODULE_TEXT_T:
|
|
|
|
case PCB_MODULE_EDGE_T:
|
2007-08-24 03:40:04 +00:00
|
|
|
continue;
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
;
|
2007-08-24 03:40:04 +00:00
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_LINE_T:
|
|
|
|
case PCB_TEXT_T:
|
|
|
|
case PCB_DIMENSION_T:
|
2011-09-07 19:41:04 +00:00
|
|
|
case PCB_TARGET_T:
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Drawings, inspector, testData, p );
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
// skip over any types handled in the above call.
|
2009-05-28 08:42:24 +00:00
|
|
|
for( ; ; )
|
2007-08-24 03:40:04 +00:00
|
|
|
{
|
|
|
|
switch( stype = *++p )
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_LINE_T:
|
|
|
|
case PCB_TEXT_T:
|
|
|
|
case PCB_DIMENSION_T:
|
2011-09-07 19:41:04 +00:00
|
|
|
case PCB_TARGET_T:
|
2007-08-24 03:40:04 +00:00
|
|
|
continue;
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
;
|
2007-08-24 03:40:04 +00:00
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
|
|
;
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
2007-08-30 22:20:52 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
#if 0 // both these are on same list, so we must scan it twice in order
|
|
|
|
// to get VIA priority, using new #else code below.
|
2014-04-25 06:00:04 +00:00
|
|
|
// But we are not using separate lists for TRACKs and VIA, because
|
2009-11-12 15:43:38 +00:00
|
|
|
// items are ordered (sorted) in the linked
|
2008-02-12 01:02:53 +00:00
|
|
|
// list by netcode AND by physical distance:
|
2009-11-12 15:43:38 +00:00
|
|
|
// when created, if a track or via is connected to an existing track or
|
|
|
|
// via, it is put in linked list after this existing track or via
|
2008-02-12 01:02:53 +00:00
|
|
|
// So usually, connected tracks or vias are grouped in this list
|
2011-09-14 20:04:58 +00:00
|
|
|
// So the algorithm (used in ratsnest computations) which computes the
|
2009-11-12 15:43:38 +00:00
|
|
|
// track connectivity is faster (more than 100 time regarding to
|
2012-04-01 20:51:56 +00:00
|
|
|
// a non ordered list) because when it searches for a connection, first
|
2009-11-12 15:43:38 +00:00
|
|
|
// it tests the near (near in term of linked list) 50 items
|
2008-02-12 01:02:53 +00:00
|
|
|
// from the current item (track or via) in test.
|
2009-11-12 15:43:38 +00:00
|
|
|
// Usually, because of this sort, a connected item (if exists) is
|
|
|
|
// found.
|
|
|
|
// If not found (and only in this case) an exhaustive (and time
|
|
|
|
// consuming) search is made, but this case is statistically rare.
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_VIA_T:
|
|
|
|
case PCB_TRACE_T:
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Track, inspector, testData, p );
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
// skip over any types handled in the above call.
|
2009-05-28 08:42:24 +00:00
|
|
|
for( ; ; )
|
2007-08-24 03:40:04 +00:00
|
|
|
{
|
|
|
|
switch( stype = *++p )
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_VIA_T:
|
|
|
|
case PCB_TRACE_T:
|
2007-08-24 03:40:04 +00:00
|
|
|
continue;
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
;
|
2007-08-24 03:40:04 +00:00
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
break;
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
#else
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_VIA_T:
|
2007-08-30 22:20:52 +00:00
|
|
|
result = IterateForward( m_Track, inspector, testData, p );
|
|
|
|
++p;
|
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_TRACE_T:
|
2007-08-30 22:20:52 +00:00
|
|
|
result = IterateForward( m_Track, inspector, testData, p );
|
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
#endif
|
2007-11-27 22:49:35 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MARKER_T:
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
// MARKER_PCBS are in the m_markers std::vector
|
2009-11-12 15:43:38 +00:00
|
|
|
for( unsigned i = 0; i<m_markers.size(); ++i )
|
2007-11-27 22:49:35 +00:00
|
|
|
{
|
|
|
|
result = m_markers[i]->Visit( inspector, testData, p );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
if( result == SEARCH_QUIT )
|
|
|
|
break;
|
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_ZONE_AREA_T:
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
// PCB_ZONE_AREA_T are in the m_ZoneDescriptorList std::vector
|
2009-11-12 15:43:38 +00:00
|
|
|
for( unsigned i = 0; i< m_ZoneDescriptorList.size(); ++i )
|
2007-12-29 19:15:58 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
result = m_ZoneDescriptorList[i]->Visit( inspector, testData, p );
|
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
if( result == SEARCH_QUIT )
|
|
|
|
break;
|
|
|
|
}
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_ZONE_T:
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Zone, inspector, testData, p );
|
|
|
|
++p;
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
default: // catch EOT or ANY OTHER type here and return.
|
|
|
|
done = true;
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
if( result == SEARCH_QUIT )
|
|
|
|
break;
|
2007-08-06 02:02:39 +00:00
|
|
|
}
|
2007-08-09 21:15:08 +00:00
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
return result;
|
2007-08-06 02:02:39 +00:00
|
|
|
}
|
2007-08-06 20:26:59 +00:00
|
|
|
|
|
|
|
|
2008-03-01 13:15:41 +00:00
|
|
|
/* now using PcbGeneralLocateAndDisplay(), but this remains a useful example
|
2009-05-28 08:42:24 +00:00
|
|
|
* of how the INSPECTOR can be used in a lightweight way.
|
|
|
|
* // see pcbstruct.h
|
2013-03-31 13:27:46 +00:00
|
|
|
* BOARD_ITEM* BOARD::FindPadOrModule( const wxPoint& refPos, LAYER_NUM layer )
|
2009-05-28 08:42:24 +00:00
|
|
|
* {
|
|
|
|
* class PadOrModule : public INSPECTOR
|
|
|
|
* {
|
|
|
|
* public:
|
|
|
|
* BOARD_ITEM* found;
|
2013-03-31 13:27:46 +00:00
|
|
|
* LAYER_NUM layer;
|
2009-05-28 08:42:24 +00:00
|
|
|
* int layer_mask;
|
|
|
|
*
|
2013-03-31 13:27:46 +00:00
|
|
|
* PadOrModule( LAYER_NUM alayer ) :
|
2009-05-28 08:42:24 +00:00
|
|
|
* found(0), layer(alayer), layer_mask( g_TabOneLayerMask[alayer] )
|
|
|
|
* {}
|
|
|
|
*
|
2010-12-08 20:12:46 +00:00
|
|
|
* SEARCH_RESULT Inspect( EDA_ITEM* testItem, const void* testData
|
2009-11-12 15:43:38 +00:00
|
|
|
* )
|
2009-05-28 08:42:24 +00:00
|
|
|
* {
|
|
|
|
* BOARD_ITEM* item = (BOARD_ITEM*) testItem;
|
|
|
|
* const wxPoint& refPos = *(const wxPoint*) testData;
|
|
|
|
*
|
2011-10-01 19:24:27 +00:00
|
|
|
* if( item->Type() == PCB_PAD_T )
|
2009-05-28 08:42:24 +00:00
|
|
|
* {
|
|
|
|
* D_PAD* pad = (D_PAD*) item;
|
|
|
|
* if( pad->HitTest( refPos ) )
|
|
|
|
* {
|
2014-06-24 16:17:18 +00:00
|
|
|
* if( layer_mask & pad->GetLayerSet() )
|
2009-05-28 08:42:24 +00:00
|
|
|
* {
|
|
|
|
* found = item;
|
|
|
|
* return SEARCH_QUIT;
|
|
|
|
* }
|
|
|
|
* else if( !found )
|
|
|
|
* {
|
|
|
|
* MODULE* parent = (MODULE*) pad->m_Parent;
|
|
|
|
* if( IsModuleLayerVisible( parent->GetLayer() ) )
|
|
|
|
* found = item;
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
*
|
2011-10-01 19:24:27 +00:00
|
|
|
* else if( item->Type() == PCB_MODULE_T )
|
2009-05-28 08:42:24 +00:00
|
|
|
* {
|
|
|
|
* MODULE* module = (MODULE*) item;
|
|
|
|
*
|
|
|
|
* // consider only visible modules
|
|
|
|
* if( IsModuleLayerVisible( module->GetLayer() ) )
|
|
|
|
* {
|
|
|
|
* if( module->HitTest( refPos ) )
|
|
|
|
* {
|
|
|
|
* if( layer == module->GetLayer() )
|
|
|
|
* {
|
|
|
|
* found = item;
|
|
|
|
* return SEARCH_QUIT;
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* // layer mismatch, save in case we don't find a
|
|
|
|
* // future layer match hit.
|
|
|
|
* if( !found )
|
|
|
|
* found = item;
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* return SEARCH_CONTINUE;
|
|
|
|
* }
|
|
|
|
* };
|
|
|
|
*
|
|
|
|
* PadOrModule inspector( layer );
|
|
|
|
*
|
|
|
|
* // search only for PADs first, then MODULES, and preferably a layer match
|
2011-10-01 19:24:27 +00:00
|
|
|
* static const KICAD_T scanTypes[] = { PCB_PAD_T, PCB_MODULE_T, EOT };
|
2009-05-28 08:42:24 +00:00
|
|
|
*
|
|
|
|
* // visit this BOARD with the above inspector
|
|
|
|
* Visit( &inspector, &refPos, scanTypes );
|
|
|
|
*
|
|
|
|
* return inspector.found;
|
|
|
|
* }
|
|
|
|
*/
|
2007-08-06 20:26:59 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
|
2010-12-29 17:47:32 +00:00
|
|
|
NETINFO_ITEM* BOARD::FindNet( int aNetcode ) const
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2011-12-10 05:33:24 +00:00
|
|
|
// the first valid netcode is 1 and the last is m_NetInfo.GetCount()-1.
|
2007-10-31 14:14:21 +00:00
|
|
|
// zero is reserved for "no connection" and is not used.
|
2009-07-20 05:18:47 +00:00
|
|
|
// NULL is returned for non valid netcodes
|
2011-12-10 05:33:24 +00:00
|
|
|
NETINFO_ITEM* net = m_NetInfo.GetNetItem( aNetcode );
|
2009-08-10 02:22:56 +00:00
|
|
|
|
2009-09-10 15:22:26 +00:00
|
|
|
return net;
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
NETINFO_ITEM* BOARD::FindNet( const wxString& aNetname ) const
|
2008-01-06 20:58:27 +00:00
|
|
|
{
|
2014-01-10 17:04:07 +00:00
|
|
|
return m_NetInfo.GetNetItem( aNetname );
|
2008-01-06 20:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-07 17:10:12 +00:00
|
|
|
MODULE* BOARD::FindModuleByReference( const wxString& aReference ) const
|
|
|
|
{
|
2013-11-02 00:24:38 +00:00
|
|
|
struct FINDER : public INSPECTOR
|
2008-02-07 17:10:12 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
MODULE* found;
|
2013-11-02 00:24:38 +00:00
|
|
|
|
|
|
|
FINDER() : found( 0 ) {}
|
2008-02-07 17:10:12 +00:00
|
|
|
|
|
|
|
// implement interface INSPECTOR
|
2010-12-08 20:12:46 +00:00
|
|
|
SEARCH_RESULT Inspect( EDA_ITEM* item, const void* data )
|
2008-02-07 17:10:12 +00:00
|
|
|
{
|
|
|
|
MODULE* module = (MODULE*) item;
|
2009-05-28 08:42:24 +00:00
|
|
|
const wxString& ref = *(const wxString*) data;
|
2008-02-07 17:10:12 +00:00
|
|
|
|
|
|
|
if( ref == module->GetReference() )
|
|
|
|
{
|
|
|
|
found = module;
|
|
|
|
return SEARCH_QUIT;
|
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-02-07 17:10:12 +00:00
|
|
|
return SEARCH_CONTINUE;
|
|
|
|
}
|
|
|
|
} inspector;
|
2008-01-06 20:58:27 +00:00
|
|
|
|
2008-02-07 17:10:12 +00:00
|
|
|
// search only for MODULES
|
2011-10-01 19:24:27 +00:00
|
|
|
static const KICAD_T scanTypes[] = { PCB_MODULE_T, EOT };
|
2008-02-07 17:10:12 +00:00
|
|
|
|
|
|
|
// visit this BOARD with the above inspector
|
|
|
|
BOARD* nonconstMe = (BOARD*) this;
|
|
|
|
nonconstMe->Visit( &inspector, &aReference, scanTypes );
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2008-02-07 17:10:12 +00:00
|
|
|
return inspector.found;
|
|
|
|
}
|
2008-01-06 20:58:27 +00:00
|
|
|
|
|
|
|
|
2013-11-02 00:24:38 +00:00
|
|
|
MODULE* BOARD::FindModule( const wxString& aRefOrTimeStamp, bool aSearchByTimeStamp ) const
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
2013-11-02 00:24:38 +00:00
|
|
|
if( aSearchByTimeStamp )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
2013-11-02 00:24:38 +00:00
|
|
|
for( MODULE* module = m_Modules; module; module = module->Next() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
if( aRefOrTimeStamp.CmpNoCase( module->GetPath() ) == 0 )
|
|
|
|
return module;
|
|
|
|
}
|
2013-11-02 00:24:38 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
#if 0 // case independent compare, why?
|
|
|
|
for( MODULE* module = m_Modules; module; module = module->Next() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
if( aRefOrTimeStamp.CmpNoCase( module->GetReference() ) == 0 )
|
|
|
|
return module;
|
|
|
|
}
|
2013-11-02 00:24:38 +00:00
|
|
|
#else
|
|
|
|
return FindModuleByReference( aRefOrTimeStamp );
|
|
|
|
#endif
|
|
|
|
|
2013-04-25 16:29:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-29 06:47:05 +00:00
|
|
|
// Sort nets by decreasing pad count. For same pad count, sort by alphabetic names
|
|
|
|
static bool sortNetsByNodes( const NETINFO_ITEM* a, const NETINFO_ITEM* b )
|
2007-12-17 20:18:04 +00:00
|
|
|
{
|
2014-08-29 06:47:05 +00:00
|
|
|
if( b->GetNodesCount() == a->GetNodesCount() )
|
|
|
|
return a->GetNetname() < b->GetNetname();
|
|
|
|
|
2009-08-18 11:07:21 +00:00
|
|
|
return b->GetNodesCount() < a->GetNodesCount();
|
2007-12-17 20:18:04 +00:00
|
|
|
}
|
|
|
|
|
2014-08-29 06:47:05 +00:00
|
|
|
// Sort nets by alphabetic names
|
|
|
|
static bool sortNetsByNames( const NETINFO_ITEM* a, const NETINFO_ITEM* b )
|
|
|
|
{
|
|
|
|
return a->GetNetname() < b->GetNetname();
|
|
|
|
}
|
2007-12-17 20:18:04 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
int BOARD::SortedNetnamesList( wxArrayString& aNames, bool aSortbyPadsCount )
|
2007-12-17 20:18:04 +00:00
|
|
|
{
|
2011-12-10 05:33:24 +00:00
|
|
|
if( m_NetInfo.GetNetCount() == 0 )
|
2009-05-28 08:42:24 +00:00
|
|
|
return 0;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2009-08-10 02:22:56 +00:00
|
|
|
// Build the list
|
2009-05-28 08:42:24 +00:00
|
|
|
std::vector <NETINFO_ITEM*> netBuffer;
|
2009-08-10 02:22:56 +00:00
|
|
|
|
2011-12-10 05:33:24 +00:00
|
|
|
netBuffer.reserve( m_NetInfo.GetNetCount() );
|
2009-08-10 02:22:56 +00:00
|
|
|
|
2014-01-16 15:47:31 +00:00
|
|
|
for( NETINFO_LIST::iterator net( m_NetInfo.begin() ), netEnd( m_NetInfo.end() );
|
|
|
|
net != netEnd; ++net )
|
2008-02-12 01:02:53 +00:00
|
|
|
{
|
2014-01-16 15:47:31 +00:00
|
|
|
if( net->GetNet() > 0 )
|
|
|
|
netBuffer.push_back( *net );
|
2008-02-12 01:02:53 +00:00
|
|
|
}
|
|
|
|
|
2009-08-10 02:22:56 +00:00
|
|
|
// sort the list
|
2009-05-28 08:42:24 +00:00
|
|
|
if( aSortbyPadsCount )
|
2014-08-29 06:47:05 +00:00
|
|
|
sort( netBuffer.begin(), netBuffer.end(), sortNetsByNodes );
|
|
|
|
else
|
|
|
|
sort( netBuffer.begin(), netBuffer.end(), sortNetsByNames );
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2009-05-24 18:28:36 +00:00
|
|
|
for( unsigned ii = 0; ii < netBuffer.size(); ii++ )
|
2009-05-28 08:42:24 +00:00
|
|
|
aNames.Add( netBuffer[ii]->GetNetname() );
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2009-05-24 18:28:36 +00:00
|
|
|
return netBuffer.size();
|
2007-12-17 20:18:04 +00:00
|
|
|
}
|
2007-10-30 21:30:58 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
void BOARD::RedrawAreasOutlines( EDA_DRAW_PANEL* panel, wxDC* aDC, GR_DRAWMODE aDrawMode, LAYER_ID aLayer )
|
2008-01-23 08:01:38 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
if( !aDC )
|
|
|
|
return;
|
2008-01-23 08:01:38 +00:00
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
for( int ii = 0; ii < GetAreaCount(); ii++ )
|
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
ZONE_CONTAINER* edge_zone = GetArea( ii );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
if( (aLayer < 0) || ( aLayer == edge_zone->GetLayer() ) )
|
2008-04-01 05:21:50 +00:00
|
|
|
edge_zone->Draw( panel, aDC, aDrawMode );
|
2008-02-12 01:02:53 +00:00
|
|
|
}
|
2008-01-23 08:01:38 +00:00
|
|
|
}
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
void BOARD::RedrawFilledAreas( EDA_DRAW_PANEL* panel, wxDC* aDC, GR_DRAWMODE aDrawMode, LAYER_ID aLayer )
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
if( !aDC )
|
|
|
|
return;
|
2008-09-26 19:51:36 +00:00
|
|
|
|
|
|
|
for( int ii = 0; ii < GetAreaCount(); ii++ )
|
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
ZONE_CONTAINER* edge_zone = GetArea( ii );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
if( (aLayer < 0) || ( aLayer == edge_zone->GetLayer() ) )
|
2008-09-26 19:51:36 +00:00
|
|
|
edge_zone->DrawFilledArea( panel, aDC, aDrawMode );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
ZONE_CONTAINER* BOARD::HitTestForAnyFilledArea( const wxPoint& aRefPos,
|
2014-06-24 16:17:18 +00:00
|
|
|
LAYER_ID aStartLayer, LAYER_ID aEndLayer, int aNetCode )
|
2008-11-27 10:12:46 +00:00
|
|
|
{
|
|
|
|
if( aEndLayer < 0 )
|
|
|
|
aEndLayer = aStartLayer;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
if( aEndLayer < aStartLayer )
|
|
|
|
EXCHG( aEndLayer, aStartLayer );
|
2008-11-27 10:12:46 +00:00
|
|
|
|
|
|
|
for( unsigned ia = 0; ia < m_ZoneDescriptorList.size(); ia++ )
|
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
ZONE_CONTAINER* area = m_ZoneDescriptorList[ia];
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM layer = area->GetLayer();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( layer < aStartLayer || layer > aEndLayer )
|
2009-05-28 08:42:24 +00:00
|
|
|
continue;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
// In locate functions we must skip tagged items with BUSY flag set.
|
|
|
|
if( area->GetState( BUSY ) )
|
2008-11-27 10:12:46 +00:00
|
|
|
continue;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2014-02-25 10:40:34 +00:00
|
|
|
if( aNetCode >= 0 && area->GetNetCode() != aNetCode )
|
2013-09-18 19:21:11 +00:00
|
|
|
continue;
|
|
|
|
|
2008-11-27 10:12:46 +00:00
|
|
|
if( area->HitTestFilledArea( aRefPos ) )
|
|
|
|
return area;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
int BOARD::SetAreasNetCodesFromNetNames()
|
2009-05-24 18:28:36 +00:00
|
|
|
{
|
|
|
|
int error_count = 0;
|
|
|
|
|
|
|
|
for( int ii = 0; ii < GetAreaCount(); ii++ )
|
|
|
|
{
|
2014-06-30 04:40:16 +00:00
|
|
|
ZONE_CONTAINER* it = GetArea( ii );
|
|
|
|
|
|
|
|
if( !it->IsOnCopperLayer() )
|
2009-05-24 18:28:36 +00:00
|
|
|
{
|
2014-06-30 04:40:16 +00:00
|
|
|
it->SetNetCode( NETINFO_LIST::UNCONNECTED );
|
2009-05-24 18:28:36 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-06-30 04:40:16 +00:00
|
|
|
if( it->GetNetCode() != 0 ) // i.e. if this zone is connected to a net
|
2009-05-24 18:28:36 +00:00
|
|
|
{
|
2014-06-30 04:40:16 +00:00
|
|
|
const NETINFO_ITEM* net = it->GetNet();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-24 18:28:36 +00:00
|
|
|
if( net )
|
|
|
|
{
|
2014-06-30 04:40:16 +00:00
|
|
|
it->SetNetCode( net->GetNet() );
|
2009-05-24 18:28:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error_count++;
|
2011-09-14 20:04:58 +00:00
|
|
|
|
|
|
|
// keep Net Name and set m_NetCode to -1 : error flag.
|
2014-06-30 04:40:16 +00:00
|
|
|
it->SetNetCode( -1 );
|
2009-05-24 18:28:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return error_count;
|
|
|
|
}
|
2008-11-27 10:12:46 +00:00
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
VIA* BOARD::GetViaByPosition( const wxPoint& aPosition, LAYER_ID aLayer) const
|
2011-09-14 20:04:58 +00:00
|
|
|
{
|
2014-04-30 19:16:22 +00:00
|
|
|
for( VIA *via = GetFirstVia( m_Track); via; via = GetFirstVia( via->Next() ) )
|
2011-09-14 20:04:58 +00:00
|
|
|
{
|
2014-04-30 19:16:22 +00:00
|
|
|
if( (via->GetStart() == aPosition) &&
|
|
|
|
(via->GetState( BUSY | IS_DELETED ) == 0) &&
|
|
|
|
((aLayer == UNDEFINED_LAYER) || (via->IsOnLayer( aLayer ))) )
|
|
|
|
return via;
|
2011-09-14 20:04:58 +00:00
|
|
|
}
|
|
|
|
|
2014-04-25 06:00:04 +00:00
|
|
|
return NULL;
|
2011-09-14 20:04:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
D_PAD* BOARD::GetPad( const wxPoint& aPosition, LSET aLayerMask )
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
if( !aLayerMask.any() )
|
|
|
|
aLayerMask = LSET::AllCuMask();
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
for( MODULE* module = m_Modules; module; module = module->Next() )
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
D_PAD* pad = module->GetPad( aPosition, aLayerMask );
|
|
|
|
|
|
|
|
if( pad )
|
|
|
|
return pad;
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
return NULL;
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-25 17:13:33 +00:00
|
|
|
D_PAD* BOARD::GetPad( TRACK* aTrace, ENDPOINT_T aEndPoint )
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
const wxPoint& aPosition = aTrace->GetEndPoint( aEndPoint );
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
LSET aLayerMask( aTrace->GetLayer() );
|
2011-09-15 17:58:35 +00:00
|
|
|
|
|
|
|
for( MODULE* module = m_Modules; module; module = module->Next() )
|
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
D_PAD* pad = module->GetPad( aPosition, aLayerMask );
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( pad )
|
|
|
|
return pad;
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
return NULL;
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
D_PAD* BOARD::GetPadFast( const wxPoint& aPosition, LSET aLayerMask )
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2011-12-10 05:33:24 +00:00
|
|
|
for( unsigned i=0; i<GetPadCount(); ++i )
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2011-12-10 05:33:24 +00:00
|
|
|
D_PAD* pad = m_NetInfo.GetPad(i);
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( pad->GetPosition() != aPosition )
|
2011-09-15 17:58:35 +00:00
|
|
|
continue;
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
// Pad found, it must be on the correct layer
|
|
|
|
if( ( pad->GetLayerSet() & aLayerMask ).any() )
|
2011-09-15 17:58:35 +00:00
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
D_PAD* BOARD::GetPad( std::vector<D_PAD*>& aPadList, const wxPoint& aPosition, LSET aLayerMask )
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2011-10-31 13:44:13 +00:00
|
|
|
// Search the aPoint coordinates in aPadList
|
|
|
|
// aPadList is sorted by X then Y values, and a fast binary search is used
|
|
|
|
int idxmax = aPadList.size()-1;
|
|
|
|
|
|
|
|
int delta = aPadList.size();
|
2011-12-28 15:14:46 +00:00
|
|
|
|
|
|
|
int idx = 0; // Starting index is the beginning of list
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
while( delta )
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2011-12-28 15:14:46 +00:00
|
|
|
// Calculate half size of remaining interval to test.
|
|
|
|
// Ensure the computed value is not truncated (too small)
|
2011-10-31 13:44:13 +00:00
|
|
|
if( (delta & 1) && ( delta > 1 ) )
|
|
|
|
delta++;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
delta /= 2;
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
D_PAD* pad = aPadList[idx];
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( pad->GetPosition() == aPosition ) // candidate found
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2011-10-31 13:44:13 +00:00
|
|
|
// The pad must match the layer mask:
|
2014-06-24 16:17:18 +00:00
|
|
|
if( ( aLayerMask & pad->GetLayerSet() ).any() )
|
2011-10-31 13:44:13 +00:00
|
|
|
return pad;
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
// More than one pad can be at aPosition
|
|
|
|
// search for a pad at aPosition that matched this mask
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
// search next
|
|
|
|
for( int ii = idx+1; ii <= idxmax; ii++ )
|
|
|
|
{
|
|
|
|
pad = aPadList[ii];
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( pad->GetPosition() != aPosition )
|
2011-10-31 13:44:13 +00:00
|
|
|
break;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( (aLayerMask & pad->GetLayerSet()) != 0 )
|
2011-10-31 13:44:13 +00:00
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
// search previous
|
|
|
|
for( int ii = idx-1 ;ii >=0; ii-- )
|
|
|
|
{
|
|
|
|
pad = aPadList[ii];
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( pad->GetPosition() != aPosition )
|
2011-10-31 13:44:13 +00:00
|
|
|
break;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( (aLayerMask & pad->GetLayerSet()) != 0 )
|
2011-10-31 13:44:13 +00:00
|
|
|
return pad;
|
|
|
|
}
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
// Not found:
|
|
|
|
return 0;
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( pad->GetPosition().x == aPosition.x ) // Must search considering Y coordinate
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2012-02-19 04:02:19 +00:00
|
|
|
if(pad->GetPosition().y < aPosition.y) // Must search after this item
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2011-10-31 13:44:13 +00:00
|
|
|
idx += delta;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
if( idx > idxmax )
|
|
|
|
idx = idxmax;
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
2011-10-31 13:44:13 +00:00
|
|
|
else // Must search before this item
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2011-10-31 13:44:13 +00:00
|
|
|
idx -= delta;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
if( idx < 0 )
|
|
|
|
idx = 0;
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-19 04:02:19 +00:00
|
|
|
else if( pad->GetPosition().x < aPosition.x ) // Must search after this item
|
2011-10-31 13:44:13 +00:00
|
|
|
{
|
|
|
|
idx += delta;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
if( idx > idxmax )
|
|
|
|
idx = idxmax;
|
|
|
|
}
|
|
|
|
else // Must search before this item
|
|
|
|
{
|
|
|
|
idx -= delta;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
if( idx < 0 )
|
|
|
|
idx = 0;
|
|
|
|
}
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
/**
|
|
|
|
* Function SortPadsByXCoord
|
|
|
|
* is used by GetSortedPadListByXCoord to Sort a pad list by x coordinate value.
|
2012-09-11 07:33:17 +00:00
|
|
|
* This function is used to build ordered pads lists
|
2011-10-31 13:44:13 +00:00
|
|
|
*/
|
2012-09-11 07:33:17 +00:00
|
|
|
bool sortPadsByXthenYCoord( D_PAD* const & ref, D_PAD* const & comp )
|
2011-10-31 13:44:13 +00:00
|
|
|
{
|
2012-02-19 04:02:19 +00:00
|
|
|
if( ref->GetPosition().x == comp->GetPosition().x )
|
|
|
|
return ref->GetPosition().y < comp->GetPosition().y;
|
|
|
|
return ref->GetPosition().x < comp->GetPosition().x;
|
2011-10-31 13:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-17 21:21:03 +00:00
|
|
|
void BOARD::GetSortedPadListByXthenYCoord( std::vector<D_PAD*>& aVector, int aNetCode )
|
2011-09-17 01:22:26 +00:00
|
|
|
{
|
2011-12-17 21:21:03 +00:00
|
|
|
if( aNetCode < 0 )
|
|
|
|
{
|
|
|
|
aVector.insert( aVector.end(), m_NetInfo.m_PadsFullList.begin(),
|
|
|
|
m_NetInfo.m_PadsFullList.end() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const NETINFO_ITEM* net = m_NetInfo.GetNetItem( aNetCode );
|
|
|
|
if( net )
|
|
|
|
{
|
|
|
|
aVector.insert( aVector.end(), net->m_PadInNetList.begin(),
|
|
|
|
net->m_PadInNetList.end() );
|
|
|
|
}
|
|
|
|
}
|
2011-09-17 01:22:26 +00:00
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
sort( aVector.begin(), aVector.end(), sortPadsByXthenYCoord );
|
2011-09-17 01:22:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-25 06:00:04 +00:00
|
|
|
TRACK* BOARD::GetTrack( TRACK* aTrace, const wxPoint& aPosition,
|
2014-06-24 16:17:18 +00:00
|
|
|
LSET aLayerMask ) const
|
2011-09-16 14:13:02 +00:00
|
|
|
{
|
2014-04-25 06:00:04 +00:00
|
|
|
for( TRACK* track = aTrace; track; track = track->Next() )
|
2011-09-16 14:13:02 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
LAYER_ID layer = track->GetLayer();
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( track->GetState( BUSY | IS_DELETED ) )
|
|
|
|
continue;
|
|
|
|
|
++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
|
|
|
if( m_designSettings.IsLayerVisible( layer ) == false )
|
2011-09-16 14:13:02 +00:00
|
|
|
continue;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( track->Type() == PCB_VIA_T ) /* VIA encountered. */
|
2011-09-16 14:13:02 +00:00
|
|
|
{
|
|
|
|
if( track->HitTest( aPosition ) )
|
|
|
|
return track;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
if( !aLayerMask[layer] )
|
|
|
|
continue; // Segments on different layers.
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( track->HitTest( aPosition ) )
|
|
|
|
return track;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-12 11:57:17 +00:00
|
|
|
TRACK* BOARD::MarkTrace( TRACK* aTrace, int* aCount,
|
|
|
|
double* aTraceLength, double* aPadToDieLength,
|
|
|
|
bool aReorder )
|
2011-09-16 15:54:50 +00:00
|
|
|
{
|
|
|
|
int NbSegmBusy;
|
|
|
|
|
|
|
|
TRACK_PTRS trackList;
|
|
|
|
|
|
|
|
if( aCount )
|
|
|
|
*aCount = 0;
|
|
|
|
|
|
|
|
if( aTraceLength )
|
|
|
|
*aTraceLength = 0;
|
|
|
|
|
|
|
|
if( aTrace == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Ensure the flag BUSY of all tracks of the board is cleared
|
|
|
|
// because we use it to mark segments of the track
|
|
|
|
for( TRACK* track = m_Track; track; track = track->Next() )
|
2013-03-30 17:24:04 +00:00
|
|
|
track->SetState( BUSY, false );
|
2011-09-16 15:54:50 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
// Set flags of the initial track segment
|
2013-03-30 17:24:04 +00:00
|
|
|
aTrace->SetState( BUSY, true );
|
2014-06-24 16:17:18 +00:00
|
|
|
LSET layerMask = aTrace->GetLayerSet();
|
2011-09-16 15:54:50 +00:00
|
|
|
|
|
|
|
trackList.push_back( aTrace );
|
|
|
|
|
|
|
|
/* Examine the initial track segment : if it is really a segment, this is
|
|
|
|
* easy.
|
|
|
|
* If it is a via, one must search for connected segments.
|
|
|
|
* If <=2, this via connect 2 segments (or is connected to only one
|
|
|
|
* segment) and this via and these 2 segments are a part of a track.
|
|
|
|
* If > 2 only this via is flagged (the track has only this via)
|
|
|
|
*/
|
2011-10-01 19:24:27 +00:00
|
|
|
if( aTrace->Type() == PCB_VIA_T )
|
2011-09-16 15:54:50 +00:00
|
|
|
{
|
|
|
|
TRACK* Segm1, * Segm2 = NULL, * Segm3 = NULL;
|
2014-04-25 06:00:04 +00:00
|
|
|
Segm1 = ::GetTrack( m_Track, NULL, aTrace->GetStart(), layerMask );
|
2011-09-16 15:54:50 +00:00
|
|
|
|
|
|
|
if( Segm1 )
|
|
|
|
{
|
2014-04-25 06:00:04 +00:00
|
|
|
Segm2 = ::GetTrack( Segm1->Next(), NULL, aTrace->GetStart(), layerMask );
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( Segm2 )
|
|
|
|
{
|
2014-04-25 06:00:04 +00:00
|
|
|
Segm3 = ::GetTrack( Segm2->Next(), NULL, aTrace->GetStart(), layerMask );
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( Segm3 ) // More than 2 segments are connected to this via. the track" is only this via
|
|
|
|
{
|
|
|
|
if( aCount )
|
|
|
|
*aCount = 1;
|
|
|
|
|
|
|
|
return aTrace;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( Segm1 ) // search for others segments connected to the initial segment start point
|
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
layerMask = Segm1->GetLayerSet();
|
2013-01-13 00:04:00 +00:00
|
|
|
chainMarkedSegments( aTrace->GetStart(), layerMask, &trackList );
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( Segm2 ) // search for others segments connected to the initial segment end point
|
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
layerMask = Segm2->GetLayerSet();
|
2013-01-13 00:04:00 +00:00
|
|
|
chainMarkedSegments( aTrace->GetStart(), layerMask, &trackList );
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else // mark the chain using both ends of the initial segment
|
|
|
|
{
|
2013-01-13 00:04:00 +00:00
|
|
|
chainMarkedSegments( aTrace->GetStart(), layerMask, &trackList );
|
|
|
|
chainMarkedSegments( aTrace->GetEnd(), layerMask, &trackList );
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now examine selected vias and flag them if they are on the track
|
|
|
|
// If a via is connected to only one or 2 segments, it is flagged (is on the track)
|
|
|
|
// If a via is connected to more than 2 segments, it is a track end, and it
|
|
|
|
// is removed from the list
|
|
|
|
// go through the list backwards.
|
|
|
|
for( int i = trackList.size() - 1; i>=0; --i )
|
|
|
|
{
|
|
|
|
TRACK* via = trackList[i];
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( via->Type() != PCB_VIA_T )
|
2011-09-16 15:54:50 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( via == aTrace )
|
|
|
|
continue;
|
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
via->SetState( BUSY, true ); // Try to flag it. the flag will be cleared later if needed
|
2011-09-16 15:54:50 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
layerMask = via->GetLayerSet();
|
2011-09-16 15:54:50 +00:00
|
|
|
|
2014-04-25 06:00:04 +00:00
|
|
|
TRACK* track = ::GetTrack( m_Track, NULL, via->GetStart(), layerMask );
|
2011-09-16 15:54:50 +00:00
|
|
|
|
|
|
|
// GetTrace does not consider tracks flagged BUSY.
|
|
|
|
// So if no connected track found, this via is on the current track
|
|
|
|
// only: keep it
|
|
|
|
if( track == NULL )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* If a track is found, this via connects also others segments of an
|
|
|
|
* other track. This case happens when the vias ends the selected
|
|
|
|
* track but must we consider this via is on the selected track, or
|
|
|
|
* on an other track.
|
|
|
|
* (this is important when selecting a track for deletion: must this
|
|
|
|
* via be deleted or not?)
|
|
|
|
* We consider here this via on the track if others segment connected
|
|
|
|
* to this via remain connected when removing this via.
|
|
|
|
* We search for all others segment connected together:
|
|
|
|
* if there are on the same layer, the via is on the selected track
|
|
|
|
* if there are on different layers, the via is on an other track
|
|
|
|
*/
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM layer = track->GetLayer();
|
2011-09-16 15:54:50 +00:00
|
|
|
|
2014-04-25 06:00:04 +00:00
|
|
|
while( ( track = ::GetTrack( track->Next(), NULL, via->GetStart(), layerMask ) ) != NULL )
|
2011-09-16 15:54:50 +00:00
|
|
|
{
|
|
|
|
if( layer != track->GetLayer() )
|
|
|
|
{
|
|
|
|
// The via connects segments of an other track: it is removed
|
|
|
|
// from list because it is member of an other track
|
2013-03-30 17:24:04 +00:00
|
|
|
via->SetState( BUSY, false );
|
2011-09-16 15:54:50 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rearrange the track list in order to have flagged segments linked
|
|
|
|
* from firstTrack so the NbSegmBusy segments are consecutive segments
|
|
|
|
* in list, the first item in the full track list is firstTrack, and
|
|
|
|
* the NbSegmBusy-1 next items (NbSegmBusy when including firstTrack)
|
|
|
|
* are the flagged segments
|
|
|
|
*/
|
|
|
|
NbSegmBusy = 0;
|
|
|
|
TRACK* firstTrack;
|
|
|
|
|
|
|
|
for( firstTrack = m_Track; firstTrack; firstTrack = firstTrack->Next() )
|
|
|
|
{
|
|
|
|
// Search for the first flagged BUSY segments
|
|
|
|
if( firstTrack->GetState( BUSY ) )
|
|
|
|
{
|
|
|
|
NbSegmBusy = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( firstTrack == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
double full_len = 0;
|
2012-12-12 11:57:17 +00:00
|
|
|
double lenPadToDie = 0;
|
2011-09-16 15:54:50 +00:00
|
|
|
|
|
|
|
if( aReorder )
|
|
|
|
{
|
|
|
|
DLIST<TRACK>* list = (DLIST<TRACK>*)firstTrack->GetList();
|
|
|
|
wxASSERT( list );
|
|
|
|
|
|
|
|
/* Rearrange the chain starting at firstTrack
|
|
|
|
* All others flagged items are moved from their position to the end
|
|
|
|
* of the flagged list
|
|
|
|
*/
|
|
|
|
TRACK* next;
|
|
|
|
|
|
|
|
for( TRACK* track = firstTrack->Next(); track; track = next )
|
|
|
|
{
|
|
|
|
next = track->Next();
|
|
|
|
|
|
|
|
if( track->GetState( BUSY ) ) // move it!
|
|
|
|
{
|
|
|
|
NbSegmBusy++;
|
|
|
|
track->UnLink();
|
|
|
|
list->Insert( track, firstTrack->Next() );
|
|
|
|
|
|
|
|
if( aTraceLength )
|
|
|
|
full_len += track->GetLength();
|
|
|
|
|
2012-12-12 11:57:17 +00:00
|
|
|
if( aPadToDieLength ) // Add now length die.
|
2011-09-16 15:54:50 +00:00
|
|
|
{
|
|
|
|
// In fact only 2 pads (maximum) will be taken in account:
|
|
|
|
// that are on each end of the track, if any
|
|
|
|
if( track->GetState( BEGIN_ONPAD ) )
|
|
|
|
{
|
|
|
|
D_PAD * pad = (D_PAD *) track->start;
|
2012-12-12 11:57:17 +00:00
|
|
|
lenPadToDie += (double) pad->GetPadToDieLength();
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( track->GetState( END_ONPAD ) )
|
|
|
|
{
|
|
|
|
D_PAD * pad = (D_PAD *) track->end;
|
2012-12-12 11:57:17 +00:00
|
|
|
lenPadToDie += (double) pad->GetPadToDieLength();
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( aTraceLength )
|
|
|
|
{
|
|
|
|
NbSegmBusy = 0;
|
|
|
|
|
|
|
|
for( TRACK* track = firstTrack; track; track = track->Next() )
|
|
|
|
{
|
|
|
|
if( track->GetState( BUSY ) )
|
|
|
|
{
|
|
|
|
NbSegmBusy++;
|
2013-03-30 17:24:04 +00:00
|
|
|
track->SetState( BUSY, false );
|
2011-09-16 15:54:50 +00:00
|
|
|
full_len += track->GetLength();
|
|
|
|
|
|
|
|
// Add now length die.
|
|
|
|
// In fact only 2 pads (maximum) will be taken in account:
|
|
|
|
// that are on each end of the track, if any
|
|
|
|
if( track->GetState( BEGIN_ONPAD ) )
|
|
|
|
{
|
|
|
|
D_PAD * pad = (D_PAD *) track->start;
|
2012-12-12 11:57:17 +00:00
|
|
|
lenPadToDie += (double) pad->GetPadToDieLength();
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( track->GetState( END_ONPAD ) )
|
|
|
|
{
|
|
|
|
D_PAD * pad = (D_PAD *) track->end;
|
2012-12-12 11:57:17 +00:00
|
|
|
lenPadToDie += (double) pad->GetPadToDieLength();
|
2011-09-16 15:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( aTraceLength )
|
2014-07-24 06:43:23 +00:00
|
|
|
*aTraceLength = full_len;
|
2011-09-16 15:54:50 +00:00
|
|
|
|
2012-12-12 11:57:17 +00:00
|
|
|
if( aPadToDieLength )
|
2014-07-24 06:43:23 +00:00
|
|
|
*aPadToDieLength = lenPadToDie;
|
2011-09-16 15:54:50 +00:00
|
|
|
|
|
|
|
if( aCount )
|
|
|
|
*aCount = NbSegmBusy;
|
|
|
|
|
|
|
|
return firstTrack;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
MODULE* BOARD::GetFootprint( const wxPoint& aPosition, LAYER_ID aActiveLayer,
|
2011-09-16 18:54:04 +00:00
|
|
|
bool aVisibleOnly, bool aIgnoreLocked )
|
|
|
|
{
|
|
|
|
MODULE* pt_module;
|
|
|
|
MODULE* module = NULL;
|
2013-04-07 11:55:18 +00:00
|
|
|
MODULE* alt_module = NULL;
|
2011-09-16 18:54:04 +00:00
|
|
|
int min_dim = 0x7FFFFFFF;
|
|
|
|
int alt_min_dim = 0x7FFFFFFF;
|
2013-04-07 11:55:18 +00:00
|
|
|
bool current_layer_back = IsBackLayer( aActiveLayer );
|
2011-09-16 18:54:04 +00:00
|
|
|
|
|
|
|
for( pt_module = m_Modules; pt_module; pt_module = (MODULE*) pt_module->Next() )
|
|
|
|
{
|
|
|
|
// is the ref point within the module's bounds?
|
|
|
|
if( !pt_module->HitTest( aPosition ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// if caller wants to ignore locked modules, and this one is locked, skip it.
|
|
|
|
if( aIgnoreLocked && pt_module->IsLocked() )
|
|
|
|
continue;
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
LAYER_ID layer = pt_module->GetLayer();
|
2011-09-16 18:54:04 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
// Filter non visible modules if requested
|
2014-06-24 16:17:18 +00:00
|
|
|
if( !aVisibleOnly || IsModuleLayerVisible( layer ) )
|
2013-04-07 11:55:18 +00:00
|
|
|
{
|
2013-11-24 17:48:14 +00:00
|
|
|
EDA_RECT bb = pt_module->GetFootprintRect();
|
2014-06-24 16:17:18 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
int offx = bb.GetX() + bb.GetWidth() / 2;
|
|
|
|
int offy = bb.GetY() + bb.GetHeight() / 2;
|
2011-09-16 18:54:04 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
// off x & offy point to the middle of the box.
|
|
|
|
int dist = ( aPosition.x - offx ) * ( aPosition.x - offx ) +
|
|
|
|
( aPosition.y - offy ) * ( aPosition.y - offy );
|
2011-09-16 18:54:04 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
if( current_layer_back == IsBackLayer( layer ) )
|
2011-09-16 18:54:04 +00:00
|
|
|
{
|
2013-04-07 11:55:18 +00:00
|
|
|
if( dist <= min_dim )
|
|
|
|
{
|
|
|
|
// better footprint shown on the active side
|
|
|
|
module = pt_module;
|
|
|
|
min_dim = dist;
|
|
|
|
}
|
2011-09-16 18:54:04 +00:00
|
|
|
}
|
2013-04-07 11:55:18 +00:00
|
|
|
else if( aVisibleOnly && IsModuleLayerVisible( layer ) )
|
2011-09-16 18:54:04 +00:00
|
|
|
{
|
2013-04-07 11:55:18 +00:00
|
|
|
if( dist <= alt_min_dim )
|
|
|
|
{
|
|
|
|
// better footprint shown on the other side
|
|
|
|
alt_module = pt_module;
|
|
|
|
alt_min_dim = dist;
|
|
|
|
}
|
2011-09-16 18:54:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( module )
|
|
|
|
{
|
|
|
|
return module;
|
|
|
|
}
|
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
if( alt_module)
|
2011-09-16 18:54:04 +00:00
|
|
|
{
|
2013-04-07 11:55:18 +00:00
|
|
|
return alt_module;
|
2011-09-16 18:54:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
BOARD_CONNECTED_ITEM* BOARD::GetLockPoint( const wxPoint& aPosition, LSET aLayerMask )
|
2011-09-17 01:22:26 +00:00
|
|
|
{
|
|
|
|
for( MODULE* module = m_Modules; module; module = module->Next() )
|
|
|
|
{
|
|
|
|
D_PAD* pad = module->GetPad( aPosition, aLayerMask );
|
|
|
|
|
|
|
|
if( pad )
|
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
// No pad has been located so check for a segment of the trace.
|
2014-04-25 06:00:04 +00:00
|
|
|
TRACK* segment = ::GetTrack( m_Track, NULL, aPosition, aLayerMask );
|
2011-09-17 01:22:26 +00:00
|
|
|
|
|
|
|
if( segment == NULL )
|
2014-04-25 06:00:04 +00:00
|
|
|
segment = GetTrack( m_Track, aPosition, aLayerMask );
|
2011-09-17 01:22:26 +00:00
|
|
|
|
|
|
|
return segment;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TRACK* BOARD::CreateLockPoint( wxPoint& aPosition, TRACK* aSegment, PICKED_ITEMS_LIST* aList )
|
|
|
|
{
|
2012-02-04 20:30:00 +00:00
|
|
|
/* creates an intermediate point on aSegment and break it into two segments
|
|
|
|
* at aPosition.
|
|
|
|
* The new segment starts from aPosition and ends at the end point of
|
|
|
|
* aSegment. The original segment now ends at aPosition.
|
|
|
|
*/
|
2013-01-13 00:04:00 +00:00
|
|
|
if( aSegment->GetStart() == aPosition || aSegment->GetEnd() == aPosition )
|
2011-09-17 01:22:26 +00:00
|
|
|
return NULL;
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
// A via is a good lock point
|
2011-10-01 19:24:27 +00:00
|
|
|
if( aSegment->Type() == PCB_VIA_T )
|
2011-09-17 01:22:26 +00:00
|
|
|
{
|
2013-01-13 00:04:00 +00:00
|
|
|
aPosition = aSegment->GetStart();
|
2011-09-17 01:22:26 +00:00
|
|
|
return aSegment;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculation coordinate of intermediate point relative to the start point of aSegment
|
2013-01-13 00:04:00 +00:00
|
|
|
wxPoint delta = aSegment->GetEnd() - aSegment->GetStart();
|
2011-09-17 01:22:26 +00:00
|
|
|
|
2013-01-13 00:04:00 +00:00
|
|
|
// calculate coordinates of aPosition relative to aSegment->GetStart()
|
|
|
|
wxPoint lockPoint = aPosition - aSegment->GetStart();
|
2011-09-17 01:22:26 +00:00
|
|
|
|
2012-02-04 20:30:00 +00:00
|
|
|
// lockPoint must be on aSegment:
|
|
|
|
// Ensure lockPoint.y/lockPoint.y = delta.y/delta.x
|
2011-09-17 01:22:26 +00:00
|
|
|
if( delta.x == 0 )
|
2014-06-24 16:17:18 +00:00
|
|
|
lockPoint.x = 0; // horizontal segment
|
2011-09-17 01:22:26 +00:00
|
|
|
else
|
// Dick Hollenbeck's KiROUND R&D
// This provides better project control over rounding to int from double
// than wxRound() did. This scheme provides better logging in Debug builds
// and it provides for compile time calculation of constants.
#include <stdio.h>
#include <assert.h>
#include <limits.h>
//-----<KiROUND KIT>------------------------------------------------------------
/**
* KiROUND
* rounds a floating point number to an int using
* "round halfway cases away from zero".
* In Debug build an assert fires if will not fit into an int.
*/
#if defined( DEBUG )
// DEBUG: a macro to capture line and file, then calls this inline
static inline int KiRound( double v, int line, const char* filename )
{
v = v < 0 ? v - 0.5 : v + 0.5;
if( v > INT_MAX + 0.5 )
{
printf( "%s: in file %s on line %d, val: %.16g too ' > 0 ' for int\n", __FUNCTION__, filename, line, v );
}
else if( v < INT_MIN - 0.5 )
{
printf( "%s: in file %s on line %d, val: %.16g too ' < 0 ' for int\n", __FUNCTION__, filename, line, v );
}
return int( v );
}
#define KiROUND( v ) KiRound( v, __LINE__, __FILE__ )
#else
// RELEASE: a macro so compile can pre-compute constants.
#define KiROUND( v ) int( (v) < 0 ? (v) - 0.5 : (v) + 0.5 )
#endif
//-----</KiROUND KIT>-----------------------------------------------------------
// Only a macro is compile time calculated, an inline function causes a static constructor
// in a situation like this.
// Therefore the Release build is best done with a MACRO not an inline function.
int Computed = KiROUND( 14.3 * 8 );
int main( int argc, char** argv )
{
for( double d = double(INT_MAX)-1; d < double(INT_MAX)+8; d += 2.0 )
{
int i = KiROUND( d );
printf( "t: %d %.16g\n", i, d );
}
return 0;
}
2012-04-19 06:55:45 +00:00
|
|
|
lockPoint.y = KiROUND( ( (double)lockPoint.x * delta.y ) / delta.x );
|
2011-09-17 01:22:26 +00:00
|
|
|
|
|
|
|
/* Create the intermediate point (that is to say creation of a new
|
|
|
|
* segment, beginning at the intermediate point.
|
|
|
|
*/
|
2013-01-13 00:04:00 +00:00
|
|
|
lockPoint += aSegment->GetStart();
|
2011-09-17 01:22:26 +00:00
|
|
|
|
2012-01-14 19:50:32 +00:00
|
|
|
TRACK* newTrack = (TRACK*)aSegment->Clone();
|
2012-02-04 20:30:00 +00:00
|
|
|
// The new segment begins at the new point,
|
2013-01-13 00:04:00 +00:00
|
|
|
newTrack->SetStart(lockPoint);
|
2012-02-04 20:30:00 +00:00
|
|
|
newTrack->start = aSegment;
|
2013-03-30 17:24:04 +00:00
|
|
|
newTrack->SetState( BEGIN_ONPAD, false );
|
2011-09-17 01:22:26 +00:00
|
|
|
|
|
|
|
DLIST<TRACK>* list = (DLIST<TRACK>*)aSegment->GetList();
|
|
|
|
wxASSERT( list );
|
|
|
|
list->Insert( newTrack, aSegment->Next() );
|
|
|
|
|
|
|
|
if( aList )
|
|
|
|
{
|
2012-02-04 20:30:00 +00:00
|
|
|
// Prepare the undo command for the now track segment
|
|
|
|
ITEM_PICKER picker( newTrack, UR_NEW );
|
|
|
|
aList->PushItem( picker );
|
|
|
|
// Prepare the undo command for the old track segment
|
|
|
|
// before modifications
|
|
|
|
picker.SetItem( aSegment );
|
|
|
|
picker.SetStatus( UR_CHANGED );
|
|
|
|
picker.SetLink( aSegment->Clone() );
|
2011-09-17 01:22:26 +00:00
|
|
|
aList->PushItem( picker );
|
|
|
|
}
|
|
|
|
|
2012-02-04 20:30:00 +00:00
|
|
|
// Old track segment now ends at new point.
|
2013-01-13 00:04:00 +00:00
|
|
|
aSegment->SetEnd(lockPoint);
|
2011-09-17 01:22:26 +00:00
|
|
|
aSegment->end = newTrack;
|
2013-03-30 17:24:04 +00:00
|
|
|
aSegment->SetState( END_ONPAD, false );
|
2011-09-17 01:22:26 +00:00
|
|
|
|
2014-04-25 17:13:33 +00:00
|
|
|
D_PAD * pad = GetPad( newTrack, ENDPOINT_START );
|
2011-09-17 01:22:26 +00:00
|
|
|
|
|
|
|
if ( pad )
|
|
|
|
{
|
|
|
|
newTrack->start = pad;
|
2013-03-30 17:24:04 +00:00
|
|
|
newTrack->SetState( BEGIN_ONPAD, true );
|
2011-09-17 01:22:26 +00:00
|
|
|
aSegment->end = pad;
|
2013-03-30 17:24:04 +00:00
|
|
|
aSegment->SetState( END_ONPAD, true );
|
2011-09-17 01:22:26 +00:00
|
|
|
}
|
|
|
|
|
2012-02-04 20:30:00 +00:00
|
|
|
aPosition = lockPoint;
|
2011-09-17 01:22:26 +00:00
|
|
|
return newTrack;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-20 14:50:12 +00:00
|
|
|
ZONE_CONTAINER* BOARD::AddArea( PICKED_ITEMS_LIST* aNewZonesList, int aNetcode,
|
2014-06-24 16:17:18 +00:00
|
|
|
LAYER_ID aLayer, wxPoint aStartPointPosition, int aHatch )
|
2013-03-20 14:50:12 +00:00
|
|
|
{
|
|
|
|
ZONE_CONTAINER* new_area = InsertArea( aNetcode,
|
|
|
|
m_ZoneDescriptorList.size( ) - 1,
|
|
|
|
aLayer, aStartPointPosition.x,
|
|
|
|
aStartPointPosition.y, aHatch );
|
|
|
|
|
|
|
|
if( aNewZonesList )
|
|
|
|
{
|
|
|
|
ITEM_PICKER picker( new_area, UR_NEW );
|
|
|
|
aNewZonesList->PushItem( picker );
|
|
|
|
}
|
|
|
|
|
|
|
|
return new_area;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD::RemoveArea( PICKED_ITEMS_LIST* aDeletedList, ZONE_CONTAINER* area_to_remove )
|
|
|
|
{
|
|
|
|
if( area_to_remove == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( aDeletedList )
|
|
|
|
{
|
|
|
|
ITEM_PICKER picker( area_to_remove, UR_DELETED );
|
|
|
|
aDeletedList->PushItem( picker );
|
|
|
|
Remove( area_to_remove ); // remove from zone list, but does not delete it
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Delete( area_to_remove );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
ZONE_CONTAINER* BOARD::InsertArea( int netcode, int iarea, LAYER_ID layer, int x, int y, int hatch )
|
2013-03-20 14:50:12 +00:00
|
|
|
{
|
|
|
|
ZONE_CONTAINER* new_area = new ZONE_CONTAINER( this );
|
|
|
|
|
2014-02-25 10:40:34 +00:00
|
|
|
new_area->SetNetCode( netcode );
|
2013-03-20 14:50:12 +00:00
|
|
|
new_area->SetLayer( layer );
|
|
|
|
new_area->SetTimeStamp( GetNewTimeStamp() );
|
|
|
|
|
|
|
|
if( iarea < (int) ( m_ZoneDescriptorList.size() - 1 ) )
|
|
|
|
m_ZoneDescriptorList.insert( m_ZoneDescriptorList.begin() + iarea + 1, new_area );
|
|
|
|
else
|
|
|
|
m_ZoneDescriptorList.push_back( new_area );
|
|
|
|
|
|
|
|
new_area->Outline()->Start( layer, x, y, hatch );
|
|
|
|
return new_area;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BOARD::NormalizeAreaPolygon( PICKED_ITEMS_LIST * aNewZonesList, ZONE_CONTAINER* aCurrArea )
|
|
|
|
{
|
|
|
|
CPolyLine* curr_polygon = aCurrArea->Outline();
|
|
|
|
|
|
|
|
// mark all areas as unmodified except this one, if modified
|
|
|
|
for( unsigned ia = 0; ia < m_ZoneDescriptorList.size(); ia++ )
|
2013-03-26 09:58:40 +00:00
|
|
|
m_ZoneDescriptorList[ia]->SetLocalFlags( 0 );
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2013-03-26 09:58:40 +00:00
|
|
|
aCurrArea->SetLocalFlags( 1 );
|
2013-03-20 14:50:12 +00:00
|
|
|
|
|
|
|
if( curr_polygon->IsPolygonSelfIntersecting() )
|
|
|
|
{
|
|
|
|
std::vector<CPolyLine*>* pa = new std::vector<CPolyLine*>;
|
|
|
|
curr_polygon->UnHatch();
|
|
|
|
int n_poly = aCurrArea->Outline()->NormalizeAreaOutlines( pa );
|
|
|
|
|
|
|
|
// If clipping has created some polygons, we must add these new copper areas.
|
|
|
|
if( n_poly > 1 )
|
|
|
|
{
|
|
|
|
ZONE_CONTAINER* NewArea;
|
|
|
|
|
|
|
|
for( int ip = 1; ip < n_poly; ip++ )
|
|
|
|
{
|
|
|
|
// create new copper area and copy poly into it
|
|
|
|
CPolyLine* new_p = (*pa)[ip - 1];
|
2014-02-25 10:40:34 +00:00
|
|
|
NewArea = AddArea( aNewZonesList, aCurrArea->GetNetCode(), aCurrArea->GetLayer(),
|
2013-03-20 14:50:12 +00:00
|
|
|
wxPoint(0, 0), CPolyLine::NO_HATCH );
|
|
|
|
|
|
|
|
// remove the poly that was automatically created for the new area
|
|
|
|
// and replace it with a poly from NormalizeAreaOutlines
|
|
|
|
delete NewArea->Outline();
|
|
|
|
NewArea->SetOutline( new_p );
|
|
|
|
NewArea->Outline()->Hatch();
|
2013-03-26 09:58:40 +00:00
|
|
|
NewArea->SetLocalFlags( 1 );
|
2013-03-20 14:50:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete pa;
|
|
|
|
}
|
|
|
|
|
|
|
|
curr_polygon->Hatch();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-24 08:08:55 +00:00
|
|
|
void BOARD::ReplaceNetlist( NETLIST& aNetlist, bool aDeleteSinglePadNets,
|
|
|
|
REPORTER* aReporter )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
wxPoint bestPosition;
|
|
|
|
wxString msg;
|
|
|
|
D_PAD* pad;
|
|
|
|
MODULE* footprint;
|
|
|
|
COMPONENT_NET net;
|
|
|
|
|
|
|
|
if( !IsEmpty() )
|
|
|
|
{
|
|
|
|
// Position new components below any existing board features.
|
|
|
|
EDA_RECT bbbox = ComputeBoundingBox( true );
|
|
|
|
|
|
|
|
if( bbbox.GetWidth() || bbbox.GetHeight() )
|
|
|
|
{
|
|
|
|
bestPosition.x = bbbox.Centre().x;
|
2013-08-23 09:22:19 +00:00
|
|
|
bestPosition.y = bbbox.GetBottom() + Millimeter2iu( 10 );
|
2013-04-25 16:29:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Position new components in the center of the page when the board is empty.
|
|
|
|
wxSize pageSize = m_paper.GetSizeIU();
|
|
|
|
|
|
|
|
bestPosition.x = pageSize.GetWidth() / 2;
|
|
|
|
bestPosition.y = pageSize.GetHeight() / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_Status_Pcb = 0;
|
|
|
|
|
|
|
|
for( i = 0; i < aNetlist.GetCount(); i++ )
|
|
|
|
{
|
2013-08-23 09:22:19 +00:00
|
|
|
COMPONENT* component = aNetlist.GetComponent( i );
|
2013-04-25 16:29:35 +00:00
|
|
|
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter && aReporter->ReportAll() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
2013-11-02 00:24:38 +00:00
|
|
|
#if defined(DEBUG)
|
|
|
|
if( component->GetReference() == wxT( "D2" ) )
|
|
|
|
{
|
|
|
|
int breakhere = 1;
|
|
|
|
(void) breakhere;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-25 16:29:35 +00:00
|
|
|
msg.Printf( _( "Checking netlist component footprint \"%s:%s:%s\".\n" ),
|
|
|
|
GetChars( component->GetReference() ),
|
|
|
|
GetChars( component->GetTimeStamp() ),
|
2014-01-02 02:17:07 +00:00
|
|
|
GetChars( component->GetFPID().Format() ) );
|
2013-04-25 16:29:35 +00:00
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( aNetlist.IsFindByTimeStamp() )
|
|
|
|
footprint = FindModule( aNetlist.GetComponent( i )->GetTimeStamp(), true );
|
|
|
|
else
|
|
|
|
footprint = FindModule( aNetlist.GetComponent( i )->GetReference() );
|
|
|
|
|
|
|
|
if( footprint == NULL ) // A new footprint.
|
|
|
|
{
|
|
|
|
if( aReporter )
|
|
|
|
{
|
2013-04-26 15:11:52 +00:00
|
|
|
if( component->GetModule() != NULL )
|
2013-08-23 06:38:57 +00:00
|
|
|
{
|
2013-04-26 15:11:52 +00:00
|
|
|
msg.Printf( _( "Adding new component \"%s:%s\" footprint \"%s\".\n" ),
|
|
|
|
GetChars( component->GetReference() ),
|
|
|
|
GetChars( component->GetTimeStamp() ),
|
2014-01-02 02:17:07 +00:00
|
|
|
GetChars( component->GetFPID().Format() ) );
|
2013-08-23 06:38:57 +00:00
|
|
|
|
|
|
|
if( aReporter->ReportWarnings() )
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
2013-04-26 15:11:52 +00:00
|
|
|
else
|
2013-08-23 06:38:57 +00:00
|
|
|
{
|
2013-04-26 15:11:52 +00:00
|
|
|
msg.Printf( _( "Cannot add new component \"%s:%s\" due to missing "
|
|
|
|
"footprint \"%s\".\n" ),
|
|
|
|
GetChars( component->GetReference() ),
|
|
|
|
GetChars( component->GetTimeStamp() ),
|
2014-01-02 02:17:07 +00:00
|
|
|
GetChars( component->GetFPID().Format() ) );
|
2013-04-26 15:11:52 +00:00
|
|
|
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter->ReportErrors() )
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
2013-04-25 16:29:35 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 15:11:52 +00:00
|
|
|
if( !aNetlist.IsDryRun() && (component->GetModule() != NULL) )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
2013-04-26 15:11:52 +00:00
|
|
|
// Owned by NETLIST, can only copy it.
|
|
|
|
footprint = new MODULE( *component->GetModule() );
|
2013-04-25 16:29:35 +00:00
|
|
|
footprint->SetParent( this );
|
|
|
|
footprint->SetPosition( bestPosition );
|
|
|
|
footprint->SetTimeStamp( GetNewTimeStamp() );
|
|
|
|
Add( footprint, ADD_APPEND );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // An existing footprint.
|
|
|
|
{
|
|
|
|
// Test for footprint change.
|
2013-09-08 18:31:21 +00:00
|
|
|
if( !component->GetFPID().empty() &&
|
|
|
|
footprint->GetFPID() != component->GetFPID() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
if( aNetlist.GetReplaceFootprints() )
|
|
|
|
{
|
|
|
|
if( aReporter )
|
|
|
|
{
|
2013-04-26 15:11:52 +00:00
|
|
|
if( component->GetModule() != NULL )
|
2013-08-23 06:38:57 +00:00
|
|
|
{
|
2013-04-26 15:11:52 +00:00
|
|
|
msg.Printf( _( "Replacing component \"%s:%s\" footprint \"%s\" with "
|
|
|
|
"\"%s\".\n" ),
|
|
|
|
GetChars( footprint->GetReference() ),
|
|
|
|
GetChars( footprint->GetPath() ),
|
2014-01-02 02:17:07 +00:00
|
|
|
GetChars( footprint->GetFPID().Format() ),
|
|
|
|
GetChars( component->GetFPID().Format() ) );
|
2013-08-23 06:38:57 +00:00
|
|
|
|
|
|
|
if( aReporter->ReportWarnings() )
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
2013-04-26 15:11:52 +00:00
|
|
|
else
|
2013-08-23 06:38:57 +00:00
|
|
|
{
|
2013-04-26 15:11:52 +00:00
|
|
|
msg.Printf( _( "Cannot replace component \"%s:%s\" due to missing "
|
|
|
|
"footprint \"%s\".\n" ),
|
|
|
|
GetChars( footprint->GetReference() ),
|
|
|
|
GetChars( footprint->GetPath() ),
|
2014-01-02 02:17:07 +00:00
|
|
|
GetChars( component->GetFPID().Format() ) );
|
2013-04-26 15:11:52 +00:00
|
|
|
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter->ReportErrors() )
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
2013-04-25 16:29:35 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 15:11:52 +00:00
|
|
|
if( !aNetlist.IsDryRun() && (component->GetModule() != NULL) )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
wxASSERT( footprint != NULL );
|
|
|
|
MODULE* newFootprint = new MODULE( *component->GetModule() );
|
|
|
|
|
|
|
|
if( aNetlist.IsFindByTimeStamp() )
|
|
|
|
newFootprint->SetReference( footprint->GetReference() );
|
|
|
|
else
|
|
|
|
newFootprint->SetPath( footprint->GetPath() );
|
|
|
|
|
|
|
|
footprint->CopyNetlistSettings( newFootprint );
|
|
|
|
Remove( footprint );
|
|
|
|
Add( newFootprint, ADD_APPEND );
|
|
|
|
footprint = newFootprint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test for reference designator field change.
|
|
|
|
if( footprint->GetReference() != component->GetReference() )
|
|
|
|
{
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter && aReporter->ReportWarnings())
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
msg.Printf( _( "Changing footprint \"%s:%s\" reference to \"%s\".\n" ),
|
|
|
|
GetChars( footprint->GetReference() ),
|
|
|
|
GetChars( footprint->GetPath() ),
|
|
|
|
GetChars( component->GetReference() ) );
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !aNetlist.IsDryRun() )
|
|
|
|
footprint->SetReference( component->GetReference() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test for value field change.
|
|
|
|
if( footprint->GetValue() != component->GetValue() )
|
|
|
|
{
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter && aReporter->ReportAll() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
msg.Printf( _( "Changing footprint \"%s:%s\" value from \"%s\" to \"%s\".\n" ),
|
|
|
|
GetChars( footprint->GetReference() ),
|
|
|
|
GetChars( footprint->GetPath() ),
|
|
|
|
GetChars( footprint->GetValue() ),
|
|
|
|
GetChars( component->GetValue() ) );
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !aNetlist.IsDryRun() )
|
|
|
|
footprint->SetValue( component->GetValue() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test for time stamp change.
|
|
|
|
if( footprint->GetPath() != component->GetTimeStamp() )
|
|
|
|
{
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter && aReporter->ReportWarnings() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
msg.Printf( _( "Changing footprint path \"%s:%s\" to \"%s\".\n" ),
|
|
|
|
GetChars( footprint->GetReference() ),
|
|
|
|
GetChars( footprint->GetPath() ),
|
|
|
|
GetChars( component->GetTimeStamp() ) );
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !aNetlist.IsDryRun() )
|
|
|
|
footprint->SetPath( component->GetTimeStamp() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-26 15:11:52 +00:00
|
|
|
if( footprint == NULL )
|
|
|
|
continue;
|
2013-04-25 16:29:35 +00:00
|
|
|
|
|
|
|
// At this point, the component footprint is updated. Now update the nets.
|
|
|
|
for( pad = footprint->Pads(); pad; pad = pad->Next() )
|
|
|
|
{
|
|
|
|
net = component->GetNet( pad->GetPadName() );
|
|
|
|
|
|
|
|
if( !net.IsValid() ) // Footprint pad had no net.
|
|
|
|
{
|
|
|
|
if( !pad->GetNetname().IsEmpty() )
|
|
|
|
{
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter && aReporter->ReportAll() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
msg.Printf( _( "Clearing component \"%s:%s\" pin \"%s\" net name.\n" ),
|
|
|
|
GetChars( footprint->GetReference() ),
|
|
|
|
GetChars( footprint->GetPath() ),
|
|
|
|
GetChars( pad->GetPadName() ) );
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !aNetlist.IsDryRun() )
|
2014-02-25 10:40:34 +00:00
|
|
|
pad->SetNetCode( NETINFO_LIST::UNCONNECTED );
|
2013-04-25 16:29:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else // Footprint pad has a net.
|
|
|
|
{
|
|
|
|
if( net.GetNetName() != pad->GetNetname() )
|
|
|
|
{
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter && aReporter->ReportAll() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
msg.Printf( _( "Changing component \"%s:%s\" pin \"%s\" net name from "
|
|
|
|
"\"%s\" to \"%s\".\n" ),
|
|
|
|
GetChars( footprint->GetReference() ),
|
|
|
|
GetChars( footprint->GetPath() ),
|
|
|
|
GetChars( pad->GetPadName() ),
|
|
|
|
GetChars( pad->GetNetname() ),
|
|
|
|
GetChars( net.GetNetName() ) );
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !aNetlist.IsDryRun() )
|
2014-01-10 17:04:07 +00:00
|
|
|
{
|
|
|
|
NETINFO_ITEM* netinfo = FindNet( net.GetNetName() );
|
|
|
|
if( netinfo == NULL )
|
|
|
|
{
|
|
|
|
// It is a new net, we have to add it
|
2014-01-16 13:20:51 +00:00
|
|
|
netinfo = new NETINFO_ITEM( this, net.GetNetName() );
|
2014-01-10 17:04:07 +00:00
|
|
|
m_NetInfo.AppendNet( netinfo );
|
|
|
|
}
|
|
|
|
|
2014-02-25 10:40:34 +00:00
|
|
|
pad->SetNetCode( netinfo->GetNet() );
|
2014-01-10 17:04:07 +00:00
|
|
|
}
|
2013-04-25 16:29:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove all components not in the netlist.
|
|
|
|
if( aNetlist.GetDeleteExtraFootprints() )
|
|
|
|
{
|
|
|
|
MODULE* nextModule;
|
2013-08-23 09:22:19 +00:00
|
|
|
const COMPONENT* component;
|
2013-04-25 16:29:35 +00:00
|
|
|
|
|
|
|
for( MODULE* module = m_Modules; module != NULL; module = nextModule )
|
|
|
|
{
|
|
|
|
nextModule = module->Next();
|
|
|
|
|
|
|
|
if( module->IsLocked() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( aNetlist.IsFindByTimeStamp() )
|
|
|
|
component = aNetlist.GetComponentByTimeStamp( module->GetPath() );
|
|
|
|
else
|
|
|
|
component = aNetlist.GetComponentByReference( module->GetReference() );
|
|
|
|
|
|
|
|
if( component == NULL )
|
|
|
|
{
|
2013-08-23 06:38:57 +00:00
|
|
|
if( aReporter && aReporter->ReportWarnings() )
|
2013-04-25 16:29:35 +00:00
|
|
|
{
|
|
|
|
msg.Printf( _( "Removing footprint \"%s:%s\".\n" ),
|
|
|
|
GetChars( module->GetReference() ),
|
|
|
|
GetChars( module->GetPath() ) );
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !aNetlist.IsDryRun() )
|
|
|
|
module->DeleteStructure();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-23 09:22:19 +00:00
|
|
|
|
2013-08-24 08:08:55 +00:00
|
|
|
// If needed, remove the single pad nets:
|
|
|
|
if( aDeleteSinglePadNets && !aNetlist.IsDryRun() )
|
|
|
|
{
|
|
|
|
BuildListOfNets();
|
2013-11-02 00:24:38 +00:00
|
|
|
|
2013-08-24 08:08:55 +00:00
|
|
|
std::vector<D_PAD*> padlist = GetPads();
|
2013-11-02 00:24:38 +00:00
|
|
|
|
2013-08-24 08:08:55 +00:00
|
|
|
// padlist is the list of pads, sorted by netname.
|
2013-11-02 00:24:38 +00:00
|
|
|
int count = 0;
|
|
|
|
wxString netname;
|
|
|
|
D_PAD* pad = NULL;
|
|
|
|
D_PAD* previouspad = NULL;
|
|
|
|
|
2013-08-24 08:08:55 +00:00
|
|
|
for( unsigned ii = 0; ii < padlist.size(); ii++ )
|
|
|
|
{
|
|
|
|
pad = padlist[ii];
|
|
|
|
|
|
|
|
if( pad->GetNetname().IsEmpty() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( netname != pad->GetNetname() ) // End of net
|
|
|
|
{
|
|
|
|
if( previouspad && count == 1 )
|
|
|
|
{
|
|
|
|
if( aReporter && aReporter->ReportAll() )
|
|
|
|
{
|
2013-11-02 00:24:38 +00:00
|
|
|
msg.Printf( _( "Remove single pad net \"%s\" on \"%s\" pad '%s'\n" ),
|
2013-09-30 06:36:40 +00:00
|
|
|
GetChars( previouspad->GetNetname() ),
|
|
|
|
GetChars( previouspad->GetParent()->GetReference() ),
|
2013-08-24 08:08:55 +00:00
|
|
|
GetChars( previouspad->GetPadName() ) );
|
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
Removed D_PAD::SetNetname() function and D_PAD::m_Netname, D_PAD::m_ShortNetname fields.
D_PAD::GetNetname() and D_PAD::GetShortNetname() were moved to BOARD_CONNECTED_ITEM. Now they use the net name stored in NETINFO_ITEM.
Moved some one-line functions from class_board_connected_item.cpp to class_board_connected_item.h.
Added a copyright notice, moved Doxygen comments from class_board_connected_item.cpp to class_board_connected_item.h.
I have some doubts if changes introduced pcbnew/dialogs/dialog_pad_properties.cpp do not break anything, but I could not find a test case that breaks the pcbnew.
Performed tests:
- changed pad's net name from empty to existent - ok, name was changed
- changed pad's net name from empty to nonexistent - ok, error message is displayed, net name stays empty
- changed pad's net name from existent to empty - ok, net name became empty
- changed pad's net name from existent to nonexistent - ok, error message is displayed, net name is not changed
- (re)reading netlists, including net changes - fine, changes are applied, but empty nets are still kept
- loaded pcbnew/pcad2kicadpcb_plugin/examples/CK1202_V1.pcb to test P-CAD import plugin - ok, net names are correct
- imported an Eagle 6.0 board (Arduino Uno; http://arduino.cc/en/uploads/Main/arduino_Uno_Rev3-02-TH.zip) then saved in .kicad_pcb format and reloaded - ok, net names are correct
- saved demos/video/video.kicad_pcb in legacy format and then loaded it again - ok, net names are correct
2014-01-14 09:41:52 +00:00
|
|
|
|
2014-02-25 10:40:34 +00:00
|
|
|
previouspad->SetNetCode( NETINFO_LIST::UNCONNECTED );
|
2013-08-24 08:08:55 +00:00
|
|
|
}
|
|
|
|
netname = pad->GetNetname();
|
|
|
|
count = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
count++;
|
|
|
|
|
|
|
|
previouspad = pad;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Examine last pad
|
|
|
|
if( pad && count == 1 )
|
2014-02-25 10:40:34 +00:00
|
|
|
pad->SetNetCode( NETINFO_LIST::UNCONNECTED );
|
2013-08-24 08:08:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Last step: Some tests:
|
|
|
|
// verify all pads found in netlist:
|
2013-08-23 09:22:19 +00:00
|
|
|
// They should exist in footprints, otherwise the footprint is wrong
|
|
|
|
// note also references or time stamps are updated, so we use only
|
|
|
|
// the reference to find a footprint
|
|
|
|
if( aReporter && aReporter->ReportErrors() )
|
|
|
|
{
|
|
|
|
wxString padname;
|
|
|
|
for( i = 0; i < aNetlist.GetCount(); i++ )
|
|
|
|
{
|
|
|
|
const COMPONENT* component = aNetlist.GetComponent( i );
|
|
|
|
MODULE* footprint = FindModuleByReference( component->GetReference() );
|
|
|
|
|
|
|
|
if( footprint == NULL ) // It can be missing in partial designs
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Explore all pins/pads in component
|
|
|
|
for( unsigned jj = 0; jj < component->GetNetCount(); jj++ )
|
|
|
|
{
|
|
|
|
net = component->GetNet( jj );
|
|
|
|
padname = net.GetPinName();
|
|
|
|
|
|
|
|
if( footprint->FindPadByName( padname ) )
|
|
|
|
continue; // OK, pad found
|
|
|
|
|
|
|
|
// not found: bad footprint, report error
|
2014-01-19 13:12:57 +00:00
|
|
|
msg.Printf( _( "*** Error: Component '%s' pad '%s' not found in footprint '%s' ***\n" ),
|
2013-08-23 09:22:19 +00:00
|
|
|
GetChars( component->GetReference() ),
|
|
|
|
GetChars( padname ),
|
2014-01-02 02:17:07 +00:00
|
|
|
GetChars( footprint->GetFPID().Format() ) );
|
2013-08-23 09:22:19 +00:00
|
|
|
aReporter->Report( msg );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-25 16:29:35 +00:00
|
|
|
}
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
2013-10-04 08:42:09 +00:00
|
|
|
/* Extracts the board outlines and build a closed polygon
|
|
|
|
* from lines, arcs and circle items on edge cut layer
|
|
|
|
* Any closed outline inside the main outline is a hole
|
|
|
|
* All contours should be closed, i.e. are valid vertices for a closed polygon
|
|
|
|
* return true if success, false if a contour is not valid
|
|
|
|
*/
|
|
|
|
#include <specctra.h>
|
|
|
|
bool BOARD::GetBoardPolygonOutlines( CPOLYGONS_LIST& aOutlines,
|
|
|
|
CPOLYGONS_LIST& aHoles,
|
|
|
|
wxString* aErrorText )
|
|
|
|
{
|
|
|
|
// the SPECCTRA_DB function to extract board outlines:
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
DSN::SPECCTRA_DB dummy;
|
2013-10-04 08:42:09 +00:00
|
|
|
return dummy.GetBoardPolygonOutlines( this, aOutlines,
|
|
|
|
aHoles, aErrorText );
|
|
|
|
}
|