2017-02-27 10:07:52 +00:00
|
|
|
/*
|
2021-01-26 15:23:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 CERN
|
2023-08-26 19:28:53 +00:00
|
|
|
* Copyright (C) 2021-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2021-01-26 15:23:37 +00:00
|
|
|
*
|
|
|
|
* @author Alejandro García Montoro <alejandro.garciamontoro@gmail.com>
|
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
* @author Russell Oliver <roliver8143@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 3
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2017-02-27 10:07:52 +00:00
|
|
|
|
2023-12-24 00:31:24 +00:00
|
|
|
#ifndef SCH_IO_EAGLE_H_
|
|
|
|
#define SCH_IO_EAGLE_H_
|
2017-02-27 10:07:52 +00:00
|
|
|
|
2017-05-08 14:10:23 +00:00
|
|
|
#include <sch_line.h>
|
2023-12-19 17:39:26 +00:00
|
|
|
#include <sch_io/sch_io.h>
|
|
|
|
#include <sch_io/sch_io_mgr.h>
|
|
|
|
#include <io/eagle/eagle_parser.h>
|
2019-08-15 07:09:52 +00:00
|
|
|
#include <lib_item.h>
|
2018-03-28 14:03:27 +00:00
|
|
|
#include <geometry/seg.h>
|
2017-02-27 10:07:52 +00:00
|
|
|
|
2017-08-06 14:20:29 +00:00
|
|
|
#include <boost/ptr_container/ptr_map.hpp>
|
|
|
|
|
2017-10-18 08:12:22 +00:00
|
|
|
class EDA_TEXT;
|
2017-05-08 15:11:14 +00:00
|
|
|
class KIWAY;
|
|
|
|
class LINE_READER;
|
|
|
|
class SCH_SCREEN;
|
|
|
|
class SCH_SHEET;
|
|
|
|
class SCH_BITMAP;
|
|
|
|
class SCH_JUNCTION;
|
|
|
|
class SCH_NO_CONNECT;
|
2023-01-09 14:18:23 +00:00
|
|
|
class SCH_SHAPE;
|
2017-05-08 15:11:14 +00:00
|
|
|
class SCH_LINE;
|
|
|
|
class SCH_BUS_ENTRY_BASE;
|
|
|
|
class SCH_TEXT;
|
2017-06-18 11:31:11 +00:00
|
|
|
class SCH_GLOBALLABEL;
|
2021-06-10 14:10:55 +00:00
|
|
|
class SCH_SYMBOL;
|
2017-05-08 15:11:14 +00:00
|
|
|
class SCH_FIELD;
|
2022-11-06 16:51:52 +00:00
|
|
|
class STRING_UTF8_MAP;
|
2021-06-10 18:51:46 +00:00
|
|
|
class LIB_SYMBOL;
|
2021-06-15 12:31:28 +00:00
|
|
|
class SYMBOL_LIB;
|
2021-07-18 23:08:54 +00:00
|
|
|
class LIB_SHAPE;
|
2017-10-18 08:33:51 +00:00
|
|
|
class LIB_FIELD;
|
2017-05-08 15:11:14 +00:00
|
|
|
class LIB_RECTANGLE;
|
|
|
|
class LIB_POLYLINE;
|
2017-06-18 11:31:11 +00:00
|
|
|
class LIB_PIN;
|
2017-06-18 12:36:35 +00:00
|
|
|
class LIB_TEXT;
|
2021-06-06 13:34:57 +00:00
|
|
|
class wxXmlNode;
|
2017-02-27 10:07:52 +00:00
|
|
|
|
|
|
|
|
2021-07-01 22:28:41 +00:00
|
|
|
struct EAGLE_LIBRARY
|
2017-06-26 07:56:11 +00:00
|
|
|
{
|
2017-12-14 09:37:32 +00:00
|
|
|
wxString name;
|
2021-06-10 18:51:46 +00:00
|
|
|
boost::ptr_map<wxString, LIB_SYMBOL> KiCadSymbols;
|
2017-12-14 09:37:32 +00:00
|
|
|
std::unordered_map<wxString, wxXmlNode*> SymbolNodes;
|
|
|
|
std::unordered_map<wxString, int> GateUnit;
|
|
|
|
std::unordered_map<wxString, wxString> package;
|
2021-07-01 22:28:41 +00:00
|
|
|
};
|
2017-06-30 01:52:05 +00:00
|
|
|
|
2017-12-14 09:37:32 +00:00
|
|
|
typedef boost::ptr_map<wxString, EPART> EPART_LIST;
|
2017-08-06 14:20:29 +00:00
|
|
|
|
2017-06-26 07:56:11 +00:00
|
|
|
|
2017-10-03 10:30:23 +00:00
|
|
|
/**
|
2023-12-19 17:39:26 +00:00
|
|
|
* A #SCH_IO derivation for loading 6.x+ Eagle schematic files.
|
2017-10-03 10:30:23 +00:00
|
|
|
*
|
2023-12-19 17:39:26 +00:00
|
|
|
* As with all SCH_IO there is no UI dependencies i.e. windowing calls allowed.
|
2017-10-03 10:30:23 +00:00
|
|
|
*/
|
2023-12-24 00:31:24 +00:00
|
|
|
class SCH_IO_EAGLE : public SCH_IO
|
2017-02-27 10:07:52 +00:00
|
|
|
{
|
|
|
|
public:
|
2023-01-10 21:45:46 +00:00
|
|
|
const double ARC_ACCURACY = SCH_IU_PER_MM * 0.01; // 0.01mm
|
|
|
|
|
2023-12-24 00:31:24 +00:00
|
|
|
SCH_IO_EAGLE();
|
|
|
|
~SCH_IO_EAGLE();
|
2017-02-27 10:07:52 +00:00
|
|
|
|
2023-08-26 19:28:53 +00:00
|
|
|
const PLUGIN_FILE_DESC GetSchematicFileDesc() const override
|
|
|
|
{
|
|
|
|
return PLUGIN_FILE_DESC( _HKI( "Eagle XML schematic files" ), { "sch" } );
|
|
|
|
}
|
|
|
|
|
2023-10-14 22:05:03 +00:00
|
|
|
const PLUGIN_FILE_DESC GetLibraryFileDesc() const override
|
2023-08-26 19:28:53 +00:00
|
|
|
{
|
|
|
|
return PLUGIN_FILE_DESC( _HKI( "Eagle XML library files" ), { "lbr" } );
|
2023-10-14 22:05:03 +00:00
|
|
|
}
|
2017-02-27 10:07:52 +00:00
|
|
|
|
2023-08-26 19:28:53 +00:00
|
|
|
bool CanReadSchematicFile( const wxString& aFileName ) const override;
|
|
|
|
bool CanReadLibrary( const wxString& aFileName ) const override;
|
2020-02-28 14:03:09 +00:00
|
|
|
|
2017-02-27 10:07:52 +00:00
|
|
|
int GetModifyHash() const override;
|
|
|
|
|
2023-08-26 19:28:53 +00:00
|
|
|
SCH_SHEET* LoadSchematicFile( const wxString& aFileName, SCHEMATIC* aSchematic,
|
|
|
|
SCH_SHEET* aAppendToMe = nullptr,
|
|
|
|
const STRING_UTF8_MAP* aProperties = nullptr ) override;
|
2017-02-27 10:07:52 +00:00
|
|
|
|
2023-10-14 22:05:03 +00:00
|
|
|
void EnumerateSymbolLib( wxArrayString& aSymbolNameList, const wxString& aLibraryPath,
|
|
|
|
const STRING_UTF8_MAP* aProperties ) override;
|
|
|
|
|
|
|
|
void EnumerateSymbolLib( std::vector<LIB_SYMBOL*>& aSymbolList, const wxString& aLibraryPath,
|
|
|
|
const STRING_UTF8_MAP* aProperties ) override;
|
|
|
|
|
|
|
|
LIB_SYMBOL* LoadSymbol( const wxString& aLibraryPath, const wxString& aAliasName,
|
|
|
|
const STRING_UTF8_MAP* aProperties ) override;
|
|
|
|
|
2023-12-27 00:25:41 +00:00
|
|
|
bool IsLibraryWritable( const wxString& aLibraryPath ) override { return false; }
|
2023-10-14 22:05:03 +00:00
|
|
|
|
2017-02-27 10:07:52 +00:00
|
|
|
private:
|
2021-06-23 22:53:08 +00:00
|
|
|
void checkpoint();
|
|
|
|
|
2023-10-14 22:05:03 +00:00
|
|
|
bool checkHeader( const wxString& aFileName ) const;
|
|
|
|
wxXmlDocument loadXmlDocument( const wxString& aFileName );
|
|
|
|
long long getLibraryTimestamp( const wxString& aLibraryPath ) const;
|
|
|
|
void ensureLoadedLibrary( const wxString& aLibraryPath );
|
2023-08-26 19:28:53 +00:00
|
|
|
|
2017-05-08 14:10:23 +00:00
|
|
|
void loadDrawing( wxXmlNode* aDrawingNode );
|
2017-07-23 14:26:13 +00:00
|
|
|
void loadLayerDefs( wxXmlNode* aLayers );
|
2017-05-08 14:10:23 +00:00
|
|
|
void loadSchematic( wxXmlNode* aSchematicNode );
|
2017-08-12 09:18:18 +00:00
|
|
|
void loadSheet( wxXmlNode* aSheetNode, int sheetcount );
|
2017-05-08 14:10:23 +00:00
|
|
|
void loadInstance( wxXmlNode* aInstanceNode );
|
2017-10-03 10:30:23 +00:00
|
|
|
EAGLE_LIBRARY* loadLibrary( wxXmlNode* aLibraryNode, EAGLE_LIBRARY* aEagleLib );
|
2018-02-18 10:54:37 +00:00
|
|
|
void countNets( wxXmlNode* aSchematicNode );
|
2017-10-03 10:30:23 +00:00
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
/// Move any labels on the wire to the new end point of the wire.
|
2022-01-01 06:04:08 +00:00
|
|
|
void moveLabels( SCH_LINE* aWire, const VECTOR2I& aNewEndPoint );
|
2017-10-03 10:30:23 +00:00
|
|
|
|
|
|
|
/// This function finds best way to place a bus entry symbol for when an Eagle wire segment
|
|
|
|
/// ends on an Eagle bus segment.
|
2017-07-13 12:28:35 +00:00
|
|
|
void addBusEntries();
|
2017-10-03 10:30:23 +00:00
|
|
|
|
|
|
|
/// Return the matching layer or return LAYER_NOTES
|
2017-10-03 10:23:52 +00:00
|
|
|
SCH_LAYER_ID kiCadLayer( int aEagleLayer );
|
2017-10-03 10:30:23 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
std::pair<VECTOR2I, const SEG*> findNearestLinePoint( const VECTOR2I& aPoint,
|
2021-06-23 22:53:08 +00:00
|
|
|
const std::vector<SEG>& aLines ) const;
|
2017-07-13 12:42:06 +00:00
|
|
|
|
2021-07-18 23:08:54 +00:00
|
|
|
void loadSegments( wxXmlNode* aSegmentsNode, const wxString& aNetName,
|
|
|
|
const wxString& aNetClass );
|
2023-01-09 14:18:23 +00:00
|
|
|
SCH_SHAPE* loadPolyLine( wxXmlNode* aPolygonNode );
|
2023-01-09 14:44:58 +00:00
|
|
|
SCH_ITEM* loadWire( wxXmlNode* aWireNode, SEG& endpoints );
|
2023-01-09 14:18:23 +00:00
|
|
|
SCH_SHAPE* loadCircle( wxXmlNode* aCircleNode );
|
|
|
|
SCH_SHAPE* loadRectangle( wxXmlNode* aRectNode );
|
2021-07-18 23:08:54 +00:00
|
|
|
SCH_TEXT* loadLabel( wxXmlNode* aLabelNode, const wxString& aNetName );
|
|
|
|
SCH_JUNCTION* loadJunction( wxXmlNode* aJunction );
|
|
|
|
SCH_TEXT* loadPlainText( wxXmlNode* aSchText );
|
2023-01-13 14:36:49 +00:00
|
|
|
void loadFrame( wxXmlNode* aFrameNode, std::vector<SCH_ITEM*>& aItems );
|
2021-07-18 23:08:54 +00:00
|
|
|
|
|
|
|
bool loadSymbol( wxXmlNode* aSymbolNode, std::unique_ptr<LIB_SYMBOL>& aSymbol,
|
|
|
|
EDEVICE* aDevice, int aGateNumber, const wxString& aGateName );
|
|
|
|
LIB_SHAPE* loadSymbolCircle( std::unique_ptr<LIB_SYMBOL>& aSymbol, wxXmlNode* aCircleNode,
|
2021-01-26 15:23:37 +00:00
|
|
|
int aGateNumber );
|
2021-07-18 23:08:54 +00:00
|
|
|
LIB_SHAPE* loadSymbolRectangle( std::unique_ptr<LIB_SYMBOL>& aSymbol, wxXmlNode* aRectNode,
|
|
|
|
int aGateNumber );
|
|
|
|
LIB_SHAPE* loadSymbolPolyLine( std::unique_ptr<LIB_SYMBOL>& aSymbol,
|
|
|
|
wxXmlNode* aPolygonNode, int aGateNumber );
|
|
|
|
LIB_ITEM* loadSymbolWire( std::unique_ptr<LIB_SYMBOL>& aSymbol, wxXmlNode* aWireNode,
|
|
|
|
int aGateNumber );
|
|
|
|
LIB_PIN* loadPin( std::unique_ptr<LIB_SYMBOL>& aSymbol, wxXmlNode*, EPIN* epin,
|
|
|
|
int aGateNumber );
|
|
|
|
LIB_TEXT* loadSymbolText( std::unique_ptr<LIB_SYMBOL>& aSymbol, wxXmlNode* aLibText,
|
|
|
|
int aGateNumber );
|
|
|
|
void loadFrame( wxXmlNode* aFrameNode, std::vector<LIB_ITEM*>& aLines );
|
|
|
|
|
|
|
|
void loadTextAttributes( EDA_TEXT* aText, const ETEXT& aAttribs ) const;
|
|
|
|
void loadFieldAttributes( LIB_FIELD* aField, const LIB_TEXT* aText ) const;
|
2017-10-18 08:12:22 +00:00
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Move net labels that are detached from any wire to the nearest wire
|
2018-03-28 14:03:27 +00:00
|
|
|
void adjustNetLabels();
|
|
|
|
|
2019-06-06 02:09:09 +00:00
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Translate an Eagle-style bus name into one that is KiCad-compatible.
|
|
|
|
*
|
|
|
|
* For vector buses such as A[7..0] this has no impact. For group buses, we translate from
|
|
|
|
* Eagle-style to KiCad-style.
|
|
|
|
*
|
2019-06-06 02:09:09 +00:00
|
|
|
* @param aEagleName is the name of the bus from the Eagle schematic
|
|
|
|
*/
|
|
|
|
wxString translateEagleBusName( const wxString& aEagleName ) const;
|
|
|
|
|
2017-12-12 14:25:49 +00:00
|
|
|
wxString getLibName();
|
|
|
|
wxFileName getLibFileName();
|
2017-10-24 23:08:28 +00:00
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Checks if there are other wires or pins at the position of the tested pin
|
2021-06-10 14:10:55 +00:00
|
|
|
bool checkConnections( const SCH_SYMBOL* aSymbol, const LIB_PIN* aPin ) const;
|
2021-01-26 15:23:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create net labels to emulate implicit connections in Eagle.
|
|
|
|
*
|
|
|
|
* Each named power input pin creates an implicit connection in Eagle. To emulate this behavior
|
|
|
|
* one needs to attach global net labels to the mentioned pins. This is is also expected for the
|
|
|
|
* units that are not instantiated in the schematics, therefore such units need to be stored
|
|
|
|
* in order to create them at later stage.
|
|
|
|
*
|
2021-06-10 14:10:55 +00:00
|
|
|
* @param aSymbol is the symbol to process.
|
2021-01-26 15:23:37 +00:00
|
|
|
* @param aScreen is the screen where net labels should be added.
|
|
|
|
* @param aUpdateSet decides whether the missing units data should be updated.
|
|
|
|
*/
|
2021-06-10 14:10:55 +00:00
|
|
|
void addImplicitConnections( SCH_SYMBOL* aSymbol, SCH_SCREEN* aScreen, bool aUpdateSet );
|
2021-01-26 15:23:37 +00:00
|
|
|
|
2021-02-15 21:44:58 +00:00
|
|
|
bool netHasPowerDriver( SCH_LINE* aLine, const wxString& aNetName ) const;
|
|
|
|
|
2022-11-02 12:25:58 +00:00
|
|
|
SCH_SHEET* getCurrentSheet();
|
|
|
|
SCH_SCREEN* getCurrentScreen();
|
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
// Describe missing units containing pins creating implicit connections
|
|
|
|
// (named power pins in Eagle).
|
|
|
|
struct EAGLE_MISSING_CMP
|
|
|
|
{
|
2021-06-10 14:10:55 +00:00
|
|
|
EAGLE_MISSING_CMP( const SCH_SYMBOL* aSymbol = nullptr )
|
|
|
|
: cmp( aSymbol )
|
2021-01-26 15:23:37 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
///< Link to the parent symbol
|
|
|
|
const SCH_SYMBOL* cmp;
|
2021-01-26 15:23:37 +00:00
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
/* Map of the symbol units: for each unit there is a flag saying
|
2021-01-26 15:23:37 +00:00
|
|
|
* whether the unit needs to be instantiated with appropriate net labels to
|
|
|
|
* emulate implicit connections as is done in Eagle.
|
|
|
|
*/
|
|
|
|
std::map<int, bool> units;
|
|
|
|
};
|
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
///< Map references to missing symbol units data
|
2021-01-26 15:23:37 +00:00
|
|
|
std::map<wxString, EAGLE_MISSING_CMP> m_missingCmps;
|
|
|
|
|
2021-03-31 21:33:30 +00:00
|
|
|
SCH_SHEET* m_rootSheet; ///< The root sheet of the schematic being loaded
|
2022-11-02 12:25:58 +00:00
|
|
|
SCH_SHEET_PATH m_sheetPath; ///< The current sheet path of the schematic being loaded.
|
2021-03-31 21:33:30 +00:00
|
|
|
wxString m_version; ///< Eagle file version.
|
|
|
|
wxFileName m_filename;
|
|
|
|
wxString m_libName; ///< Library name to save symbols
|
|
|
|
SCHEMATIC* m_schematic; ///< Passed to Load(), the schematic object being loaded
|
2017-06-26 07:56:11 +00:00
|
|
|
|
2023-10-14 22:05:03 +00:00
|
|
|
EPART_MAP m_partlist;
|
|
|
|
std::map<wxString, long long> m_timestamps;
|
|
|
|
std::map<wxString, EAGLE_LIBRARY> m_eagleLibs;
|
|
|
|
std::unordered_map<wxString, bool> m_userValue; ///< deviceset/@uservalue for device.
|
2017-06-26 07:56:11 +00:00
|
|
|
|
2023-12-19 17:39:26 +00:00
|
|
|
SCH_IO::SCH_IO_RELEASER m_pi; ///< PI to create KiCad symbol library.
|
2022-11-06 16:51:52 +00:00
|
|
|
std::unique_ptr<STRING_UTF8_MAP> m_properties; ///< Library plugin properties.
|
2021-06-23 22:53:08 +00:00
|
|
|
|
|
|
|
unsigned m_doneCount;
|
|
|
|
unsigned m_lastProgressCount;
|
|
|
|
unsigned m_totalCount; ///< for progress reporting
|
2017-10-24 23:08:28 +00:00
|
|
|
|
2021-03-31 21:33:30 +00:00
|
|
|
std::map<wxString, int> m_netCounts;
|
|
|
|
std::map<int, SCH_LAYER_ID> m_layerMap;
|
2021-09-20 18:54:47 +00:00
|
|
|
std::map<wxString, wxString> m_powerPorts; ///< map from symbol reference to global
|
|
|
|
///< label equivalent
|
2018-03-28 14:03:27 +00:00
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Wire intersection points, used for quick checks whether placing a net label in a particular
|
|
|
|
///< place would short two nets.
|
2018-03-28 14:03:27 +00:00
|
|
|
std::vector<VECTOR2I> m_wireIntersections;
|
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Wires and labels of a single connection (segment in Eagle nomenclature)
|
2021-07-01 22:28:41 +00:00
|
|
|
struct SEG_DESC
|
2021-03-31 21:33:30 +00:00
|
|
|
{
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Test if a particular label is attached to any of the stored segments
|
2018-03-28 14:03:27 +00:00
|
|
|
const SEG* LabelAttached( const SCH_TEXT* aLabel ) const;
|
|
|
|
|
|
|
|
std::vector<SCH_TEXT*> labels;
|
|
|
|
std::vector<SEG> segs;
|
2021-07-01 22:28:41 +00:00
|
|
|
};
|
2018-03-28 14:03:27 +00:00
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Segments representing wires for intersection checking
|
2018-03-28 14:03:27 +00:00
|
|
|
std::vector<SEG_DESC> m_segments;
|
2018-04-06 13:56:32 +00:00
|
|
|
|
2021-02-15 21:44:58 +00:00
|
|
|
///< Nets as defined in the <nets> sections of an Eagle schematic file.
|
|
|
|
std::map<wxString, ENET> m_nets;
|
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Positions of pins and wire endings mapped to its parent
|
2022-01-01 06:04:08 +00:00
|
|
|
std::map<VECTOR2I, std::set<const EDA_ITEM*>> m_connPoints;
|
2017-02-27 10:07:52 +00:00
|
|
|
};
|
|
|
|
|
2023-12-24 00:31:24 +00:00
|
|
|
#endif // SCH_IO_EAGLE_H_
|