]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/splitter.cpp
* Se mejora la deteccion de conexiones en el constructor
[z.facultad/75.42/plaqui.git] / Model / src / splitter.cpp
index 7afa150e9ea85328a2528c6b9c147ed6126f073b..c3ce1b4dc9664772f82f3522d6ef21bff28950c8 100644 (file)
@@ -9,6 +9,7 @@ Splitter::Splitter(const std::string &_name):Transport(_name)
        in_slots = 1;
        out_slots = 2;
        max_flow = actual_flow = 0.0f;
+       updated = true;
 }
 
 Splitter::~Splitter()
@@ -27,6 +28,9 @@ void Splitter::recieve_msg(int msg, IConector *who, void *data)
        
        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
                        actual_flow =  *((float *)data);
@@ -46,7 +50,9 @@ void Splitter::recieve_msg(int msg, IConector *who, void *data)
                break;
                case MSG_RESPONSE_MAX_FLOW: {
                        float max = *((float *)data);
+#ifdef DEBUG
                        std::cout << name << ":Split " << max << std::endl;
+#endif
                        if (pos == OUT) {
                                if (max < actual_flow)  actual_flow = max;
                                if (max_flow < actual_flow) actual_flow = max_flow;
@@ -88,7 +94,9 @@ void Splitter::simulate()
                PlantItem *o = (PlantItem *)(*i);
                set_color( o->get_color() );
        }
+#ifdef DEBUG
        std::cout << name << "::Flujo actual = " << actual_flow << std::endl;
+#endif
        updated = false;
 }