2011-10-11 13:38:13 +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) 2009 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2024-03-09 13:50:26 +00:00
|
|
|
* Copyright (C) 1992-2024 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-11 13:38:13 +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>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <trigo.h>
|
2020-10-24 14:45:37 +00:00
|
|
|
#include <common.h>
|
2021-08-18 20:38:14 +00:00
|
|
|
#include <plotters/plotter.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-11-10 18:07:35 +00:00
|
|
|
#include <geometry/shape_rect.h>
|
2020-06-24 17:35:33 +00:00
|
|
|
#include <sch_painter.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_junction.h>
|
2023-04-24 10:25:10 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2019-05-08 02:50:10 +00:00
|
|
|
#include <sch_connection.h>
|
2020-05-20 03:34:55 +00:00
|
|
|
#include <schematic.h>
|
2020-03-06 03:00:30 +00:00
|
|
|
#include <settings/color_settings.h>
|
2021-11-24 23:58:52 +00:00
|
|
|
#include <connection_graph.h>
|
2023-04-24 10:25:10 +00:00
|
|
|
#include <string_utils.h>
|
2021-11-24 23:58:52 +00:00
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
SCH_JUNCTION::SCH_JUNCTION( const VECTOR2I& aPosition, int aDiameter, SCH_LAYER_ID aLayer ) :
|
2021-07-16 20:13:26 +00:00
|
|
|
SCH_ITEM( nullptr, SCH_JUNCTION_T )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-06-24 17:35:33 +00:00
|
|
|
m_pos = aPosition;
|
|
|
|
m_color = COLOR4D::UNSPECIFIED;
|
|
|
|
m_diameter = aDiameter;
|
2020-11-14 14:29:11 +00:00
|
|
|
m_layer = aLayer;
|
2021-11-24 23:58:52 +00:00
|
|
|
|
2022-09-16 23:42:20 +00:00
|
|
|
m_lastResolvedDiameter = KiROUND( schIUScale.MilsToIU( DEFAULT_WIRE_WIDTH_MILS ) * 1.7 );
|
2021-11-24 23:58:52 +00:00
|
|
|
m_lastResolvedColor = COLOR4D::UNSPECIFIED;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* SCH_JUNCTION::Clone() const
|
2010-12-21 15:13:09 +00:00
|
|
|
{
|
|
|
|
return new SCH_JUNCTION( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-19 20:32:21 +00:00
|
|
|
void SCH_JUNCTION::SwapData( SCH_ITEM* aItem )
|
|
|
|
{
|
2023-07-08 17:37:47 +00:00
|
|
|
SCH_ITEM::SwapFlags( aItem );
|
|
|
|
|
2021-07-16 20:13:26 +00:00
|
|
|
wxCHECK_RET( ( aItem != nullptr ) && ( aItem->Type() == SCH_JUNCTION_T ),
|
2011-10-19 20:32:21 +00:00
|
|
|
wxT( "Cannot swap junction data with invalid item." ) );
|
|
|
|
|
|
|
|
SCH_JUNCTION* item = (SCH_JUNCTION*) aItem;
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( m_pos, item->m_pos );
|
2020-06-24 17:35:33 +00:00
|
|
|
std::swap( m_diameter, item->m_diameter );
|
|
|
|
std::swap( m_color, item->m_color );
|
2011-10-19 20:32:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void SCH_JUNCTION::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
2019-07-30 01:57:41 +00:00
|
|
|
aCount = 2;
|
2020-11-14 14:29:11 +00:00
|
|
|
aLayers[0] = m_layer;
|
2019-07-30 01:57:41 +00:00
|
|
|
aLayers[1] = LAYER_SELECTION_SHADOWS;
|
2018-10-21 12:50:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-10 18:07:35 +00:00
|
|
|
SHAPE_CIRCLE SCH_JUNCTION::getEffectiveShape() const
|
2008-04-15 19:38:19 +00:00
|
|
|
{
|
2020-06-24 17:35:33 +00:00
|
|
|
if( m_diameter != 0 )
|
2021-11-24 23:58:52 +00:00
|
|
|
m_lastResolvedDiameter = m_diameter;
|
2020-11-10 18:07:35 +00:00
|
|
|
else if( Schematic() )
|
2021-11-24 23:58:52 +00:00
|
|
|
m_lastResolvedDiameter = Schematic()->Settings().m_JunctionSize;
|
2020-11-10 18:07:35 +00:00
|
|
|
else
|
2022-09-16 23:42:20 +00:00
|
|
|
m_lastResolvedDiameter = schIUScale.MilsToIU( DEFAULT_JUNCTION_DIAM );
|
2020-11-10 18:07:35 +00:00
|
|
|
|
2022-03-16 10:54:30 +00:00
|
|
|
if( m_lastResolvedDiameter != 1 ) // Diameter 1 means user doesn't want to draw junctions
|
2020-11-10 18:07:35 +00:00
|
|
|
{
|
2022-03-16 10:54:30 +00:00
|
|
|
// If we know what we're connected to, then enforce a minimum size of 170% of the
|
|
|
|
// connected wire width:
|
2021-11-24 23:58:52 +00:00
|
|
|
if( !IsConnectivityDirty() )
|
|
|
|
{
|
2022-08-14 11:03:18 +00:00
|
|
|
m_lastResolvedDiameter = std::max<int>( m_lastResolvedDiameter,
|
|
|
|
GetEffectiveNetClass()->GetWireWidth() * 1.7 );
|
2021-11-24 23:58:52 +00:00
|
|
|
}
|
2020-11-10 18:07:35 +00:00
|
|
|
}
|
|
|
|
|
2021-11-24 23:58:52 +00:00
|
|
|
return SHAPE_CIRCLE( m_pos, std::max( m_lastResolvedDiameter / 2, 1 ) );
|
2020-11-10 18:07:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
const BOX2I SCH_JUNCTION::GetBoundingBox() const
|
2020-11-10 18:07:35 +00:00
|
|
|
{
|
2022-08-31 09:15:42 +00:00
|
|
|
BOX2I bbox( m_pos );
|
|
|
|
bbox.Inflate( getEffectiveShape().GetRadius() );
|
2020-06-24 17:35:33 +00:00
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
return bbox;
|
2010-10-04 12:58:07 +00:00
|
|
|
}
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2024-04-05 21:35:32 +00:00
|
|
|
void SCH_JUNCTION::Print( const SCH_RENDER_SETTINGS* aSettings, int aUnit, int aBodyStyle,
|
|
|
|
const VECTOR2I& aOffset, bool aForceNoFill, bool aDimmed )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2020-04-23 01:33:57 +00:00
|
|
|
wxDC* DC = aSettings->GetPrintDC();
|
2020-11-03 13:39:31 +00:00
|
|
|
COLOR4D color = GetJunctionColor();
|
2020-07-27 20:46:22 +00:00
|
|
|
|
|
|
|
if( color == COLOR4D::UNSPECIFIED )
|
|
|
|
color = aSettings->GetLayerColor( GetLayer() );
|
|
|
|
|
2020-11-10 18:07:35 +00:00
|
|
|
SHAPE_CIRCLE circle = getEffectiveShape();
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2022-01-28 22:51:34 +00:00
|
|
|
GRFilledCircle( DC, circle.GetCenter() + aOffset, circle.GetRadius(), 0, color, color );
|
2009-01-31 18:08:47 +00:00
|
|
|
}
|
|
|
|
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2021-02-16 20:45:25 +00:00
|
|
|
void SCH_JUNCTION::MirrorVertically( int aCenter )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2021-02-16 20:45:25 +00:00
|
|
|
MIRROR( m_pos.y, aCenter );
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-02-16 20:45:25 +00:00
|
|
|
void SCH_JUNCTION::MirrorHorizontally( int aCenter )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2021-02-16 20:45:25 +00:00
|
|
|
MIRROR( m_pos.x, aCenter );
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-04 22:51:22 +00:00
|
|
|
void SCH_JUNCTION::Rotate( const VECTOR2I& aCenter, bool aRotateCCW )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2024-05-12 19:42:45 +00:00
|
|
|
RotatePoint( m_pos, aCenter, aRotateCCW ? ANGLE_90 : ANGLE_270 );
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-03 14:13:15 +00:00
|
|
|
void SCH_JUNCTION::GetEndPoints( std::vector <DANGLING_END_ITEM>& aItemList )
|
|
|
|
{
|
2011-12-07 20:19:29 +00:00
|
|
|
DANGLING_END_ITEM item( JUNCTION_END, this, m_pos );
|
2010-11-03 14:13:15 +00:00
|
|
|
aItemList.push_back( item );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
std::vector<VECTOR2I> SCH_JUNCTION::GetConnectionPoints() const
|
2010-11-03 14:13:15 +00:00
|
|
|
{
|
2020-09-08 13:27:13 +00:00
|
|
|
return { m_pos };
|
2010-11-03 14:13:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-22 16:38:23 +00:00
|
|
|
#if defined(DEBUG)
|
2011-12-14 17:25:42 +00:00
|
|
|
void SCH_JUNCTION::Show( int nestLevel, std::ostream& os ) const
|
2008-04-22 16:38:23 +00:00
|
|
|
{
|
|
|
|
// XML output:
|
|
|
|
wxString s = GetClass();
|
|
|
|
|
2024-04-13 03:05:00 +00:00
|
|
|
NestedSpace( nestLevel, os ) << '<' << s.Lower().mb_str() << m_pos << ", " << m_diameter
|
|
|
|
<< "/>\n";
|
2008-04-22 16:38:23 +00:00
|
|
|
}
|
2010-12-10 19:47:44 +00:00
|
|
|
#endif
|
2008-04-22 16:38:23 +00:00
|
|
|
|
2009-07-01 16:07:18 +00:00
|
|
|
|
2022-03-16 13:43:19 +00:00
|
|
|
void SCH_JUNCTION::SetDiameter( int aDiameter )
|
|
|
|
{
|
|
|
|
m_diameter = aDiameter;
|
|
|
|
m_lastResolvedDiameter = aDiameter;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-03 13:39:31 +00:00
|
|
|
COLOR4D SCH_JUNCTION::GetJunctionColor() const
|
2020-07-27 20:46:22 +00:00
|
|
|
{
|
2020-08-18 17:01:19 +00:00
|
|
|
if( m_color != COLOR4D::UNSPECIFIED )
|
2021-11-24 23:58:52 +00:00
|
|
|
m_lastResolvedColor = m_color;
|
|
|
|
else if( !IsConnectivityDirty() )
|
2022-08-14 11:03:18 +00:00
|
|
|
m_lastResolvedColor = GetEffectiveNetClass()->GetSchematicColor();
|
2020-07-27 20:46:22 +00:00
|
|
|
|
2021-11-24 23:58:52 +00:00
|
|
|
return m_lastResolvedColor;
|
2020-07-27 20:46:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-16 13:43:19 +00:00
|
|
|
void SCH_JUNCTION::SetColor( const COLOR4D& aColor )
|
|
|
|
{
|
|
|
|
m_color = aColor;
|
|
|
|
m_lastResolvedColor = aColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-31 10:48:45 +00:00
|
|
|
int SCH_JUNCTION::GetEffectiveDiameter() const
|
2020-07-30 19:03:38 +00:00
|
|
|
{
|
2020-11-10 18:07:35 +00:00
|
|
|
return getEffectiveShape().GetRadius() * 2;
|
2020-07-30 19:03:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool SCH_JUNCTION::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
2010-12-10 19:47:44 +00:00
|
|
|
{
|
2021-03-18 18:31:16 +00:00
|
|
|
if( aAccuracy >= 0 )
|
|
|
|
return getEffectiveShape().Collide( SEG( aPosition, aPosition ), aAccuracy );
|
|
|
|
else
|
|
|
|
return aPosition == m_pos;
|
2010-12-10 19:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-31 09:33:46 +00:00
|
|
|
bool SCH_JUNCTION::HitTest( const BOX2I& aRect, bool aContained, int aAccuracy ) const
|
2010-12-10 19:47:44 +00:00
|
|
|
{
|
2020-11-14 18:11:28 +00:00
|
|
|
if( m_flags & STRUCT_DELETED || m_flags & SKIP_STRUCT )
|
2012-03-15 14:31:16 +00:00
|
|
|
return false;
|
|
|
|
|
2020-11-10 18:07:35 +00:00
|
|
|
if( aContained )
|
|
|
|
{
|
2022-08-31 09:33:46 +00:00
|
|
|
BOX2I selRect( aRect );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2022-03-16 10:54:30 +00:00
|
|
|
return selRect.Inflate( aAccuracy ).Contains( GetBoundingBox() );
|
2020-11-10 18:07:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SHAPE_CIRCLE junction = getEffectiveShape();
|
|
|
|
SHAPE_RECT selRect( aRect.GetPosition(), aRect.GetWidth(), aRect.GetHeight() );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2020-11-10 18:07:35 +00:00
|
|
|
return selRect.Collide( &junction, aAccuracy );
|
|
|
|
}
|
2010-12-10 19:47:44 +00:00
|
|
|
}
|
2008-04-22 16:38:23 +00:00
|
|
|
|
|
|
|
|
2024-03-09 13:50:26 +00:00
|
|
|
bool SCH_JUNCTION::HasConnectivityChanges( const SCH_ITEM* aItem,
|
|
|
|
const SCH_SHEET_PATH* aInstance ) const
|
|
|
|
{
|
|
|
|
// Do not compare to ourself.
|
|
|
|
if( aItem == this )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const SCH_JUNCTION* junction = dynamic_cast<const SCH_JUNCTION*>( aItem );
|
|
|
|
|
|
|
|
// Don't compare against a different SCH_ITEM.
|
|
|
|
wxCHECK( junction, false );
|
|
|
|
|
|
|
|
return GetPosition() != junction->GetPosition();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool SCH_JUNCTION::doIsConnected( const VECTOR2I& aPosition ) const
|
2010-12-13 15:59:00 +00:00
|
|
|
{
|
2011-12-07 20:19:29 +00:00
|
|
|
return m_pos == aPosition;
|
2010-12-13 15:59:00 +00:00
|
|
|
}
|
2011-06-17 13:24:22 +00:00
|
|
|
|
|
|
|
|
2024-04-05 21:35:32 +00:00
|
|
|
void SCH_JUNCTION::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;
|
|
|
|
|
2022-03-16 10:54:30 +00:00
|
|
|
RENDER_SETTINGS* settings = aPlotter->RenderSettings();
|
|
|
|
COLOR4D color = GetJunctionColor();
|
2020-06-24 17:35:33 +00:00
|
|
|
|
2020-07-27 20:46:22 +00:00
|
|
|
if( color == COLOR4D::UNSPECIFIED )
|
|
|
|
color = settings->GetLayerColor( GetLayer() );
|
|
|
|
|
|
|
|
aPlotter->SetColor( color );
|
|
|
|
|
2021-07-18 23:08:54 +00:00
|
|
|
aPlotter->Circle( m_pos, GetEffectiveDiameter(), FILL_T::FILLED_SHAPE );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
2017-02-20 12:20:39 +00:00
|
|
|
|
2017-11-18 13:10:32 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS SCH_JUNCTION::GetMenuImage() const
|
2017-02-20 12:20:39 +00:00
|
|
|
{
|
2021-03-08 02:59:07 +00:00
|
|
|
return BITMAPS::add_junction;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
2020-05-08 20:01:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool SCH_JUNCTION::operator <( const SCH_ITEM& aItem ) const
|
|
|
|
{
|
|
|
|
if( Type() != aItem.Type() )
|
|
|
|
return Type() < aItem.Type();
|
|
|
|
|
|
|
|
if( GetLayer() != aItem.GetLayer() )
|
|
|
|
return GetLayer() < aItem.GetLayer();
|
|
|
|
|
2022-03-16 10:54:30 +00:00
|
|
|
const SCH_JUNCTION* junction = static_cast<const SCH_JUNCTION*>( &aItem );
|
2020-05-08 20:01:14 +00:00
|
|
|
|
|
|
|
if( GetPosition().x != junction->GetPosition().x )
|
|
|
|
return GetPosition().x < junction->GetPosition().x;
|
|
|
|
|
2020-06-24 17:35:33 +00:00
|
|
|
if( GetPosition().y != junction->GetPosition().y )
|
|
|
|
return GetPosition().y < junction->GetPosition().y;
|
|
|
|
|
|
|
|
if( GetDiameter() != junction->GetDiameter() )
|
|
|
|
return GetDiameter() < junction->GetDiameter();
|
2020-05-08 20:01:14 +00:00
|
|
|
|
2020-06-24 17:35:33 +00:00
|
|
|
return GetColor() < junction->GetColor();
|
2020-05-08 20:01:14 +00:00
|
|
|
}
|
|
|
|
|
2023-04-24 10:25:10 +00:00
|
|
|
|
|
|
|
void SCH_JUNCTION::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList )
|
|
|
|
{
|
|
|
|
aList.emplace_back( _( "Junction" ), wxEmptyString );
|
|
|
|
|
|
|
|
aList.emplace_back( _( "Size" ), aFrame->MessageTextFromValue( GetEffectiveDiameter() ) );
|
|
|
|
|
|
|
|
SCH_CONNECTION* conn = nullptr;
|
|
|
|
|
|
|
|
if( !IsConnectivityDirty() && dynamic_cast<SCH_EDIT_FRAME*>( aFrame ) )
|
|
|
|
conn = Connection();
|
|
|
|
|
|
|
|
if( conn )
|
|
|
|
{
|
|
|
|
conn->AppendInfoToMsgPanel( aList );
|
|
|
|
|
|
|
|
if( !conn->IsBus() )
|
|
|
|
{
|
|
|
|
aList.emplace_back( _( "Resolved Netclass" ),
|
|
|
|
UnescapeString( GetEffectiveNetClass()->GetName() ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-21 01:57:20 +00:00
|
|
|
|
2023-09-14 21:39:42 +00:00
|
|
|
bool SCH_JUNCTION::operator==( const SCH_ITEM& aOther ) const
|
|
|
|
{
|
|
|
|
if( Type() != aOther.Type() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const SCH_JUNCTION& other = static_cast<const SCH_JUNCTION&>( aOther );
|
|
|
|
|
|
|
|
if( m_pos != other.m_pos )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( m_diameter != other.m_diameter )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( m_color != other.m_color )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
double SCH_JUNCTION::Similarity( const SCH_ITEM& aOther ) const
|
|
|
|
{
|
|
|
|
if( m_Uuid == aOther.m_Uuid )
|
|
|
|
return 1.0;
|
|
|
|
|
|
|
|
if( aOther.Type() != Type() )
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
const SCH_JUNCTION& other = static_cast<const SCH_JUNCTION&>( aOther );
|
|
|
|
|
|
|
|
double similarity = 1.0;
|
|
|
|
|
|
|
|
if( m_pos != other.m_pos )
|
|
|
|
similarity *= 0.9;
|
|
|
|
|
|
|
|
if( m_diameter != other.m_diameter )
|
|
|
|
similarity *= 0.9;
|
|
|
|
|
|
|
|
if( m_color != other.m_color )
|
|
|
|
similarity *= 0.9;
|
|
|
|
|
|
|
|
return similarity;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-06-21 01:57:20 +00:00
|
|
|
static struct SCH_JUNCTION_DESC
|
|
|
|
{
|
|
|
|
SCH_JUNCTION_DESC()
|
|
|
|
{
|
|
|
|
PROPERTY_MANAGER& propMgr = PROPERTY_MANAGER::Instance();
|
|
|
|
REGISTER_TYPE( SCH_JUNCTION );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( SCH_JUNCTION ), TYPE_HASH( SCH_ITEM ) );
|
2023-07-02 02:23:31 +00:00
|
|
|
|
|
|
|
propMgr.AddProperty( new PROPERTY<SCH_JUNCTION, int>( _HKI( "Diameter" ),
|
|
|
|
&SCH_JUNCTION::SetDiameter, &SCH_JUNCTION::GetDiameter,
|
|
|
|
PROPERTY_DISPLAY::PT_SIZE ) );
|
2024-02-06 00:12:09 +00:00
|
|
|
|
|
|
|
propMgr.AddProperty( new PROPERTY<SCH_JUNCTION, COLOR4D>( _HKI( "Color" ),
|
|
|
|
&SCH_JUNCTION::SetColor, &SCH_JUNCTION::GetColor ) );
|
|
|
|
|
2023-06-21 01:57:20 +00:00
|
|
|
}
|
|
|
|
} _SCH_JUNCTION_DESC;
|