]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/conduct.cpp
se mejora la conexion entre compuertas, se salvan en el XML, hay un par de cosas...
[z.facultad/75.42/plaqui.git] / Model / src / conduct.cpp
index 3628ac6282abfb7622389f93219d3b2689fb119d..e4a89d07381236a2a3f92f1231af37ea1b02a4c6 100644 (file)
@@ -53,7 +53,14 @@ 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
-       if (updated) return;
+       if (updated) {
+               std::list<IConector *>::iterator i = in_list.begin();
+               if (i != in_list.end()) {
+                       PlantItem *o = (PlantItem *)(*i);
+                       set_color( o->get_color() );
+               }
+               return;
+       }
        // Seteo mi actualizar en true para evitar entrar de nuevo
        actual_flow = 99999;
        updated = true;
@@ -70,11 +77,6 @@ void Conduct::simulate()
                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;
 #endif