aboutsummaryrefslogtreecommitdiff
path: root/Circuit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Circuit.cpp')
-rw-r--r--Circuit.cpp47
1 files changed, 36 insertions, 11 deletions
diff --git a/Circuit.cpp b/Circuit.cpp
index cf6312e..8137939 100644
--- a/Circuit.cpp
+++ b/Circuit.cpp
@@ -1,35 +1,60 @@
#include "Circuit.h"
+#include "Exception.h"
#include "NodeFactory.h"
void Circuit::create(string label, vector<string> nodes) {
if (nodes.size() == 1 && NodeFactory::has_type(nodes[0]))
return new_node(label, nodes[0]);
- for (string node : nodes)
- new_net(label, node);
+ new_net(label, nodes);
}
void Circuit::new_node(string label, string type) {
- if (nodes.find(label) != nodes.end()) return; // TODO: exception!
+ if (nodes.find(label) != nodes.end())
+ throw CircuitException("node with label \"%s\" already exists!", label.c_str());
Node * node = NodeFactory::create(type);
- if (node == nullptr) return; // TODO: exception?
+ if (node == nullptr)
+ throw CircuitException("unknown type \"%s\"", type.c_str());
nodes[label] = node;
printf("[%s] (%s)\n", label.c_str(), type.c_str());
}
-void Circuit::new_net(string label, string connection) {
- // TODO: instance Net
- // TODO: connect Net to connection
- printf("[%s] -> %s\n", label.c_str(), connection.c_str());
+void Circuit::new_net(string src, vector<string> dests) {
+ Net * net = new Net();
+ nets.push_back(net);
+
+ Node * node = find_node(src);
+ if (node == nullptr)
+ throw CircuitException("unknown source node \"%s\"", src.c_str());
+ node->setOutput(net);
+
+ for (auto dest : dests) {
+ Node * node = find_node(dest);
+ if (node == nullptr)
+ throw CircuitException("unknown destination node \"%s\"", dest.c_str());
+ node->addInput(net);
+ }
+}
+
+void Circuit::sim() {
+ for (auto & node : nodes) {
+ node.second->sim();
+ }
+}
+
+Node * Circuit::find_node(string label) {
+ auto map_index = this->nodes.find(label);
+ if (map_index == nodes.end()) return nullptr;
+ return map_index->second;
}
Circuit::~Circuit() {
- for (auto const & n : nodes)
- delete n.second;
- for (auto const & n : nets)
+ for (auto & n : nodes)
delete n.second;
+ for (auto & n : nets)
+ delete n;
}