2012-06-08 09:56:42 +00:00
|
|
|
/**
|
|
|
|
* @brief NETINFO_ITEM class, to handle info on nets: netnames, net constraints
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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) 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
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <gr_basic.h>
|
2018-01-29 15:39:40 +00:00
|
|
|
#include <pcb_base_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <common.h>
|
|
|
|
#include <kicad_string.h>
|
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <richio.h>
|
|
|
|
#include <macros.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
|
|
|
#include <base_units.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_track.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
/*********************************************************/
|
2009-05-25 11:53:55 +00:00
|
|
|
/* class NETINFO_ITEM: handle data relative to a given net */
|
2007-08-08 03:50:44 +00:00
|
|
|
/*********************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2016-01-29 10:21:13 +00:00
|
|
|
NETINFO_ITEM::NETINFO_ITEM( BOARD* aParent, const wxString& aNetName, int aNetCode ) :
|
|
|
|
BOARD_ITEM( aParent, PCB_NETINFO_T ),
|
2018-10-18 09:35:59 +00:00
|
|
|
m_NetCode( aNetCode ),
|
|
|
|
m_isCurrent( true ),
|
|
|
|
m_Netname( aNetName ),
|
|
|
|
m_ShortNetname( m_Netname.AfterLast( '/' ) )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2017-07-28 14:03:15 +00:00
|
|
|
m_parent = aParent;
|
|
|
|
|
|
|
|
if( aParent )
|
|
|
|
m_NetClass = aParent->GetDesignSettings().m_NetClasses.GetDefault();
|
|
|
|
else
|
|
|
|
m_NetClass = std::make_shared<NETCLASS>( "<invalid>" );
|
2009-08-17 02:59:38 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2009-05-24 18:28:36 +00:00
|
|
|
NETINFO_ITEM::~NETINFO_ITEM()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-08-17 02:59:38 +00:00
|
|
|
// m_NetClass is not owned by me.
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
2019-05-31 12:15:25 +00:00
|
|
|
* Function Print (TODO)
|
2008-12-14 19:45:05 +00:00
|
|
|
*/
|
2019-05-31 12:15:25 +00:00
|
|
|
void NETINFO_ITEM::Print( PCB_BASE_FRAME* frame, wxDC* DC, const wxPoint& aOffset )
|
2008-12-14 19:45:05 +00:00
|
|
|
{
|
2007-10-30 21:30:58 +00:00
|
|
|
}
|
|
|
|
|
2007-08-09 01:41:30 +00:00
|
|
|
|
2017-09-23 09:20:10 +00:00
|
|
|
void NETINFO_ITEM::SetClass( const NETCLASSPTR& aNetClass )
|
2017-07-28 14:03:15 +00:00
|
|
|
{
|
|
|
|
wxCHECK( m_parent, /* void */ );
|
|
|
|
m_NetClass = aNetClass ? aNetClass : m_parent->GetDesignSettings().m_NetClasses.GetDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
void NETINFO_ITEM::GetMsgPanelInfo( EDA_UNITS aUnits, std::vector<MSG_PANEL_ITEM>& aList )
|
2009-05-21 14:59:54 +00:00
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
wxString txt;
|
2016-07-11 03:09:18 +00:00
|
|
|
double lengthnet = 0.0; // This is the length of tracks on pcb
|
|
|
|
double lengthPadToDie = 0.0; // this is the length of internal ICs connections
|
2009-05-21 14:59:54 +00:00
|
|
|
|
2019-12-05 15:41:21 +00:00
|
|
|
aList.emplace_back( _( "Net Name" ), GetNetname(), RED );
|
2009-05-21 14:59:54 +00:00
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), GetNet() );
|
2019-12-05 15:41:21 +00:00
|
|
|
aList.emplace_back( _( "Net Code" ), txt, RED );
|
2009-05-21 14:59:54 +00:00
|
|
|
|
2015-01-23 11:24:32 +00:00
|
|
|
// Warning: for netcode == NETINFO_LIST::ORPHANED, the parent or the board
|
|
|
|
// can be NULL
|
|
|
|
BOARD * board = m_parent ? m_parent->GetBoard() : NULL;
|
|
|
|
|
|
|
|
if( board == NULL )
|
|
|
|
return;
|
2013-01-12 17:32:24 +00:00
|
|
|
|
2015-01-23 11:24:32 +00:00
|
|
|
int count = 0;
|
2017-04-25 09:06:24 +00:00
|
|
|
for( auto mod : board->Modules() )
|
2009-05-21 14:59:54 +00:00
|
|
|
{
|
2017-04-25 09:06:24 +00:00
|
|
|
for( auto pad : mod->Pads() )
|
2009-05-21 14:59:54 +00:00
|
|
|
{
|
2014-02-25 10:40:34 +00:00
|
|
|
if( pad->GetNetCode() == GetNet() )
|
2011-06-30 06:02:07 +00:00
|
|
|
{
|
2009-05-21 14:59:54 +00:00
|
|
|
count++;
|
2012-12-12 11:57:17 +00:00
|
|
|
lengthPadToDie += pad->GetPadToDieLength();
|
2011-06-30 06:02:07 +00:00
|
|
|
}
|
2009-05-21 14:59:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), count );
|
2019-12-05 15:41:21 +00:00
|
|
|
aList.emplace_back( _( "Pads" ), txt, DARKGREEN );
|
2009-05-21 14:59:54 +00:00
|
|
|
|
2009-06-05 15:57:41 +00:00
|
|
|
count = 0;
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2019-05-31 02:30:28 +00:00
|
|
|
for( auto track : board->Tracks() )
|
2009-05-21 14:59:54 +00:00
|
|
|
{
|
2014-04-25 06:00:04 +00:00
|
|
|
if( track->Type() == PCB_VIA_T )
|
2011-10-01 19:24:27 +00:00
|
|
|
{
|
2014-04-25 06:00:04 +00:00
|
|
|
if( track->GetNetCode() == GetNet() )
|
2009-05-21 14:59:54 +00:00
|
|
|
count++;
|
2011-10-01 19:24:27 +00:00
|
|
|
}
|
|
|
|
|
2014-04-25 06:00:04 +00:00
|
|
|
if( track->Type() == PCB_TRACE_T )
|
2011-10-01 19:24:27 +00:00
|
|
|
{
|
2014-04-25 06:00:04 +00:00
|
|
|
if( track->GetNetCode() == GetNet() )
|
|
|
|
lengthnet += track->GetLength();
|
2011-10-01 19:24:27 +00:00
|
|
|
}
|
2009-05-21 14:59:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), count );
|
2019-12-05 15:41:21 +00:00
|
|
|
aList.emplace_back( _( "Vias" ), txt, BLUE );
|
2009-05-21 14:59:54 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
// Displays the full net length (tracks on pcb + internal ICs connections ):
|
2018-04-10 10:52:12 +00:00
|
|
|
txt = MessageTextFromValue( aUnits, lengthnet + lengthPadToDie );
|
2019-12-05 15:41:21 +00:00
|
|
|
aList.emplace_back( _( "Net Length" ), txt, RED );
|
2011-06-30 06:02:07 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
// Displays the net length of tracks only:
|
2018-04-10 10:52:12 +00:00
|
|
|
txt = MessageTextFromValue( aUnits, lengthnet );
|
2019-12-05 15:41:21 +00:00
|
|
|
aList.emplace_back( _( "On Board" ), txt, RED );
|
2011-06-30 06:02:07 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
// Displays the net length of internal ICs connections (wires inside ICs):
|
2018-04-10 10:52:12 +00:00
|
|
|
txt = MessageTextFromValue( aUnits, lengthPadToDie, true );
|
2019-12-05 15:41:21 +00:00
|
|
|
aList.emplace_back( _( "In Package" ), txt, RED );
|
2017-04-25 09:06:24 +00:00
|
|
|
}
|