KiCad PCB EDA Suite
Loading...
Searching...
No Matches
netlist_exporter_allegro.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) 1992-2013 jp.charras at wanadoo.fr
5 * Copyright (C) 2013 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22#ifndef NETLIST_EXPORTER_ALLEGRO_H
23#define NETLIST_EXPORTER_ALLEGRO_H
24
26#include <list>
27
32{
33public:
35 NETLIST_EXPORTER_BASE( aSchematic ),
36 m_f( nullptr )
37 {
38 }
39
44 bool WriteNetlist( const wxString& aOutFileName, unsigned aNetlistOptions,
45 REPORTER& aReporter ) override;
46
54 static bool CompareSymbolSheetpath( const std::pair<SCH_SYMBOL*, SCH_SHEET_PATH>& aItem1,
55 const std::pair<SCH_SYMBOL*, SCH_SHEET_PATH>& aItem2 );
56
64 static bool CompareSymbolRef( const wxString& aRefText1, const wxString& aRefText2 );
65
73 static bool CompareLibPin( const SCH_PIN* aPin1, const SCH_PIN* aPin2 );
74
75private:
77
82 void toAllegroPackages();
83
88 void toAllegroNets();
89
95
106 wxString formatDevice( wxString aString );
107
118 wxString formatText( wxString aString );
119
132 wxString formatPin( const SCH_PIN& aPin );
133
142 wxString formatFunction( wxString aName, std::vector<SCH_PIN*> aPinList );
143
155 wxString getGroupField( int aGroupIndex, const wxArrayString& aFieldArray,
156 bool aSanitize = true );
157
164 static wxString removeTailDigits( wxString aString );
165
172 static unsigned int extractTailNumber( wxString aString );
173
174 struct NET_NODE
175 {
176 NET_NODE( SCH_PIN* aPin, const SCH_SHEET_PATH& aSheet, bool aNoConnect ) :
177 m_Pin( aPin ),
178 m_Sheet( aSheet ),
179 m_NoConnect( aNoConnect )
180 {}
181
182 bool operator<( const NET_NODE& aNetNode ) const
183 {
184 wxString refText1 = m_Pin->GetParentSymbol()->GetRef( &m_Sheet );
185 wxString refText2 = aNetNode.m_Pin->GetParentSymbol()->GetRef( &aNetNode.m_Sheet );
186
187 if( refText1 == refText2 )
188 {
189 unsigned long val1, val2;
190
191 //From wxWidgets 3.1.6, the function ToULong can be replaced with ToUInt
192 bool convertingResult = m_Pin->GetShownNumber().ToULong( &val1 );
193 convertingResult &= aNetNode.m_Pin->GetShownNumber().ToULong( &val2 );
194
195 if( convertingResult )
196 {
197 return val1 < val2;
198 }
199 else
200 {
201 return m_Pin->GetShownNumber() < aNetNode.m_Pin->GetShownNumber();
202 }
203 }
204
205 return CompareSymbolRef( refText1, refText2 );
206 }
207
211 };
212
213 FILE* m_f ;
214 wxString m_exportPath;
215 std::multimap<wxString, wxString> m_packageProperties;
216
218 std::multimap<int, std::pair<SCH_SYMBOL*, SCH_SHEET_PATH> > m_componentGroups;
219
221 std::list<std::pair<SCH_SYMBOL*, SCH_SHEET_PATH>> m_orderedSymbolsSheetpath;
222 std::multimap<wxString, NET_NODE> m_netNameNodes;
223};
224
225#endif
wxString formatDevice(wxString aString)
Convert a string into one safe for a Telesis device name.
wxString m_exportPath
Directory to store device files.
static unsigned int extractTailNumber(wxString aString)
Extract the str's tailing number.
FILE * m_f
File pointer for netlist file writing operation.
static wxString removeTailDigits(wxString aString)
Remove the str's tailing digits.
void toAllegroPackageProperties()
Write $A_PROPERTIES section.
NETLIST_EXPORTER_ALLEGRO(SCHEMATIC *aSchematic)
bool WriteNetlist(const wxString &aOutFileName, unsigned aNetlistOptions, REPORTER &aReporter) override
Write netlist to aOutFileName.
std::list< std::pair< SCH_SYMBOL *, SCH_SHEET_PATH > > m_orderedSymbolsSheetpath
Store the ordered symbols with sheetpath.
static bool CompareSymbolSheetpath(const std::pair< SCH_SYMBOL *, SCH_SHEET_PATH > &aItem1, const std::pair< SCH_SYMBOL *, SCH_SHEET_PATH > &aItem2)
Compare two std::pair<SCH_SYMBOL*, SCH_SHEET_PATH> variables.
wxString formatText(wxString aString)
Convert a string into Telesis-safe format.
std::multimap< wxString, wxString > m_packageProperties
wxString formatFunction(wxString aName, std::vector< SCH_PIN * > aPinList)
Generate the definition of a function in Telesis format, which consists of multiple declarations (PIN...
static bool CompareLibPin(const SCH_PIN *aPin1, const SCH_PIN *aPin2)
Compare two SCH_PIN* variables.
wxString formatPin(const SCH_PIN &aPin)
Generate a Telesis-compatible pin name from a pin node.
static bool CompareSymbolRef(const wxString &aRefText1, const wxString &aRefText2)
Compare two wxString variables.
wxString getGroupField(int aGroupIndex, const wxArrayString &aFieldArray, bool aSanitize=true)
Look up a field for a component group, which may have mismatched case, or the component group may not...
void toAllegroPackages()
Write the $PACKAGES section.
std::multimap< wxString, NET_NODE > m_netNameNodes
Store the NET_NODE with the net name.
std::multimap< int, std::pair< SCH_SYMBOL *, SCH_SHEET_PATH > > m_componentGroups
Store the component group.
void toAllegroNets()
Write the $NETS section.
NETLIST_EXPORTER_BASE(SCHEMATIC *aSchematic)
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:71
Holds all the data relating to one schematic.
Definition schematic.h:90
const SYMBOL * GetParentSymbol() const
Definition sch_item.cpp:274
const wxString & GetShownNumber() const
Definition sch_pin.cpp:682
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
virtual const wxString GetRef(const SCH_SHEET_PATH *aSheet, bool aIncludeUnit=false) const =0
bool operator<(const NET_NODE &aNetNode) const
NET_NODE(SCH_PIN *aPin, const SCH_SHEET_PATH &aSheet, bool aNoConnect)