2009-11-09 14:00:22 +00:00
|
|
|
/**********************/
|
|
|
|
/**** readgerb.cpp ****/
|
|
|
|
/**********************/
|
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 <gestfich.h>
|
|
|
|
#include <gerbview.h>
|
|
|
|
#include <class_GERBER.h>
|
|
|
|
|
|
|
|
#include <html_messagebox.h>
|
2013-04-09 16:00:46 +00:00
|
|
|
#include <macros.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-10-05 11:44:34 +00:00
|
|
|
/* Read a gerber file, RS274D or RS274X format.
|
2009-11-09 14:00:22 +00:00
|
|
|
*/
|
2011-03-12 09:50:21 +00:00
|
|
|
bool GERBVIEW_FRAME::Read_GERBER_File( const wxString& GERBER_FullFileName,
|
2007-09-25 15:10:01 +00:00
|
|
|
const wxString& D_Code_FullFileName )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-03-16 10:47:15 +00:00
|
|
|
int G_command = 0; // command number for G commands like G04
|
2011-09-30 18:15:37 +00:00
|
|
|
int D_commande = 0; // command number for D commands like D02
|
2008-11-07 07:55:28 +00:00
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
char line[GERBER_BUFZ];
|
2008-11-07 07:55:28 +00:00
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
wxString msg;
|
|
|
|
char* text;
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM layer; // current layer used in GerbView
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2011-03-14 21:19:13 +00:00
|
|
|
layer = getActiveLayer();
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2008-11-08 06:44:07 +00:00
|
|
|
if( g_GERBER_List[layer] == NULL )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2010-10-16 14:51:22 +00:00
|
|
|
g_GERBER_List[layer] = new GERBER_IMAGE( this, layer );
|
2007-09-25 15:10:01 +00:00
|
|
|
}
|
|
|
|
|
2010-10-16 14:51:22 +00:00
|
|
|
GERBER_IMAGE* gerber = g_GERBER_List[layer];
|
2010-10-05 11:44:34 +00:00
|
|
|
ClearMessageList( );
|
2007-11-02 09:58:42 +00:00
|
|
|
|
|
|
|
/* Set the gerber scale: */
|
2008-11-08 06:44:07 +00:00
|
|
|
gerber->ResetDefaultValues();
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2007-11-02 09:58:42 +00:00
|
|
|
/* Read the gerber file */
|
2008-11-08 06:44:07 +00:00
|
|
|
gerber->m_Current_File = wxFopen( GERBER_FullFileName, wxT( "rt" ) );
|
|
|
|
if( gerber->m_Current_File == 0 )
|
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
|
|
|
}
|
|
|
|
|
2008-11-08 06:44:07 +00:00
|
|
|
gerber->m_FileName = GERBER_FullFileName;
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2008-02-23 01:26:21 +00:00
|
|
|
wxString path = wxPathOnly( GERBER_FullFileName );
|
|
|
|
if( path != wxEmptyString )
|
|
|
|
wxSetWorkingDirectory( path );
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
SetLocaleTo_C_standard();
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2010-11-05 08:14:00 +00:00
|
|
|
while( true )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2009-11-09 14:00:22 +00:00
|
|
|
if( fgets( line, sizeof(line), gerber->m_Current_File ) == NULL )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2008-11-08 06:44:07 +00:00
|
|
|
if( gerber->m_FilesPtr == 0 )
|
2007-09-25 15:10:01 +00:00
|
|
|
break;
|
2007-11-02 09:58:42 +00:00
|
|
|
|
2008-11-08 06:44:07 +00:00
|
|
|
fclose( gerber->m_Current_File );
|
2007-11-02 09:58:42 +00:00
|
|
|
|
2008-11-08 06:44:07 +00:00
|
|
|
gerber->m_FilesPtr--;
|
|
|
|
gerber->m_Current_File =
|
|
|
|
gerber->m_FilesList[gerber->m_FilesPtr];
|
2007-11-02 09:58:42 +00:00
|
|
|
|
2007-09-25 15:10:01 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-11-02 09:58:42 +00:00
|
|
|
|
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
|
2008-11-08 06:44:07 +00:00
|
|
|
gerber->m_CommandState = END_BLOCK;
|
2007-09-25 15:10:01 +00:00
|
|
|
text++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'M': // End file
|
2008-11-08 06:44:07 +00:00
|
|
|
gerber->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 */
|
2011-03-16 10:47:15 +00:00
|
|
|
G_command = gerber->ReturnGCodeNumber( text );
|
|
|
|
gerber->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 */
|
2008-11-08 06:44:07 +00:00
|
|
|
D_commande = gerber->ReturnDCodeNumber( text );
|
2010-10-15 18:59:26 +00:00
|
|
|
gerber->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 */
|
2010-10-09 11:03:03 +00:00
|
|
|
gerber->m_CurrentPos = gerber->ReadXYCoord( text );
|
2007-09-25 15:10:01 +00:00
|
|
|
if( *text == '*' ) // command like X12550Y19250*
|
|
|
|
{
|
2010-10-15 18:59:26 +00:00
|
|
|
gerber->Execute_DCODE_Command( text,
|
2009-04-29 17:09:00 +00:00
|
|
|
gerber->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 */
|
2010-10-09 11:03:03 +00:00
|
|
|
gerber->m_IJPos = gerber->ReadIJCoord( text );
|
|
|
|
if( *text == '*' ) // command like X35142Y15945J504*
|
|
|
|
{
|
2010-10-15 18:59:26 +00:00
|
|
|
gerber->Execute_DCODE_Command( text,
|
2010-10-09 11:03:03 +00:00
|
|
|
gerber->m_Last_Pen_Command );
|
|
|
|
}
|
2007-09-25 15:10:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '%':
|
2008-11-08 06:44:07 +00:00
|
|
|
if( gerber->m_CommandState != ENTER_RS274X_CMD )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2008-11-08 06:44:07 +00:00
|
|
|
gerber->m_CommandState = ENTER_RS274X_CMD;
|
2010-10-15 18:59:26 +00:00
|
|
|
gerber->ReadRS274XCommand( line, text );
|
2007-09-25 15:10:01 +00:00
|
|
|
}
|
|
|
|
else //Error
|
|
|
|
{
|
2010-10-05 19:54:27 +00:00
|
|
|
ReportMessage( wxT("Expected RS274X Command") );
|
2008-11-08 06:44:07 +00:00
|
|
|
gerber->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 );
|
|
|
|
ReportMessage( msg );
|
2007-09-25 15:10:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-05 19:54:27 +00:00
|
|
|
fclose( gerber->m_Current_File );
|
2011-03-12 09:50:21 +00:00
|
|
|
SetLocaleTo_Default();
|
2007-09-25 15:10:01 +00:00
|
|
|
|
2011-04-05 17:49:14 +00:00
|
|
|
gerber->m_InUse = true;
|
|
|
|
|
2010-10-05 19:54:27 +00:00
|
|
|
// Display errors list
|
|
|
|
if( m_Messages.size() > 0 )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2011-09-04 18:35:14 +00:00
|
|
|
HTML_MESSAGE_BOX dlg( this, _("Errors") );
|
2010-10-05 19:54:27 +00:00
|
|
|
dlg.ListSet(m_Messages);
|
|
|
|
dlg.ShowModal();
|
2007-09-25 15:10:01 +00:00
|
|
|
}
|
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
/* Init DCodes list and perhaps read a DCODES file,
|
2010-10-05 19:54:27 +00:00
|
|
|
* if the gerber file is only a RS274D file
|
|
|
|
* (i.e. without any aperture information)
|
2007-11-02 09:58:42 +00:00
|
|
|
*/
|
2008-11-09 02:57:42 +00:00
|
|
|
if( !gerber->m_Has_DCode )
|
2007-09-25 15:10:01 +00:00
|
|
|
{
|
2011-03-13 18:03:43 +00:00
|
|
|
return LoadDCodeFile( D_Code_FullFileName );
|
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
|
|
|
}
|