]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/exclusa.cpp
Se agrega una mejora visual para poder ver los colores de todos
[z.facultad/75.42/plaqui.git] / Model / src / exclusa.cpp
index 6e76c66a13e674337c5f1f7900250dca2899055a..74ec90625e2209c6c49cf5cee5e119b79a320d40 100644 (file)
@@ -16,6 +16,8 @@ Exclusa::Exclusa(const std::string &_name):Control(_name)
 
 Exclusa::~Exclusa()
 {
+       delete input;
+       delete output;
 }
 
 void Exclusa::update(int dir)
@@ -36,7 +38,9 @@ void Exclusa::simulate()
                PlantItem *o = (PlantItem *)(*i);
                set_color( o->get_color() );
        }
+#ifdef DEBUG
        std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
+#endif
 }
 
 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
@@ -44,11 +48,13 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data)
        switch (msg) {
                case MSG_QUERY_MAX_FLOW_OUT:
                        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);