2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file class_board_connected_item.cpp
|
|
|
|
* @brief BOARD_CONNECTED_ITEM class functions.
|
|
|
|
*/
|
2008-11-18 18:13:55 +00:00
|
|
|
|
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) 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 <pcbnew.h>
|
2008-11-18 18:13:55 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_board_item.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
BOARD_CONNECTED_ITEM::BOARD_CONNECTED_ITEM( BOARD_ITEM* aParent, KICAD_T idtype ) :
|
|
|
|
BOARD_ITEM( aParent, idtype )
|
2008-11-18 18:13:55 +00:00
|
|
|
{
|
|
|
|
m_NetCode = 0;
|
|
|
|
m_Subnet = 0;
|
|
|
|
m_ZoneSubnet = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-14 19:50:32 +00:00
|
|
|
BOARD_CONNECTED_ITEM::BOARD_CONNECTED_ITEM( const BOARD_CONNECTED_ITEM& aItem ) :
|
|
|
|
BOARD_ITEM( aItem )
|
2008-11-18 18:13:55 +00:00
|
|
|
{
|
2012-01-14 19:50:32 +00:00
|
|
|
m_NetCode = aItem.m_NetCode;
|
|
|
|
m_Subnet = aItem.m_Subnet;
|
|
|
|
m_ZoneSubnet = aItem.m_ZoneSubnet;
|
2008-11-18 18:13:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetNet
|
|
|
|
* @return int - the net code.
|
|
|
|
*/
|
|
|
|
int BOARD_CONNECTED_ITEM::GetNet() const
|
|
|
|
{
|
|
|
|
return m_NetCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD_CONNECTED_ITEM::SetNet( int aNetCode )
|
|
|
|
{
|
|
|
|
m_NetCode = aNetCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetSubNet
|
|
|
|
* @return int - the sub net code.
|
|
|
|
*/
|
|
|
|
int BOARD_CONNECTED_ITEM::GetSubNet() const
|
|
|
|
{
|
|
|
|
return m_Subnet;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD_CONNECTED_ITEM::SetSubNet( int aSubNetCode )
|
|
|
|
{
|
|
|
|
m_Subnet = aSubNetCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetZoneSubNet
|
|
|
|
* @return int - the sub net code in zone connections.
|
|
|
|
*/
|
|
|
|
int BOARD_CONNECTED_ITEM::GetZoneSubNet() const
|
|
|
|
{
|
|
|
|
return m_ZoneSubnet;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD_CONNECTED_ITEM::SetZoneSubNet( int aSubNetCode )
|
|
|
|
{
|
|
|
|
m_ZoneSubnet = aSubNetCode;
|
|
|
|
}
|
2009-08-17 02:59:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
int BOARD_CONNECTED_ITEM::GetClearance( BOARD_CONNECTED_ITEM* aItem ) const
|
|
|
|
{
|
|
|
|
NETCLASS* myclass = GetNetClass();
|
|
|
|
|
2009-09-19 16:15:40 +00:00
|
|
|
// DO NOT use wxASSERT, because GetClearance is called inside an OnPaint event
|
|
|
|
// and a call to wxASSERT can crash the application.
|
2009-08-17 02:59:38 +00:00
|
|
|
if( myclass )
|
|
|
|
{
|
2010-04-08 11:33:43 +00:00
|
|
|
int myClearance = myclass->GetClearance();
|
2009-09-10 15:22:26 +00:00
|
|
|
// @todo : after GetNetClass() is reliably not returning NULL, remove the
|
2010-04-08 11:33:43 +00:00
|
|
|
// tests for if( myclass )
|
2009-09-10 15:22:26 +00:00
|
|
|
|
|
|
|
if( aItem )
|
|
|
|
{
|
2010-04-08 11:33:43 +00:00
|
|
|
int hisClearance = aItem->GetClearance();
|
2012-08-03 15:43:15 +00:00
|
|
|
return std::max( hisClearance, myClearance );
|
2009-09-10 15:22:26 +00:00
|
|
|
}
|
|
|
|
|
2010-04-08 11:33:43 +00:00
|
|
|
return myClearance;
|
2009-08-17 02:59:38 +00:00
|
|
|
}
|
2009-09-19 16:15:40 +00:00
|
|
|
else
|
2009-09-23 05:53:12 +00:00
|
|
|
{
|
|
|
|
#ifdef __WXDEBUG__
|
2010-10-28 13:02:07 +00:00
|
|
|
wxLogWarning(wxT("BOARD_CONNECTED_ITEM::GetClearance():NULL netclass,type %d"), Type() );
|
2009-09-23 05:53:12 +00:00
|
|
|
#endif
|
|
|
|
}
|
2009-08-17 02:59:38 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
/** return a pointer to the netclass of the zone
|
|
|
|
* if the net is not found (can happen when a netlist is reread,
|
|
|
|
* and the net name is not existant, return the default net class
|
|
|
|
* So should not return a null pointer
|
|
|
|
*/
|
2009-08-17 02:59:38 +00:00
|
|
|
NETCLASS* BOARD_CONNECTED_ITEM::GetNetClass() const
|
|
|
|
{
|
|
|
|
// It is important that this be implemented without any sequential searching.
|
|
|
|
// Simple array lookups should be fine, performance-wise.
|
|
|
|
BOARD* board = GetBoard();
|
2011-12-14 04:29:25 +00:00
|
|
|
|
2009-09-19 16:15:40 +00:00
|
|
|
// DO NOT use wxASSERT, because GetNetClass is called inside an OnPaint event
|
|
|
|
// and a call to wxASSERT can crash the application.
|
2011-12-14 04:29:25 +00:00
|
|
|
|
|
|
|
if( board == NULL ) // Should not occur
|
2009-08-17 02:59:38 +00:00
|
|
|
{
|
2009-09-23 05:53:12 +00:00
|
|
|
#ifdef __WXDEBUG__
|
2011-12-14 04:29:25 +00:00
|
|
|
wxLogWarning( wxT("BOARD_CONNECTED_ITEM::GetNetClass():NULL board,type %d"), Type() );
|
2009-09-23 05:53:12 +00:00
|
|
|
#endif
|
2009-10-21 19:16:25 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
NETCLASS* netclass = NULL;
|
|
|
|
int netcode = GetNet();
|
|
|
|
NETINFO_ITEM* net = board->FindNet( netcode );
|
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
if( net )
|
|
|
|
{
|
|
|
|
netclass = net->GetNetClass();
|
2011-12-14 04:29:25 +00:00
|
|
|
|
2009-09-23 05:53:12 +00:00
|
|
|
#ifdef __WXDEBUG__
|
2009-10-21 19:16:25 +00:00
|
|
|
if( netclass == NULL )
|
2010-07-20 10:30:40 +00:00
|
|
|
{
|
2011-12-14 04:29:25 +00:00
|
|
|
wxLogWarning( wxT("BOARD_CONNECTED_ITEM::GetNetClass():NULL netclass,type %d"), Type() );
|
2010-07-20 10:30:40 +00:00
|
|
|
}
|
2009-09-23 05:53:12 +00:00
|
|
|
#endif
|
2009-08-17 02:59:38 +00:00
|
|
|
}
|
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
if( netclass )
|
|
|
|
return netclass;
|
|
|
|
else
|
|
|
|
return board->m_NetClasses.GetDefault();
|
2009-08-17 02:59:38 +00:00
|
|
|
}
|
2009-09-27 11:00:21 +00:00
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function GetNetClassName
|
2009-09-27 11:00:21 +00:00
|
|
|
* @return the Net Class name of this item
|
|
|
|
*/
|
2011-12-14 04:43:51 +00:00
|
|
|
wxString BOARD_CONNECTED_ITEM::GetNetClassName() const
|
2009-09-27 11:00:21 +00:00
|
|
|
{
|
2011-12-14 04:43:51 +00:00
|
|
|
wxString name;
|
|
|
|
NETCLASS* myclass = GetNetClass();
|
2009-09-27 11:00:21 +00:00
|
|
|
|
|
|
|
if( myclass )
|
|
|
|
name = myclass->GetName();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BOARD* board = GetBoard();
|
|
|
|
name = board->m_NetClasses.GetDefault()->GetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|