2020-05-31 21:42:04 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 CERN
|
|
|
|
* @author Jon Evans <jon@craftyjon.com>
|
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KICAD_NET_SETTINGS_H
|
|
|
|
#define KICAD_NET_SETTINGS_H
|
|
|
|
|
|
|
|
#include <netclass.h>
|
|
|
|
#include <settings/nested_settings.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* NET_SETTINGS stores various net-related settings in a project context. These settings are
|
|
|
|
* accessible and editable from both the schematic and PCB editors.
|
|
|
|
*/
|
|
|
|
class NET_SETTINGS : public NESTED_SETTINGS
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NET_SETTINGS( JSON_SETTINGS* aParent, const std::string& aPath );
|
|
|
|
|
|
|
|
virtual ~NET_SETTINGS();
|
|
|
|
|
2020-07-06 10:51:04 +00:00
|
|
|
public:
|
2020-05-31 21:42:04 +00:00
|
|
|
NETCLASSES m_NetClasses;
|
|
|
|
|
2020-07-06 10:51:04 +00:00
|
|
|
// Runtime map of label to netclass-name for quick lookup. Includes both composite labels
|
|
|
|
// (buses) and atomic net names (including individual bus members).
|
|
|
|
std::map<wxString, wxString> m_NetClassAssignments;
|
|
|
|
|
2020-07-08 02:21:45 +00:00
|
|
|
/**
|
|
|
|
* A map of fully-qualified net names to colors used in the board context.
|
|
|
|
* Since these color overrides are for the board, buses are not included here.
|
|
|
|
* Only nets that the user has assigned custom colors to will be in this list.
|
|
|
|
* Nets that no longer exist will be deleted during a netlist read in PcbNew.
|
|
|
|
*/
|
|
|
|
std::map<wxString, KIGFX::COLOR4D> m_PcbNetColors;
|
|
|
|
|
2020-07-06 10:51:04 +00:00
|
|
|
public:
|
2020-10-07 14:40:12 +00:00
|
|
|
const wxString& GetNetclassName( const wxString& aNetName ) const;
|
|
|
|
|
2020-07-06 10:51:04 +00:00
|
|
|
/**
|
|
|
|
* Parses a bus vector (e.g. A[7..0]) into name, begin, and end.
|
|
|
|
* Ensures that begin and end are positive and that end > begin.
|
|
|
|
*
|
|
|
|
* @param aBus is a bus vector label string
|
|
|
|
* @param aName out is the bus name, e.g. "A"
|
|
|
|
* @param aMemberList is a list of member strings, e.g. "A7", "A6", and so on
|
|
|
|
* @return true if aBus was successfully parsed
|
|
|
|
*/
|
|
|
|
static bool ParseBusVector( const wxString& aBus, wxString* aName,
|
|
|
|
std::vector<wxString>* aMemberList );
|
2020-05-31 21:42:04 +00:00
|
|
|
|
2020-07-06 10:51:04 +00:00
|
|
|
/**
|
|
|
|
* Parses a bus group label into the name and a list of components.
|
|
|
|
*
|
|
|
|
* @param aGroup is the input label, e.g. "USB{DP DM}"
|
|
|
|
* @param name is the output group name, e.g. "USB"
|
|
|
|
* @param aMemberList is a list of member strings, e.g. "DP", "DM"
|
|
|
|
* @return true if aGroup was successfully parsed
|
|
|
|
*/
|
|
|
|
static bool ParseBusGroup( wxString aGroup, wxString* name,
|
|
|
|
std::vector<wxString>* aMemberList );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Explodes the list of netclass assignments to include atomic members of composite labels
|
|
|
|
* (buses).
|
2020-07-19 21:22:49 +00:00
|
|
|
*
|
|
|
|
* @param aRebuildFromScratch indicates the assignments should be rebuilt from the netclass
|
|
|
|
* membership lists before resolving.
|
2020-07-06 10:51:04 +00:00
|
|
|
*/
|
2020-07-19 21:22:49 +00:00
|
|
|
void ResolveNetClassAssignments( bool aRebuildFromScratch = false );
|
2020-07-06 10:51:04 +00:00
|
|
|
|
|
|
|
private:
|
2020-05-31 21:42:04 +00:00
|
|
|
// TODO: Add diff pairs, bus information, etc here.
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KICAD_NET_SETTINGS_H
|