34#include <wx/tokenzr.h>
84 bool multiHighlight =
false;
92 strncpy( line, cmdline,
sizeof(line) - 1 );
93 line[
sizeof(line) - 1] = 0;
95 idcmd = strtok( line,
" \n\r" );
96 text = strtok(
nullptr,
"\"\n\r" );
98 if( idcmd ==
nullptr )
101 if( strcmp( idcmd,
"$CONFIG" ) == 0 )
106 else if( strcmp( idcmd,
"$CUSTOM_RULES" ) == 0 )
111 else if( strcmp( idcmd,
"$DRC" ) == 0 )
116 else if( strcmp( idcmd,
"$CLEAR" ) == 0 )
133 else if( strcmp( idcmd,
"$NET:" ) == 0 )
146 std::vector<MSG_PANEL_ITEM> items;
153 else if( strcmp( idcmd,
"$NETS:" ) == 0 )
158 wxStringTokenizer netsTok = wxStringTokenizer(
From_UTF8(
text ),
",", wxTOKEN_STRTOK );
161 while( netsTok.HasMoreTokens() )
170 std::vector<MSG_PANEL_ITEM> items;
177 multiHighlight =
true;
194 if( netcode > 0 || multiHighlight )
196 if( !multiHighlight )
198 renderSettings->
SetHighlight( ( netcode >= 0 ), netcode );
212 if( aItem->GetNetCode() == netcode )
213 bbox.
Merge( aItem->GetBoundingBox() );
226 for(
PAD* p : fp->Pads() )
256 return "$CLEAR: \"HIGHLIGHTED\"";
258 switch( aItem->
Type() )
271 return fmt::format(
"$PART: \"{}\" $PAD: \"{}\"",
280 const char* text_key;
291 return fmt::format(
"$PART: \"{}\" {} \"{}\"",
305template <
typename ItemContainer>
310 switch( item->Type() )
331 wxString ref =
pad->GetParentFootprint()->GetReference();
347 std::string command =
"$SELECT: ";
351 std::deque<EDA_ITEM*> focusItems = { aFocusItem };
352 std::set<wxString> focusParts;
355 if( focusParts.size() > 0 )
358 command += *focusParts.begin();
371 std::set<wxString> parts;
377 for( wxString part : parts )
402 std::string packet = fmt::format(
"$NET: \"{}\"",
TO_UTF8( aNetName ) );
404 if( !packet.empty() )
425 if( !packet.empty() )
444 wxArrayString syncArray = wxStringTokenize( syncStr,
"," );
446 std::vector<std::pair<int, BOARD_ITEM*>> orderPairs;
450 if( footprint ==
nullptr )
453 wxString fpSheetPath = footprint->GetPath().AsString().BeforeLast(
'/' );
454 wxString fpUUID = footprint->m_Uuid.AsString();
456 if( fpSheetPath.IsEmpty() )
466 wxString syncEntry = syncArray[
index];
468 if( syncEntry.empty() )
471 wxString syncData = syncEntry.substr( 1 );
473 switch( syncEntry.GetChar( 0 ).GetValue() )
476 if( fpSheetPath.StartsWith( syncData ) )
478 orderPairs.emplace_back(
index, footprint );
482 if( syncData == fpRefEscaped )
484 orderPairs.emplace_back(
index, footprint );
489 if( syncData.StartsWith( fpRefEscaped ) )
491 wxString selectPadNumberEscaped =
492 syncData.substr( fpRefEscaped.size() + 1 );
494 wxString selectPadNumber =
UnescapeString( selectPadNumberEscaped );
496 for(
PAD*
pad : footprint->Pads() )
498 if( selectPadNumber ==
pad->GetNumber() )
500 orderPairs.emplace_back(
index,
pad );
512 orderPairs.begin(), orderPairs.end(),
513 [](
const std::pair<int, BOARD_ITEM*>& a,
const std::pair<int, BOARD_ITEM*>& b ) ->
bool
515 return a.first < b.first;
518 std::vector<BOARD_ITEM*> items;
519 items.reserve( orderPairs.size() );
521 for(
const std::pair<int, BOARD_ITEM*>& pair : orderPairs )
522 items.push_back( pair.second );
544 COMPONENT* component =
new COMPONENT( footprint->GetFPID(), footprint->GetReference(),
545 footprint->GetValue(), footprint->GetPath(), {} );
547 for(
PAD*
pad : footprint->Pads() )
549 const wxString& netname =
pad->GetShortNetname();
551 if( !netname.IsEmpty() )
553 component->
AddNet(
pad->GetNumber(), netname,
pad->GetPinFunction(),
558 nlohmann::ordered_map<wxString, wxString> fields;
560 for(
PCB_FIELD* field : footprint->GetFields() )
562 wxCHECK2( field,
continue );
564 fields[field->GetCanonicalName()] = field->GetText();
570 std::map<wxString, wxString> properties;
572 if( footprint->GetAttributes() &
FP_DNP )
573 properties.emplace(
"dnp",
"" );
576 properties.emplace(
"exclude_from_bom",
"" );
580 netlist.AddComponent( component );
626 std::string prefix =
"$SELECT: ";
628 if( !payload.compare( 0, prefix.size(), prefix ) )
630 std::string del =
",";
631 std::string paramStr = payload.substr( prefix.size() );
632 size_t modeEnd = paramStr.find( del );
633 bool selectConnections =
false;
637 if( std::stoi( paramStr.substr( 0, modeEnd ) ) == 1 )
638 selectConnections =
true;
640 catch( std::invalid_argument& )
645 std::vector<BOARD_ITEM*> items =
650 if( selectConnections )
662 wxLogTrace(
traceCrossProbeFlash,
"MAIL_SELECTION(_FORCE) PCB: flash enabled, items=%zu", items.size() );
669 std::vector<BOARD_ITEM*> boardItems;
670 std::copy( items.begin(), items.end(), std::back_inserter( boardItems ) );
690 std::stringstream ss( payload );
693 std::string formatStr;
694 wxCHECK( std::getline( ss, formatStr, delim ), );
696 std::string fnameStr;
697 wxCHECK( std::getline( ss, fnameStr, delim ), );
698 wxASSERT( !fnameStr.empty() );
704 importFormat = std::stoi( formatStr );
706 catch( std::invalid_argument& )
712 std::map<std::string, UTF8> props;
714 std::string key, value;
717 if( !std::getline( ss, key, delim ) )
720 if( !std::getline( ss, value, delim ) )
723 props.emplace( key, value );
727 if( importFormat >= 0 )
728 importFile( fnameStr, importFormat, props.empty() ?
nullptr : &props );
747 if( !errors.IsEmpty() )
748 statusBar->SetLoadWarningMessages( errors );
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static TOOL_ACTION updatePcbFromSchematic
static TOOL_ACTION pluginsReload
static TOOL_ACTION showFootprintLibTable
CROSS_PROBING_SETTINGS m_CrossProbing
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
FOOTPRINT * GetParentFootprint() const
Update the BOARD with a new netlist.
bool UpdateNetlist(NETLIST &aNetlist)
Update the board's components according to the new netlist.
void SetDeleteUnusedFootprints(bool aEnabled)
void SetReplaceFootprints(bool aEnabled)
void SetLookupByTimestamp(bool aEnabled)
void SetTransferGroups(bool aEnabled)
Information pertinent to a Pcbnew printed circuit board.
const std::set< int > & GetHighLightNetCodes() const
void SetHighLightNet(int aNetCode, bool aMulti=false)
Select the netcode to be highlighted.
NETINFO_ITEM * FindNet(int aNetcode) const
Search for a net with the given netcode.
const ZONES & Zones() const
void ResetNetHighLight()
Reset all high light data to the init state.
const FOOTPRINTS & Footprints() const
const TRACKS & Tracks() const
bool IsHighLightNetON() const
void HighLightON(bool aValue=true)
Enable or disable net highlighting.
constexpr size_type GetWidth() const
constexpr Vec Centre() const
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
constexpr size_type GetHeight() const
Store all of the related component information found in a netlist.
void SetProperties(std::map< wxString, wxString > aProps)
void AddNet(const wxString &aPinName, const wxString &aNetName, const wxString &aPinFunction, const wxString &aPinType)
void SetFields(nlohmann::ordered_map< wxString, wxString > aFields)
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
void FocusOnLocation(const VECTOR2I &aPos, bool aAllowScroll=true)
Useful to focus on a particular location, in find functions.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A base class for most all the KiCad significant classes used in schematics and boards.
KICAD_T Type() const
Returns the type of object.
virtual const wxString & GetText() const
Return the string associated with the text object.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
bool IsHighlightEnabled() const
Return current highlight setting.
void SetHighlight(bool aEnabled, int aNetcode=-1, bool aMulti=false)
Turns on/off highlighting.
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
void UpdateAllLayersColor()
Apply the new coloring scheme to all layers.
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Carry a payload from one KIWAY_PLAYER to another within a PROJECT.
std::string & GetPayload()
Return the payload, which can be any text but it typically self identifying s-expression.
MAIL_T Command()
Returns the MAIL_T associated with this mail.
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr, bool aFromOtherThread=false)
Send aPayload to aDestination from aSource.
wxString GetLibraryLoadErrors() const
Returns all library load errors as newline-separated strings for display.
Handle the data for a net.
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Return the information about the NETINFO_ITEM in aList to display in the message panel.
Store information read from a netlist along with the flags used to update the NETLIST in the BOARD.
static TOOL_ACTION runDRC
static TOOL_ACTION syncSelection
Sets selection to specified items, zooms to fit, if enabled.
static TOOL_ACTION syncSelectionWithNets
Sets selection to specified items with connected nets, zooms to fit, if enabled.
PCBNEW_SETTINGS * GetPcbNewSettings() const
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
void StartCrossProbeFlash(const std::vector< BOARD_ITEM * > &aItems)
void KiwayMailIn(KIWAY_MAIL_EVENT &aEvent) override
Receive #KIWAY_ROUTED_EVENT messages from other players.
void ShowBoardSetupDialog(const wxString &aInitialPage=wxEmptyString, wxWindow *aParent=nullptr)
void OnNetlistChanged(BOARD_NETLIST_UPDATER &aUpdater, bool *aRunDragCommand)
Called after netlist is updated.
void ExecuteRemoteCommand(const char *cmdline) override
Execute a remote command send by Eeschema via a socket, port KICAD_PCB_PORT_SERVICE_NUMBER (currently...
void SendCrossProbeItem(BOARD_ITEM *aSyncItem)
Send a message to the schematic editor so that it may move its cursor to an item with the same refere...
bool FetchNetlistFromSchematic(NETLIST &aNetlist, const wxString &aAnnotateMessage)
void SendSelectItemsToSch(const std::deque< EDA_ITEM * > &aItems, EDA_ITEM *aFocusItem, bool aForce)
Send a message to the schematic editor to try to find schematic counterparts of specified PCB items a...
std::vector< BOARD_ITEM * > FindItemsFromSyncSelection(std::string syncStr)
Used to find items by selection synchronization spec string.
PCB_DESIGN_BLOCK_PANE * m_designBlocksPane
bool importFile(const wxString &aFileName, int aFileType, const std::map< std::string, UTF8 > *aProperties=nullptr)
Load the given filename but sets the path to the current project path.
void SendCrossProbeNetName(const wxString &aNetName)
Send a net name to Eeschema for highlighting.
A set of BOARD_ITEMs (i.e., without duplicates).
static FOOTPRINT_LIBRARY_ADAPTER * FootprintLibAdapter(PROJECT *aProject)
Handle a list of polygons defining a copper zone.
#define CTL_OMIT_FILTERS
Omit the ki_fp_filters attribute in .kicad_xxx files.
bool SendCommand(int aService, const std::string &aMessage)
Used by a client to sent (by a socket connection) a data to a server.
const wxChar *const traceCrossProbeFlash
Flag to enable debug output for cross-probe flash operations.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
Class to handle a set of BOARD_ITEMs.
void collectItemsForSyncParts(ItemContainer &aItems, std::set< wxString > &parts)
std::string FormatProbeItem(BOARD_ITEM *aItem)
KIWAY Kiway(KFCTL_STANDALONE)
std::vector< FAB_LAYER_COLOR > dummy
wxString UnescapeString(const wxString &aSource)
wxString From_UTF8(const char *cstring)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
bool zoom_to_fit
Zoom to fit items (ignored if center_on_items is off).
bool center_on_items
Automatically pan to cross-probed items.
bool auto_highlight
Automatically turn on highlight mode in the target frame.
wxLogTrace helper definitions.
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
@ PCB_PAD_T
class PAD, a pad in a footprint