]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/pump.cpp
* Los colores ya estan completamente arreglados
[z.facultad/75.42/plaqui.git] / Model / src / pump.cpp
index 9c2a9b45b71a482e3db719324e8784d29d5ce92e..7332c91e1d4d8186ddc15c8a0b325e7805bedf57 100644 (file)
@@ -14,10 +14,14 @@ Pump::Pump(const std::string &_name):Source(_name),Control(_name)
        input = new ByPass();
        output = new ByPass();
        ((ByPass *)output)->set_control(this);
        input = new ByPass();
        output = new ByPass();
        ((ByPass *)output)->set_control(this);
+       /* El color de la bomba siempre esta actualizado */
+       color_updated = true;
 }
 
 Pump::~Pump()
 {
 }
 
 Pump::~Pump()
 {
+       delete input;
+       delete output;
 }
 
 void Pump::update(int dir)
 }
 
 void Pump::update(int dir)
@@ -29,16 +33,18 @@ void Pump::update(int dir)
                actual_flow = max_flow;
        else
                actual_flow = 0;
                actual_flow = max_flow;
        else
                actual_flow = 0;
-       updated = true;
+       
        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
+       updated = true;
 }
 
 void Pump::simulate()
 {
 }
 
 void Pump::simulate()
 {
-       std::cout << name << "::Flujo actual = " << ((active && open)?actual_flow:0) \
-       << " de " << max_flow;
+#ifdef DEBUG
        std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
        std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
+#endif
        updated = false;
        updated = false;
+       color_updated = true;
 }
 
 bool Pump::get_output()
 }
 
 bool Pump::get_output()
@@ -53,21 +59,16 @@ bool Pump::get_output()
 void Pump::recieve_msg(int msg, IConector *who, void *data)
 {
        switch (msg) {
 void Pump::recieve_msg(int msg, IConector *who, void *data)
 {
        switch (msg) {
-               case MSG_QUERY_MAX_FLOW_OUT: {
-                       // Me preguntan por el flujo máximo.
-                       // Primero me actualizo, y luego respondo
-                       // TODO la bomba nunca deberia ser consultada,pues el flujo sale ella
-               /*      update();
-                       float tmp;
-                       tmp = (actual_flow<max_flow)?actual_flow:max_flow;
-                       who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);*/
-               }
-               break;
                case MSG_RESPONSE_MAX_FLOW: {
                        float tmp = *((float *)data);
                case MSG_RESPONSE_MAX_FLOW: {
                        float tmp = *((float *)data);
+                       if (max_flow < tmp) tmp = max_flow;
                        if (tmp < actual_flow) actual_flow = tmp;
                }
                break;
                        if (tmp < actual_flow) actual_flow = tmp;
                }
                break;
+               case MSG_RESPONSE_COLOR:
+                       /* Por las dudas, la bomba no debe cambiar de color */
+                       ;
+               break;
                default:
                        Source::recieve_msg(msg, who, data);
        }
                default:
                        Source::recieve_msg(msg, who, data);
        }