kicad/gerbview/readgerb.cpp

199 lines
5.5 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 "pcbplot.h"
#include "protos.h"
#include "dialog_load_error.h"
/* Read a gerber file, RS274D or RS274X format.
*/
2009-11-21 20:44:19 +00:00
bool WinEDA_GerberFrame::Read_GERBER_File( const wxString& GERBER_FullFileName,
2007-09-25 15:10:01 +00:00
const wxString& D_Code_FullFileName )
{
int G_commande = 0,
D_commande = 0; /* command number for G or D commands
* (like G04 or 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;
int layer; /* current layer used in gerbview */
GERBER* gerber;
2007-09-25 15:10:01 +00:00
layer = GetScreen()->m_Active_Layer;
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( this, layer );
2007-09-25 15:10:01 +00:00
}
2008-11-08 06:44:07 +00:00
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 = _( "File " ) + GERBER_FullFileName + _( " not found" );
DisplayError( this, msg, 10 );
2007-09-25 15:10:01 +00:00
return FALSE;
}
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 )
{
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++;
2007-09-25 15:10:01 +00:00
break;
case 'G': /* Line type Gxx : command */
2008-11-08 06:44:07 +00:00
G_commande = gerber->ReturnGCodeNumber( text );
gerber->Execute_G_Command( text, G_commande );
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 );
2009-11-21 20:44:19 +00:00
gerber->Execute_DCODE_Command( this, 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*
{
2009-11-21 20:44:19 +00:00
gerber->Execute_DCODE_Command( this, 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 );
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( this, 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 );
2007-09-25 15:10:01 +00:00
// Display errors list
if( m_Messages.size() > 0 )
2007-09-25 15:10:01 +00:00
{
DIALOG_LOAD_ERROR dlg( this );
dlg.ListSet(m_Messages);
dlg.ShowModal();
2007-09-25 15:10:01 +00:00
}
SetLocaleTo_Default();
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
{
wxFileName fn;
2007-09-25 15:10:01 +00:00
if( D_Code_FullFileName.IsEmpty() )
{
wxString wildcard;
fn = GERBER_FullFileName;
fn.SetExt( g_PenFilenameExt );
wildcard.Printf( _( "Gerber DCODE files (%s)|*.%s" ),
GetChars( g_PenFilenameExt ),
GetChars( g_PenFilenameExt ) );
wildcard += AllFilesWildcard;
wxFileDialog dlg( this, _( "Load GERBER DCODE File" ),
wxEmptyString, fn.GetFullName(), wildcard,
wxFD_OPEN | wxFD_FILE_MUST_EXIST );
2007-09-25 15:10:01 +00:00
}
else
fn = D_Code_FullFileName;
2007-09-25 15:10:01 +00:00
if( fn.IsOk() )
2007-09-25 15:10:01 +00:00
{
Read_D_Code_File( fn.GetFullPath() );
2007-09-25 15:10:01 +00:00
CopyDCodesSizeToItems();
}
else
return false;
2007-09-25 15:10:01 +00:00
}
return true;
}