]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/conduct.cpp
* Se arregla la union, por n-esima vez, para que actualice correctamente los flujos.
[z.facultad/75.42/plaqui.git] / Model / src / conduct.cpp
index bc0e3f352a2a341644967fd104a0969457b30601..08098d4f3486e40effd38cc7e345ae48a0d8074b 100644 (file)
@@ -11,6 +11,7 @@ Conduct::Conduct(const std::string &_name):Transport(_name)
        in_slots = 1;
        out_slots = 1;
        actual_flow = 99999;
        in_slots = 1;
        out_slots = 1;
        actual_flow = 99999;
+       updated = false;
 }
 
 Conduct::~Conduct()
 }
 
 Conduct::~Conduct()
@@ -21,15 +22,19 @@ void Conduct::recieve_msg(int msg, IConector *who, void *data)
 {
        switch (msg) {
                case MSG_QUERY_MAX_FLOW_OUT: {
 {
        switch (msg) {
                case MSG_QUERY_MAX_FLOW_OUT: {
+                       if (updated) {
+                               who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
+                       }
+                                                                                                                                                                
                        // Me preguntan por el flujo máximo.
                        // Primero me actualizo, y luego respondo
                        // Me preguntan por el flujo máximo.
                        // Primero me actualizo, y luego respondo
+                       updated = true;
                        float tmp = *((float *)data);
                        actual_flow = (actual_flow>max_flow)?max_flow:actual_flow;
                        actual_flow = (actual_flow<tmp)?actual_flow:tmp;
 
                        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
                        float tmp = *((float *)data);
                        actual_flow = (actual_flow>max_flow)?max_flow:actual_flow;
                        actual_flow = (actual_flow<tmp)?actual_flow:tmp;
 
                        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
-                       updated = true;
                }
                break;
                case MSG_RESPONSE_MAX_FLOW: {
                }
                break;
                case MSG_RESPONSE_MAX_FLOW: {
@@ -48,9 +53,10 @@ void Conduct::recieve_msg(int msg, IConector *who, void *data)
 void Conduct::update(int dir)
 {
        // Si ya me actualice, no lo tengo que hacer de nuevo
 void Conduct::update(int dir)
 {
        // Si ya me actualice, no lo tengo que hacer de nuevo
-       if (updated) return;
+       if (updated) {
+               return;
+       }
        // Seteo mi actualizar en true para evitar entrar de nuevo
        // Seteo mi actualizar en true para evitar entrar de nuevo
-       actual_flow = 99999;
        updated = true;
        actual_flow = max_flow;
        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
        updated = true;
        actual_flow = max_flow;
        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
@@ -59,17 +65,17 @@ void Conduct::update(int dir)
 void Conduct::simulate()
 {
        if (!updated) {
 void Conduct::simulate()
 {
        if (!updated) {
+#ifdef DEBUG
                std::cout << name << "::sin actualizar!" << std::endl;
                std::cout << name << "::sin actualizar!" << std::endl;
+#endif
                return;
        }
 
                return;
        }
 
-       std::list<IConector *>::iterator i = in_list.begin();
-       if (i != in_list.end()) {
-               PlantItem *o = (PlantItem *)(*i);
-               set_color( o->get_color() );
-       }
+#ifdef DEBUG
        std::cout << name << "::Flujo actual = " << actual_flow << " de " << max_flow << std::endl;
        std::cout << name << "::Flujo actual = " << actual_flow << " de " << max_flow << std::endl;
+#endif
        updated = false;
        updated = false;
+       color_updated = false;
 }
 
 
 }