X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f031c89fa8a00ea12ff7290569ec507f44402458..66124e5142afe9748ba184592792fe307fd4a3b5:/Model/src/exclusa.cpp?ds=sidebyside diff --git a/Model/src/exclusa.cpp b/Model/src/exclusa.cpp index 553c8ce..4253507 100644 --- a/Model/src/exclusa.cpp +++ b/Model/src/exclusa.cpp @@ -6,37 +6,73 @@ using namespace PlaQui::Model; Exclusa::Exclusa(const std::string &_name):Control(_name) { - open = true; + is_open = true; in_slots = out_slots = 1; + // Genero mi logica de control + input = new ByPass(); + output = new ByPass(); + ((ByPass *)output)->set_control(this); + updated = false; } Exclusa::~Exclusa() { + delete input; + delete output; } void Exclusa::update(int dir) { - // no hace nada + if (updated) return; + + // Primero me fijo si la entrada esta operando, es decir + // si hay alguien conectado para automatizar. + if (input->is_operational()) { + // como si lo hay, entonces pregunto cual debe ser + // mi estado + is_open = input->get_output(); + } + actual_flow = temp = INFINITO; } void Exclusa::simulate() { - std::cout << name << ": " << ((open)?"Abierta":"Cerrada") << std::endl; +#ifdef DEBUG + std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl; +#endif + + updated = false; + color_updated = false; } void Exclusa::recieve_msg(int msg, IConector *who, void *data) { - float temp; switch (msg) { case MSG_QUERY_MAX_FLOW_OUT: - temp = *((float *)data); + if (updated) { + who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp); + } + actual_flow = temp = *((float *)data); + if (!is_open) actual_flow = temp = 0; + updated = true; send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp); + who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp); break; case MSG_RESPONSE_MAX_FLOW: - temp = *((float *)data); + if (is_open) + actual_flow = temp = *((float *)data); break; default: Control::recieve_msg(msg, who, data); } } +void Exclusa::get_state_as_xml(std::stringstream &out) +{ + PlantItem::get_state_as_xml(out); + out << "\t" << std::endl; + out << "\t\t" << ((is_open)?"true":"false") << "" << std::endl; + out << "\t" << std::endl; + temp = actual_flow = INFINITO; +} +