/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2007 Dick Hollenbeck, dick@softplc.com * Copyright (C) 2015 KiCad Developers, see change_log.txt for contributors. * * 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 */ /*************************************************/ /* class_drc_item.cpp - DRC_ITEM class functions */ /*************************************************/ #include #include #include #include #include #include #include wxString DRC_ITEM::GetErrorText() const { switch( m_ErrorCode ) { case DRCE_UNCONNECTED_ITEMS: return wxString( _( "Unconnected items" ) ); case DRCE_TRACK_NEAR_THROUGH_HOLE: return wxString( _( "Track near thru-hole" ) ); case DRCE_TRACK_NEAR_PAD: return wxString( _( "Track near pad" ) ); case DRCE_TRACK_NEAR_VIA: return wxString( _( "Track near via" ) ); case DRCE_VIA_NEAR_VIA: return wxString( _( "Via near via" ) ); case DRCE_VIA_NEAR_TRACK: return wxString( _( "Via near track" ) ); case DRCE_TRACK_ENDS1: case DRCE_TRACK_ENDS2: case DRCE_TRACK_ENDS3: case DRCE_TRACK_ENDS4: case DRCE_ENDS_PROBLEM1: case DRCE_ENDS_PROBLEM2: case DRCE_ENDS_PROBLEM3: case DRCE_ENDS_PROBLEM4: case DRCE_ENDS_PROBLEM5: return wxString( _( "Two track ends too close" ) ); case DRCE_TRACK_SEGMENTS_TOO_CLOSE: return wxString( _( "Two parallel track segments too close" ) ); case DRCE_TRACKS_CROSSING: return wxString( _( "Tracks crossing" ) ); case DRCE_PAD_NEAR_PAD1: return wxString( _( "Pad near pad" ) ); case DRCE_VIA_HOLE_BIGGER: return wxString( _( "Via hole > diameter" ) ); case DRCE_MICRO_VIA_INCORRECT_LAYER_PAIR: return wxString( _( "Micro Via: incorrect layer pairs (not adjacent)" ) ); case DRCE_MICRO_VIA_NOT_ALLOWED: return wxString( _( "Micro Via: not allowed" ) ); case DRCE_BURIED_VIA_NOT_ALLOWED: return wxString( _( "Buried Via: not allowed" ) ); case DRCE_DISABLED_LAYER_ITEM: return wxString( _( "Item on a disabled layer" ) ); case COPPERAREA_INSIDE_COPPERAREA: return wxString( _( "Copper area inside copper area" ) ); case COPPERAREA_CLOSE_TO_COPPERAREA: return wxString( _( "Copper areas intersect or are too close" ) ); case DRCE_SUSPICIOUS_NET_FOR_ZONE_OUTLINE: return wxString( _( "Copper area belongs a net which has no pads. This is strange" ) ); case DRCE_HOLE_NEAR_PAD: return wxString( _( "Hole near pad" ) ); case DRCE_HOLE_NEAR_TRACK: return wxString( _( "Hole near track" ) ); case DRCE_TOO_SMALL_TRACK_WIDTH: return wxString( _( "Too small track width" ) ); case DRCE_TOO_SMALL_VIA: return wxString( _( "Too small via size" ) ); case DRCE_TOO_SMALL_MICROVIA: return wxString( _( "Too small micro via size" ) ); case DRCE_TOO_SMALL_VIA_DRILL: return wxString( _( "Too small via drill" ) ); case DRCE_TOO_SMALL_MICROVIA_DRILL: return wxString( _( "Too small micro via drill" ) ); // use < since this is text ultimately embedded in HTML case DRCE_NETCLASS_TRACKWIDTH: return wxString( _( "NetClass Track Width < global limit" ) ); case DRCE_NETCLASS_CLEARANCE: return wxString( _( "NetClass Clearance < global limit" ) ); case DRCE_NETCLASS_VIASIZE: return wxString( _( "NetClass Via Dia < global limit" ) ); case DRCE_NETCLASS_VIADRILLSIZE: return wxString( _( "NetClass Via Drill < global limit" ) ); case DRCE_NETCLASS_uVIASIZE: return wxString( _( "NetClass uVia Dia < global limit" ) ); case DRCE_NETCLASS_uVIADRILLSIZE: return wxString( _( "NetClass uVia Drill < global limit" ) ); case DRCE_VIA_INSIDE_KEEPOUT: return wxString( _( "Via inside a keepout area" ) ); case DRCE_TRACK_INSIDE_KEEPOUT: return wxString( _( "Track inside a keepout area" ) ); case DRCE_PAD_INSIDE_KEEPOUT: return wxString( _( "Pad inside a keepout area" ) ); case DRCE_VIA_INSIDE_TEXT: return wxString( _( "Via inside a text" ) ); case DRCE_TRACK_INSIDE_TEXT: return wxString( _( "Track inside a text" ) ); case DRCE_PAD_INSIDE_TEXT: return wxString( _( "Pad inside a text" ) ); case DRCE_OVERLAPPING_FOOTPRINTS: return wxString( _( "Courtyards overlap" ) ); case DRCE_MISSING_COURTYARD_IN_FOOTPRINT: return wxString( _( "Footprint has no courtyard defined" ) ); case DRCE_MALFORMED_COURTYARD_IN_FOOTPRINT: return wxString( _( "Footprint has incorrect courtyard (not a closed shape)" ) ); default: return wxString::Format( wxT( "Unknown DRC error code %d" ), m_ErrorCode ); } } wxString DRC_ITEM::ShowCoord( const wxPoint& aPos ) { return wxString::Format( _( "@(%s, %s)" ), GetChars( CoordinateToString( aPos.x ) ), GetChars( CoordinateToString( aPos.y ) ) ); } wxString DRC_ITEM::ShowHtml() const { wxString ret; wxString mainText = m_MainText; // a wxHtmlWindows does not like < and > in the text to display // because these chars have a special meaning in html mainText.Replace( wxT("<"), wxT("<") ); mainText.Replace( wxT(">"), wxT(">") ); wxString errText = GetErrorText(); errText.Replace( wxT("<"), wxT("<") ); errText.Replace( wxT(">"), wxT(">") ); if( m_noCoordinate ) { // omit the coordinate, a NETCLASS has no location ret.Printf( _( "%s
   %s" ), GetChars( errText ), GetChars( mainText ) ); } else if( m_hasSecondItem ) { wxString auxText = m_AuxiliaryText; auxText.Replace( wxT("<"), wxT("<") ); auxText.Replace( wxT(">"), wxT(">") ); // an html fragment for the entire message in the listbox. feel free // to add color if you want: ret.Printf( _( "%s
   %s: %s
   %s: %s" ), GetChars( errText ), GetChars( ShowCoord( m_MainPosition )), GetChars( mainText ), GetChars( ShowCoord( m_AuxiliaryPosition )), GetChars( auxText ) ); } else { ret.Printf( _( "%s
   %s: %s" ), GetChars( errText ), GetChars( ShowCoord( m_MainPosition ) ), GetChars( mainText ) ); } return ret; } wxString DRC_ITEM::ShowReport() const { wxString ret; if( m_hasSecondItem ) { ret.Printf( wxT( "ErrType(%d): %s\n %s: %s\n %s: %s\n" ), m_ErrorCode, GetChars( GetErrorText() ), GetChars( ShowCoord( m_MainPosition ) ), GetChars( m_MainText ), GetChars( ShowCoord( m_AuxiliaryPosition ) ), GetChars( m_AuxiliaryText ) ); } else { ret.Printf( wxT( "ErrType(%d): %s\n %s: %s\n" ), m_ErrorCode, GetChars( GetErrorText() ), GetChars( ShowCoord( m_MainPosition ) ), GetChars( m_MainText ) ); } return ret; } BOARD_ITEM* DRC_ITEM::GetMainItem( BOARD* aBoard ) const { return aBoard->GetItem( m_mainItemWeakRef, false /* copper only */ ); } BOARD_ITEM* DRC_ITEM::GetAuxiliaryItem( BOARD* aBoard ) const { return aBoard->GetItem( m_auxItemWeakRef, false /* copper only */ ); }