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
|
2024-03-09 13:50:26 +00:00
|
|
|
* Copyright (C) 2004-2024 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
|
|
|
|
*/
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2020-11-18 01:21:04 +00:00
|
|
|
#include <core/mirror.h>
|
2020-06-24 17:35:33 +00:00
|
|
|
#include <schematic.h>
|
2021-07-17 19:56:18 +00:00
|
|
|
#include <geometry/shape_segment.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_bus_entry.h>
|
2020-05-13 02:00:37 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2020-10-28 02:05:25 +00:00
|
|
|
#include <sch_junction.h>
|
2019-03-11 21:32:05 +00:00
|
|
|
#include <sch_line.h>
|
2021-09-17 13:38:46 +00:00
|
|
|
#include <project/net_settings.h>
|
|
|
|
#include <project/project_file.h>
|
2020-03-06 03:00:30 +00:00
|
|
|
#include <settings/color_settings.h>
|
2020-07-08 18:29:16 +00:00
|
|
|
#include <netclass.h>
|
2020-10-14 03:37:48 +00:00
|
|
|
#include <trigo.h>
|
2021-02-05 15:46:36 +00:00
|
|
|
#include <board_item.h>
|
2021-11-24 13:19:50 +00:00
|
|
|
#include <connection_graph.h>
|
2020-04-14 12:25:00 +00:00
|
|
|
#include "sch_painter.h"
|
2022-09-20 18:41:16 +00:00
|
|
|
#include "plotters/plotter.h"
|
2011-02-28 18:36:19 +00:00
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
SCH_BUS_ENTRY_BASE::SCH_BUS_ENTRY_BASE( KICAD_T aType, const VECTOR2I& pos, bool aFlipY ) :
|
2021-07-16 20:13:26 +00:00
|
|
|
SCH_ITEM( nullptr, aType )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2011-12-07 14:08:52 +00:00
|
|
|
m_pos = pos;
|
2022-09-16 23:42:20 +00:00
|
|
|
m_size.x = schIUScale.MilsToIU( DEFAULT_SCH_ENTRY_SIZE );
|
|
|
|
m_size.y = schIUScale.MilsToIU( DEFAULT_SCH_ENTRY_SIZE );
|
2011-02-28 18:36:19 +00:00
|
|
|
|
2021-07-01 14:40:06 +00:00
|
|
|
m_stroke.SetWidth( 0 );
|
2023-11-25 13:05:45 +00:00
|
|
|
m_stroke.SetLineStyle( LINE_STYLE::DEFAULT );
|
2021-07-01 14:40:06 +00:00
|
|
|
m_stroke.SetColor( COLOR4D::UNSPECIFIED );
|
|
|
|
|
2020-06-30 01:08:33 +00:00
|
|
|
if( aFlipY )
|
2020-01-03 01:39:31 +00:00
|
|
|
m_size.y *= -1;
|
2015-06-15 14:01:43 +00:00
|
|
|
|
|
|
|
m_isDanglingStart = m_isDanglingEnd = true;
|
2021-11-26 18:14:13 +00:00
|
|
|
|
2022-09-16 23:42:20 +00:00
|
|
|
m_lastResolvedWidth = schIUScale.MilsToIU( DEFAULT_WIRE_WIDTH_MILS );
|
2023-11-25 13:05:45 +00:00
|
|
|
m_lastResolvedLineStyle = LINE_STYLE::SOLID;
|
2021-11-26 18:14:13 +00:00
|
|
|
m_lastResolvedColor = COLOR4D::UNSPECIFIED;
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
SCH_BUS_WIRE_ENTRY::SCH_BUS_WIRE_ENTRY( const VECTOR2I& pos, bool aFlipY ) :
|
2020-06-30 01:08:33 +00:00
|
|
|
SCH_BUS_ENTRY_BASE( SCH_BUS_WIRE_ENTRY_T, pos, aFlipY )
|
2013-04-01 10:35:20 +00:00
|
|
|
{
|
2020-11-14 14:29:11 +00:00
|
|
|
m_layer = LAYER_WIRE;
|
2019-03-11 21:32:05 +00:00
|
|
|
m_connected_bus_item = nullptr;
|
2021-11-24 13:19:50 +00:00
|
|
|
|
2022-09-16 23:42:20 +00:00
|
|
|
m_lastResolvedWidth = schIUScale.MilsToIU( DEFAULT_WIRE_WIDTH_MILS );
|
2023-11-25 13:05:45 +00:00
|
|
|
m_lastResolvedLineStyle = LINE_STYLE::SOLID;
|
2021-11-24 13:19:50 +00:00
|
|
|
m_lastResolvedColor = COLOR4D::UNSPECIFIED;
|
2013-04-01 10:35:20 +00:00
|
|
|
}
|
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
SCH_BUS_WIRE_ENTRY::SCH_BUS_WIRE_ENTRY( const VECTOR2I& pos, int aQuadrant ) :
|
2021-06-15 22:21:53 +00:00
|
|
|
SCH_BUS_ENTRY_BASE( SCH_BUS_WIRE_ENTRY_T, pos, false )
|
|
|
|
{
|
|
|
|
switch( aQuadrant )
|
|
|
|
{
|
|
|
|
case 1: m_size.x *= 1; m_size.y *= -1; break;
|
|
|
|
case 2: m_size.x *= 1; m_size.y *= 1; break;
|
|
|
|
case 3: m_size.x *= -1; m_size.y *= 1; break;
|
|
|
|
case 4: m_size.x *= -1; m_size.y *= -1; break;
|
2023-01-17 04:14:38 +00:00
|
|
|
default: wxFAIL_MSG( wxS( "SCH_BUS_WIRE_ENTRY ctor: unexpected quadrant" ) );
|
2021-06-15 22:21:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_layer = LAYER_WIRE;
|
|
|
|
m_connected_bus_item = nullptr;
|
2021-11-24 13:19:50 +00:00
|
|
|
|
2022-09-16 23:42:20 +00:00
|
|
|
m_lastResolvedWidth = schIUScale.MilsToIU( DEFAULT_WIRE_WIDTH_MILS );
|
2023-11-25 13:05:45 +00:00
|
|
|
m_lastResolvedLineStyle = LINE_STYLE::SOLID;
|
2021-11-24 13:19:50 +00:00
|
|
|
m_lastResolvedColor = COLOR4D::UNSPECIFIED;
|
2021-06-15 22:21:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-04 01:00:40 +00:00
|
|
|
SCH_BUS_BUS_ENTRY::SCH_BUS_BUS_ENTRY( const VECTOR2I& pos, bool aFlipY ) :
|
2020-06-30 01:08:33 +00:00
|
|
|
SCH_BUS_ENTRY_BASE( SCH_BUS_BUS_ENTRY_T, pos, aFlipY )
|
2013-04-01 10:35:20 +00:00
|
|
|
{
|
2020-11-14 14:29:11 +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;
|
2021-11-24 13:19:50 +00:00
|
|
|
|
2022-09-16 23:42:20 +00:00
|
|
|
m_lastResolvedWidth = schIUScale.MilsToIU( DEFAULT_WIRE_WIDTH_MILS );
|
2023-11-25 13:05:45 +00:00
|
|
|
m_lastResolvedLineStyle = LINE_STYLE::SOLID;
|
2021-11-24 13:19:50 +00:00
|
|
|
m_lastResolvedColor = COLOR4D::UNSPECIFIED;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::doIsConnected( const VECTOR2I& aPosition ) const
|
2017-12-01 01:21:23 +00:00
|
|
|
{
|
2020-09-08 13:27:13 +00:00
|
|
|
return ( m_pos == aPosition || GetEnd() == aPosition );
|
2017-12-01 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I SCH_BUS_ENTRY_BASE::GetEnd() const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2022-01-01 06:04:08 +00:00
|
|
|
return VECTOR2I( 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
|
|
|
{
|
2023-07-08 17:37:47 +00:00
|
|
|
SCH_ITEM::SwapFlags( aItem );
|
|
|
|
|
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 );
|
2020-06-19 11:48:00 +00:00
|
|
|
std::swap( m_stroke, item->m_stroke );
|
2021-11-24 13:19:50 +00:00
|
|
|
|
|
|
|
std::swap( m_lastResolvedWidth, item->m_lastResolvedWidth );
|
|
|
|
std::swap( m_lastResolvedLineStyle, item->m_lastResolvedLineStyle );
|
|
|
|
std::swap( m_lastResolvedColor, item->m_lastResolvedColor );
|
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
|
|
|
|
{
|
2021-12-06 18:50:00 +00:00
|
|
|
aCount = 3;
|
|
|
|
aLayers[0] = LAYER_DANGLING;
|
|
|
|
aLayers[1] = Type() == SCH_BUS_BUS_ENTRY_T ? LAYER_BUS : LAYER_WIRE;
|
|
|
|
aLayers[2] = LAYER_SELECTION_SHADOWS;
|
2018-10-21 12:50:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
const BOX2I SCH_BUS_ENTRY_BASE::GetBoundingBox() const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2022-08-31 09:15:42 +00:00
|
|
|
BOX2I bbox( m_pos );
|
|
|
|
bbox.SetEnd( GetEnd() );
|
2011-02-28 18:36:19 +00:00
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
bbox.Normalize();
|
|
|
|
bbox.Inflate( ( GetPenWidth() / 2 ) + 1 );
|
2011-02-28 18:36:19 +00:00
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
return bbox;
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-17 19:56:18 +00:00
|
|
|
COLOR4D SCH_BUS_ENTRY_BASE::GetBusEntryColor() const
|
2020-07-08 18:29:16 +00:00
|
|
|
{
|
2021-11-24 13:19:50 +00:00
|
|
|
if( m_stroke.GetColor() != COLOR4D::UNSPECIFIED )
|
|
|
|
m_lastResolvedColor = m_stroke.GetColor();
|
|
|
|
else if( IsConnectable() && !IsConnectivityDirty() )
|
2022-08-14 11:03:18 +00:00
|
|
|
m_lastResolvedColor = GetEffectiveNetClass()->GetSchematicColor();
|
2020-07-08 18:29:16 +00:00
|
|
|
|
2021-11-24 13:19:50 +00:00
|
|
|
return m_lastResolvedColor;
|
2020-07-08 18:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-16 13:43:19 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::SetPenWidth( int aWidth )
|
|
|
|
{
|
|
|
|
m_stroke.SetWidth( aWidth );
|
|
|
|
m_lastResolvedWidth = aWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-02 02:23:31 +00:00
|
|
|
int SCH_BUS_ENTRY_BASE::GetPenWidth() const
|
|
|
|
{
|
|
|
|
return m_lastResolvedWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-16 13:43:19 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::SetBusEntryColor( const COLOR4D& aColor )
|
|
|
|
{
|
|
|
|
m_stroke.SetColor( aColor );
|
|
|
|
m_lastResolvedColor = aColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-11-25 13:05:45 +00:00
|
|
|
LINE_STYLE SCH_BUS_ENTRY_BASE::GetLineStyle() const
|
2020-07-08 18:29:16 +00:00
|
|
|
{
|
2023-11-25 13:05:45 +00:00
|
|
|
if( m_stroke.GetLineStyle() != LINE_STYLE::DEFAULT )
|
|
|
|
m_lastResolvedLineStyle = m_stroke.GetLineStyle();
|
2021-11-24 13:19:50 +00:00
|
|
|
else if( IsConnectable() && !IsConnectivityDirty() )
|
2023-11-25 13:05:45 +00:00
|
|
|
m_lastResolvedLineStyle = (LINE_STYLE) GetEffectiveNetClass()->GetLineStyle();
|
2020-07-08 18:29:16 +00:00
|
|
|
|
2021-11-24 13:19:50 +00:00
|
|
|
return m_lastResolvedLineStyle;
|
2020-07-08 18:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-11-25 13:05:45 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::SetLineStyle( LINE_STYLE aStyle )
|
2022-03-16 13:43:19 +00:00
|
|
|
{
|
2023-11-25 13:05:45 +00:00
|
|
|
m_stroke.SetLineStyle( aStyle );
|
2022-03-16 13:43:19 +00:00
|
|
|
m_lastResolvedLineStyle = aStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
int SCH_BUS_WIRE_ENTRY::GetPenWidth() const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2021-06-13 19:44:13 +00:00
|
|
|
if( m_stroke.GetWidth() > 0 )
|
2021-11-24 13:19:50 +00:00
|
|
|
m_lastResolvedWidth = m_stroke.GetWidth();
|
|
|
|
else if( IsConnectable() && !IsConnectivityDirty() )
|
2022-08-14 11:03:18 +00:00
|
|
|
m_lastResolvedWidth = GetEffectiveNetClass()->GetWireWidth();
|
2020-07-08 18:29:16 +00:00
|
|
|
|
2021-11-24 13:19:50 +00:00
|
|
|
return m_lastResolvedWidth;
|
2013-04-01 10:35:20 +00:00
|
|
|
}
|
2011-02-28 18:36:19 +00:00
|
|
|
|
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
int SCH_BUS_BUS_ENTRY::GetPenWidth() const
|
2013-04-01 10:35:20 +00:00
|
|
|
{
|
2021-06-13 19:44:13 +00:00
|
|
|
if( m_stroke.GetWidth() > 0 )
|
2021-11-24 13:19:50 +00:00
|
|
|
m_lastResolvedWidth = m_stroke.GetWidth();
|
|
|
|
else if( IsConnectable() && !IsConnectivityDirty() )
|
2022-08-14 11:03:18 +00:00
|
|
|
m_lastResolvedWidth = GetEffectiveNetClass()->GetBusWidth();
|
2020-07-08 18:29:16 +00:00
|
|
|
|
2021-11-24 13:19:50 +00:00
|
|
|
return m_lastResolvedWidth;
|
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 );
|
|
|
|
|
2020-09-08 13:27:13 +00:00
|
|
|
DANGLING_END_ITEM item1( WIRE_ENTRY_END, this, GetEnd() );
|
2017-12-01 01:21:23 +00:00
|
|
|
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 );
|
|
|
|
|
2020-09-08 13:27:13 +00:00
|
|
|
DANGLING_END_ITEM item1( BUS_ENTRY_END, this, GetEnd() );
|
2017-12-01 01:21:23 +00:00
|
|
|
aItemList.push_back( item1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-05 21:35:32 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::Print( const SCH_RENDER_SETTINGS* aSettings, int aUnit, int aBodyStyle,
|
|
|
|
const VECTOR2I& aOffset, bool aForceNoFill, bool aDimmed )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
wxDC* DC = aSettings->GetPrintDC();
|
2024-05-12 22:56:59 +00:00
|
|
|
COLOR4D color = ( GetBusEntryColor() == COLOR4D::UNSPECIFIED )
|
|
|
|
? aSettings->GetLayerColor( m_layer )
|
|
|
|
: GetBusEntryColor();
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I start = m_pos + aOffset;
|
|
|
|
VECTOR2I end = GetEnd() + aOffset;
|
2024-05-12 22:56:59 +00:00
|
|
|
int penWidth = ( GetPenWidth() == 0 ) ? aSettings->GetDefaultPenWidth() : GetPenWidth();
|
2011-02-28 18:36:19 +00:00
|
|
|
|
2023-11-25 13:05:45 +00:00
|
|
|
if( GetLineStyle() <= LINE_STYLE::FIRST_TYPE )
|
2021-02-05 15:46:36 +00:00
|
|
|
{
|
2022-01-28 22:51:34 +00:00
|
|
|
GRLine( DC, start.x, start.y, end.x, end.y, penWidth, color );
|
2021-02-05 15:46:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-17 19:56:18 +00:00
|
|
|
SHAPE_SEGMENT segment( start, end );
|
2021-02-05 15:46:36 +00:00
|
|
|
|
2021-07-17 19:56:18 +00:00
|
|
|
STROKE_PARAMS::Stroke( &segment, GetLineStyle(), penWidth, aSettings,
|
2022-01-01 18:08:03 +00:00
|
|
|
[&]( const VECTOR2I& a, const VECTOR2I& b )
|
2021-07-17 19:56:18 +00:00
|
|
|
{
|
2022-01-28 22:51:34 +00:00
|
|
|
GRLine( DC, a.x, a.y, b.x, b.y, penWidth, color );
|
2021-07-17 19:56:18 +00:00
|
|
|
} );
|
2021-02-05 15:46:36 +00:00
|
|
|
}
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-02-16 20:45:25 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::MirrorVertically( int aCenter )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2021-02-16 20:45:25 +00:00
|
|
|
MIRROR( m_pos.y, aCenter );
|
2015-06-26 13:41:56 +00:00
|
|
|
m_size.y = -m_size.y;
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-02-16 20:45:25 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::MirrorHorizontally( int aCenter )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2021-02-16 20:45:25 +00:00
|
|
|
MIRROR( m_pos.x, aCenter );
|
2015-06-26 13:41:56 +00:00
|
|
|
m_size.x = -m_size.x;
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-04 22:51:22 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::Rotate( const VECTOR2I& aCenter, bool aRotateCCW )
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2024-05-12 19:42:45 +00:00
|
|
|
RotatePoint( m_pos, aCenter, aRotateCCW ? ANGLE_90 : ANGLE_270 );
|
|
|
|
RotatePoint( &m_size.x, &m_size.y, aRotateCCW ? ANGLE_90 : ANGLE_270 );
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-12 08:01:45 +00:00
|
|
|
bool SCH_BUS_WIRE_ENTRY::UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemListByType,
|
|
|
|
std::vector<DANGLING_END_ITEM>& aItemListByPos,
|
|
|
|
const SCH_SHEET_PATH* aPath )
|
2015-06-10 18:43:46 +00:00
|
|
|
{
|
|
|
|
bool previousStateStart = m_isDanglingStart;
|
|
|
|
bool previousStateEnd = m_isDanglingEnd;
|
|
|
|
|
|
|
|
m_isDanglingStart = m_isDanglingEnd = true;
|
|
|
|
|
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
|
|
|
|
2024-02-12 08:01:45 +00:00
|
|
|
for( unsigned ii = 0; ii < aItemListByType.size(); ii++ )
|
2015-06-10 18:43:46 +00:00
|
|
|
{
|
2024-02-12 08:01:45 +00:00
|
|
|
DANGLING_END_ITEM& item = aItemListByType[ii];
|
2021-09-24 11:18:54 +00:00
|
|
|
|
|
|
|
if( item.GetItem() == this )
|
2015-06-10 18:43:46 +00:00
|
|
|
continue;
|
|
|
|
|
2021-09-24 11:18:54 +00:00
|
|
|
switch( item.GetType() )
|
2015-06-10 18:43:46 +00:00
|
|
|
{
|
2021-09-24 11:18:54 +00:00
|
|
|
case WIRE_END:
|
|
|
|
if( m_pos == item.GetPosition() )
|
2017-12-15 18:01:19 +00:00
|
|
|
has_wire[0] = true;
|
2021-09-24 11:18:54 +00:00
|
|
|
else if( GetEnd() == item.GetPosition() )
|
2017-12-15 18:01:19 +00:00
|
|
|
has_wire[1] = true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2021-09-24 11:18:54 +00:00
|
|
|
case BUS_END:
|
|
|
|
{
|
|
|
|
// The bus has created 2 DANGLING_END_ITEMs, one per end.
|
2024-02-12 08:01:45 +00:00
|
|
|
DANGLING_END_ITEM& nextItem = aItemListByType[++ii];
|
2019-11-17 18:55:27 +00:00
|
|
|
|
2021-09-24 11:18:54 +00:00
|
|
|
if( IsPointOnSegment( item.GetPosition(), nextItem.GetPosition(), m_pos ) )
|
2017-12-15 18:01:19 +00:00
|
|
|
has_bus[0] = true;
|
2021-09-24 11:18:54 +00:00
|
|
|
else if( IsPointOnSegment( item.GetPosition(), nextItem.GetPosition(), GetEnd() ) )
|
2017-12-15 18:01:19 +00:00
|
|
|
has_bus[1] = true;
|
2021-09-24 11:18:54 +00:00
|
|
|
}
|
2017-12-15 18:01:19 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-17 18:55:27 +00:00
|
|
|
// 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)
|
2017-12-15 18:01:19 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-12 08:01:45 +00:00
|
|
|
bool SCH_BUS_BUS_ENTRY::UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemListByType,
|
|
|
|
std::vector<DANGLING_END_ITEM>& aItemListByPos,
|
|
|
|
const SCH_SHEET_PATH* aPath )
|
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;
|
|
|
|
|
2024-02-12 08:01:45 +00:00
|
|
|
// TODO: filter using get_lower as we only use one item type
|
|
|
|
for( unsigned ii = 0; ii < aItemListByType.size(); ii++ )
|
2017-12-15 18:01:19 +00:00
|
|
|
{
|
2024-02-12 08:01:45 +00:00
|
|
|
DANGLING_END_ITEM& item = aItemListByType[ii];
|
2021-09-24 11:18:54 +00:00
|
|
|
|
|
|
|
if( item.GetItem() == this )
|
2017-12-15 18:01:19 +00:00
|
|
|
continue;
|
|
|
|
|
2021-09-24 11:18:54 +00:00
|
|
|
switch( item.GetType() )
|
2017-12-15 18:01:19 +00:00
|
|
|
{
|
2021-09-24 11:18:54 +00:00
|
|
|
case BUS_END:
|
|
|
|
{
|
|
|
|
// The bus has created 2 DANGLING_END_ITEMs, one per end.
|
2024-02-12 08:01:45 +00:00
|
|
|
DANGLING_END_ITEM& nextItem = aItemListByType[++ii];
|
2021-09-24 11:18:54 +00:00
|
|
|
|
|
|
|
if( IsPointOnSegment( item.GetPosition(), nextItem.GetPosition(), m_pos ) )
|
2015-06-10 18:43:46 +00:00
|
|
|
m_isDanglingStart = false;
|
2021-09-24 11:18:54 +00:00
|
|
|
if( IsPointOnSegment( item.GetPosition(), nextItem.GetPosition(), GetEnd() ) )
|
2015-06-10 18:43:46 +00:00
|
|
|
m_isDanglingEnd = false;
|
2021-09-24 11:18:54 +00:00
|
|
|
}
|
2015-06-16 13:05:27 +00:00
|
|
|
break;
|
2021-09-24 11:18:54 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
std::vector<VECTOR2I> SCH_BUS_ENTRY_BASE::GetConnectionPoints() const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2020-09-08 13:27:13 +00:00
|
|
|
return { m_pos, GetEnd() };
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-03-09 13:50:26 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::HasConnectivityChanges( const SCH_ITEM* aItem,
|
|
|
|
const SCH_SHEET_PATH* aInstance ) const
|
|
|
|
{
|
|
|
|
// Do not compare to ourself.
|
|
|
|
if( aItem == this )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const SCH_BUS_ENTRY_BASE* busEntry = dynamic_cast<const SCH_BUS_ENTRY_BASE*>( aItem );
|
|
|
|
|
|
|
|
// Don't compare against a different SCH_ITEM.
|
|
|
|
wxCHECK( busEntry, false );
|
|
|
|
|
|
|
|
if( GetPosition() != busEntry->GetPosition() )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return GetEnd() != busEntry->GetEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-12 03:27:44 +00:00
|
|
|
wxString SCH_BUS_WIRE_ENTRY::GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) 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
|
|
|
|
2023-01-12 03:27:44 +00:00
|
|
|
wxString SCH_BUS_BUS_ENTRY::GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) 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
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS SCH_BUS_WIRE_ENTRY::GetMenuImage() const
|
2017-12-01 03:33:22 +00:00
|
|
|
{
|
2021-03-08 02:59:07 +00:00
|
|
|
return BITMAPS::add_line2bus;
|
2017-12-01 03:33:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS SCH_BUS_BUS_ENTRY::GetMenuImage() const
|
2017-02-20 12:20:39 +00:00
|
|
|
{
|
2021-03-08 02:59:07 +00:00
|
|
|
return BITMAPS::add_bus2bus;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::HitTest( const VECTOR2I& 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 )
|
2020-04-14 12:25:00 +00:00
|
|
|
aAccuracy = ( GetPenWidth() / 2 ) + 4;
|
2019-04-30 00:46:21 +00:00
|
|
|
|
2020-09-08 13:27:13 +00:00
|
|
|
return TestSegmentHit( aPosition, m_pos, GetEnd(), aAccuracy );
|
2011-02-28 18:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-31 09:33:46 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::HitTest( const BOX2I& aRect, bool aContained, int aAccuracy ) const
|
2011-02-28 18:36:19 +00:00
|
|
|
{
|
2022-08-31 09:33:46 +00:00
|
|
|
BOX2I 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
|
|
|
|
|
|
|
|
2024-04-05 21:35:32 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
|
|
|
|
int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed )
|
2011-06-17 13:24:22 +00:00
|
|
|
{
|
2022-02-10 19:49:25 +00:00
|
|
|
if( aBackground )
|
|
|
|
return;
|
|
|
|
|
2024-04-05 21:35:32 +00:00
|
|
|
SCH_RENDER_SETTINGS* renderSettings = getRenderSettings( aPlotter );
|
2020-06-24 17:35:33 +00:00
|
|
|
|
2024-04-05 21:35:32 +00:00
|
|
|
COLOR4D color = ( GetBusEntryColor() == COLOR4D::UNSPECIFIED )
|
|
|
|
? renderSettings->GetLayerColor( m_layer ) : GetBusEntryColor();
|
2022-02-10 19:49:25 +00:00
|
|
|
|
2024-04-05 21:35:32 +00:00
|
|
|
int penWidth = ( GetPenWidth() == 0 ) ? renderSettings->GetDefaultPenWidth() : GetPenWidth();
|
2020-04-14 12:25:00 +00:00
|
|
|
|
2024-04-05 21:35:32 +00:00
|
|
|
penWidth = std::max( penWidth, renderSettings->GetMinPenWidth() );
|
2020-09-08 19:18:50 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
aPlotter->SetCurrentLineWidth( penWidth );
|
2020-06-24 17:35:33 +00:00
|
|
|
aPlotter->SetColor( color );
|
2022-06-28 18:06:17 +00:00
|
|
|
aPlotter->SetDash( penWidth, GetLineStyle() );
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->MoveTo( m_pos );
|
2020-09-08 13:27:13 +00:00
|
|
|
aPlotter->FinishTo( GetEnd() );
|
2022-02-10 19:49:25 +00:00
|
|
|
|
2023-11-25 13:05:45 +00:00
|
|
|
aPlotter->SetDash( penWidth, LINE_STYLE::SOLID );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
2011-12-18 17:57:05 +00:00
|
|
|
|
2017-11-18 13:10:32 +00:00
|
|
|
|
2021-09-26 23:22:32 +00:00
|
|
|
void SCH_BUS_ENTRY_BASE::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame,
|
|
|
|
std::vector<MSG_PANEL_ITEM>& aList )
|
2019-03-11 21:32:05 +00:00
|
|
|
{
|
2019-07-30 01:57:41 +00:00
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
switch( GetLayer() )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case LAYER_WIRE: msg = _( "Wire" ); break;
|
|
|
|
case LAYER_BUS: msg = _( "Bus" ); break;
|
|
|
|
}
|
|
|
|
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "Bus Entry Type" ), msg );
|
2020-05-13 02:00:37 +00:00
|
|
|
|
2021-11-24 13:19:50 +00:00
|
|
|
SCH_CONNECTION* conn = nullptr;
|
|
|
|
|
|
|
|
if( !IsConnectivityDirty() && dynamic_cast<SCH_EDIT_FRAME*>( aFrame ) )
|
|
|
|
conn = Connection();
|
2020-05-13 02:00:37 +00:00
|
|
|
|
2021-09-17 13:38:46 +00:00
|
|
|
if( conn )
|
|
|
|
{
|
2019-03-11 21:32:05 +00:00
|
|
|
conn->AppendInfoToMsgPanel( aList );
|
2021-09-17 13:38:46 +00:00
|
|
|
|
2021-09-17 20:25:05 +00:00
|
|
|
if( !conn->IsBus() )
|
2022-08-14 11:03:18 +00:00
|
|
|
aList.emplace_back( _( "Resolved Netclass" ), GetEffectiveNetClass()->GetName() );
|
2021-09-17 13:38:46 +00:00
|
|
|
}
|
2019-03-11 21:32:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-28 20:33:23 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::operator <( const SCH_ITEM& aItem ) const
|
|
|
|
{
|
|
|
|
if( Type() != aItem.Type() )
|
|
|
|
return Type() < aItem.Type();
|
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
auto symbol = static_cast<const SCH_BUS_ENTRY_BASE*>( &aItem );
|
2020-01-28 20:33:23 +00:00
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
if( GetLayer() != symbol->GetLayer() )
|
|
|
|
return GetLayer() < symbol->GetLayer();
|
2020-01-28 20:33:23 +00:00
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
if( GetPosition().x != symbol->GetPosition().x )
|
|
|
|
return GetPosition().x < symbol->GetPosition().x;
|
2020-01-28 20:33:23 +00:00
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
if( GetPosition().y != symbol->GetPosition().y )
|
|
|
|
return GetPosition().y < symbol->GetPosition().y;
|
2020-01-28 20:33:23 +00:00
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
if( GetEnd().x != symbol->GetEnd().x )
|
|
|
|
return GetEnd().x < symbol->GetEnd().x;
|
2020-01-28 20:33:23 +00:00
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
return GetEnd().y < symbol->GetEnd().y;
|
2020-01-28 20:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-11 21:32:05 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-10-28 02:05:25 +00:00
|
|
|
// Same for bus junctions
|
|
|
|
if( ( aItem->Type() == SCH_JUNCTION_T ) &&
|
|
|
|
( static_cast<const SCH_JUNCTION*>( aItem )->GetLayer() == LAYER_BUS_JUNCTION ) )
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
2023-06-21 01:57:20 +00:00
|
|
|
|
2023-09-14 21:39:42 +00:00
|
|
|
bool SCH_BUS_ENTRY_BASE::operator==( const SCH_ITEM& aItem ) const
|
|
|
|
{
|
|
|
|
if( Type() != aItem.Type() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const SCH_BUS_ENTRY_BASE* symbol = static_cast<const SCH_BUS_ENTRY_BASE*>( &aItem );
|
|
|
|
|
|
|
|
if( GetLayer() != symbol->GetLayer() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( GetPosition() != symbol->GetPosition() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( GetEnd() != symbol->GetEnd() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
double SCH_BUS_ENTRY_BASE::Similarity( const SCH_ITEM& aItem ) const
|
|
|
|
{
|
|
|
|
if( aItem.Type() != Type() )
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
if( m_Uuid == aItem.m_Uuid )
|
|
|
|
return 1.0;
|
|
|
|
|
|
|
|
const SCH_BUS_ENTRY_BASE& other = static_cast<const SCH_BUS_ENTRY_BASE&>( aItem );
|
|
|
|
|
|
|
|
if( GetLayer() != other.GetLayer() )
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
if( GetPosition() != other.GetPosition() )
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
2023-06-21 01:57:20 +00:00
|
|
|
|
|
|
|
static struct SCH_BUS_ENTRY_DESC
|
|
|
|
{
|
|
|
|
SCH_BUS_ENTRY_DESC()
|
|
|
|
{
|
|
|
|
PROPERTY_MANAGER& propMgr = PROPERTY_MANAGER::Instance();
|
|
|
|
REGISTER_TYPE( SCH_BUS_WIRE_ENTRY );
|
|
|
|
REGISTER_TYPE( SCH_BUS_BUS_ENTRY );
|
|
|
|
REGISTER_TYPE( SCH_BUS_ENTRY_BASE );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( SCH_BUS_ENTRY_BASE ), TYPE_HASH( SCH_ITEM ) );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( SCH_BUS_WIRE_ENTRY ), TYPE_HASH( SCH_BUS_ENTRY_BASE ) );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( SCH_BUS_BUS_ENTRY ), TYPE_HASH( SCH_BUS_ENTRY_BASE ) );
|
2023-07-02 02:23:31 +00:00
|
|
|
|
2023-11-25 13:05:45 +00:00
|
|
|
ENUM_MAP<LINE_STYLE>& plotDashTypeEnum = ENUM_MAP<LINE_STYLE>::Instance();
|
2023-07-02 02:23:31 +00:00
|
|
|
|
|
|
|
if( plotDashTypeEnum.Choices().GetCount() == 0 )
|
|
|
|
{
|
2023-11-25 13:05:45 +00:00
|
|
|
plotDashTypeEnum.Map( LINE_STYLE::DEFAULT, _HKI( "Default" ) )
|
|
|
|
.Map( LINE_STYLE::SOLID, _HKI( "Solid" ) )
|
|
|
|
.Map( LINE_STYLE::DASH, _HKI( "Dashed" ) )
|
|
|
|
.Map( LINE_STYLE::DOT, _HKI( "Dotted" ) )
|
|
|
|
.Map( LINE_STYLE::DASHDOT, _HKI( "Dash-Dot" ) )
|
|
|
|
.Map( LINE_STYLE::DASHDOTDOT, _HKI( "Dash-Dot-Dot" ) );
|
2023-07-02 02:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Maybe SCH_BUS_ENTRY_BASE should inherit from or mix in with SCH_LINE
|
2023-11-25 13:05:45 +00:00
|
|
|
void ( SCH_BUS_ENTRY_BASE::*lineStyleSetter )( LINE_STYLE ) =
|
2023-07-02 02:23:31 +00:00
|
|
|
&SCH_BUS_ENTRY_BASE::SetLineStyle;
|
|
|
|
|
2023-11-25 13:05:45 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY_ENUM<SCH_BUS_ENTRY_BASE, LINE_STYLE>(
|
2023-07-02 02:23:31 +00:00
|
|
|
_HKI( "Line Style" ),
|
|
|
|
lineStyleSetter, &SCH_BUS_ENTRY_BASE::GetLineStyle ) );
|
|
|
|
|
|
|
|
propMgr.AddProperty( new PROPERTY<SCH_BUS_ENTRY_BASE, int>( _HKI( "Line Width" ),
|
|
|
|
&SCH_BUS_ENTRY_BASE::SetPenWidth, &SCH_BUS_ENTRY_BASE::GetPenWidth,
|
|
|
|
PROPERTY_DISPLAY::PT_SIZE ) );
|
|
|
|
|
|
|
|
propMgr.AddProperty( new PROPERTY<SCH_BUS_ENTRY_BASE, COLOR4D>( _HKI( "Color" ),
|
|
|
|
&SCH_BUS_ENTRY_BASE::SetBusEntryColor, &SCH_BUS_ENTRY_BASE::GetBusEntryColor ) );
|
2023-06-21 01:57:20 +00:00
|
|
|
}
|
|
|
|
} _SCH_BUS_ENTRY_DESC;
|