]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/pump.cpp
* Se agrega carga de lineas entre compuertas.
[z.facultad/75.42/plaqui.git] / Model / src / pump.cpp
index d42bc58833c0e8411c8cdb572eebf73f18c91bf5..7332c91e1d4d8186ddc15c8a0b325e7805bedf57 100644 (file)
@@ -14,6 +14,8 @@ Pump::Pump(const std::string &_name):Source(_name),Control(_name)
        input = new ByPass();
        output = new ByPass();
        ((ByPass *)output)->set_control(this);
+       /* El color de la bomba siempre esta actualizado */
+       color_updated = true;
 }
 
 Pump::~Pump()
@@ -42,6 +44,7 @@ void Pump::simulate()
        std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
 #endif
        updated = false;
+       color_updated = true;
 }
 
 bool Pump::get_output()
@@ -62,6 +65,10 @@ void Pump::recieve_msg(int msg, IConector *who, void *data)
                        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);
        }