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, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#ifndef NETLIST_EXPORTER_ALLEGRO_H
27#define NETLIST_EXPORTER_ALLEGRO_H
28
30#include <list>
31
36{
37public:
39 NETLIST_EXPORTER_BASE( aSchematic ),
40 m_f( nullptr )
41 {
42 }
43
48 bool WriteNetlist( const wxString& aOutFileName, unsigned aNetlistOptions,
49 REPORTER& aReporter ) override;
50
58 static bool CompareSymbolSheetpath( const std::pair<SCH_SYMBOL*, SCH_SHEET_PATH>& aItem1,
59 const std::pair<SCH_SYMBOL*, SCH_SHEET_PATH>& aItem2 );
60
68 static bool CompareSymbolRef( const wxString& aRefText1, const wxString& aRefText2 );
69
77 static bool CompareLibPin( const SCH_PIN* aPin1, const SCH_PIN* aPin2 );
78
79private:
81
86 void toAllegroPackages();
87
92 void toAllegroNets();
93
99
110 wxString formatDevice( wxString aString );
111
122 wxString formatText( wxString aString );
123
136 wxString formatPin( const SCH_PIN& aPin );
137
146 wxString formatFunction( wxString aName, std::vector<SCH_PIN*> aPinList );
147
159 wxString getGroupField( int aGroupIndex, const wxArrayString& aFieldArray,
160 bool aSanitize = true );
161
168 static wxString removeTailDigits( wxString aString );
169
176 static unsigned int extractTailNumber( wxString aString );
177
178 struct NET_NODE
179 {
180 NET_NODE( SCH_PIN* aPin, const SCH_SHEET_PATH& aSheet, bool aNoConnect ) :
181 m_Pin( aPin ),
182 m_Sheet( aSheet ),
183 m_NoConnect( aNoConnect )
184 {}
185
186 bool operator<( const NET_NODE& aNetNode ) const
187 {
188 wxString refText1 = m_Pin->GetParentSymbol()->GetRef( &m_Sheet );
189 wxString refText2 = aNetNode.m_Pin->GetParentSymbol()->GetRef( &aNetNode.m_Sheet );
190
191 if( refText1 == refText2 )
192 {
193 unsigned long val1, val2;
194
195 //From wxWidgets 3.1.6, the function ToULong can be replaced with ToUInt
196 bool convertingResult = m_Pin->GetShownNumber().ToULong( &val1 );
197 convertingResult &= aNetNode.m_Pin->GetShownNumber().ToULong( &val2 );
198
199 if( convertingResult )
200 {
201 return val1 < val2;
202 }
203 else
204 {
205 return m_Pin->GetShownNumber() < aNetNode.m_Pin->GetShownNumber();
206 }
207 }
208
209 return CompareSymbolRef( refText1, refText2 );
210 }
211
215 };
216
217 FILE* m_f ;
218 wxString m_exportPath;
219 std::multimap<wxString, wxString> m_packageProperties;
220
222 std::multimap<int, std::pair<SCH_SYMBOL*, SCH_SHEET_PATH> > m_componentGroups;
223
225 std::list<std::pair<SCH_SYMBOL*, SCH_SHEET_PATH>> m_orderedSymbolsSheetpath;
226 std::multimap<wxString, NET_NODE> m_netNameNodes;
227};
228
229#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:73
Holds all the data relating to one schematic.
Definition schematic.h:88
const SYMBOL * GetParentSymbol() const
Definition sch_item.cpp:260
const wxString & GetShownNumber() const
Definition sch_pin.cpp:592
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)