]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/exclusa.cpp
* Se arregla la union, por n-esima vez, para que actualice correctamente los flujos.
[z.facultad/75.42/plaqui.git] / Model / src / exclusa.cpp
index 8e64bc3be8130297ae1d4f749f7ac3521fd40bdb..f293208047a2ea1503d3a9ac93651852ec20b9b0 100644 (file)
@@ -12,10 +12,13 @@ Exclusa::Exclusa(const std::string &_name):Control(_name)
        input = new ByPass();
        output = new ByPass();
        ((ByPass *)output)->set_control(this);
+       updated = false;
 }
 
 Exclusa::~Exclusa()
 {
+       delete input;
+       delete output;
 }
 
 void Exclusa::update(int dir)
@@ -31,19 +34,29 @@ void Exclusa::update(int dir)
 
 void Exclusa::simulate()
 {
+#ifdef DEBUG
        std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
+#endif
+
+       updated = false;
+       color_updated = false;
 }
 
 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
 {
        switch (msg) {
                case MSG_QUERY_MAX_FLOW_OUT:
+                       if (updated) {
+                               who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
+                       }
                        temp = *((float *)data);
+                       if (!is_open) temp = 0;
                        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
                break;
                case MSG_RESPONSE_MAX_FLOW:
-                       temp = *((float *)data);
+                       if (is_open)
+                               temp = *((float *)data);
                break;
                default:
                        Control::recieve_msg(msg, who, data);