2007-08-04 20:05:54 +00:00
|
|
|
/*******************************************/
|
|
|
|
/* class_board.cpp - BOARD class functions */
|
|
|
|
/*******************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "fctsys.h"
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
2007-12-01 05:37:44 +00:00
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
/* This is an odd place for this, but cvpcb won't link if it is
|
|
|
|
in class_board_item.cpp like I first tried it.
|
|
|
|
*/
|
|
|
|
wxPoint BOARD_ITEM::ZeroOffset(0,0);
|
|
|
|
|
|
|
|
|
2008-04-15 19:38:19 +00:00
|
|
|
|
|
|
|
// define SCH_ITEM::Place() (defined and used in eeschema but not for pcbnew)
|
|
|
|
// this is an ugly workaround to a linking problem in debug mode
|
|
|
|
// which needs to define SCH_ITEM::Place() when not really used.
|
|
|
|
#include "sch_item_struct.h"
|
2008-04-17 16:25:29 +00:00
|
|
|
void SCH_ITEM::Place( WinEDA_SchematicFrame* frame, wxDC* DC )
|
2008-04-15 19:38:19 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
/*****************/
|
|
|
|
/* Class BOARD: */
|
|
|
|
/*****************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
/* Constructor */
|
2007-08-04 20:05:54 +00:00
|
|
|
BOARD::BOARD( EDA_BaseStruct* parent, WinEDA_BasePcbFrame* frame ) :
|
2007-08-23 04:28:46 +00:00
|
|
|
BOARD_ITEM( (BOARD_ITEM*) parent, TYPEPCB )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-04 20:05:54 +00:00
|
|
|
m_PcbFrame = frame;
|
|
|
|
m_Status_Pcb = 0; // Mot d'etat: Bit 1 = Chevelu calcule
|
|
|
|
m_NbNets = 0; // Nombre de nets (equipotentielles)
|
|
|
|
m_BoardSettings = &g_DesignSettings;
|
|
|
|
m_NbPads = 0; // nombre total de pads
|
|
|
|
m_NbNodes = 0; // nombre de pads connectes
|
|
|
|
m_NbLinks = 0; // nombre de chevelus (donc aussi nombre
|
2007-08-23 04:28:46 +00:00
|
|
|
// minimal de pistes a tracer
|
2007-08-04 20:05:54 +00:00
|
|
|
m_NbSegmTrack = 0; // nombre d'elements de type segments de piste
|
|
|
|
m_NbSegmZone = 0; // nombre d'elements de type segments de zone
|
|
|
|
m_NbNoconnect = 0; // nombre de chevelus actifs
|
|
|
|
m_NbLoclinks = 0; // nb ratsnest local
|
|
|
|
|
|
|
|
m_Drawings = NULL; // pointeur sur liste drawings
|
|
|
|
m_Modules = NULL; // pointeur sur liste zone modules
|
|
|
|
m_Equipots = NULL; // pointeur liste zone equipot
|
|
|
|
m_Track = NULL; // pointeur relatif zone piste
|
|
|
|
m_Zone = NULL; // pointeur tableau zone zones de cuivre
|
|
|
|
m_Pads = NULL; // pointeur liste d'acces aux pads
|
|
|
|
m_Ratsnest = NULL; // pointeur liste rats
|
|
|
|
m_LocalRatsnest = NULL; // pointeur liste rats local
|
2008-01-31 20:53:44 +00:00
|
|
|
m_CurrentZoneContour = NULL; // This ZONE_CONTAINER handle the zone contour cuurently in progress
|
2007-08-23 04:28:46 +00:00
|
|
|
// de determination des contours de zone
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
|
|
for( int layer=0; layer<NB_COPPER_LAYERS; ++layer )
|
|
|
|
{
|
2008-03-12 16:24:12 +00:00
|
|
|
m_Layer[layer].m_Name = ReturnPcbLayerName( layer, true );
|
2008-03-04 04:22:27 +00:00
|
|
|
m_Layer[layer].m_Type = LT_SIGNAL;
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
|
|
|
|
/***************/
|
|
|
|
/* Destructeur */
|
|
|
|
/***************/
|
2007-08-30 22:20:52 +00:00
|
|
|
BOARD::~BOARD()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-03 15:21:13 +00:00
|
|
|
m_Drawings->DeleteStructList();
|
|
|
|
m_Drawings = 0;
|
|
|
|
|
|
|
|
m_Modules->DeleteStructList();
|
|
|
|
m_Modules = 0;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-03 15:21:13 +00:00
|
|
|
m_Equipots->DeleteStructList();
|
|
|
|
m_Equipots = 0;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-03 15:21:13 +00:00
|
|
|
m_Track->DeleteStructList();
|
|
|
|
m_Track = 0;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-03 15:21:13 +00:00
|
|
|
m_Zone->DeleteStructList();
|
|
|
|
m_Zone = 0;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-03 15:21:13 +00:00
|
|
|
MyFree( m_Pads );
|
|
|
|
m_Pads = 0;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-03 15:21:13 +00:00
|
|
|
MyFree( m_Ratsnest );
|
|
|
|
m_Ratsnest = 0;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-03 15:21:13 +00:00
|
|
|
MyFree( m_LocalRatsnest );
|
|
|
|
m_LocalRatsnest = 0;
|
2007-11-27 22:49:35 +00:00
|
|
|
|
|
|
|
DeleteMARKERs();
|
2008-02-12 01:02:53 +00:00
|
|
|
DeleteZONEOutlines();
|
|
|
|
|
|
|
|
delete m_CurrentZoneContour;
|
|
|
|
m_CurrentZoneContour = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-23 01:50:16 +00:00
|
|
|
wxString BOARD::GetLayerName( int aLayerIndex ) const
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
// copper layer names are stored in the BOARD.
|
2008-05-01 06:21:07 +00:00
|
|
|
if( (unsigned) aLayerIndex < (unsigned) GetCopperLayerCount()
|
|
|
|
|| aLayerIndex == LAST_COPPER_LAYER )
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
|
|
|
// default names were set in BOARD::BOARD() but they may be
|
|
|
|
// over-ridden by BOARD::SetLayerName()
|
|
|
|
return m_Layer[aLayerIndex].m_Name;
|
|
|
|
}
|
|
|
|
|
2008-01-23 01:50:16 +00:00
|
|
|
return ReturnPcbLayerName( aLayerIndex, true );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-01 13:15:41 +00:00
|
|
|
bool BOARD::SetLayerName( int aLayerIndex, const wxString& aLayerName )
|
|
|
|
{
|
2008-05-01 06:21:07 +00:00
|
|
|
if( (unsigned) aLayerIndex < (unsigned) GetCopperLayerCount()
|
|
|
|
|| aLayerIndex==LAST_COPPER_LAYER )
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
|
|
|
if( aLayerName == wxEmptyString || aLayerName.Len() > 20 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// no quote chars in the name allowed
|
|
|
|
if( aLayerName.Find( wxChar('"') ) != wxNOT_FOUND )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// ensure unique-ness of layer names
|
2008-05-01 06:21:07 +00:00
|
|
|
for( int layer=0; layer<GetCopperLayerCount() || layer==LAST_COPPER_LAYER; )
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
|
|
|
if( layer!=aLayerIndex && aLayerName == m_Layer[layer].m_Name )
|
|
|
|
return false;
|
2008-05-01 06:21:07 +00:00
|
|
|
|
|
|
|
if( ++layer == GetCopperLayerCount() )
|
|
|
|
layer = LAST_COPPER_LAYER;
|
2008-03-04 04:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_Layer[aLayerIndex].m_Name = aLayerName;
|
|
|
|
|
|
|
|
// replace any spaces with underscores
|
|
|
|
m_Layer[aLayerIndex].m_Name.Replace( wxT(" "), wxT("_") );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2008-03-01 13:15:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LAYER_T BOARD::GetLayerType( int aLayerIndex ) const
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
if( (unsigned) aLayerIndex < (unsigned) GetCopperLayerCount() )
|
|
|
|
return m_Layer[aLayerIndex].m_Type;
|
2008-03-01 13:15:41 +00:00
|
|
|
return LT_SIGNAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BOARD::SetLayerType( int aLayerIndex, LAYER_T aLayerType )
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
if( (unsigned) aLayerIndex < (unsigned) GetCopperLayerCount() )
|
|
|
|
{
|
|
|
|
m_Layer[aLayerIndex].m_Type = aLayerType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char* LAYER::ShowType( LAYER_T aType )
|
|
|
|
{
|
|
|
|
const char* cp;
|
|
|
|
|
|
|
|
switch( aType )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case LT_SIGNAL: cp = "signal"; break;
|
|
|
|
case LT_POWER: cp = "power"; break;
|
|
|
|
case LT_MIXED: cp = "mixed"; break;
|
|
|
|
case LT_JUMPER: cp = "jumper"; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LAYER_T LAYER::ParseType( const char* aType )
|
|
|
|
{
|
|
|
|
if( strcmp( aType, "signal" ) == 0 )
|
|
|
|
return LT_SIGNAL;
|
|
|
|
else if( strcmp( aType, "power" ) == 0 )
|
|
|
|
return LT_POWER;
|
|
|
|
else if( strcmp( aType, "mixed" ) == 0 )
|
|
|
|
return LT_MIXED;
|
|
|
|
else if( strcmp( aType, "jumper" ) == 0 )
|
|
|
|
return LT_JUMPER;
|
|
|
|
else
|
|
|
|
return LAYER_T(-1);
|
2008-03-01 13:15:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-23 01:50:16 +00:00
|
|
|
int BOARD::GetCopperLayerCount() const
|
|
|
|
{
|
|
|
|
return m_BoardSettings->m_CopperLayerCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
wxPoint& BOARD::GetPosition()
|
|
|
|
{
|
|
|
|
static wxPoint dummy(0,0);
|
|
|
|
return dummy; // a reference
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
void BOARD::UnLink()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-04 20:05:54 +00:00
|
|
|
/* Modification du chainage arriere */
|
|
|
|
if( Pback )
|
|
|
|
{
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Pback->Type() == TYPEPCB )
|
2007-08-04 20:05:54 +00:00
|
|
|
{
|
|
|
|
Pback->Pnext = Pnext;
|
|
|
|
}
|
|
|
|
else /* Le chainage arriere pointe sur la structure "Pere" */
|
|
|
|
{
|
2007-06-05 12:10:51 +00:00
|
|
|
// Pback-> = Pnext;
|
2007-08-04 20:05:54 +00:00
|
|
|
}
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
/* Modification du chainage avant */
|
|
|
|
if( Pnext )
|
|
|
|
Pnext->Pback = Pback;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
Pnext = Pback = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
void BOARD::Add( BOARD_ITEM* aBoardItem, int aControl )
|
|
|
|
{
|
2008-02-12 01:02:53 +00:00
|
|
|
if ( aBoardItem == NULL )
|
|
|
|
{
|
2008-01-12 20:31:56 +00:00
|
|
|
wxFAIL_MSG( wxT("BOARD::Add() param error: aBoardItem NULL") );
|
2008-02-12 01:02:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
switch( aBoardItem->Type() )
|
|
|
|
{
|
|
|
|
// this one uses a vector
|
|
|
|
case TYPEMARKER:
|
2007-12-01 03:42:52 +00:00
|
|
|
aBoardItem->m_Parent = this;
|
2007-11-27 22:49:35 +00:00
|
|
|
m_markers.push_back( (MARKER*) aBoardItem );
|
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2008-01-06 17:19:36 +00:00
|
|
|
// this one uses a vector
|
|
|
|
case TYPEZONE_CONTAINER:
|
|
|
|
aBoardItem->m_Parent = this;
|
|
|
|
m_ZoneDescriptorList.push_back( (ZONE_CONTAINER*) aBoardItem );
|
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
|
|
|
case TYPETRACK:
|
|
|
|
case TYPEVIA:
|
|
|
|
{
|
|
|
|
TRACK* insertAid = ((TRACK*)aBoardItem)->GetBestInsertPoint( this );
|
|
|
|
((TRACK*)aBoardItem)->Insert( this, insertAid );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TYPEMODULE:
|
|
|
|
// this is an insert, not an append which may also be needed.
|
|
|
|
{
|
|
|
|
aBoardItem->Pback = this;
|
|
|
|
BOARD_ITEM* next = m_Modules;
|
|
|
|
aBoardItem->Pnext = next;
|
|
|
|
if( next )
|
|
|
|
next->Pback = aBoardItem;
|
|
|
|
m_Modules = (MODULE*) aBoardItem;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
// other types may use linked list
|
|
|
|
default:
|
|
|
|
wxFAIL_MSG( wxT("BOARD::Add() needs work") );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD::Delete( BOARD_ITEM* aBoardItem )
|
|
|
|
{
|
2008-02-12 01:02:53 +00:00
|
|
|
if ( aBoardItem == NULL ) return;
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
switch( aBoardItem->Type() )
|
|
|
|
{
|
2007-12-29 19:15:58 +00:00
|
|
|
case TYPEMARKER: // this one uses a vector
|
2007-11-27 22:49:35 +00:00
|
|
|
// find the item in the vector, then delete then erase it.
|
|
|
|
for( unsigned i=0; i<m_markers.size(); ++i )
|
|
|
|
{
|
|
|
|
if( m_markers[i] == (MARKER*) aBoardItem )
|
|
|
|
{
|
2007-12-03 05:14:51 +00:00
|
|
|
DeleteMARKER( i );
|
2007-11-27 22:49:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2007-12-29 19:15:58 +00:00
|
|
|
|
|
|
|
case TYPEZONE_CONTAINER: // this one uses a vector
|
|
|
|
// find the item in the vector, then delete then erase it.
|
|
|
|
for( unsigned i=0; i<m_ZoneDescriptorList.size(); ++i )
|
|
|
|
{
|
|
|
|
if( m_ZoneDescriptorList[i] == (ZONE_CONTAINER*) aBoardItem )
|
|
|
|
{
|
|
|
|
delete m_ZoneDescriptorList[i];
|
2008-02-12 01:02:53 +00:00
|
|
|
m_ZoneDescriptorList.erase(m_ZoneDescriptorList.begin() + i);
|
2007-12-29 19:15:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
// other types may use linked list
|
|
|
|
default:
|
|
|
|
wxFAIL_MSG( wxT("BOARD::Delete() needs work") );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-03 05:14:51 +00:00
|
|
|
void BOARD::DeleteMARKER( int aIndex )
|
|
|
|
{
|
|
|
|
if( (unsigned) aIndex < m_markers.size() )
|
|
|
|
{
|
2008-02-12 01:02:53 +00:00
|
|
|
delete m_markers[aIndex];
|
2007-12-03 05:14:51 +00:00
|
|
|
m_markers.erase( m_markers.begin() + aIndex );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
void BOARD::DeleteMARKERs()
|
|
|
|
{
|
|
|
|
// the vector does not know how to delete the MARKER, it holds pointers
|
|
|
|
for( unsigned i=0; i<m_markers.size(); ++i )
|
|
|
|
delete m_markers[i];
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
m_markers.clear();
|
|
|
|
}
|
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
void BOARD::DeleteZONEOutlines()
|
|
|
|
{
|
|
|
|
// the vector does not know how to delete the ZONE Outlines, it holds pointers
|
|
|
|
for( unsigned i=0; i<m_ZoneDescriptorList.size(); ++i )
|
|
|
|
delete m_ZoneDescriptorList[i];
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
m_ZoneDescriptorList.clear();
|
|
|
|
}
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
/* Calculate the track segment count */
|
2007-08-30 22:20:52 +00:00
|
|
|
int BOARD::GetNumSegmTrack()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-04 20:05:54 +00:00
|
|
|
TRACK* CurTrack = m_Track;
|
|
|
|
int ii = 0;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
for( ; CurTrack != NULL; CurTrack = CurTrack->Next() )
|
2007-08-04 20:05:54 +00:00
|
|
|
ii++;
|
|
|
|
|
|
|
|
m_NbSegmTrack = ii;
|
|
|
|
return ii;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2007-08-04 20:05:54 +00:00
|
|
|
|
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
/* Calculate the zone segment count */
|
2007-08-30 22:20:52 +00:00
|
|
|
int BOARD::GetNumSegmZone()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-04 20:05:54 +00:00
|
|
|
TRACK* CurTrack = m_Zone;
|
|
|
|
int ii = 0;
|
|
|
|
|
2007-11-27 22:49:35 +00:00
|
|
|
for( ; CurTrack != NULL; CurTrack = CurTrack->Next() )
|
2007-08-04 20:05:54 +00:00
|
|
|
ii++;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
m_NbSegmZone = ii;
|
|
|
|
return ii;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
// return the unconnection count
|
2007-08-30 22:20:52 +00:00
|
|
|
int BOARD::GetNumNoconnect()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-04 20:05:54 +00:00
|
|
|
return m_NbNoconnect;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
// return the active pad count ( pads with a netcode > 0 )
|
2007-08-30 22:20:52 +00:00
|
|
|
int BOARD::GetNumNodes()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-04 20:05:54 +00:00
|
|
|
return m_NbNodes;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************/
|
2007-08-30 22:20:52 +00:00
|
|
|
bool BOARD::ComputeBoundaryBox()
|
2007-06-05 12:10:51 +00:00
|
|
|
/***********************************/
|
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
/** Function ComputeBoundaryBox()
|
|
|
|
* Calculate the bounding box of the board
|
|
|
|
* This box contains pcb edges, pads , vias and tracks
|
|
|
|
* Update m_PcbBox member
|
2008-02-12 01:02:53 +00:00
|
|
|
*
|
2007-12-09 12:55:53 +00:00
|
|
|
* @return 0 for an empty board (no items), else 1
|
2007-08-04 20:05:54 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-04 20:05:54 +00:00
|
|
|
int rayon, cx, cy, d, xmin, ymin, xmax, ymax;
|
|
|
|
bool Has_Items = FALSE;
|
|
|
|
EDA_BaseStruct* PtStruct;
|
|
|
|
DRAWSEGMENT* ptr;
|
|
|
|
TRACK* Track;
|
|
|
|
|
|
|
|
xmin = ymin = 0x7FFFFFFFl;
|
|
|
|
xmax = ymax = -0x7FFFFFFFl;
|
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
/* Analyse PCB edges*/
|
2007-08-04 20:05:54 +00:00
|
|
|
PtStruct = m_Drawings;
|
|
|
|
for( ; PtStruct != NULL; PtStruct = PtStruct->Pnext )
|
|
|
|
{
|
2007-09-01 12:00:30 +00:00
|
|
|
if( PtStruct->Type() != TYPEDRAWSEGMENT )
|
2007-08-04 20:05:54 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
ptr = (DRAWSEGMENT*) PtStruct;
|
|
|
|
d = (ptr->m_Width / 2) + 1;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
if( ptr->m_Shape == S_CIRCLE )
|
|
|
|
{
|
|
|
|
cx = ptr->m_Start.x; cy = ptr->m_Start.y;
|
|
|
|
rayon = (int) hypot( (double) (ptr->m_End.x - cx), (double) (ptr->m_End.y - cy) );
|
|
|
|
rayon += d;
|
2007-08-23 04:28:46 +00:00
|
|
|
xmin = MIN( xmin, cx - rayon );
|
|
|
|
ymin = MIN( ymin, cy - rayon );
|
|
|
|
xmax = MAX( xmax, cx + rayon );
|
|
|
|
ymax = MAX( ymax, cy + rayon );
|
2007-08-04 20:05:54 +00:00
|
|
|
Has_Items = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
cx = MIN( ptr->m_Start.x, ptr->m_End.x );
|
|
|
|
cy = MIN( ptr->m_Start.y, ptr->m_End.y );
|
|
|
|
xmin = MIN( xmin, cx - d );
|
|
|
|
ymin = MIN( ymin, cy - d );
|
|
|
|
cx = MAX( ptr->m_Start.x, ptr->m_End.x );
|
|
|
|
cy = MAX( ptr->m_Start.y, ptr->m_End.y );
|
|
|
|
xmax = MAX( xmax, cx + d );
|
|
|
|
ymax = MAX( ymax, cy + d );
|
2007-08-04 20:05:54 +00:00
|
|
|
Has_Items = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
/* Analyse footprints */
|
2007-08-04 20:05:54 +00:00
|
|
|
MODULE* module = m_Modules;
|
|
|
|
for( ; module != NULL; module = (MODULE*) module->Pnext )
|
|
|
|
{
|
|
|
|
Has_Items = TRUE;
|
2007-08-23 04:28:46 +00:00
|
|
|
xmin = MIN( xmin, ( module->m_Pos.x + module->m_BoundaryBox.GetX() ) );
|
|
|
|
ymin = MIN( ymin, ( module->m_Pos.y + module->m_BoundaryBox.GetY() ) );
|
|
|
|
xmax = MAX( xmax, module->m_Pos.x + module->m_BoundaryBox.GetRight() );
|
|
|
|
ymax = MAX( ymax, module->m_Pos.y + module->m_BoundaryBox.GetBottom() );
|
2007-08-04 20:05:54 +00:00
|
|
|
|
|
|
|
D_PAD* pt_pad = module->m_Pads;
|
|
|
|
for( ; pt_pad != NULL; pt_pad = (D_PAD*) pt_pad->Pnext )
|
|
|
|
{
|
2007-12-01 03:42:52 +00:00
|
|
|
const wxPoint& pos = pt_pad->GetPosition();
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-04 20:05:54 +00:00
|
|
|
d = pt_pad->m_Rayon;
|
2007-12-01 03:42:52 +00:00
|
|
|
xmin = MIN( xmin, pos.x - d );
|
|
|
|
ymin = MIN( ymin, pos.y - d );
|
|
|
|
xmax = MAX( xmax, pos.x + d );
|
|
|
|
ymax = MAX( ymax, pos.y + d );
|
2007-08-04 20:05:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
/* Analyse track and zones */
|
2007-08-04 20:05:54 +00:00
|
|
|
for( Track = m_Track; Track != NULL; Track = (TRACK*) Track->Pnext )
|
|
|
|
{
|
|
|
|
d = (Track->m_Width / 2) + 1;
|
2007-08-23 04:28:46 +00:00
|
|
|
cx = MIN( Track->m_Start.x, Track->m_End.x );
|
|
|
|
cy = MIN( Track->m_Start.y, Track->m_End.y );
|
|
|
|
xmin = MIN( xmin, cx - d );
|
|
|
|
ymin = MIN( ymin, cy - d );
|
|
|
|
cx = MAX( Track->m_Start.x, Track->m_End.x );
|
|
|
|
cy = MAX( Track->m_Start.y, Track->m_End.y );
|
|
|
|
xmax = MAX( xmax, cx + d );
|
|
|
|
ymax = MAX( ymax, cy + d );
|
2007-08-04 20:05:54 +00:00
|
|
|
Has_Items = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( Track = m_Zone; Track != NULL; Track = (TRACK*) Track->Pnext )
|
|
|
|
{
|
|
|
|
d = (Track->m_Width / 2) + 1;
|
2007-08-23 04:28:46 +00:00
|
|
|
cx = MIN( Track->m_Start.x, Track->m_End.x );
|
|
|
|
cy = MIN( Track->m_Start.y, Track->m_End.y );
|
|
|
|
xmin = MIN( xmin, cx - d );
|
|
|
|
ymin = MIN( ymin, cy - d );
|
|
|
|
cx = MAX( Track->m_Start.x, Track->m_End.x );
|
|
|
|
cy = MAX( Track->m_Start.y, Track->m_End.y );
|
|
|
|
xmax = MAX( xmax, cx + d );
|
|
|
|
ymax = MAX( ymax, cy + d );
|
2007-08-04 20:05:54 +00:00
|
|
|
Has_Items = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !Has_Items && m_PcbFrame )
|
|
|
|
{
|
|
|
|
if( m_PcbFrame->m_Draw_Sheet_Ref )
|
|
|
|
{
|
|
|
|
xmin = ymin = 0;
|
2008-04-17 16:25:29 +00:00
|
|
|
xmax = m_PcbFrame->GetScreen()->ReturnPageSize().x;
|
|
|
|
ymax = m_PcbFrame->GetScreen()->ReturnPageSize().y;
|
2007-08-04 20:05:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
xmin = -m_PcbFrame->GetScreen()->ReturnPageSize().x / 2;
|
|
|
|
ymin = -m_PcbFrame->GetScreen()->ReturnPageSize().y / 2;
|
|
|
|
xmax = m_PcbFrame->GetScreen()->ReturnPageSize().x / 2;
|
|
|
|
ymax = m_PcbFrame->GetScreen()->ReturnPageSize().y / 2;
|
2007-08-04 20:05:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_BoundaryBox.SetX( xmin );
|
|
|
|
m_BoundaryBox.SetY( ymin );
|
|
|
|
m_BoundaryBox.SetWidth( xmax - xmin );
|
|
|
|
m_BoundaryBox.SetHeight( ymax - ymin );
|
|
|
|
|
|
|
|
return Has_Items;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2007-08-06 02:02:39 +00:00
|
|
|
|
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
// virtual, see pcbstruct.h
|
|
|
|
void BOARD::Display_Infos( WinEDA_DrawFrame* frame )
|
|
|
|
{
|
|
|
|
/* Affiche l'etat du PCB : nb de pads, nets , connexions.. */
|
|
|
|
#define POS_AFF_NBPADS 1
|
|
|
|
#define POS_AFF_NBVIAS 8
|
|
|
|
#define POS_AFF_NBNODES 16
|
|
|
|
#define POS_AFF_NBLINKS 24
|
|
|
|
#define POS_AFF_NBNETS 32
|
|
|
|
#define POS_AFF_NBCONNECT 40
|
|
|
|
#define POS_AFF_NBNOCONNECT 48
|
|
|
|
|
|
|
|
int nb_vias = 0, ii;
|
|
|
|
EDA_BaseStruct* Struct;
|
|
|
|
wxString txt;
|
|
|
|
|
|
|
|
frame->MsgPanel->EraseMsgBox();
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), m_NbPads );
|
|
|
|
Affiche_1_Parametre( frame, POS_AFF_NBPADS, _( "Pads" ), txt, DARKGREEN );
|
|
|
|
|
|
|
|
for( ii = 0, Struct = m_Track; Struct != NULL; Struct = Struct->Pnext )
|
|
|
|
{
|
|
|
|
ii++;
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Struct->Type() == TYPEVIA )
|
2007-08-20 19:33:15 +00:00
|
|
|
nb_vias++;
|
|
|
|
}
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), nb_vias );
|
|
|
|
Affiche_1_Parametre( frame, POS_AFF_NBVIAS, _( "Vias" ), txt, DARKGREEN );
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), GetNumNodes() );
|
|
|
|
Affiche_1_Parametre( frame, POS_AFF_NBNODES, _( "Nodes" ), txt, DARKCYAN );
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), m_NbLinks );
|
|
|
|
Affiche_1_Parametre( frame, POS_AFF_NBLINKS, _( "Links" ), txt, DARKGREEN );
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), m_NbNets );
|
|
|
|
Affiche_1_Parametre( frame, POS_AFF_NBNETS, _( "Nets" ), txt, RED );
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), m_NbLinks - GetNumNoconnect() );
|
|
|
|
Affiche_1_Parametre( frame, POS_AFF_NBCONNECT, _( "Connect" ), txt, DARKGREEN );
|
|
|
|
|
|
|
|
txt.Printf( wxT( "%d" ), GetNumNoconnect() );
|
|
|
|
Affiche_1_Parametre( frame, POS_AFF_NBNOCONNECT, _( "NoConn" ), txt, BLUE );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
// virtual, see pcbstruct.h
|
|
|
|
SEARCH_RESULT BOARD::Visit( INSPECTOR* inspector, const void* testData,
|
2007-08-09 21:15:08 +00:00
|
|
|
const KICAD_T scanTypes[] )
|
2007-08-06 02:02:39 +00:00
|
|
|
{
|
2007-08-09 21:15:08 +00:00
|
|
|
KICAD_T stype;
|
|
|
|
SEARCH_RESULT result = SEARCH_CONTINUE;
|
|
|
|
const KICAD_T* p = scanTypes;
|
2007-08-24 03:40:04 +00:00
|
|
|
bool done=false;
|
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
#if 0 && defined(DEBUG)
|
2007-08-24 03:40:04 +00:00
|
|
|
std::cout << GetClass().mb_str() << ' ';
|
2008-02-12 01:02:53 +00:00
|
|
|
#endif
|
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
while( !done )
|
2007-08-06 02:02:39 +00:00
|
|
|
{
|
2007-08-24 03:40:04 +00:00
|
|
|
stype = *p;
|
2007-08-09 21:15:08 +00:00
|
|
|
switch( stype )
|
|
|
|
{
|
|
|
|
case TYPEPCB:
|
|
|
|
result = inspector->Inspect( this, testData ); // inspect me
|
2007-08-24 03:40:04 +00:00
|
|
|
// skip over any types handled in the above call.
|
|
|
|
++p;
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Instances of the requested KICAD_T live in a list, either one
|
|
|
|
that I manage, or that my modules manage. If it's a type managed
|
2008-02-12 01:02:53 +00:00
|
|
|
by class MODULE, then simply pass it on to each module's
|
|
|
|
MODULE::Visit() function by way of the
|
2007-08-09 21:15:08 +00:00
|
|
|
IterateForward( m_Modules, ... ) call.
|
2008-02-12 01:02:53 +00:00
|
|
|
*/
|
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
case TYPEMODULE:
|
|
|
|
case TYPEPAD:
|
|
|
|
case TYPETEXTEMODULE:
|
|
|
|
case TYPEEDGEMODULE:
|
|
|
|
// this calls MODULE::Visit() on each module.
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Modules, inspector, testData, p );
|
|
|
|
// skip over any types handled in the above call.
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
switch( stype = *++p )
|
|
|
|
{
|
|
|
|
case TYPEMODULE:
|
|
|
|
case TYPEPAD:
|
|
|
|
case TYPETEXTEMODULE:
|
|
|
|
case TYPEEDGEMODULE:
|
|
|
|
continue;
|
|
|
|
default:;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TYPEDRAWSEGMENT:
|
|
|
|
case TYPETEXTE:
|
|
|
|
case TYPECOTATION:
|
|
|
|
case TYPEMIRE:
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Drawings, inspector, testData, p );
|
|
|
|
// skip over any types handled in the above call.
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
switch( stype = *++p )
|
|
|
|
{
|
|
|
|
case TYPEDRAWSEGMENT:
|
|
|
|
case TYPETEXTE:
|
|
|
|
case TYPECOTATION:
|
|
|
|
case TYPEMIRE:
|
|
|
|
continue;
|
|
|
|
default:;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
;
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
2007-08-30 22:20:52 +00:00
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
#if 0 // both these are on same list, so we must scan it twice in order to get VIA priority,
|
2007-08-30 22:20:52 +00:00
|
|
|
// using new #else code below.
|
2007-09-13 11:28:58 +00:00
|
|
|
// But we are not using separte lists for TRACKs and SEGVIAs, because items are ordered (sortered) in the linked
|
2008-02-12 01:02:53 +00:00
|
|
|
// list by netcode AND by physical distance:
|
|
|
|
// when created, if a track or via is connected to an existing track or via, it is put in linked list
|
|
|
|
// after this existing track or via
|
|
|
|
// So usually, connected tracks or vias are grouped in this list
|
|
|
|
// So the algorithm (used in rastnest computations) which computes the track connectivity is faster (more than 100 time regarding to
|
|
|
|
// a non ordered list) because when it searchs for a connexion, first it tests the near (near in term of linked list) 50 items
|
|
|
|
// from the current item (track or via) in test.
|
|
|
|
// Usually, because of this sort, a connected item (if exists) is found.
|
|
|
|
// If not found (and only in this case) an exhaustive (and time consumming) search is made,
|
|
|
|
// but this case is statistically rare.
|
2007-08-09 21:15:08 +00:00
|
|
|
case TYPEVIA:
|
|
|
|
case TYPETRACK:
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Track, inspector, testData, p );
|
|
|
|
// skip over any types handled in the above call.
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
switch( stype = *++p )
|
|
|
|
{
|
|
|
|
case TYPEVIA:
|
|
|
|
case TYPETRACK:
|
|
|
|
continue;
|
|
|
|
default:;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-08-30 22:20:52 +00:00
|
|
|
break;
|
|
|
|
#else
|
|
|
|
case TYPEVIA:
|
|
|
|
result = IterateForward( m_Track, inspector, testData, p );
|
|
|
|
++p;
|
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
case TYPETRACK:
|
|
|
|
result = IterateForward( m_Track, inspector, testData, p );
|
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
#endif
|
2007-11-27 22:49:35 +00:00
|
|
|
|
|
|
|
case TYPEMARKER:
|
|
|
|
// MARKERS are in the m_markers std::vector
|
|
|
|
for( unsigned i=0; i<m_markers.size(); ++i )
|
|
|
|
{
|
|
|
|
result = m_markers[i]->Visit( inspector, testData, p );
|
|
|
|
if( result == SEARCH_QUIT )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
case TYPEZONE_CONTAINER:
|
|
|
|
// TYPEZONE_CONTAINER are in the m_ZoneDescriptorList std::vector
|
|
|
|
for( unsigned i=0; i< m_ZoneDescriptorList.size(); ++i )
|
|
|
|
{
|
|
|
|
result = m_ZoneDescriptorList[i]->Visit( inspector, testData, p );
|
|
|
|
if( result == SEARCH_QUIT )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
case PCB_EQUIPOT_STRUCT_TYPE:
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Equipots, inspector, testData, p );
|
|
|
|
++p;
|
2008-02-12 01:02:53 +00:00
|
|
|
break;
|
2007-08-09 21:15:08 +00:00
|
|
|
|
|
|
|
case TYPEZONE:
|
2007-08-24 03:40:04 +00:00
|
|
|
result = IterateForward( m_Zone, inspector, testData, p );
|
|
|
|
++p;
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
case TYPEZONE_UNUSED: // Unused type
|
2008-02-12 01:02:53 +00:00
|
|
|
break;
|
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
default: // catch EOT or ANY OTHER type here and return.
|
|
|
|
done = true;
|
2007-08-09 21:15:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
if( result == SEARCH_QUIT )
|
|
|
|
break;
|
2007-08-06 02:02:39 +00:00
|
|
|
}
|
2007-08-09 21:15:08 +00:00
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
return result;
|
2007-08-06 02:02:39 +00:00
|
|
|
}
|
2007-08-06 20:26:59 +00:00
|
|
|
|
|
|
|
|
2008-03-01 13:15:41 +00:00
|
|
|
/* now using PcbGeneralLocateAndDisplay(), but this remains a useful example
|
|
|
|
of how the INSPECTOR can be used in a lightweight way.
|
2008-02-12 01:02:53 +00:00
|
|
|
// see pcbstruct.h
|
2007-09-12 02:14:07 +00:00
|
|
|
BOARD_ITEM* BOARD::FindPadOrModule( const wxPoint& refPos, int layer )
|
2007-08-06 20:26:59 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
class PadOrModule : public INSPECTOR
|
2007-08-06 20:26:59 +00:00
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
public:
|
2007-08-23 04:28:46 +00:00
|
|
|
BOARD_ITEM* found;
|
2007-08-08 03:50:44 +00:00
|
|
|
int layer;
|
2007-08-10 19:14:51 +00:00
|
|
|
int layer_mask;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
PadOrModule( int alayer ) :
|
2007-08-10 19:14:51 +00:00
|
|
|
found(0), layer(alayer), layer_mask( g_TabOneLayerMask[alayer] )
|
2007-08-09 01:41:30 +00:00
|
|
|
{}
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
SEARCH_RESULT Inspect( EDA_BaseStruct* testItem, const void* testData )
|
2007-08-06 20:26:59 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
BOARD_ITEM* item = (BOARD_ITEM*) testItem;
|
|
|
|
const wxPoint& refPos = *(const wxPoint*) testData;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
if( item->Type() == TYPEPAD )
|
2007-08-06 20:26:59 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
D_PAD* pad = (D_PAD*) item;
|
2007-08-10 19:14:51 +00:00
|
|
|
if( pad->HitTest( refPos ) )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
2008-02-12 01:02:53 +00:00
|
|
|
if( layer_mask & pad->m_Masque_Layer )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
found = item;
|
2007-08-10 19:14:51 +00:00
|
|
|
return SEARCH_QUIT;
|
|
|
|
}
|
|
|
|
else if( !found )
|
|
|
|
{
|
|
|
|
MODULE* parent = (MODULE*) pad->m_Parent;
|
2007-08-23 04:28:46 +00:00
|
|
|
if( IsModuleLayerVisible( parent->GetLayer() ) )
|
|
|
|
found = item;
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
2007-08-08 03:50:44 +00:00
|
|
|
}
|
2007-08-06 20:26:59 +00:00
|
|
|
}
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
else if( item->Type() == TYPEMODULE )
|
2007-08-06 20:26:59 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
MODULE* module = (MODULE*) item;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
|
|
|
// consider only visible modules
|
2007-08-23 04:28:46 +00:00
|
|
|
if( IsModuleLayerVisible( module->GetLayer() ) )
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
if( module->HitTest( refPos ) )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
if( layer == module->GetLayer() )
|
2007-08-09 01:41:30 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
found = item;
|
2007-08-08 20:51:08 +00:00
|
|
|
return SEARCH_QUIT;
|
2007-08-09 01:41:30 +00:00
|
|
|
}
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-09 01:41:30 +00:00
|
|
|
// layer mismatch, save in case we don't find a
|
|
|
|
// future layer match hit.
|
|
|
|
if( !found )
|
2007-08-23 04:28:46 +00:00
|
|
|
found = item;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
2007-08-08 03:50:44 +00:00
|
|
|
}
|
2007-08-06 20:26:59 +00:00
|
|
|
}
|
2007-08-08 03:50:44 +00:00
|
|
|
return SEARCH_CONTINUE;
|
2007-08-06 20:26:59 +00:00
|
|
|
}
|
2007-08-08 03:50:44 +00:00
|
|
|
};
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
PadOrModule inspector( layer );
|
2007-08-06 20:26:59 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
// search only for PADs first, then MODULES, and preferably a layer match
|
2007-08-06 21:02:23 +00:00
|
|
|
static const KICAD_T scanTypes[] = { TYPEPAD, TYPEMODULE, EOT };
|
2007-08-06 20:26:59 +00:00
|
|
|
|
2007-08-24 04:01:48 +00:00
|
|
|
// visit this BOARD with the above inspector
|
|
|
|
Visit( &inspector, &refPos, scanTypes );
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
return inspector.found;
|
2007-08-06 20:26:59 +00:00
|
|
|
}
|
2007-09-12 02:14:07 +00:00
|
|
|
*/
|
2007-08-06 20:26:59 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
/**
|
|
|
|
* Function FindNet
|
|
|
|
* searches for a net with the given netcode.
|
|
|
|
* @param anetcode The netcode to search for.
|
|
|
|
* @return EQUIPOT* - the net or NULL if not found.
|
|
|
|
*/
|
2007-09-15 04:25:54 +00:00
|
|
|
EQUIPOT* BOARD::FindNet( int anetcode ) const
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2007-10-31 14:14:21 +00:00
|
|
|
// the first valid netcode is 1.
|
|
|
|
// zero is reserved for "no connection" and is not used.
|
2008-02-12 01:02:53 +00:00
|
|
|
if( anetcode > 0 )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2007-10-31 14:14:21 +00:00
|
|
|
for( EQUIPOT* net = m_Equipots; net; net=net->Next() )
|
|
|
|
{
|
|
|
|
if( net->GetNet() == anetcode )
|
|
|
|
return net;
|
|
|
|
}
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
2007-10-31 14:14:21 +00:00
|
|
|
return NULL;
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-06 20:58:27 +00:00
|
|
|
/**
|
|
|
|
* Function FindNet overlayed
|
|
|
|
* searches for a net with the given name.
|
|
|
|
* @param aNetname A Netname to search for.
|
|
|
|
* @return EQUIPOT* - the net or NULL if not found.
|
|
|
|
*/
|
|
|
|
EQUIPOT* BOARD::FindNet( const wxString & aNetname ) const
|
|
|
|
{
|
|
|
|
// the first valid netcode is 1.
|
|
|
|
// zero is reserved for "no connection" and is not used.
|
2008-02-12 01:02:53 +00:00
|
|
|
if( ! aNetname.IsEmpty() )
|
2008-01-06 20:58:27 +00:00
|
|
|
{
|
|
|
|
for( EQUIPOT* net = m_Equipots; net; net=net->Next() )
|
|
|
|
{
|
|
|
|
if( net->m_Netname == aNetname )
|
|
|
|
return net;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-07 17:10:12 +00:00
|
|
|
MODULE* BOARD::FindModuleByReference( const wxString& aReference ) const
|
|
|
|
{
|
|
|
|
struct FindModule : public INSPECTOR
|
|
|
|
{
|
|
|
|
MODULE* found;
|
|
|
|
FindModule() : found(0) {}
|
|
|
|
|
|
|
|
// implement interface INSPECTOR
|
|
|
|
SEARCH_RESULT Inspect( EDA_BaseStruct* item, const void* data )
|
|
|
|
{
|
|
|
|
MODULE* module = (MODULE*) item;
|
|
|
|
const wxString& ref = *(const wxString*) data;
|
|
|
|
|
|
|
|
if( ref == module->GetReference() )
|
|
|
|
{
|
|
|
|
found = module;
|
|
|
|
return SEARCH_QUIT;
|
|
|
|
}
|
|
|
|
return SEARCH_CONTINUE;
|
|
|
|
}
|
|
|
|
} inspector;
|
2008-01-06 20:58:27 +00:00
|
|
|
|
2008-02-07 17:10:12 +00:00
|
|
|
// search only for MODULES
|
|
|
|
static const KICAD_T scanTypes[] = { TYPEMODULE, EOT };
|
|
|
|
|
|
|
|
// visit this BOARD with the above inspector
|
|
|
|
BOARD* nonconstMe = (BOARD*) this;
|
|
|
|
nonconstMe->Visit( &inspector, &aReference, scanTypes );
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2008-02-07 17:10:12 +00:00
|
|
|
return inspector.found;
|
|
|
|
}
|
2008-01-06 20:58:27 +00:00
|
|
|
|
|
|
|
|
2007-12-17 20:18:04 +00:00
|
|
|
/* Two sort functions used in BOARD::ReturnSortedNetnamesList */
|
|
|
|
// Sort nets by name
|
|
|
|
int s_SortByNames(const void * ptr1, const void * ptr2)
|
|
|
|
{
|
2008-02-12 01:02:53 +00:00
|
|
|
EQUIPOT* item1 = * (EQUIPOT**) ptr1;
|
|
|
|
EQUIPOT* item2 = * (EQUIPOT**) ptr2;
|
|
|
|
return item1->m_Netname.CmpNoCase(item2->m_Netname);
|
2007-12-17 20:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sort nets by decreasing pad count
|
|
|
|
int s_SortByNodes(const void * ptr1, const void * ptr2)
|
|
|
|
{
|
2008-02-12 01:02:53 +00:00
|
|
|
EQUIPOT* item1 = * (EQUIPOT**) ptr1;
|
|
|
|
EQUIPOT* item2 = * (EQUIPOT**) ptr2;
|
|
|
|
if ( (item1->m_NbNodes - item2->m_NbNodes) != 0 )
|
|
|
|
return - (item1->m_NbNodes - item2->m_NbNodes);
|
|
|
|
return item1->m_Netname.CmpNoCase(item2->m_Netname);
|
2007-12-17 20:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ReturnSortedNetnamesList
|
|
|
|
* searches for a net with the given netcode.
|
|
|
|
* @param aNames An array string to fill with net names.
|
|
|
|
* @param aSort_Type : NO_SORT = no sort, ALPHA_SORT = sort by alphabetic order, PAD_CNT_SORT = sort by active pads count.
|
|
|
|
* @return int - net names count.
|
|
|
|
*/
|
|
|
|
int BOARD::ReturnSortedNetnamesList( wxArrayString & aNames, const int aSort_Type)
|
|
|
|
{
|
2008-02-12 01:02:53 +00:00
|
|
|
int NetCount = 0;
|
|
|
|
int ii;
|
|
|
|
EQUIPOT* net;
|
|
|
|
|
|
|
|
/* count items to list and sort */
|
|
|
|
for( net = m_Equipots; net; net=net->Next() )
|
|
|
|
{
|
|
|
|
if ( net->m_Netname.IsEmpty() ) continue;
|
|
|
|
NetCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( NetCount == 0 ) return 0;
|
|
|
|
|
|
|
|
/* Build the list */
|
|
|
|
EQUIPOT* * net_ptr_list = (EQUIPOT* *) MyMalloc( NetCount * sizeof(* net_ptr_list) );
|
|
|
|
for( ii = 0, net = m_Equipots; net; net=net->Next() )
|
|
|
|
{
|
|
|
|
if ( net->m_Netname.IsEmpty() ) continue;
|
|
|
|
net_ptr_list[ii] = net;
|
|
|
|
ii++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sort the list */
|
|
|
|
switch ( aSort_Type )
|
|
|
|
{
|
|
|
|
case NO_SORT : break;
|
|
|
|
|
|
|
|
case ALPHA_SORT :
|
|
|
|
qsort (net_ptr_list, NetCount, sizeof(EQUIPOT*), s_SortByNames);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD_CNT_SORT:
|
|
|
|
qsort (net_ptr_list, NetCount, sizeof(EQUIPOT*), s_SortByNodes);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fill the given list */
|
|
|
|
for( ii = 0; ii < NetCount; ii++ )
|
|
|
|
{
|
|
|
|
net = net_ptr_list[ii];
|
|
|
|
aNames.Add(net->m_Netname);
|
|
|
|
}
|
|
|
|
|
|
|
|
MyFree(net_ptr_list);
|
|
|
|
|
|
|
|
return NetCount;
|
2007-12-17 20:18:04 +00:00
|
|
|
}
|
2007-10-30 21:30:58 +00:00
|
|
|
|
2007-12-17 20:18:04 +00:00
|
|
|
/************************************/
|
2007-10-30 21:30:58 +00:00
|
|
|
bool BOARD::Save( FILE* aFile ) const
|
2007-12-17 20:18:04 +00:00
|
|
|
/************************************/
|
2007-10-30 21:30:58 +00:00
|
|
|
{
|
|
|
|
bool rc = false;
|
|
|
|
BOARD_ITEM* item;
|
|
|
|
|
|
|
|
// save the nets
|
|
|
|
for( item = m_Equipots; item; item=item->Next() )
|
|
|
|
if( !item->Save( aFile ) )
|
|
|
|
goto out;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
// save the modules
|
|
|
|
for( item = m_Modules; item; item=item->Next() )
|
|
|
|
if( !item->Save( aFile ) )
|
|
|
|
goto out;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
for( item = m_Drawings; item; item=item->Next() )
|
|
|
|
{
|
|
|
|
switch( item->Type() )
|
|
|
|
{
|
|
|
|
case TYPETEXTE:
|
|
|
|
case TYPEDRAWSEGMENT:
|
|
|
|
case TYPEMIRE:
|
|
|
|
case TYPECOTATION:
|
|
|
|
if( !item->Save( aFile ) )
|
|
|
|
goto out;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// future: throw exception here
|
2008-02-12 01:02:53 +00:00
|
|
|
#if defined(DEBUG)
|
2007-10-31 06:40:15 +00:00
|
|
|
printf( "BOARD::Save() ignoring m_Drawings type %d\n", item->Type() );
|
2008-02-12 01:02:53 +00:00
|
|
|
#endif
|
2007-10-30 21:30:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-11-27 22:49:35 +00:00
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
// do not save MARKERs, they can be regenerated easily
|
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
// save the tracks & vias
|
|
|
|
fprintf( aFile, "$TRACK\n" );
|
|
|
|
for( item = m_Track; item; item=item->Next() )
|
|
|
|
if( !item->Save( aFile ) )
|
|
|
|
goto out;
|
|
|
|
fprintf( aFile, "$EndTRACK\n" );
|
|
|
|
|
|
|
|
// save the zones
|
|
|
|
fprintf( aFile, "$ZONE\n" );
|
|
|
|
for( item = m_Zone; item; item=item->Next() )
|
|
|
|
if( !item->Save( aFile ) )
|
|
|
|
goto out;
|
|
|
|
fprintf( aFile, "$EndZONE\n" );
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-10-31 06:40:15 +00:00
|
|
|
// save the zone edges
|
2008-02-12 01:02:53 +00:00
|
|
|
for( unsigned ii = 0; ii < m_ZoneDescriptorList.size(); ii++ )
|
|
|
|
{
|
|
|
|
ZONE_CONTAINER* edge_zone = m_ZoneDescriptorList[ii];
|
|
|
|
edge_zone->Save( aFile );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
if( fprintf( aFile, "$EndBOARD\n" ) != sizeof("$EndBOARD\n")-1 )
|
|
|
|
goto out;
|
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
rc = true; // wrote all OK
|
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
out:
|
2008-02-12 01:02:53 +00:00
|
|
|
return rc;
|
2007-10-30 21:30:58 +00:00
|
|
|
}
|
|
|
|
|
2008-09-27 19:26:29 +00:00
|
|
|
|
|
|
|
|
2008-01-23 08:01:38 +00:00
|
|
|
/***********************************************************************************************/
|
|
|
|
void BOARD::RedrawAreasOutlines(WinEDA_DrawPanel* panel, wxDC * aDC, int aDrawMode, int aLayer)
|
|
|
|
/***********************************************************************************************/
|
|
|
|
/**
|
|
|
|
* Function RedrawAreasOutlines
|
|
|
|
* Redraw all areas outlines on layer aLayer ( redraw all if aLayer < 0 )
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
if ( ! aDC ) return;
|
|
|
|
|
2008-02-12 01:02:53 +00:00
|
|
|
for( int ii = 0; ii < GetAreaCount(); ii++ )
|
|
|
|
{
|
|
|
|
ZONE_CONTAINER* edge_zone = GetArea(ii);
|
|
|
|
if( (aLayer < 0) || (aLayer == edge_zone->GetLayer()) )
|
2008-04-01 05:21:50 +00:00
|
|
|
edge_zone->Draw( panel, aDC, aDrawMode );
|
2008-02-12 01:02:53 +00:00
|
|
|
}
|
2008-01-23 08:01:38 +00:00
|
|
|
}
|
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
/***********************************************************************************************/
|
|
|
|
void BOARD::RedrawFilledAreas(WinEDA_DrawPanel* panel, wxDC * aDC, int aDrawMode, int aLayer)
|
|
|
|
/***********************************************************************************************/
|
|
|
|
/**
|
|
|
|
* Function RedrawFilledAreas
|
|
|
|
* Redraw all areas outlines on layer aLayer ( redraw all if aLayer < 0 )
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
if ( ! aDC ) return;
|
|
|
|
|
|
|
|
for( int ii = 0; ii < GetAreaCount(); ii++ )
|
|
|
|
{
|
|
|
|
ZONE_CONTAINER* edge_zone = GetArea(ii);
|
|
|
|
if( (aLayer < 0) || (aLayer == edge_zone->GetLayer()) )
|
|
|
|
edge_zone->DrawFilledArea( panel, aDC, aDrawMode );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
|
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
#if defined(DEBUG)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Show
|
|
|
|
* is used to output the object tree, currently for debugging only.
|
2008-02-12 01:02:53 +00:00
|
|
|
* @param nestLevel An aid to prettier tree indenting, and is the level
|
2007-08-09 21:15:08 +00:00
|
|
|
* of nesting of this object within the overall tree.
|
|
|
|
* @param os The ostream& to output to.
|
|
|
|
*/
|
|
|
|
void BOARD::Show( int nestLevel, std::ostream& os )
|
|
|
|
{
|
2007-11-12 14:59:22 +00:00
|
|
|
BOARD_ITEM* p;
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
// for now, make it look like XML:
|
|
|
|
NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str() << ">\n";
|
|
|
|
|
|
|
|
// specialization of the output:
|
|
|
|
NestedSpace( nestLevel+1, os ) << "<modules>\n";
|
|
|
|
p = m_Modules;
|
2007-11-12 14:59:22 +00:00
|
|
|
for( ; p; p = p->Next() )
|
2007-08-09 21:15:08 +00:00
|
|
|
p->Show( nestLevel+2, os );
|
|
|
|
NestedSpace( nestLevel+1, os ) << "</modules>\n";
|
|
|
|
|
|
|
|
NestedSpace( nestLevel+1, os ) << "<pdrawings>\n";
|
|
|
|
p = m_Drawings;
|
2007-11-12 14:59:22 +00:00
|
|
|
for( ; p; p = p->Next() )
|
2007-08-09 21:15:08 +00:00
|
|
|
p->Show( nestLevel+2, os );
|
|
|
|
NestedSpace( nestLevel+1, os ) << "</pdrawings>\n";
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
NestedSpace( nestLevel+1, os ) << "<nets>\n";
|
|
|
|
p = m_Equipots;
|
2007-11-12 14:59:22 +00:00
|
|
|
for( ; p; p = p->Next() )
|
2007-08-09 21:15:08 +00:00
|
|
|
p->Show( nestLevel+2, os );
|
|
|
|
NestedSpace( nestLevel+1, os ) << "</nets>\n";
|
|
|
|
|
|
|
|
NestedSpace( nestLevel+1, os ) << "<tracks>\n";
|
2008-02-12 01:02:53 +00:00
|
|
|
p = m_Track;
|
2007-11-12 14:59:22 +00:00
|
|
|
for( ; p; p = p->Next() )
|
2007-08-09 21:15:08 +00:00
|
|
|
p->Show( nestLevel+2, os );
|
|
|
|
NestedSpace( nestLevel+1, os ) << "</tracks>\n";
|
|
|
|
|
|
|
|
NestedSpace( nestLevel+1, os ) << "<zones>\n";
|
2008-02-12 01:02:53 +00:00
|
|
|
p = m_Zone;
|
2007-11-12 14:59:22 +00:00
|
|
|
for( ; p; p = p->Next() )
|
2007-08-09 21:15:08 +00:00
|
|
|
p->Show( nestLevel+2, os );
|
|
|
|
NestedSpace( nestLevel+1, os ) << "</zones>\n";
|
2008-03-01 13:15:41 +00:00
|
|
|
/*
|
2008-02-01 01:09:39 +00:00
|
|
|
NestedSpace( nestLevel+1, os ) << "<zone_container>\n";
|
|
|
|
for( ZONE_CONTAINERS::iterator i=m_ZoneDescriptorList.begin(); i!=m_ZoneDescriptorList.end(); ++i )
|
|
|
|
(*i)->Show( nestLevel+2, os );
|
|
|
|
NestedSpace( nestLevel+1, os ) << "</zone_container>\n";
|
2008-03-01 13:15:41 +00:00
|
|
|
*/
|
|
|
|
|
2007-11-12 14:59:22 +00:00
|
|
|
p = (BOARD_ITEM*) m_Son;
|
|
|
|
for( ; p; p = p->Next() )
|
2007-08-09 21:15:08 +00:00
|
|
|
{
|
|
|
|
p->Show( nestLevel+1, os );
|
|
|
|
}
|
2008-02-12 01:02:53 +00:00
|
|
|
|
2007-08-09 21:15:08 +00:00
|
|
|
NestedSpace( nestLevel, os ) << "</" << GetClass().Lower().mb_str() << ">\n";
|
|
|
|
}
|
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
|
2007-08-06 02:02:39 +00:00
|
|
|
#endif
|