kicad/gerbview/readgerb.cpp

229 lines
6.8 KiB
C++
Raw Normal View History

2014-10-21 18:36:45 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* 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
*/
#include <string_utils.h>
2020-10-24 01:38:50 +00:00
#include <locale_io.h>
#include <gerbview.h>
#include <gerbview_frame.h>
#include <gerber_file_image.h>
#include <gerber_file_image_list.h>
#include <view/view.h>
#include <dialogs/html_message_box.h>
#include <macros.h>
2020-10-18 17:22:15 +00:00
#include <wx/msgdlg.h>
/* Read a gerber file, RS274D, RS274X or RS274X2 format.
*/
bool GERBVIEW_FRAME::Read_GERBER_File( const wxString& GERBER_FullFileName )
{
wxString msg;
2007-09-25 15:10:01 +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
if( gerber != nullptr )
{
Erase_Current_DrawLayer( false );
}
2007-09-25 15:10:01 +00:00
// use an unique ptr while we load to free on exception properly
std::unique_ptr<GERBER_FILE_IMAGE> gerber_uptr = std::make_unique<GERBER_FILE_IMAGE>( layer );
// Read the gerber file. The image will be added only if it can be read
// to avoid broken data.
bool success = gerber_uptr->LoadGerberFile( GERBER_FullFileName );
if( !success )
2007-09-25 15:10:01 +00:00
{
gerber_uptr.reset();
2021-08-01 20:31:23 +00:00
msg.Printf( _( "File '%s' not found" ), GERBER_FullFileName );
ShowInfoBarError( msg );
return false;
2007-09-25 15:10:01 +00:00
}
gerber = gerber_uptr.release();
wxASSERT( gerber != nullptr );
images->AddGbrImage( gerber, layer );
// Display errors list
if( gerber->GetMessages().size() > 0 )
{
2021-08-01 20:31:23 +00:00
HTML_MESSAGE_BOX dlg( this, _( "Errors" ) );
dlg.ListSet( gerber->GetMessages() );
dlg.ShowModal();
}
/* if the gerber file has items using D codes but missing D codes definitions,
* it can be a deprecated RS274D file (i.e. without any aperture information),
* or has missing definitions,
* warn the user:
*/
if( gerber->GetItemsCount() && gerber->m_Has_MissingDCode )
{
if( !gerber->m_Has_DCode )
msg = _("Warning: this file has no D-Code definition\n"
"Therefore the size of some items is undefined");
else
msg = _("Warning: this file has some missing D-Code definitions\n"
"Therefore the size of some items is undefined");
wxMessageBox( msg );
}
if( GetCanvas() )
{
if( gerber->m_ImageNegative )
{
// TODO: find a way to handle negative images
// (maybe convert geometry into positives?)
}
for( auto item : gerber->GetItems() )
GetCanvas()->GetView()->Add( (KIGFX::VIEW_ITEM*) item );
}
return true;
}
// size of a single line of text from a gerber file.
// warning: some files can have *very long* lines, so the buffer must be large.
#define GERBER_BUFZ 1000000
// A large buffer to store one line
static char lineBuffer[GERBER_BUFZ+1];
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* text;
ClearMessageList( );
ResetDefaultValues();
// Read the gerber file */
m_Current_File = wxFopen( aFullFileName, wxT( "rt" ) );
2007-09-25 15:10:01 +00:00
if( m_Current_File == nullptr )
return false;
m_FileName = aFullFileName;
LOCALE_IO toggleIo;
2007-09-25 15:10:01 +00:00
wxString msg;
while( true )
2007-09-25 15:10:01 +00:00
{
if( fgets( lineBuffer, GERBER_BUFZ, m_Current_File ) == nullptr )
break;
m_LineNum++;
text = StrPurge( lineBuffer );
2007-09-25 15:10:01 +00:00
while( text && *text )
{
switch( *text )
{
case ' ':
case '\r':
case '\n':
text++;
break;
case '*': // End command
m_CommandState = END_BLOCK;
2007-09-25 15:10:01 +00:00
text++;
break;
case 'M': // End file
m_CommandState = CMD_IDLE;
2007-09-25 15:10:01 +00:00
while( *text )
text++;
break;
case 'G': /* Line type Gxx : command */
G_command = GCodeNumber( text );
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 */
D_commande = DCodeNumber( text );
Execute_DCODE_Command( text, D_commande );
2007-09-25 15:10:01 +00:00
break;
case 'X':
case 'Y': /* Move or draw command */
m_CurrentPos = ReadXYCoord( text );
2007-09-25 15:10:01 +00:00
if( *text == '*' ) // command like X12550Y19250*
{
Execute_DCODE_Command( text, m_Last_Pen_Command );
2007-09-25 15:10:01 +00:00
}
break;
case 'I':
case 'J': /* Auxiliary Move command */
m_IJPos = ReadIJCoord( text );
if( *text == '*' ) // command like X35142Y15945J504*
{
Execute_DCODE_Command( text, m_Last_Pen_Command );
}
2007-09-25 15:10:01 +00:00
break;
case '%':
if( m_CommandState != ENTER_RS274X_CMD )
2007-09-25 15:10:01 +00:00
{
m_CommandState = ENTER_RS274X_CMD;
ReadRS274XCommand( lineBuffer, GERBER_BUFZ, text );
2007-09-25 15:10:01 +00:00
}
else //Error
{
2018-11-08 15:48:03 +00:00
AddMessageToList( "Expected RS274X Command" );
m_CommandState = CMD_IDLE;
2007-09-25 15:10:01 +00:00
text++;
}
break;
default:
2018-11-08 15:48:03 +00:00
msg.Printf( "Unexpected char 0x%2.2X &lt;%c&lt;", *text, *text );
AddMessageToList( msg );
2018-11-08 15:48:03 +00:00
text++;
2007-09-25 15:10:01 +00:00
break;
}
}
}
fclose( m_Current_File );
2007-09-25 15:10:01 +00:00
m_InUse = true;
2007-09-25 15:10:01 +00:00
return true;
}