X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f031c89fa8a00ea12ff7290569ec507f44402458..dfabbe2822ffdfb241105cff491b4331096e4af3:/Model/src/pump.cpp diff --git a/Model/src/pump.cpp b/Model/src/pump.cpp index 78d4dcd..7332c91 100644 --- a/Model/src/pump.cpp +++ b/Model/src/pump.cpp @@ -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_flowrecieve_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" << std::endl; + out << "\t\t" << ((open&&active)?"true":"false") << "" << std::endl; + out << "\t" << std::endl; +} +