2011-12-07 14:08:52 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2017-11-16 11:45:53 +00:00
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2019-04-04 22:49:49 +00:00
|
|
|
* Copyright (C) 2004-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-12-07 14:08:52 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <macros.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <trigo.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <richio.h>
|
2018-01-28 18:12:26 +00:00
|
|
|
#include <plotter.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2012-05-24 06:51:52 +00:00
|
|
|
#include <eeschema_config.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <sch_bus_entry.h>
|
2019-03-11 21:32:05 +00:00
|
|
|
#include <sch_line.h>
|
2019-03-23 18:21:25 +00:00
|
|
|
#include <sch_text.h>
|
2011-02-28 18:36:19 +00:00
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
SCH_BUS_ENTRY_BASE::SCH_BUS_ENTRY_BASE( KICAD_T aType, const wxPoint& pos, char shape ) :
|
|
|
|
SCH_ITEM( NULL, aType )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2011-12-07 14:08:52 +00:00
|
|
|
m_pos = pos;
|
|
|
|
m_size.x = 100;
|
|
|
|
m_size.y = 100;
|
2011-02-28 18:36:19 +00:00
|
|
|
|
|
|
|
if( shape == '/' )
|
2011-12-07 14:08:52 +00:00
|
|
|
m_size.y = -100;
|
2015-06-15 14:01:43 +00:00
|
|
|
|
|
|
|
m_isDanglingStart = m_isDanglingEnd = true;
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
SCH_BUS_WIRE_ENTRY::SCH_BUS_WIRE_ENTRY( const wxPoint& pos, char shape ) :
|
|
|
|
SCH_BUS_ENTRY_BASE( SCH_BUS_WIRE_ENTRY_T, pos, shape )
|
|
|
|
{
|
|
|
|
m_Layer = LAYER_WIRE;
|
2019-03-11 21:32:05 +00:00
|
|
|
m_connected_bus_item = nullptr;
|
2013-04-01 10:35:20 +00:00
|
|
|
}
|
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
SCH_BUS_BUS_ENTRY::SCH_BUS_BUS_ENTRY( const wxPoint& pos, char shape ) :
|
|
|
|
SCH_BUS_ENTRY_BASE( SCH_BUS_BUS_ENTRY_T, pos, shape )
|
|
|
|
{
|
2013-04-06 12:28:02 +00:00
|
|
|
m_Layer = LAYER_BUS;
|
2019-03-11 21:32:05 +00:00
|
|
|
m_connected_bus_items[0] = nullptr;
|
|
|
|
m_connected_bus_items[1] = nullptr;
|
2013-04-01 10:35:20 +00:00
|
|
|
}
|
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
EDA_ITEM* SCH_BUS_WIRE_ENTRY::Clone() const
|
|
|
|
{
|
|
|
|
return new SCH_BUS_WIRE_ENTRY( *this );
|
|
|
|
}
|
2011-02-28 18:36:19 +00:00
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
EDA_ITEM* SCH_BUS_BUS_ENTRY::Clone() const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2013-04-01 10:35:20 +00:00
|
|
|
return new SCH_BUS_BUS_ENTRY( *this );
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-01 01:21:23 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::doIsConnected( const wxPoint& aPosition ) const
|
|
|
|
{
|
|
|
|
return ( m_pos == aPosition || m_End() == aPosition );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
wxPoint SCH_BUS_ENTRY_BASE::m_End() const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2011-12-07 14:08:52 +00:00
|
|
|
return wxPoint( m_pos.x + m_size.x, m_pos.y + m_size.y );
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::SwapData( SCH_ITEM* aItem )
|
2011-10-19 20:32:21 +00:00
|
|
|
{
|
2013-04-01 10:35:20 +00:00
|
|
|
SCH_BUS_ENTRY_BASE* item = dynamic_cast<SCH_BUS_ENTRY_BASE*>( aItem );
|
|
|
|
wxCHECK_RET( item, wxT( "Cannot swap bus entry data with invalid item." ) );
|
2011-10-19 20:32:21 +00:00
|
|
|
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( m_pos, item->m_pos );
|
|
|
|
std::swap( m_size, item->m_size );
|
2011-10-19 20:32:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
|
|
|
aCount = 1;
|
|
|
|
aLayers[0] = Type() == SCH_BUS_BUS_ENTRY_T ? LAYER_BUS : LAYER_WIRE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT SCH_BUS_ENTRY_BASE::GetBoundingBox() const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT box;
|
2011-02-28 18:36:19 +00:00
|
|
|
|
2011-12-07 14:08:52 +00:00
|
|
|
box.SetOrigin( m_pos );
|
2011-02-28 18:36:19 +00:00
|
|
|
box.SetEnd( m_End() );
|
|
|
|
|
|
|
|
box.Normalize();
|
2013-04-01 10:35:20 +00:00
|
|
|
box.Inflate( GetPenSize() / 2 );
|
2011-02-28 18:36:19 +00:00
|
|
|
|
|
|
|
return box;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
int SCH_BUS_WIRE_ENTRY::GetPenSize() const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2013-04-01 10:35:20 +00:00
|
|
|
return GetDefaultLineThickness();
|
|
|
|
}
|
2011-02-28 18:36:19 +00:00
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
int SCH_BUS_BUS_ENTRY::GetPenSize() const
|
|
|
|
{
|
|
|
|
return GetDefaultBusThickness();
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-01 01:21:23 +00:00
|
|
|
void SCH_BUS_WIRE_ENTRY::GetEndPoints( std::vector< DANGLING_END_ITEM >& aItemList )
|
|
|
|
{
|
|
|
|
DANGLING_END_ITEM item( WIRE_ENTRY_END, this, m_pos );
|
|
|
|
aItemList.push_back( item );
|
|
|
|
|
|
|
|
DANGLING_END_ITEM item1( WIRE_ENTRY_END, this, m_End() );
|
|
|
|
aItemList.push_back( item1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SCH_BUS_BUS_ENTRY::GetEndPoints( std::vector< DANGLING_END_ITEM >& aItemList )
|
|
|
|
{
|
|
|
|
DANGLING_END_ITEM item( BUS_ENTRY_END, this, m_pos );
|
|
|
|
aItemList.push_back( item );
|
|
|
|
|
|
|
|
DANGLING_END_ITEM item1( BUS_ENTRY_END, this, m_End() );
|
|
|
|
aItemList.push_back( item1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::Print( wxDC* aDC, const wxPoint& aOffset )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2019-05-31 12:15:25 +00:00
|
|
|
COLOR4D color = GetLayerColor( m_Layer );
|
2011-02-28 18:36:19 +00:00
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
GRLine( nullptr, aDC, m_pos.x + aOffset.x, m_pos.y + aOffset.y, m_End().x + aOffset.x,
|
|
|
|
m_End().y + aOffset.y, GetPenSize(), color );
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::MirrorX( int aXaxis_position )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
MIRROR( m_pos.y, aXaxis_position );
|
|
|
|
m_size.y = -m_size.y;
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::MirrorY( int aYaxis_position )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
MIRROR( m_pos.x, aYaxis_position );
|
|
|
|
m_size.x = -m_size.x;
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::Rotate( wxPoint aPosition )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2012-03-15 14:31:16 +00:00
|
|
|
RotatePoint( &m_pos, aPosition, 900 );
|
2011-12-07 14:08:52 +00:00
|
|
|
RotatePoint( &m_size.x, &m_size.y, 900 );
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-29 18:11:04 +00:00
|
|
|
bool SCH_BUS_WIRE_ENTRY::UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemList )
|
2015-06-10 18:43:46 +00:00
|
|
|
{
|
|
|
|
bool previousStateStart = m_isDanglingStart;
|
|
|
|
bool previousStateEnd = m_isDanglingEnd;
|
|
|
|
|
|
|
|
m_isDanglingStart = m_isDanglingEnd = true;
|
|
|
|
|
|
|
|
// Wires and buses are stored in the list as a pair, start and end. This
|
|
|
|
// variable holds the start position from one iteration so it can be used
|
|
|
|
// when the end position is found.
|
|
|
|
wxPoint seg_start;
|
|
|
|
|
2017-12-15 18:01:19 +00:00
|
|
|
// Store the connection type and state for the start (0) and end (1)
|
|
|
|
bool has_wire[2] = { false };
|
|
|
|
bool has_bus[2] = { false };
|
2015-06-16 13:05:27 +00:00
|
|
|
|
2016-06-29 20:07:55 +00:00
|
|
|
for( DANGLING_END_ITEM& each_item : aItemList )
|
2015-06-10 18:43:46 +00:00
|
|
|
{
|
|
|
|
if( each_item.GetItem() == this )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch( each_item.GetType() )
|
|
|
|
{
|
|
|
|
case WIRE_START_END:
|
|
|
|
case BUS_START_END:
|
|
|
|
seg_start = each_item.GetPosition();
|
|
|
|
break;
|
2015-06-16 13:05:27 +00:00
|
|
|
|
2015-06-10 18:43:46 +00:00
|
|
|
case WIRE_END_END:
|
2015-06-16 13:05:27 +00:00
|
|
|
if( IsPointOnSegment( seg_start, each_item.GetPosition(), m_pos ) )
|
2017-12-15 18:01:19 +00:00
|
|
|
has_wire[0] = true;
|
|
|
|
|
2015-06-16 13:05:27 +00:00
|
|
|
if( IsPointOnSegment( seg_start, each_item.GetPosition(), m_End() ) )
|
2017-12-15 18:01:19 +00:00
|
|
|
has_wire[1] = true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BUS_END_END:
|
|
|
|
if( IsPointOnSegment( seg_start, each_item.GetPosition(), m_pos ) )
|
|
|
|
has_bus[0] = true;
|
|
|
|
|
|
|
|
if( IsPointOnSegment( seg_start, each_item.GetPosition(), m_End() ) )
|
|
|
|
has_bus[1] = true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A bus-wire entry is connected at both ends if it has a bus and a wire on its
|
|
|
|
* ends. Otherwise, we connect only one end (in the case of a wire-wire or bus-bus)
|
|
|
|
*/
|
|
|
|
if( ( has_wire[0] && has_bus[1] ) || ( has_wire[1] && has_bus[0] ) )
|
|
|
|
m_isDanglingEnd = m_isDanglingStart = false;
|
|
|
|
else if( has_wire[0] || has_bus[0] )
|
|
|
|
m_isDanglingStart = false;
|
|
|
|
else if( has_wire[1] || has_bus[1] )
|
|
|
|
m_isDanglingEnd = false;
|
|
|
|
|
|
|
|
return (previousStateStart != m_isDanglingStart) || (previousStateEnd != m_isDanglingEnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-29 18:11:04 +00:00
|
|
|
bool SCH_BUS_BUS_ENTRY::UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemList )
|
2017-12-15 18:01:19 +00:00
|
|
|
{
|
|
|
|
bool previousStateStart = m_isDanglingStart;
|
|
|
|
bool previousStateEnd = m_isDanglingEnd;
|
2015-06-16 13:05:27 +00:00
|
|
|
|
2017-12-15 18:01:19 +00:00
|
|
|
m_isDanglingStart = m_isDanglingEnd = true;
|
|
|
|
|
|
|
|
// Wires and buses are stored in the list as a pair, start and end. This
|
|
|
|
// variable holds the start position from one iteration so it can be used
|
|
|
|
// when the end position is found.
|
|
|
|
wxPoint seg_start;
|
|
|
|
|
|
|
|
for( DANGLING_END_ITEM& each_item : aItemList )
|
|
|
|
{
|
|
|
|
if( each_item.GetItem() == this )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch( each_item.GetType() )
|
|
|
|
{
|
|
|
|
case BUS_START_END:
|
|
|
|
seg_start = each_item.GetPosition();
|
|
|
|
break;
|
2015-06-10 18:43:46 +00:00
|
|
|
case BUS_END_END:
|
|
|
|
if( IsPointOnSegment( seg_start, each_item.GetPosition(), m_pos ) )
|
|
|
|
m_isDanglingStart = false;
|
|
|
|
if( IsPointOnSegment( seg_start, each_item.GetPosition(), m_End() ) )
|
|
|
|
m_isDanglingEnd = false;
|
2015-06-16 13:05:27 +00:00
|
|
|
break;
|
2015-06-10 18:43:46 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (previousStateStart != m_isDanglingStart) || (previousStateEnd != m_isDanglingEnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SCH_BUS_ENTRY_BASE::IsDangling() const
|
|
|
|
{
|
|
|
|
return m_isDanglingStart || m_isDanglingEnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-13 16:27:30 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::GetConnectionPoints( std::vector< wxPoint >& aPoints ) const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2011-12-07 14:08:52 +00:00
|
|
|
aPoints.push_back( m_pos );
|
2011-02-28 18:36:19 +00:00
|
|
|
aPoints.push_back( m_End() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString SCH_BUS_WIRE_ENTRY::GetSelectMenuText( EDA_UNITS_T aUnits ) const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2013-04-06 12:28:02 +00:00
|
|
|
return wxString( _( "Bus to Wire Entry" ) );
|
2013-04-01 10:35:20 +00:00
|
|
|
}
|
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString SCH_BUS_BUS_ENTRY::GetSelectMenuText( EDA_UNITS_T aUnits ) const
|
2013-04-01 10:35:20 +00:00
|
|
|
{
|
2011-03-25 19:16:05 +00:00
|
|
|
return wxString( _( "Bus to Bus Entry" ) );
|
|
|
|
}
|
2011-02-28 18:36:19 +00:00
|
|
|
|
2017-12-01 03:33:22 +00:00
|
|
|
|
|
|
|
BITMAP_DEF SCH_BUS_WIRE_ENTRY::GetMenuImage() const
|
|
|
|
{
|
|
|
|
return add_line2bus_xpm;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BITMAP_DEF SCH_BUS_BUS_ENTRY::GetMenuImage() const
|
2017-02-20 12:20:39 +00:00
|
|
|
{
|
2017-12-01 03:33:22 +00:00
|
|
|
return add_bus2bus_xpm;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2019-04-30 00:46:21 +00:00
|
|
|
// Insure minimum accuracy
|
|
|
|
if( aAccuracy == 0 )
|
2019-05-08 02:51:46 +00:00
|
|
|
aAccuracy = ( GetPenSize() / 2 ) + 4;
|
2019-04-30 00:46:21 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
return TestSegmentHit( aPosition, m_pos, m_End(), aAccuracy );
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect = aRect;
|
2011-02-28 18:36:19 +00:00
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
|
|
|
if( aContained )
|
|
|
|
return rect.Contains( GetBoundingBox() );
|
|
|
|
|
|
|
|
return rect.Intersects( GetBoundingBox() );
|
|
|
|
}
|
2011-06-17 13:24:22 +00:00
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::Plot( PLOTTER* aPlotter )
|
2011-06-17 13:24:22 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->SetCurrentLineWidth( GetPenSize() );
|
2013-04-04 21:35:01 +00:00
|
|
|
aPlotter->SetColor( GetLayerColor( GetLayer() ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->MoveTo( m_pos );
|
|
|
|
aPlotter->FinishTo( m_End() );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
2011-12-18 17:57:05 +00:00
|
|
|
|
2017-11-18 13:10:32 +00:00
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::SetBusEntryShape( char aShape )
|
2011-12-18 17:57:05 +00:00
|
|
|
{
|
|
|
|
switch( aShape )
|
|
|
|
{
|
|
|
|
case '\\':
|
|
|
|
if( m_size.y < 0 )
|
|
|
|
m_size.y = -m_size.y;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '/':
|
|
|
|
if( m_size.y > 0 )
|
|
|
|
m_size.y = -m_size.y;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-01 10:35:20 +00:00
|
|
|
char SCH_BUS_ENTRY_BASE::GetBusEntryShape() const
|
2011-12-18 17:57:05 +00:00
|
|
|
{
|
|
|
|
if( GetSize().y < 0 )
|
2013-04-01 10:35:20 +00:00
|
|
|
return '/';
|
|
|
|
else
|
|
|
|
return '\\';
|
2011-12-18 17:57:05 +00:00
|
|
|
}
|
2019-03-11 21:32:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
void SCH_BUS_ENTRY_BASE::GetMsgPanelInfo( EDA_UNITS_T aUnits, MSG_PANEL_ITEMS& aList )
|
|
|
|
{
|
|
|
|
if( auto conn = Connection( *g_CurrentSheet ) )
|
|
|
|
{
|
|
|
|
#if defined(DEBUG)
|
|
|
|
conn->AppendDebugInfoToMsgPanel( aList );
|
|
|
|
#else
|
|
|
|
conn->AppendInfoToMsgPanel( aList );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SCH_BUS_WIRE_ENTRY::ConnectionPropagatesTo( const EDA_ITEM* aItem ) const
|
|
|
|
{
|
|
|
|
// Don't generate connections between bus entries and buses, since there is
|
|
|
|
// a connectivity change at that point (e.g. A[7..0] to A7)
|
|
|
|
if( ( aItem->Type() == SCH_LINE_T ) &&
|
|
|
|
( static_cast<const SCH_LINE*>( aItem )->GetLayer() == LAYER_BUS ) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:21:25 +00:00
|
|
|
// Don't generate connections between bus entries and bus labels that happen
|
|
|
|
// to land at the same point on the bus wire as this bus entry
|
|
|
|
if( ( aItem->Type() == SCH_LABEL_T ) &&
|
|
|
|
SCH_CONNECTION::IsBusLabel( static_cast<const SCH_LABEL*>( aItem )->GetText() ) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-03-17 19:40:20 +00:00
|
|
|
// Don't generate connections between two bus-wire entries
|
|
|
|
if( aItem->Type() == SCH_BUS_WIRE_ENTRY_T )
|
|
|
|
return false;
|
|
|
|
|
2019-03-11 21:32:05 +00:00
|
|
|
return true;
|
|
|
|
}
|