35 const std::vector<INPUT_LAYER_DESC>& aInputLayerDescriptionVector )
37 std::map<wxString, PCB_LAYER_ID> retval;
42 retval.insert( { layerDesc.Name, layerDesc.AutoMapLayer } );
85 return wxT(
"CADSTAR PCB Archive" );
97 std::vector<FOOTPRINT*> retval;
101 retval.push_back(
static_cast<FOOTPRINT*
>( fp->Clone() ) );
126 if( aProperties->
Value(
"page_width", &page_width )
127 && aProperties->
Value(
"page_height", &page_height ) )
131 int w = atoi( page_width.
c_str() );
132 int h = atoi( page_height.
c_str() );
134 int desired_x = ( w - bbbox.
GetWidth() ) / 2;
135 int desired_y = ( h - bbbox.
GetHeight() ) / 2;
152 const wxString& aLibraryPath,
158 if( !
m_cache.count( aLibraryPath ) )
161 for(
const auto& [
name, fp] :
m_cache.at( aLibraryPath ) )
162 aFootprintNames.Add(
name );
168 const wxString& aFootprintName,
173 if( !
m_cache.count( aLibraryPath ) )
176 if( !
m_cache.at( aLibraryPath ).count( aFootprintName ) )
179 return m_cache.at( aLibraryPath ).at( aFootprintName ).get();
184 const wxString& aFootprintName,
189 if( !
m_cache.count( aLibraryPath ) )
192 if( !
m_cache.at( aLibraryPath ).count( aFootprintName ) )
200 const wxString& aFootprintName,
206 if( !
m_cache.count( aLibraryPath ) )
209 if( !
m_cache.at( aLibraryPath ).count( aFootprintName ) )
212 return static_cast<FOOTPRINT*
>(
m_cache.at( aLibraryPath ).at( aFootprintName )->Duplicate() );
218 wxFileName fn( aLibraryPath );
220 if( fn.IsFileReadable() )
221 return fn.GetModificationTime().GetValue().GetValue();
223 return wxDateTime( 0.0 ).GetValue().GetValue();
229 if(
m_cache.count( aLibraryPath ) )
241 std::vector<std::unique_ptr<FOOTPRINT>> footprints = csLoader.
LoadLibrary();
243 for( std::unique_ptr<FOOTPRINT>& fp : footprints )
245 footprintMap.insert( { fp->GetFPID().GetLibItemName(), std::move( fp ) } );
248 m_cache.insert( { aLibraryPath, std::move( footprintMap ) } );
Loads a cpa file into a KiCad BOARD object.
Pcbnew PLUGIN for CADSTAR PCB Archive (*.cpa) format: an ASCII format based on S-expressions.
Information pertinent to a Pcbnew printed circuit board.
bool m_LegacyDesignSettingsLoaded
True if the legacy board design settings were loaded from a file.
const BOX2I GetBoardEdgesBoundingBox() const
Return the board bounding box calculated using exclusively the board edges (graphics on Edge....
void Move(const VECTOR2I &aMoveVector) override
Move this object.
bool m_LegacyNetclassesLoaded
True if netclasses were loaded from the file.
coord_type GetHeight() const
coord_type GetWidth() const
void Load(BOARD *aBoard, PROJECT *aProject)
Loads a CADSTAR PCB Archive file into the KiCad BOARD object given.
std::vector< FOOTPRINT * > GetLoadedLibraryFootpints() const
Return a copy of the loaded library footprints (caller owns the objects)
std::vector< std::unique_ptr< FOOTPRINT > > LoadLibrary()
Parse a CADSTAR PCB Archive and load the footprints contained within.
bool FootprintExists(const wxString &aLibraryPath, const wxString &aFootprintName, const STRING_UTF8_MAP *aProperties=nullptr) override
Check for the existence of a footprint.
std::vector< FOOTPRINT * > GetImportedCachedLibraryFootprints() override
Return a container with the cached library footprints generated in the last call to Load.
long long GetLibraryTimestamp(const wxString &aLibraryPath) const override
Generate a timestamp representing all the files in the library (including the library directory).
void ensureLoadedLibrary(const wxString &aLibraryPath)
std::map< wxString, long long > m_timestamps
const FOOTPRINT * GetEnumeratedFootprint(const wxString &aLibraryPath, const wxString &aFootprintName, const STRING_UTF8_MAP *aProperties=nullptr) override
A version of FootprintLoad() for use after FootprintEnumerate() for more efficient cache management.
const wxString GetFileExtension() const override
Returns the file extension for the PLUGIN.
FOOTPRINT * FootprintLoad(const wxString &aLibraryPath, const wxString &aFootprintName, bool aKeepUUID=false, const STRING_UTF8_MAP *aProperties=nullptr) override
Load a footprint having aFootprintName from the aLibraryPath containing a library format that this PL...
CADSTAR_PCB_ARCHIVE_PLUGIN()
std::map< wxString, NAME_TO_FOOTPRINT_MAP > m_cache
const wxString PluginName() const override
Return a brief hard coded name for this PLUGIN.
static std::map< wxString, PCB_LAYER_ID > DefaultLayerMappingCallback(const std::vector< INPUT_LAYER_DESC > &aInputLayerDescriptionVector)
Return the automapped layers.
void RegisterLayerMappingCallback(LAYER_MAPPING_HANDLER aLayerMappingHandler) override
Register a different handler to be called when mapping of Cadstar to KiCad layers occurs.
bool m_show_layer_mapping_warnings
~CADSTAR_PCB_ARCHIVE_PLUGIN()
const STRING_UTF8_MAP * m_props
std::vector< FOOTPRINT * > m_loaded_footprints
void clearLoadedFootprints()
std::map< const wxString, std::unique_ptr< FOOTPRINT > > NAME_TO_FOOTPRINT_MAP
BOARD * Load(const wxString &aFileName, BOARD *aAppendToMe, const STRING_UTF8_MAP *aProperties=nullptr, PROJECT *aProject=nullptr, PROGRESS_REPORTER *aProgressReporter=nullptr) override
Load information from some input file format that this PLUGIN implementation knows about into either ...
void FootprintEnumerate(wxArrayString &aFootprintNames, const wxString &aLibraryPath, bool aBestEfforts, const STRING_UTF8_MAP *aProperties=nullptr) override
Return a list of footprint names contained within the library at aLibraryPath.
LAYER_MAPPING_HANDLER m_layer_mapping_handler
Callback to get layer mapping.
virtual void RegisterLayerMappingCallback(LAYER_MAPPING_HANDLER aLayerMappingHandler)
Register a different handler to be called when mapping of input layers to KiCad layers occurs.
A progress reporter interface for use in multi-threaded environments.
Container for project specific data.
A name/value tuple with unique names and optional values.
bool Value(const char *aName, UTF8 *aFetchedValue=nullptr) const
Fetch a property by aName and returns true if that property was found, else false.
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
const char * c_str() const
std::function< std::map< wxString, PCB_LAYER_ID >(const std::vector< INPUT_LAYER_DESC > &)> LAYER_MAPPING_HANDLER
Pointer to a function that takes a map of source and KiCad layers and returns a re-mapped version.