qucs_s/qucs/node.h

120 lines
4.0 KiB
C
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
2005-08-15 06:04:52 +00:00
node.h
--------
2003-10-15 21:32:36 +00:00
begin : Sat Sep 20 2003
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2003-10-15 21:32:36 +00:00
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef NODE_H
#define NODE_H
#include "conductor.h"
#include <list>
2003-10-15 21:32:36 +00:00
2005-08-15 06:04:52 +00:00
class Node : public Conductor {
2004-03-28 19:51:04 +00:00
public:
Node(int x, int y);
2005-08-15 06:04:52 +00:00
~Node();
2004-03-28 19:51:04 +00:00
2024-05-05 13:35:52 +03:00
void paint(QPainter* painter) const;
2004-10-10 16:06:55 +00:00
bool getSelected(int, int);
void setName(const QString&, const QString&, int x=0, int y=0);
// Add an element to the node's connections.
// No-op if element is already connected.
void connect(Element* connectable);
// Remove element from the node's connections.
void disconnect(Element* connectable);
// Tells if an element is among node's connections.
bool is_connected(Element* connectable) const;
std::size_t conn_count() const;
// Returns one of node's connections or nullptr when
// there is no connections
Element* any() const;
// Returns an element from node's connections which is
// not equal to e; nullptr if there is no such element
Element* other_than(Element* e) const;
using const_iterator = std::list<Element*>::const_iterator;
const_iterator begin() const;
const_iterator end() const;
2003-10-15 21:32:36 +00:00
QString Name; // node name used by creation of netlist
QString DType; // type of node (used by digital files)
int State; // remember some things during some operations
private:
// Nodes usually have quite a few connections. In ideal case, when all wire
// placement optimizations work properly, there can be at most four connections
// to a single node because Qucs-S allows only orthogonal element placement.
//
// Additions/deletions are frequent and made in random order. Considering
// all that I think the doubly-linked list is a good choice here.
//
// A node doesn't claim ownership of any connected object, storing raw pointers is OK.
//
// Long-term TODO: refactor so that node will keep only pointers to *connectable*
// objects, i.e. components and wires. Paintings, graphs, wirelabels,
// etc., are Elements too, it's just wrong to use so generic type.
std::list<Element*> connections;
2003-10-15 21:32:36 +00:00
};
// Calling this while iterating over the node's connections via Node::begin() and
// Node::end() will cause segfault because of iterator invalidation
inline void Node::connect(Element* connectable)
{
if (is_connected(connectable)) {
return;
}
connections.push_front(connectable);
}
// Calling this while iterating over the node's connections via Node::begin() and
// Node::end() will cause segfault because of iterator invalidation
inline void Node::disconnect(Element* connectable)
{
connections.remove(connectable);
}
inline bool Node::is_connected(Element *connectable) const
{
return std::find(connections.begin(), connections.end(), connectable) != connections.end();
}
inline std::size_t Node::conn_count() const
{
return connections.size();
}
inline Node::const_iterator Node::begin() const
{
return connections.begin();
}
inline Node::const_iterator Node::end() const
{
return connections.end();
}
inline Element* Node::any() const
{
return connections.empty() ? nullptr : connections.front();
}
2003-10-15 21:32:36 +00:00
#endif