 Pcbnew: major swig fix.
* Switched hashtables.h over to std::undordered_map from boost version.
* Added new macros DECL_VEC_FOR_SWIG() and DECL_MAP_FOR_SWIG() in macros.h.
These along with future DECL_HASH_FOR_SWIG() unify the declaration to swig
and C++ so that the resultant type name is common in both languages, and
the types AGREE.
* Fixed swigging of NETINFO_ITEM and NETINFO_LIST via magic.
* Newly exposed (python wrapped) are: D_PADS, TRACKS (was TRACK_PTRS),
NETNAME_MAP, NETCODE_MAP, wxString (without constructor purposely, read
comment in wx.i), MARKERS, ZONE_CONTAINERS, NETCLASSPTR, KICAD_T types.
* std::vector<SOMETHING*> tends to end up named SOMETHINGS in C++ and python.
Having the name consistent between like types is helpful, and between
languages. std::map<> ends up as SOMETHING_MAP.
* NETINFO_LIST::m_netNames and NETINFO_LIST::m_netCodes are now std::map
instead of hashtables, because swig does not yet support std::unordered_map.
* You can now get to any netclass or net info. NETNAMES_MAP and NETCODES_MAP
are traversable basically the same as a python dictionary using a python
string (not wsString) as the key! The wxString typemap converts python
string to wxString before the lookup happens. Iteration also works.
9 years ago |
|
/*
* This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2009 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com> * Copyright (C) 2009 Jean-Pierre Charras, jean-pierre.charras@inpg.fr * Copyright (C) 2009-2022 KiCad Developers, see change_log.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 */
#ifndef CLASS_NETCLASS_H
#define CLASS_NETCLASS_H
#include <kicommon.h>
#include <gal/color4d.h>
#include <optional>
#include <macros_swig.h>
using KIGFX::COLOR4D;
DECL_SET_FOR_SWIG( STRINGSET, wxString )
/**
* A collection of nets and the parameters used to route or test these nets. */class KICOMMON_API NETCLASS{public: static const char Default[]; ///< the name of the default NETCLASS
/**
* Create a NETCLASS instance with \a aName. * The units on the optional parameters are Internal Units (1 nm) * @param aName is the name of this new netclass. */ NETCLASS( const wxString& aName );
~NETCLASS();
wxString GetClass() const { return wxT( "NETCLASS" ); }
const wxString GetName() const { return m_Name; } void SetName( const wxString& aName ) { m_Name = aName; }
const wxString& GetDescription() const { return m_Description; } void SetDescription( const wxString& aDesc ) { m_Description = aDesc; }
bool HasClearance() const { return (bool) m_Clearance; } int GetClearance() const { return m_Clearance.value_or(-1); } void SetClearance( int aClearance ) { m_Clearance = aClearance; }
bool HasTrackWidth() const { return (bool) m_TrackWidth; } int GetTrackWidth() const { return m_TrackWidth.value_or( -1 ); } void SetTrackWidth( int aWidth ) { m_TrackWidth = aWidth; }
bool HasViaDiameter() const { return (bool) m_ViaDia; } int GetViaDiameter() const { return m_ViaDia.value_or( -1 ); } void SetViaDiameter( int aDia ) { m_ViaDia = aDia; }
int HasViaDrill() const { return (bool) m_ViaDrill; } int GetViaDrill() const { return m_ViaDrill.value_or( -1 ); } void SetViaDrill( int aSize ) { m_ViaDrill = aSize; }
bool HasuViaDiameter() const { return (bool) m_uViaDia; } int GetuViaDiameter() const { return m_uViaDia.value_or( -1 ); } void SetuViaDiameter( int aSize ) { m_uViaDia = aSize; }
bool HasuViaDrill() const { return (bool) m_uViaDrill; } int GetuViaDrill() const { return m_uViaDrill.value_or( -1 ); } void SetuViaDrill( int aSize ) { m_uViaDrill = aSize; }
bool HasDiffPairWidth() const { return (bool) m_diffPairWidth; } int GetDiffPairWidth() const { return m_diffPairWidth.value_or( -1 ); } void SetDiffPairWidth( int aSize ) { m_diffPairWidth = aSize; }
bool HasDiffPairGap() const { return (bool) m_diffPairGap; } int GetDiffPairGap() const { return m_diffPairGap.value_or( -1 ); } void SetDiffPairGap( int aSize ) { m_diffPairGap = aSize; }
bool HasDiffPairViaGap() const { return (bool) m_diffPairViaGap; } int GetDiffPairViaGap() const { return m_diffPairViaGap.value_or( -1 ); } void SetDiffPairViaGap( int aSize ) { m_diffPairViaGap = aSize; }
COLOR4D GetPcbColor() const { return m_PcbColor; } void SetPcbColor( const COLOR4D& aColor ) { m_PcbColor = aColor; }
int GetWireWidth() const { return m_wireWidth; } void SetWireWidth( int aWidth ) { m_wireWidth = aWidth; }
int GetBusWidth() const { return m_busWidth; } void SetBusWidth( int aWidth ) { m_busWidth = aWidth; }
COLOR4D GetSchematicColor() const { return m_schematicColor; } void SetSchematicColor( COLOR4D aColor ) { m_schematicColor = aColor; }
int GetLineStyle() const { return m_lineStyle; } void SetLineStyle( int aStyle ) { m_lineStyle = aStyle; }
protected: wxString m_Name; ///< Name of the net class
wxString m_Description; ///< what this NETCLASS is for.
std::optional<int> m_Clearance; ///< clearance when routing
std::optional<int> m_TrackWidth; ///< track width used to route NETs in this NETCLASS
std::optional<int> m_ViaDia; ///< via diameter
std::optional<int> m_ViaDrill; ///< via drill hole diameter
std::optional<int> m_uViaDia; ///< microvia diameter
std::optional<int> m_uViaDrill; ///< microvia drill hole diameter
std::optional<int> m_diffPairWidth; std::optional<int> m_diffPairGap; std::optional<int> m_diffPairViaGap;
int m_wireWidth; int m_busWidth; COLOR4D m_schematicColor; int m_lineStyle;
COLOR4D m_PcbColor; ///< Optional color override for this netclass (PCB context)
};
#endif // CLASS_NETCLASS_H
|