X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f7e6ba4976cdafcb4aa3e39b03539d5a3d12f6a4..cafdb587ee6e195e5a917cea7570c2ea7e22a003:/Model/src/exclusa.cpp diff --git a/Model/src/exclusa.cpp b/Model/src/exclusa.cpp index 326a7b9..8e64bc3 100644 --- a/Model/src/exclusa.cpp +++ b/Model/src/exclusa.cpp @@ -6,7 +6,7 @@ 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(); @@ -20,22 +20,27 @@ Exclusa::~Exclusa() void Exclusa::update(int dir) { - // Mi entrada define mi estado - open = input->get_output(); + // 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(); + } } void Exclusa::simulate() { - std::cout << name << ": " << ((open)?"Abierta":"Cerrada") << std::endl; + std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl; } void Exclusa::recieve_msg(int msg, IConector *who, void *data) { - float temp; switch (msg) { case MSG_QUERY_MAX_FLOW_OUT: temp = *((float *)data); 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); @@ -45,3 +50,14 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data) } } +void Exclusa::get_state_as_xml(std::stringstream &out) +{ + // Datos comunes + // hack to avoid output problems :-) + actual_flow = temp; + PlantItem::get_state_as_xml(out); + out << "\t" << std::endl; + out << "\t\t" << ((is_open)?"true":"false") << "" << std::endl; + out << "\t" << std::endl; +} +