]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/exclusa.cpp
Se arregla el bug que hacia que el cliente levante mal archivos XML grandes.
[z.facultad/75.42/plaqui.git] / Model / src / exclusa.cpp
index 8e56006d26ba2fbce6dde04ce258978084876455..96c8f99994d2289196f64e9840ef039435f3337b 100644 (file)
@@ -23,11 +23,6 @@ Exclusa::~Exclusa()
 
 void Exclusa::update(int dir)
 {
 
 void Exclusa::update(int dir)
 {
-       std::list<IConector *>::iterator i = in_list.begin();
-       if (i != in_list.end()) {
-               PlantItem *o = (PlantItem *)(*i);
-               set_color( o->get_color() );
-       }
        // Primero me fijo si la entrada esta operando, es decir
        // si hay alguien conectado para automatizar.
        if (input->is_operational()) {
        // Primero me fijo si la entrada esta operando, es decir
        // si hay alguien conectado para automatizar.
        if (input->is_operational()) {
@@ -35,6 +30,8 @@ void Exclusa::update(int dir)
                // mi estado
                is_open = input->get_output();
        }
                // mi estado
                is_open = input->get_output();
        }
+       if (updated) return;
+       actual_flow = temp = INFINITO;
 }
 
 void Exclusa::simulate()
 }
 
 void Exclusa::simulate()
@@ -42,6 +39,9 @@ void Exclusa::simulate()
 #ifdef DEBUG
        std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
 #endif
 #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)
 }
 
 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
@@ -51,14 +51,15 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data)
                        if (updated) {
                                who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
                        }
                        if (updated) {
                                who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
                        }
-                       temp = *((float *)data);
-                       if (!is_open) temp = 0;
+                       actual_flow = temp = *((float *)data);
+                       if (!is_open) actual_flow = temp = 0;
+                       updated = true;
                        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
                break;
                case MSG_RESPONSE_MAX_FLOW:
                        if (is_open)
                        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
                break;
                case MSG_RESPONSE_MAX_FLOW:
                        if (is_open)
-                               temp = *((float *)data);
+                               actual_flow = temp = *((float *)data);
                break;
                default:
                        Control::recieve_msg(msg, who, data);
                break;
                default:
                        Control::recieve_msg(msg, who, data);
@@ -67,12 +68,10 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data)
        
 void Exclusa::get_state_as_xml(std::stringstream &out)
 {
        
 void Exclusa::get_state_as_xml(std::stringstream &out)
 {
-       // Datos comunes
-       // hack to avoid output problems :-)
-       actual_flow = temp;
        PlantItem::get_state_as_xml(out);
        out << "\t<exclusa name=\"" << name << "\">" << std::endl;
        out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
        out << "\t</exclusa>" << std::endl;
        PlantItem::get_state_as_xml(out);
        out << "\t<exclusa name=\"" << name << "\">" << std::endl;
        out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
        out << "\t</exclusa>" << std::endl;
+       temp = actual_flow = INFINITO;
 }
 
 }