KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_io_altium_designer.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2019 Thomas Pointhuber <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#ifndef PCB_IO_ALTIUM_DESIGNER_H_
22#define PCB_IO_ALTIUM_DESIGNER_H_
23
24#include <pcb_io/pcb_io.h>
25#include <pcb_io/pcb_io_mgr.h>
27
28#include <map>
29#include <memory>
30#include <vector>
31
33class BOARD;
34class PROJECT;
36
42 const std::vector<ALTIUM_PROJECT_VARIANT>& aVariants );
43
44
53 const std::map<wxString, wxString>& aParameters );
54
55
57{
58public:
59 // -----<PUBLIC PCB_IO API>--------------------------------------------------
61 {
62 return IO_BASE::IO_FILE_DESC( _HKI( "Altium Designer PCB files" ), { "PcbDoc" } );
63 }
64
66 {
67 return IO_BASE::IO_FILE_DESC( _HKI( "Altium PCB Library or Integrated Library" ),
68 { "PcbLib", "IntLib" } );
69 }
70
71 bool CanReadBoard( const wxString& aFileName ) const override;
72 bool CanReadLibrary( const wxString& aFileName ) const override;
73
74 BOARD* LoadBoard( const wxString& aFileName, BOARD* aAppendToMe,
75 const std::map<std::string, UTF8>* aProperties, PROJECT* aProject = nullptr ) override;
76
77 long long GetLibraryTimestamp( const wxString& aLibraryPath ) const override;
78
79 void FootprintEnumerate( wxArrayString& aFootprintNames, const wxString& aLibraryPath,
80 bool aBestEfforts, const std::map<std::string, UTF8>* aProperties = nullptr ) override;
81
82 FOOTPRINT* FootprintLoad( const wxString& aLibraryPath, const wxString& aFootprintName,
83 bool aKeepUUID = false,
84 const std::map<std::string, UTF8>* aProperties = nullptr ) override;
85
86 std::vector<FOOTPRINT*> GetImportedCachedLibraryFootprints() override;
87
88 //bool FootprintExists( const wxString& aLibraryPath, const wxString& aFootprintName, const PROPERTIES* aProperties = nullptr );
89
90 bool IsLibraryWritable( const wxString& aLibraryPath ) override { return false; }
91
92 // -----</PUBLIC PCB_IO API>-------------------------------------------------
93
96
97 static bool checkFileHeader( const wxString& aFileName );
98
105 static std::map<wxString, PCB_LAYER_ID> DefaultLayerMappingCallback(
106 const std::vector<INPUT_LAYER_DESC>& aInputLayerDescriptionVector );
107
108private:
110 {
111 std::vector<std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE>> m_Files;
112 long long m_Timestamp;
113 };
114
115 std::map<wxString, ALTIUM_FILE_CACHE> m_fplibFiles;
116
117 void loadAltiumLibrary( const wxString& aLibraryPath );
118};
119
120#endif // PCB_IO_ALTIUM_DESIGNER_H_
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:372
Plugin class for import plugins that support remappable layers.
long long GetLibraryTimestamp(const wxString &aLibraryPath) const override
Generate a timestamp representing all the files in the library (including the library directory).
FOOTPRINT * FootprintLoad(const wxString &aLibraryPath, const wxString &aFootprintName, bool aKeepUUID=false, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load a footprint having aFootprintName from the aLibraryPath containing a library format that this PC...
void FootprintEnumerate(wxArrayString &aFootprintNames, const wxString &aLibraryPath, bool aBestEfforts, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Return a list of footprint names contained within the library at aLibraryPath.
std::vector< FOOTPRINT * > GetImportedCachedLibraryFootprints() override
Return a container with the cached library footprints generated in the last call to Load.
static bool checkFileHeader(const wxString &aFileName)
const IO_BASE::IO_FILE_DESC GetBoardFileDesc() const override
Returns board file description for the PCB_IO.
bool CanReadBoard(const wxString &aFileName) const override
Checks if this PCB_IO can read the specified board file.
void loadAltiumLibrary(const wxString &aLibraryPath)
static std::map< wxString, PCB_LAYER_ID > DefaultLayerMappingCallback(const std::vector< INPUT_LAYER_DESC > &aInputLayerDescriptionVector)
Return the automapped layers.
bool IsLibraryWritable(const wxString &aLibraryPath) override
Return true if the library at aLibraryPath is writable.
std::map< wxString, ALTIUM_FILE_CACHE > m_fplibFiles
BOARD * LoadBoard(const wxString &aFileName, BOARD *aAppendToMe, const std::map< std::string, UTF8 > *aProperties, PROJECT *aProject=nullptr) override
Load information from some input file format that this PCB_IO implementation knows about into either ...
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
Get the descriptor for the library container that this IO plugin operates on.
bool CanReadLibrary(const wxString &aFileName) const override
Checks if this IO object can read the specified library file/directory.
PCB_IO(const wxString &aName)
Definition pcb_io.h:342
Container for project specific data.
Definition project.h:62
#define _HKI(x)
Definition page_info.cpp:40
void ApplyAltiumProjectVariantsToBoard(BOARD *aBoard, const std::vector< ALTIUM_PROJECT_VARIANT > &aVariants)
Apply parsed Altium project variants to a board by setting FOOTPRINT_VARIANT data on each footprint w...
void ApplyAltiumProjectParametersToProject(PROJECT *aProject, const std::map< wxString, wxString > &aParameters)
Register Altium project parameters as KiCad project text variables so that imported board text refere...
A project-level assembly variant parsed from an Altium .PrjPcb file.
Container that describes file type info.
Definition io_base.h:43
std::vector< std::unique_ptr< ALTIUM_PCB_COMPOUND_FILE > > m_Files