kicad/gerbview/readgerb.cpp

176 lines
5.0 KiB
C++
Raw Normal View History

/**********************/
/**** readgerb.cpp ****/
/**********************/
#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>
#include <macros.h>
/* Read a gerber file, RS274D or RS274X format.
*/
bool GERBVIEW_FRAME::Read_GERBER_File( const wxString& GERBER_FullFileName,
2007-09-25 15:10:01 +00:00
const wxString& D_Code_FullFileName )
{
2011-03-16 10:47:15 +00:00
int G_command = 0; // command number for G commands like G04
int D_commande = 0; // command number for D commands like D02
2008-11-07 07:55:28 +00:00
char line[GERBER_BUFZ];
2008-11-07 07:55:28 +00:00
wxString msg;
char* text;
LAYER_NUM layer; // current layer used in GerbView
2007-09-25 15:10:01 +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
{
g_GERBER_List[layer] = new GERBER_IMAGE( this, layer );
2007-09-25 15:10:01 +00:00
}
GERBER_IMAGE* gerber = g_GERBER_List[layer];
ClearMessageList( );
/* Set the gerber scale: */
2008-11-08 06:44:07 +00:00
gerber->ResetDefaultValues();
2007-09-25 15:10:01 +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
{
msg.Printf( _( "File <%s> not found" ), GetChars( GERBER_FullFileName ) );
DisplayError( this, msg, 10 );
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
SetLocaleTo_C_standard();
2007-09-25 15:10:01 +00:00
while( true )
2007-09-25 15:10:01 +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;
2008-11-08 06:44:07 +00:00
fclose( gerber->m_Current_File );
2008-11-08 06:44:07 +00:00
gerber->m_FilesPtr--;
gerber->m_Current_File =
gerber->m_FilesList[gerber->m_FilesPtr];
2007-09-25 15:10:01 +00:00
continue;
}
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;
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;
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;
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 );
gerber->Execute_DCODE_Command( text, D_commande );
2007-09-25 15:10:01 +00:00
break;
case 'X':
case 'Y': /* Move or draw command */
gerber->m_CurrentPos = gerber->ReadXYCoord( text );
2007-09-25 15:10:01 +00:00
if( *text == '*' ) // command like X12550Y19250*
{
gerber->Execute_DCODE_Command( text,
gerber->m_Last_Pen_Command );
2007-09-25 15:10:01 +00:00
}
break;
case 'I':
case 'J': /* Auxiliary Move command */
gerber->m_IJPos = gerber->ReadIJCoord( text );
if( *text == '*' ) // command like X35142Y15945J504*
{
gerber->Execute_DCODE_Command( text,
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;
gerber->ReadRS274XCommand( line, text );
2007-09-25 15:10:01 +00:00
}
else //Error
{
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:
text++;
msg.Printf( wxT("Unexpected symbol <%c>"), *text );
ReportMessage( msg );
2007-09-25 15:10:01 +00:00
break;
}
}
}
fclose( gerber->m_Current_File );
SetLocaleTo_Default();
2007-09-25 15:10:01 +00:00
gerber->m_InUse = true;
// Display errors list
if( m_Messages.size() > 0 )
2007-09-25 15:10:01 +00:00
{
HTML_MESSAGE_BOX dlg( this, _("Errors") );
dlg.ListSet(m_Messages);
dlg.ShowModal();
2007-09-25 15:10:01 +00:00
}
/* Init DCodes list and perhaps read a DCODES file,
* if the gerber file is only a RS274D file
* (i.e. without any aperture information)
*/
if( !gerber->m_Has_DCode )
2007-09-25 15:10:01 +00:00
{
return LoadDCodeFile( D_Code_FullFileName );
2007-09-25 15:10:01 +00:00
}
return true;
}