kicad/pcbnew/pcb_io/kicad_legacy/pcb_io_kicad_legacy.h

209 lines
7.5 KiB
C
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.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
*/
2023-12-24 01:21:58 +00:00
#ifndef PCB_IO_KICAD_LEGACY_H_
#define PCB_IO_KICAD_LEGACY_H_
#include <pcb_io/pcb_io.h>
#include <pcb_io/pcb_io_mgr.h>
#include <richio.h>
#include <string>
#include <layer_ids.h>
#include <memory>
2022-01-16 16:15:07 +00:00
#include <geometry/eda_angle.h>
// FOOTPRINT_LIBRARY_HEADER_CNT gives the number of characters to compare to detect
// a footprint library. A few variants may have been used, and so we can only be
// sure that the header contains "PCBNEW-LibModule-V", not "PCBNEW-LibModule-V1".
#define FOOTPRINT_LIBRARY_HEADER "PCBNEW-LibModule-V1"
#define FOOTPRINT_LIBRARY_HEADER_CNT 18
class PCB_TARGET;
2020-11-13 15:15:52 +00:00
class FOOTPRINT;
class NETCLASS;
class ZONE;
2021-06-11 16:59:28 +00:00
class PCB_DIMENSION_BASE;
class NETINFO_ITEM;
class PCB_TEXT;
2020-11-12 22:30:02 +00:00
class PAD;
2013-09-22 04:38:22 +00:00
struct LP_CACHE;
2012-04-16 03:18:41 +00:00
/**
* A #PLUGIN derivation which could possibly be put into a DLL/DSO.
*
2012-04-17 06:13:22 +00:00
* As with any PLUGIN, there is no UI, i.e. windowing calls allowed.
*/
2023-12-24 01:21:58 +00:00
class PCB_IO_KICAD_LEGACY : public PCB_IO
{
friend struct LP_CACHE;
public:
2023-12-24 01:21:58 +00:00
PCB_IO_KICAD_LEGACY();
~PCB_IO_KICAD_LEGACY();
2012-05-20 13:14:46 +00:00
2023-12-27 16:34:59 +00:00
const IO_BASE::IO_FILE_DESC GetBoardFileDesc() const override
{
2023-12-27 16:34:59 +00:00
return IO_BASE::IO_FILE_DESC( _HKI( "Eagle ver. 6.x XML PCB files" ), { "brd" } );
}
2023-12-27 16:34:59 +00:00
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
{
2023-12-27 16:34:59 +00:00
return IO_BASE::IO_FILE_DESC( _HKI( "Legacy footprint library files" ), { "mod", "emp" } );
}
bool CanReadBoard( const wxString& aFileName ) const override;
bool CanReadFootprint( const wxString& aFileName ) const override;
BOARD* LoadBoard( const wxString& aFileName, BOARD* aAppendToMe,
const STRING_UTF8_MAP* aProperties = nullptr, PROJECT* aProject = nullptr ) override;
void FootprintEnumerate( wxArrayString& aFootprintNames, const wxString& aLibraryPath,
bool aBestEfforts,
const STRING_UTF8_MAP* aProperties = nullptr ) override;
2020-11-13 15:15:52 +00:00
FOOTPRINT* FootprintLoad( const wxString& aLibraryPath, const wxString& aFootprintName,
bool aKeepUUID = false,
const STRING_UTF8_MAP* aProperties = nullptr ) override;
2023-12-27 00:25:41 +00:00
bool DeleteLibrary( const wxString& aLibraryPath,
const STRING_UTF8_MAP* aProperties = nullptr ) override;
long long GetLibraryTimestamp( const wxString& aLibraryPath ) const override;
2023-12-27 00:25:41 +00:00
bool IsLibraryWritable( const wxString& aLibraryPath ) override;
2012-04-16 03:18:41 +00:00
2020-12-04 12:13:11 +00:00
typedef int BIU;
2012-04-16 03:18:41 +00:00
void SetReader( LINE_READER* aReader ) { m_reader = aReader; }
2012-04-17 02:58:03 +00:00
// return the new .kicad_pcb layer id from the old (legacy) layer id
2021-07-21 23:14:56 +00:00
static PCB_LAYER_ID leg_layer2new( int cu_count, int aLayerNum );
2020-12-04 12:13:11 +00:00
static LSET leg_mask2new( int cu_count, unsigned aMask );
protected:
/// initialize PLUGIN like a constructor would, and futz with fresh BOARD if needed.
void init( const STRING_UTF8_MAP* aProperties );
void checkpoint();
///< Converts net code using the mapping table if available,
///< otherwise returns unchanged net code
inline int getNetCode( int aNetCode )
{
if( (unsigned int) aNetCode < m_netCodes.size() )
return m_netCodes[aNetCode];
return aNetCode;
}
/**
* Parse an ASCII decimal floating point value and scales it into a BIU according to the
* current value of diskToBui.
*
* This function is the complement of #fmtBIU(). One has to know what the other is doing.
*
* @param aValue is the ASCII value in C locale form with possible leading whitespace
* @param nptrptr may be NULL, but if not, then it tells where to put a pointer to the
* next unconsumed input text. See "man strtod" for more information.
* @return the converted Board Internal Unit.
*/
BIU biuParse( const char* aValue, const char** nptrptr = nullptr );
/**
2022-01-16 16:15:07 +00:00
* Parse an ASCII decimal floating point value which is certainly an angle in tenths of
* a degree.
*
* @param aValue is the ASCII value in C locale form with possible leading whitespace.
* @param nptrptr may be NULL, but if not, then it tells where to put a pointer to the
* next unconsumed input text. See "man strtod" for more information.
*/
2022-01-16 16:15:07 +00:00
EDA_ANGLE degParse( const char* aValue, const char** nptrptr = nullptr );
static int getVersion( LINE_READER* aReader );
void loadAllSections( bool doAppend );
2012-04-16 03:18:41 +00:00
void loadGENERAL();
void loadSETUP();
void loadSHEET();
2020-11-13 15:15:52 +00:00
void load3D( FOOTPRINT* aFootprint );
void loadPAD( FOOTPRINT* aFootprint );
void loadMODULE_TEXT( PCB_TEXT* aText );
2020-11-13 15:15:52 +00:00
void loadFP_SHAPE( FOOTPRINT* aFootprint );
void loadPCB_LINE();
void loadNETINFO_ITEM();
void loadPCB_TEXT();
void loadNETCLASS();
2020-11-13 15:15:52 +00:00
void loadFOOTPRINT( FOOTPRINT* aFootprint );
/**
* Read a list of segments (Tracks and Vias, or Segzones)
*
* @param aStructType is either PCB_TRACE_T to indicate tracks and vias, or NOT_USED
* to indicate oldschool zone segments (which are discarded).
*/
void loadTrackList( int aStructType );
void loadZONE_CONTAINER(); // "$CZONE_OUTLINE"
void loadDIMENSION(); // "$COTATION"
void loadPCB_TARGET(); // "$PCB_TARGET"
2012-04-16 03:18:41 +00:00
/// we only cache one footprint library for now, this determines which one.
void cacheLib( const wxString& aLibraryPath );
2020-12-04 12:13:11 +00:00
protected:
int m_cu_count;
2020-12-04 12:13:11 +00:00
wxString m_error; ///< for throwing exceptions
PROGRESS_REPORTER* m_progressReporter; ///< may be NULL, no ownership
unsigned m_lastProgressLine;
unsigned m_lineCount; ///< for progress reporting
2020-12-04 12:13:11 +00:00
LINE_READER* m_reader; ///< no ownership here.
FILE* m_fp; ///< no ownership here.
2020-12-04 12:13:11 +00:00
wxString m_field; ///< reused to stuff FOOTPRINT fields.
int m_loading_format_version; ///< which BOARD_FORMAT_VERSION am I Load()ing?
LP_CACHE* m_cache;
bool m_showLegacySegmentZoneWarning;
2020-12-04 12:13:11 +00:00
std::vector<int> m_netCodes; ///< net codes mapping for boards being loaded
2020-12-04 12:13:11 +00:00
double biuToDisk; ///< convert from BIUs to disk engineering units
///< with this scale factor
double diskToBiu; ///< convert from disk engineering units to BIUs
///< with this scale factor
};
2023-12-24 01:21:58 +00:00
#endif // PCB_IO_KICAD_LEGACY_H_