]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/pump.cpp
El cliente pinta de color las lineas que conectan items y logica. Si la pinta de...
[z.facultad/75.42/plaqui.git] / Model / src / pump.cpp
index 78d4dcd9f2e4ee6d3aaf96072e2700093f95f5a3..7332c91e1d4d8186ddc15c8a0b325e7805bedf57 100644 (file)
@@ -11,29 +11,40 @@ Pump::Pump(const std::string &_name):Source(_name),Control(_name)
        active = true;
        open = true;
        max_flow = actual_flow = 0.0f;
+       input = new ByPass();
+       output = new ByPass();
+       ((ByPass *)output)->set_control(this);
+       /* El color de la bomba siempre esta actualizado */
+       color_updated = true;
 }
 
 Pump::~Pump()
 {
+       delete input;
+       delete output;
 }
 
 void Pump::update(int dir)
 {
        if (updated) return;
+       // Me fijo si me tengo que apagar automaticamente
+       open = input->get_output();
        if (active && open)
                actual_flow = max_flow;
        else
                actual_flow = 0;
-       updated = true;
+       
        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
+       updated = true;
 }
 
 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;
+#endif
        updated = false;
+       color_updated = true;
 }
 
 bool Pump::get_output()
@@ -48,24 +59,30 @@ bool Pump::get_output()
 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);
+                       if (max_flow < tmp) tmp = max_flow;
                        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);
        }
 
 }
 
+void Pump::get_state_as_xml(std::stringstream &out)
+{
+       // Saco el item basico por XML
+       PlantItem::get_state_as_xml(out);
+
+       // Saco lo importante de este item
+       out << "\t<pump name=\"" << name << "\">" << std::endl;
+       out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
+       out << "\t</pump>" << std::endl;
+}
+