]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/drainage.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 / drainage.cpp
index ac2868a5155a6f3b359eb3b026399a8864540f86..bc83db6a42e2359fedffd56fe42bf0928b81cce7 100644 (file)
@@ -27,7 +27,14 @@ void Drainage::update(int dir)
 
 void Drainage::simulate()
 {
 
 void Drainage::simulate()
 {
+       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 recibido = " << actual_flow << std::endl;
        std::cout << name << "::Flujo recibido = " << actual_flow << std::endl;
+#endif
        updated = false;
        actual_flow = 0;
 }
        updated = false;
        actual_flow = 0;
 }
@@ -39,7 +46,6 @@ void Drainage::recieve_msg(int msg, IConector *who, void *data)
                case MSG_QUERY_MAX_FLOW_OUT:
                        // FIXME Hacer INFINITO !!!
                        actual_flow = *((float *)data);
                case MSG_QUERY_MAX_FLOW_OUT:
                        // FIXME Hacer INFINITO !!!
                        actual_flow = *((float *)data);
-                       std::cout << "DD" << std::endl;
                        tmp = 999999;
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
                        updated = true;
                        tmp = 999999;
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
                        updated = true;