2011-09-23 13:57:12 +00:00
|
|
|
/*
|
|
|
|
* @file zones_by_polygon_fill_functions.cpp
|
|
|
|
*/
|
|
|
|
|
2009-08-23 15:22:44 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2009-08-23 15:22:44 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
|
2011-09-30 18:15:37 +00:00
|
|
|
* Copyright (C) 2007 KiCad Developers, see change_log.txt for contributors.
|
2009-08-23 15:22:44 +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
|
|
|
|
*/
|
|
|
|
|
2011-02-25 20:37:48 +00:00
|
|
|
#include <wx/progdlg.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <appl_wxstruct.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <macros.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_track.h>
|
|
|
|
#include <class_zone.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <zones.h>
|
2009-08-23 15:22:44 +00:00
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
#define FORMAT_STRING _( "Filling zone %d out of %d (net %s)..." )
|
|
|
|
|
2009-08-23 15:22:44 +00:00
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
2011-07-16 16:04:49 +00:00
|
|
|
* Function Delete_OldZone_Fill (obsolete)
|
|
|
|
* Used for compatibility with old boards
|
2011-09-07 19:41:04 +00:00
|
|
|
* Remove the zone filling which include the segment aZone, or the zone which have the
|
|
|
|
* given time stamp.
|
2010-12-29 17:47:32 +00:00
|
|
|
* A zone is a group of segments which have the same TimeStamp
|
2009-08-23 15:22:44 +00:00
|
|
|
* @param aZone = zone segment within the zone to delete. Can be NULL
|
|
|
|
* @param aTimestamp = Timestamp for the zone to delete, used if aZone == NULL
|
|
|
|
*/
|
2012-05-25 01:52:04 +00:00
|
|
|
void PCB_EDIT_FRAME::Delete_OldZone_Fill( SEGZONE* aZone, time_t aTimestamp )
|
2009-08-23 15:22:44 +00:00
|
|
|
{
|
|
|
|
bool modify = false;
|
2012-05-25 01:52:04 +00:00
|
|
|
time_t TimeStamp;
|
2009-08-23 15:22:44 +00:00
|
|
|
|
|
|
|
if( aZone == NULL )
|
|
|
|
TimeStamp = aTimestamp;
|
|
|
|
else
|
2011-12-12 08:37:05 +00:00
|
|
|
TimeStamp = aZone->GetTimeStamp(); // Save reference time stamp (aZone will be deleted)
|
2009-08-23 15:22:44 +00:00
|
|
|
|
|
|
|
SEGZONE* next;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-08-23 15:22:44 +00:00
|
|
|
for( SEGZONE* zone = GetBoard()->m_Zone; zone != NULL; zone = next )
|
|
|
|
{
|
|
|
|
next = zone->Next();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-12-12 08:37:05 +00:00
|
|
|
if( zone->GetTimeStamp() == TimeStamp )
|
2009-08-23 15:22:44 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
modify = true;
|
2012-02-06 05:44:19 +00:00
|
|
|
// remove item from linked list and free memory
|
2009-08-23 15:22:44 +00:00
|
|
|
zone->DeleteStructure();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( modify )
|
|
|
|
{
|
2010-02-19 13:23:58 +00:00
|
|
|
OnModify();
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->Refresh();
|
2009-08-23 15:22:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
int PCB_EDIT_FRAME::Fill_Zone( ZONE_CONTAINER* aZone )
|
2009-08-23 15:22:44 +00:00
|
|
|
{
|
2012-07-13 18:55:29 +00:00
|
|
|
aZone->ClearFilledPolysList();
|
|
|
|
aZone->UnFill();
|
|
|
|
|
|
|
|
// Cannot fill keepout zones:
|
|
|
|
if( aZone->GetIsKeepout() )
|
|
|
|
return 1;
|
|
|
|
|
2009-08-23 15:22:44 +00:00
|
|
|
wxString msg;
|
|
|
|
|
2011-04-12 14:19:59 +00:00
|
|
|
ClearMsgPanel();
|
2011-02-25 16:23:24 +00:00
|
|
|
|
2011-02-25 20:37:48 +00:00
|
|
|
// Shows the net
|
2012-02-06 05:44:19 +00:00
|
|
|
ZONE_SETTINGS zoneInfo = GetZoneSettings();
|
|
|
|
zoneInfo.m_NetcodeSelection = aZone->GetNet();
|
|
|
|
SetZoneSettings( zoneInfo );
|
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
msg = aZone->GetNetName();
|
2009-08-23 15:22:44 +00:00
|
|
|
|
2011-02-25 20:37:48 +00:00
|
|
|
if( msg.IsEmpty() )
|
|
|
|
msg = wxT( "No net" );
|
2011-04-12 14:19:59 +00:00
|
|
|
|
|
|
|
AppendMsgPanel( _( "NetName" ), msg, RED );
|
2011-02-25 20:37:48 +00:00
|
|
|
|
2009-08-23 15:22:44 +00:00
|
|
|
wxBusyCursor dummy; // Shows an hourglass cursor (removed by its destructor)
|
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
aZone->BuildFilledPolysListData( GetBoard() );
|
2009-08-23 15:22:44 +00:00
|
|
|
|
2010-02-19 13:23:58 +00:00
|
|
|
OnModify();
|
2009-08-23 15:22:44 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
int PCB_EDIT_FRAME::Fill_All_Zones( wxWindow * aActiveWindow, bool aVerbose )
|
2009-08-23 15:22:44 +00:00
|
|
|
{
|
2011-02-25 20:37:48 +00:00
|
|
|
int errorLevel = 0;
|
|
|
|
int areaCount = GetBoard()->GetAreaCount();
|
|
|
|
wxBusyCursor dummyCursor;
|
2011-03-03 19:08:13 +00:00
|
|
|
wxString msg;
|
2011-11-10 08:21:11 +00:00
|
|
|
wxProgressDialog * progressDialog = NULL;
|
2009-08-23 15:22:44 +00:00
|
|
|
|
2011-03-03 19:08:13 +00:00
|
|
|
// Create a message with a long net name, and build a wxProgressDialog
|
|
|
|
// with a correct size to show this long net name
|
2011-09-07 19:41:04 +00:00
|
|
|
msg.Printf( FORMAT_STRING, 000, areaCount, wxT("XXXXXXXXXXXXXXXXX" ) );
|
2011-11-10 08:21:11 +00:00
|
|
|
if( aActiveWindow )
|
|
|
|
progressDialog = new wxProgressDialog( _( "Fill All Zones" ), msg,
|
|
|
|
areaCount+2, aActiveWindow,
|
|
|
|
wxPD_AUTO_HIDE | wxPD_CAN_ABORT );
|
2011-03-03 19:08:13 +00:00
|
|
|
// Display the actual message
|
2011-11-10 08:21:11 +00:00
|
|
|
if( progressDialog )
|
|
|
|
progressDialog->Update( 0, _( "Starting zone fill..." ) );
|
2011-02-25 20:37:48 +00:00
|
|
|
|
|
|
|
// Remove segment zones
|
2009-08-23 15:22:44 +00:00
|
|
|
GetBoard()->m_Zone.DeleteAll();
|
|
|
|
|
2011-02-25 20:37:48 +00:00
|
|
|
int ii;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-25 20:37:48 +00:00
|
|
|
for( ii = 0; ii < areaCount; ii++ )
|
2009-08-23 15:22:44 +00:00
|
|
|
{
|
2011-02-25 20:37:48 +00:00
|
|
|
ZONE_CONTAINER* zoneContainer = GetBoard()->GetArea( ii );
|
2012-07-13 18:55:29 +00:00
|
|
|
if( zoneContainer->GetIsKeepout() )
|
|
|
|
continue;
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
msg.Printf( FORMAT_STRING, ii+1, areaCount, GetChars( zoneContainer->GetNetName() ) );
|
2011-02-25 20:37:48 +00:00
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
if( progressDialog )
|
|
|
|
{
|
|
|
|
if( !progressDialog->Update( ii+1, msg ) )
|
|
|
|
break; // Aborted by user
|
|
|
|
}
|
2011-02-25 20:37:48 +00:00
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
errorLevel = Fill_Zone( zoneContainer );
|
2011-02-25 20:37:48 +00:00
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
if( errorLevel && !aVerbose )
|
2009-08-23 15:22:44 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
if( progressDialog )
|
|
|
|
progressDialog->Update( ii+2, _( "Updating ratsnest..." ) );
|
|
|
|
TestConnections();
|
2011-02-25 20:37:48 +00:00
|
|
|
|
|
|
|
// Recalculate the active ratsnest, i.e. the unconnected links
|
2011-11-08 16:18:46 +00:00
|
|
|
TestForActiveLinksInRatsnest( 0 );
|
2011-11-10 08:21:11 +00:00
|
|
|
if( progressDialog )
|
|
|
|
progressDialog->Destroy();
|
2011-02-25 20:37:48 +00:00
|
|
|
return errorLevel;
|
2009-08-23 15:22:44 +00:00
|
|
|
}
|