2014-10-23 17:53:38 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <common.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2013-05-02 18:06:58 +00:00
|
|
|
#include <macros.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_track.h>
|
|
|
|
#include <pcbnew.h>
|
2017-03-22 13:51:07 +00:00
|
|
|
#include <ratsnest_data.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function Compile_Ratsnest
|
2009-11-20 14:55:20 +00:00
|
|
|
* Create the entire board ratsnest.
|
2007-10-13 12:17:17 +00:00
|
|
|
* Must be called after a board change (changes for
|
|
|
|
* pads, footprints or a read netlist ).
|
2010-12-29 17:47:32 +00:00
|
|
|
* @param aDC = the current device context (can be NULL)
|
|
|
|
* @param aDisplayStatus : if true, display the computation results
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2019-05-30 15:11:17 +00:00
|
|
|
void PCB_BASE_FRAME::Compile_Ratsnest( bool aDisplayStatus )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2017-03-22 13:51:07 +00:00
|
|
|
GetBoard()->GetConnectivity()->RecalculateRatsnest();
|
|
|
|
ClearMsgPanel();
|
2007-10-13 12:17:17 +00:00
|
|
|
|
2010-12-29 17:47:32 +00:00
|
|
|
if( aDisplayStatus )
|
2009-05-24 18:28:36 +00:00
|
|
|
{
|
2018-09-21 12:41:28 +00:00
|
|
|
std::shared_ptr<CONNECTIVITY_DATA> conn = m_Pcb->GetConnectivity();
|
2019-05-30 15:11:17 +00:00
|
|
|
wxString msg;
|
2018-09-21 12:41:28 +00:00
|
|
|
|
|
|
|
msg.Printf( wxT( " %d" ), conn->GetPadCount() );
|
2019-01-02 04:43:13 +00:00
|
|
|
AppendMsgPanel( _( "Pads" ), msg, RED );
|
2018-09-21 12:41:28 +00:00
|
|
|
|
|
|
|
msg.Printf( wxT( " %d" ), conn->GetNetCount() - 1 /* Don't include "No Net" in count */ );
|
2019-01-02 04:43:13 +00:00
|
|
|
AppendMsgPanel( _( "Nets" ), msg, CYAN );
|
2018-09-21 12:41:28 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
SetMsgPanel( m_Pcb );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|