5 using namespace PlaQui::Model;
7 Pump::Pump(const std::string &_name):Source(_name),Control(_name)
13 max_flow = actual_flow = 0.0f;
15 output = new ByPass();
16 ((ByPass *)output)->set_control(this);
17 /* El color de la bomba siempre esta actualizado */
27 void Pump::update(int dir)
30 // Me fijo si me tengo que apagar automaticamente
31 open = input->get_output();
33 actual_flow = max_flow;
37 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
44 std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
50 bool Pump::get_output()
52 /* Si el corte fue manual, no puedo hacer nada */
53 if (active == false) return false;
55 /* Si no, depende del control automatico */
59 void Pump::recieve_msg(int msg, IConector *who, void *data)
62 case MSG_RESPONSE_MAX_FLOW: {
63 float tmp = *((float *)data);
64 if (max_flow < tmp) tmp = max_flow;
65 if (tmp < actual_flow) actual_flow = tmp;
68 case MSG_RESPONSE_COLOR:
69 /* Por las dudas, la bomba no debe cambiar de color */
73 Source::recieve_msg(msg, who, data);
78 void Pump::get_state_as_xml(std::stringstream &out)
80 // Saco el item basico por XML
81 PlantItem::get_state_as_xml(out);
83 // Saco lo importante de este item
84 out << "\t<pump name=\"" << name << "\">" << std::endl;
85 out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
86 out << "\t</pump>" << std::endl;