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
|
|
|
|
* Copyright (C) 1992-2017 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file sch_junction.cpp
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
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>
|
2018-01-28 18:12:26 +00:00
|
|
|
#include <plotter.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_junction.h>
|
2018-01-30 08:56:43 +00:00
|
|
|
#include <netlist_object.h>
|
2019-05-08 02:50:10 +00:00
|
|
|
#include <sch_connection.h>
|
2020-03-06 03:00:30 +00:00
|
|
|
#include <settings/color_settings.h>
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2020-03-13 09:53:44 +00:00
|
|
|
int SCH_JUNCTION::g_SymbolSize = Mils2iu( 40 ); // Default diameter of the junction symbol
|
2013-05-19 19:35:49 +00:00
|
|
|
|
2018-09-09 23:04:42 +00:00
|
|
|
|
2020-04-04 20:32:14 +00:00
|
|
|
int SCH_JUNCTION::GetSymbolSize()
|
2018-09-09 23:04:42 +00:00
|
|
|
{
|
2020-04-04 20:32:14 +00:00
|
|
|
return g_SymbolSize;
|
2018-09-09 23:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-23 01:33:57 +00:00
|
|
|
SCH_JUNCTION::SCH_JUNCTION( const wxPoint& pos, SCH_LAYER_ID aLayer ) :
|
2010-12-21 15:13:09 +00:00
|
|
|
SCH_ITEM( NULL, SCH_JUNCTION_T )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-04-23 01:33:57 +00:00
|
|
|
m_pos = pos;
|
|
|
|
m_Layer = aLayer;
|
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 )
|
|
|
|
{
|
|
|
|
wxCHECK_RET( (aItem != NULL) && (aItem->Type() == SCH_JUNCTION_T),
|
|
|
|
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 );
|
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-04-23 01:33:57 +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
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT SCH_JUNCTION::GetBoundingBox() const
|
2008-04-15 19:38:19 +00:00
|
|
|
{
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect;
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2011-12-07 20:19:29 +00:00
|
|
|
rect.SetOrigin( m_pos );
|
2020-04-14 12:25:00 +00:00
|
|
|
rect.Inflate( ( GetPenWidth() + GetSymbolSize() ) / 2 );
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2009-11-28 09:24:37 +00:00
|
|
|
return rect;
|
2010-10-04 12:58:07 +00:00
|
|
|
}
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
void SCH_JUNCTION::Print( RENDER_SETTINGS* aSettings, const wxPoint& aOffset )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2020-04-23 01:33:57 +00:00
|
|
|
wxDC* DC = aSettings->GetPrintDC();
|
|
|
|
COLOR4D color = aSettings->GetLayerColor( GetLayer() );
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
GRFilledCircle( nullptr, DC, m_pos.x + aOffset.x, m_pos.y + aOffset.y, GetSymbolSize() / 2,
|
2020-04-04 20:32:14 +00:00
|
|
|
0, color, color );
|
2009-01-31 18:08:47 +00:00
|
|
|
}
|
|
|
|
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_JUNCTION::MirrorX( int aXaxis_position )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
MIRROR( m_pos.y, aXaxis_position );
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_JUNCTION::MirrorY( int aYaxis_position )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
MIRROR( m_pos.x, aYaxis_position );
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_JUNCTION::Rotate( wxPoint aPosition )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2012-03-15 14:31:16 +00:00
|
|
|
RotatePoint( &m_pos, aPosition, 900 );
|
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 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-13 16:27:30 +00:00
|
|
|
void SCH_JUNCTION::GetConnectionPoints( std::vector< wxPoint >& aPoints ) const
|
2010-11-03 14:13:15 +00:00
|
|
|
{
|
2011-12-07 20:19:29 +00:00
|
|
|
aPoints.push_back( m_pos );
|
2010-11-03 14:13:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-25 19:09:57 +00:00
|
|
|
void SCH_JUNCTION::GetNetListItem( NETLIST_OBJECT_LIST& aNetListItems,
|
2011-10-11 13:38:13 +00:00
|
|
|
SCH_SHEET_PATH* aSheetPath )
|
|
|
|
{
|
|
|
|
NETLIST_OBJECT* item = new NETLIST_OBJECT();
|
|
|
|
|
2020-01-18 20:51:28 +00:00
|
|
|
item->m_SheetPath = *aSheetPath;
|
2013-09-29 18:24:38 +00:00
|
|
|
item->m_SheetPathInclude = *aSheetPath;
|
2020-01-18 20:51:28 +00:00
|
|
|
item->m_Comp = (SCH_ITEM*) this;
|
|
|
|
item->m_Type = NETLIST_ITEM::JUNCTION;
|
2011-12-07 20:19:29 +00:00
|
|
|
item->m_Start = item->m_End = m_pos;
|
2011-10-11 13:38:13 +00:00
|
|
|
|
|
|
|
aNetListItems.push_back( item );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
2011-12-07 20:19:29 +00:00
|
|
|
NestedSpace( nestLevel, os ) << '<' << s.Lower().mb_str() << m_pos << "/>\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
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool SCH_JUNCTION::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
2010-12-10 19:47:44 +00:00
|
|
|
{
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect = GetBoundingBox();
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
return rect.Contains( aPosition );
|
2010-12-10 19:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool SCH_JUNCTION::HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const
|
2010-12-10 19:47:44 +00:00
|
|
|
{
|
2012-03-15 14:31:16 +00:00
|
|
|
if( m_Flags & STRUCT_DELETED || m_Flags & SKIP_STRUCT )
|
|
|
|
return false;
|
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect = aRect;
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
|
|
|
if( aContained )
|
2010-12-20 17:44:25 +00:00
|
|
|
return rect.Contains( GetBoundingBox() );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
return rect.Intersects( GetBoundingBox() );
|
|
|
|
}
|
2008-04-22 16:38:23 +00:00
|
|
|
|
|
|
|
|
2010-12-21 15:13:09 +00:00
|
|
|
bool SCH_JUNCTION::doIsConnected( const wxPoint& 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
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_JUNCTION::Plot( PLOTTER* aPlotter )
|
2011-06-17 13:24:22 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
aPlotter->SetColor( aPlotter->RenderSettings()->GetLayerColor( GetLayer() ) );
|
2020-04-04 20:32:14 +00:00
|
|
|
aPlotter->Circle( m_pos, GetSymbolSize(), 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
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF SCH_JUNCTION::GetMenuImage() const
|
|
|
|
{
|
|
|
|
return add_junction_xpm;
|
|
|
|
}
|
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();
|
|
|
|
|
|
|
|
auto junction = static_cast<const SCH_JUNCTION*>( &aItem );
|
|
|
|
|
|
|
|
if( GetPosition().x != junction->GetPosition().x )
|
|
|
|
return GetPosition().x < junction->GetPosition().x;
|
|
|
|
|
|
|
|
return GetPosition().y < junction->GetPosition().y;
|
|
|
|
|
|
|
|
}
|
|
|
|
|