31#include <wx/datetime.h>
44 wxDateTime date( wxDateTime::GetTimeNow() );
47 wxString timezone_offset;
48 timezone_offset = date.Format(
"%z" );
53 if( timezone_offset.Len() > 3 )
55 timezone_offset.insert( 3,
":", 1 );
62 msg.Printf( wxS(
"%%TF.CreationDate,%s%s*%%" ), date.FormatISOCombined(), timezone_offset );
66 msg.Printf( wxS(
"G04 #@! TF.CreationDate,%s%s*" ), date.FormatISOCombined(),
71 msg.Printf( wxS(
"%s%s" ), date.FormatISOCombined(), timezone_offset );
75 msg.Printf( wxS(
"; #@! TF.CreationDate,%s%s" ), date.FormatISOCombined(),
106 wxString bname = aText;
107 int cnt = 16 - bname.Len();
110 bname.Append(
'X', cnt );
115 for(
unsigned ii = 0; ii < 4; ii++ )
117 int cc = int( bname[chr_idx++] ) & 0xFF;
118 guid << wxString::Format(
"%2.2x", cc );
124 for(
unsigned ii = 0; ii < 2; ii++ )
126 int cc = int( bname[chr_idx++] ) & 0xFF;
127 guid << wxString::Format(
"%2.2x", cc );
133 int cc = int( bname[chr_idx++] ) << 4 & 0xFF0;
134 cc += int( bname[chr_idx] ) >> 4 & 0x0F;
135 guid << wxString::Format(
"%3.3x", cc );
141 int cc = (int( bname[chr_idx++] ) & 0x0F) << 8;
142 cc += int( bname[chr_idx++] ) & 0xFF;
143 guid << wxString::Format(
"%3.3x", cc );
149 for(
unsigned ii = 0; ii < 6; ii++ )
151 int cc = int( bname[chr_idx++] ) & 0xFF;
152 guid << wxString::Format(
"%2.2x", cc );
160 bool aUseX1StructuredComment,
161 const std::string& aCustomAttribute )
163 std::string attribute_string;
164 std::string comment_string;
177 attribute_string =
"TA.AperFunction,EtchedComponent";
181 attribute_string =
"TA.AperFunction,Conductor";
185 attribute_string =
"TA.AperFunction,Profile";
189 attribute_string =
"TA.AperFunction,ViaPad";
194 attribute_string =
"TA.AperFunction,NonConductor";
199 attribute_string =
"TA.AperFunction,ComponentPad";
205 attribute_string =
"TA.AperFunction,SMDPad,SMDef";
210 attribute_string =
"TA.AperFunction,SMDPad,CuDef";
215 attribute_string =
"TA.AperFunction,BGAPad,SMDef";
220 attribute_string =
"TA.AperFunction,BGAPad,CuDef";
225 attribute_string =
"TA.AperFunction,ConnectorPad";
230 attribute_string =
"TA.AperFunction,WasherPad";
235 attribute_string =
"TA.AperFunction,HeatsinkPad";
240 attribute_string =
"TA.AperFunction,TestPad";
245 attribute_string =
"TA.AperFunction,FiducialPad,Global";
250 attribute_string =
"TA.AperFunction,FiducialPad,Local";
255 attribute_string =
"TA.AperFunction,CastellatedPad";
260 attribute_string =
"TA.AperFunction,CastellatedDrill";
264 attribute_string =
"TA.AperFunction,ViaDrill";
269 attribute_string =
"TA.AperFunction,ComponentDrill";
276 comment_string =
"aperture for slot hole";
277 attribute_string =
"TA.AperFunction,ComponentDrill";
283 attribute_string =
"TA.AperFunction,ComponentMain";
290 attribute_string =
"TA.AperFunction,ComponentPin";
298 attribute_string =
"TA.AperFunction,ComponentPin";
304 attribute_string =
"TA.AperFunction,ComponentOutline,Body";
310 attribute_string =
"TA.AperFunction,ComponentOutline,Lead2Lead";
316 attribute_string =
"TA.AperFunction,ComponentOutline,Footprint";
322 attribute_string =
"TA.AperFunction,ComponentOutline,Courtyard";
326 attribute_string =
"TA.AperFunction,Other," + aCustomAttribute;
330 std::string full_attribute_string;
333 if( !attribute_string.empty() )
335 if( !comment_string.empty() )
337 full_attribute_string =
"G04 " + comment_string +
"*\n";
340 if( aUseX1StructuredComment )
342 full_attribute_string +=
"G04 #@! ";
347 full_attribute_string +=
"%";
352 full_attribute_string += attribute_string + eol_string;
354 return full_attribute_string;
362 if( aCode >=
'0' && aCode <=
'9' )
365 if( aCode >=
'A' && aCode <=
'F' )
366 return aCode -
'A' + 10;
368 if( aCode >=
'a' && aCode <=
'f' )
369 return aCode -
'a' + 10;
384 unsigned count = aString.Length();
386 for(
unsigned ii = 0; ii < count; ++ii )
388 unsigned code = aString[ii];
390 if( code ==
'\\' && ii < count-5 && aString[ii+1] ==
'u' )
402 for(
int jj = 0; jj < 4; jj++ )
405 code = aString[ii+jj+2];
421 txt.Append( wxChar( value ) );
427 txt.Append( aString[ii] );
433 txt.Append( aString[ii] );
455 for(
unsigned ii = 0; ii < aString.Length(); ++ii )
457 wxChar code = aString[ii];
478 if( !aAllowUtf8Chars && code > 0x7F )
487 std::snprintf( hexa,
sizeof( hexa ),
"\\u%4.4X", code & 0xFFFF );
512 std::string txt =
static_cast<const char*
>( converted.utf8_str() );
529 if( !aString.IsEmpty() && ( aString[0] !=
'\"' || aString[aString.Len()-1] !=
'\"' ) )
536 std::string txt =
static_cast<const char*
>( converted.utf8_str() );
544#define NO_NET_NAME wxT( "N/C" )
545#define NO_PAD_NAME wxT( "" )
550 bool aUseX1StructuredComment )
552 aClearPreviousAttributes =
false;
553 wxString prepend_string;
556 if( aUseX1StructuredComment )
558 prepend_string =
"G04 #@! ";
563 prepend_string =
"%";
570 if( aData ==
nullptr )
573 std::string pad_attribute_string;
574 std::string net_attribute_string;
575 std::string cmp_attribute_string;
585 pad_attribute_string = prepend_string +
"TO.P,";
601 pad_attribute_string +=
',';
606 pad_attribute_string += eol_string;
613 net_attribute_string = prepend_string +
"TO.N,";
635 net_attribute_string += eol_string;
645 cmp_attribute_string = prepend_string +
"TO.C,";
650 std::string full_attribute_string = pad_attribute_string + net_attribute_string
651 + cmp_attribute_string;
654 std::string short_attribute_string;
658 if( aLastNetAttributes != full_attribute_string )
667 bool clearDict =
false;
669 if( aLastNetAttributes.find(
"TO.P," ) != std::string::npos )
671 if( pad_attribute_string.empty() )
674 short_attribute_string.insert( 0, prepend_string +
"TO.P" + eol_string );
678 else if( aLastNetAttributes.find( pad_attribute_string ) == std::string::npos )
681 short_attribute_string += pad_attribute_string;
686 short_attribute_string += pad_attribute_string;
689 if( aLastNetAttributes.find(
"TO.N," ) != std::string::npos )
691 if( net_attribute_string.empty() )
694 short_attribute_string.insert( 0, prepend_string +
"TO.N" + eol_string );
698 else if( aLastNetAttributes.find( net_attribute_string ) == std::string::npos )
701 short_attribute_string += net_attribute_string;
706 short_attribute_string += net_attribute_string;
709 if( aLastNetAttributes.find(
"TO.C," ) != std::string::npos )
711 if( cmp_attribute_string.empty() )
719 if( pad_attribute_string.empty() )
720 short_attribute_string.insert( 0, prepend_string +
"TO.C" + eol_string );
727 else if( aLastNetAttributes.find( cmp_attribute_string ) == std::string::npos )
730 short_attribute_string += cmp_attribute_string;
735 short_attribute_string += cmp_attribute_string;
738 aClearPreviousAttributes = clearDict;
740 aLastNetAttributes = full_attribute_string;
743 aPrintedText = full_attribute_string;
745 aPrintedText = short_attribute_string;
767 wxString start_of_line(
"%TO." );
768 wxString end_of_line(
"*%\n" );
770 wxString mountTypeStrings[] =
778 if( !
m_MPN.IsEmpty() )
779 text << start_of_line <<
"CMPN," <<
m_MPN << end_of_line;
782 text << start_of_line <<
"Cpkg," <<
m_Package << end_of_line;
788 text << start_of_line <<
"CVal," <<
m_Value << end_of_line;
796 text << start_of_line <<
"CMnt," << mountTypeStrings[
m_MountType] << end_of_line;
std::string GetGerberString() const
wxString m_field
the Unicode text to print in Gbr file (after escape and quoting)
bool m_useUTF8
true to use UTF8, false to escape non ASCII7 chars
bool m_escapeString
true to quote the field in gbr file