2014-10-21 18:36:45 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-06-05 12:26:39 +00:00
|
|
|
* Copyright (C) 2007-2016 Jean-Pierre Charras jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-21 18:36:45 +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
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <kicad_string.h>
|
|
|
|
#include <gerbview.h>
|
2014-06-27 17:07:42 +00:00
|
|
|
#include <gerbview_frame.h>
|
2016-05-25 14:48:38 +00:00
|
|
|
#include <class_gerber_file_image.h>
|
2016-05-26 07:50:49 +00:00
|
|
|
#include <class_gerber_file_image_list.h>
|
2017-09-17 22:43:20 +00:00
|
|
|
#include <view/view.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
#include <html_messagebox.h>
|
2013-04-09 16:00:46 +00:00
|
|
|
#include <macros.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-11-22 11:52:57 +00:00
|
|
|
/* Read a gerber file, RS274D, RS274X or RS274X2 format.
|
2009-11-09 14:00:22 +00:00
|
|
|
*/
|
2016-05-25 09:45:55 +00:00
|
|
|
bool GERBVIEW_FRAME::Read_GERBER_File( const wxString& GERBER_FullFileName )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-11-09 14:00:22 +00:00
|
|
|
wxString msg;
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
int layer = GetActiveLayer();
|
2016-06-18 09:37:36 +00:00
|
|
|
GERBER_FILE_IMAGE_LIST* images = GetImagesList();
|
|
|
|
GERBER_FILE_IMAGE* gerber = GetGbrImage( layer );
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2014-11-22 11:52:57 +00:00
|
|
|
if( gerber == NULL )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2016-06-05 12:26:39 +00:00
|
|
|
gerber = new GERBER_FILE_IMAGE( layer );
|
2016-06-17 18:00:29 +00:00
|
|
|
images->AddGbrImage( gerber, layer );
|
2007-09-25 15:10:01 +00:00
|
|
|
}
|
|
|
|
|
2007-11-02 09:58:42 +00:00
|
|
|
/* Read the gerber file */
|
2016-06-05 12:26:39 +00:00
|
|
|
bool success = gerber->LoadGerberFile( GERBER_FullFileName );
|
|
|
|
|
|
|
|
if( !success )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2013-04-09 17:49:01 +00:00
|
|
|
msg.Printf( _( "File <%s> not found" ), GetChars( GERBER_FullFileName ) );
|
2007-11-02 09:58:42 +00:00
|
|
|
DisplayError( this, msg, 10 );
|
2012-01-22 17:20:22 +00:00
|
|
|
return false;
|
2007-09-25 15:10:01 +00:00
|
|
|
}
|
|
|
|
|
2016-06-05 12:26:39 +00:00
|
|
|
// Display errors list
|
|
|
|
if( gerber->GetMessages().size() > 0 )
|
|
|
|
{
|
|
|
|
HTML_MESSAGE_BOX dlg( this, _("Errors") );
|
|
|
|
dlg.ListSet(gerber->GetMessages());
|
|
|
|
dlg.ShowModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if the gerber file is only a RS274D file
|
2017-08-19 16:28:11 +00:00
|
|
|
* (i.e. without any aperture information, but with items), warn the user:
|
2016-06-05 12:26:39 +00:00
|
|
|
*/
|
2017-08-19 16:28:11 +00:00
|
|
|
if( !gerber->m_Has_DCode && gerber->GetItemsList() )
|
2016-06-05 12:26:39 +00:00
|
|
|
{
|
|
|
|
msg = _("Warning: this file has no D-Code definition\n"
|
|
|
|
"It is perhaps an old RS274D file\n"
|
|
|
|
"Therefore the size of items is undefined");
|
|
|
|
wxMessageBox( msg );
|
|
|
|
}
|
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
auto canvas = GetGalCanvas();
|
|
|
|
if( canvas )
|
|
|
|
{
|
|
|
|
auto view = canvas->GetView();
|
|
|
|
|
|
|
|
if( gerber->m_ImageNegative )
|
|
|
|
{
|
|
|
|
// TODO: find a way to handle negative images
|
|
|
|
// (maybe convert geometry into positives?)
|
|
|
|
}
|
|
|
|
|
|
|
|
for( auto item = gerber->GetItemsList(); item; item = item->Next() )
|
|
|
|
{
|
|
|
|
view->Add( (KIGFX::VIEW_ITEM*) item );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-05 12:26:39 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool GERBER_FILE_IMAGE::LoadGerberFile( const wxString& aFullFileName )
|
|
|
|
{
|
|
|
|
int G_command = 0; // command number for G commands like G04
|
|
|
|
int D_commande = 0; // command number for D commands like D02
|
|
|
|
char line[GERBER_BUFZ];
|
|
|
|
char* text;
|
|
|
|
|
|
|
|
ClearMessageList( );
|
|
|
|
ResetDefaultValues();
|
|
|
|
|
|
|
|
// Read the gerber file */
|
|
|
|
m_Current_File = wxFopen( aFullFileName, wxT( "rt" ) );
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2016-06-05 12:26:39 +00:00
|
|
|
if( m_Current_File == 0 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
m_FileName = aFullFileName;
|
|
|
|
|
2014-11-23 11:41:57 +00:00
|
|
|
LOCALE_IO toggleIo;
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2016-06-05 12:26:39 +00:00
|
|
|
wxString msg;
|
|
|
|
|
2010-11-05 08:14:00 +00:00
|
|
|
while( true )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2016-06-05 12:26:39 +00:00
|
|
|
if( fgets( line, sizeof(line), m_Current_File ) == NULL )
|
2017-08-11 09:21:33 +00:00
|
|
|
break;
|
2007-11-02 09:58:42 +00:00
|
|
|
|
2017-09-28 22:38:36 +00:00
|
|
|
m_LineNum++;
|
2008-11-08 06:44:07 +00:00
|
|
|
text = StrPurge( line );
|
2007-09-25 15:10:01 +00:00
|
|
|
|
|
|
|
while( text && *text )
|
|
|
|
{
|
|
|
|
switch( *text )
|
|
|
|
{
|
|
|
|
case ' ':
|
|
|
|
case '\r':
|
|
|
|
case '\n':
|
|
|
|
text++;
|
|
|
|
break;
|
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
case '*': // End command
|
2016-06-05 12:26:39 +00:00
|
|
|
m_CommandState = END_BLOCK;
|
2007-09-25 15:10:01 +00:00
|
|
|
text++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'M': // End file
|
2016-06-05 12:26:39 +00:00
|
|
|
m_CommandState = CMD_IDLE;
|
2007-09-25 15:10:01 +00:00
|
|
|
while( *text )
|
|
|
|
text++;
|
|
|
|
break;
|
|
|
|
|
2007-11-02 09:58:42 +00:00
|
|
|
case 'G': /* Line type Gxx : command */
|
2016-06-05 12:26:39 +00:00
|
|
|
G_command = GCodeNumber( text );
|
|
|
|
Execute_G_Command( text, G_command );
|
2007-09-25 15:10:01 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
case 'D': /* Line type Dxx : Tool selection (xx > 0) or
|
|
|
|
* command if xx = 0..9 */
|
2016-06-05 12:26:39 +00:00
|
|
|
D_commande = DCodeNumber( text );
|
|
|
|
Execute_DCODE_Command( text, D_commande );
|
2007-09-25 15:10:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'X':
|
2007-11-02 09:58:42 +00:00
|
|
|
case 'Y': /* Move or draw command */
|
2016-06-05 12:26:39 +00:00
|
|
|
m_CurrentPos = ReadXYCoord( text );
|
2007-09-25 15:10:01 +00:00
|
|
|
if( *text == '*' ) // command like X12550Y19250*
|
|
|
|
{
|
2016-06-05 12:26:39 +00:00
|
|
|
Execute_DCODE_Command( text,
|
|
|
|
m_Last_Pen_Command );
|
2007-09-25 15:10:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'I':
|
2007-11-02 09:58:42 +00:00
|
|
|
case 'J': /* Auxiliary Move command */
|
2016-06-05 12:26:39 +00:00
|
|
|
m_IJPos = ReadIJCoord( text );
|
2017-04-08 10:53:40 +00:00
|
|
|
|
2010-10-09 11:03:03 +00:00
|
|
|
if( *text == '*' ) // command like X35142Y15945J504*
|
|
|
|
{
|
2016-06-05 12:26:39 +00:00
|
|
|
Execute_DCODE_Command( text,
|
|
|
|
m_Last_Pen_Command );
|
2010-10-09 11:03:03 +00:00
|
|
|
}
|
2007-09-25 15:10:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '%':
|
2016-06-05 12:26:39 +00:00
|
|
|
if( m_CommandState != ENTER_RS274X_CMD )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2016-06-05 12:26:39 +00:00
|
|
|
m_CommandState = ENTER_RS274X_CMD;
|
|
|
|
ReadRS274XCommand( line, text );
|
2007-09-25 15:10:01 +00:00
|
|
|
}
|
|
|
|
else //Error
|
|
|
|
{
|
2016-06-05 12:26:39 +00:00
|
|
|
AddMessageToList( wxT("Expected RS274X Command") );
|
|
|
|
m_CommandState = CMD_IDLE;
|
2007-09-25 15:10:01 +00:00
|
|
|
text++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2007-11-02 09:58:42 +00:00
|
|
|
text++;
|
2010-10-05 19:54:27 +00:00
|
|
|
msg.Printf( wxT("Unexpected symbol <%c>"), *text );
|
2016-06-05 12:26:39 +00:00
|
|
|
AddMessageToList( msg );
|
2007-09-25 15:10:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-23 11:41:57 +00:00
|
|
|
|
2016-06-05 12:26:39 +00:00
|
|
|
fclose( m_Current_File );
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2016-06-05 12:26:39 +00:00
|
|
|
m_InUse = true;
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
return true;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|