5 using namespace PlaQui::Model;
7 Exclusa::Exclusa(const std::string &_name):Control(_name)
10 in_slots = out_slots = 1;
11 // Genero mi logica de control
13 output = new ByPass();
14 ((ByPass *)output)->set_control(this);
24 void Exclusa::update(int dir)
26 // Primero me fijo si la entrada esta operando, es decir
27 // si hay alguien conectado para automatizar.
28 if (input->is_operational()) {
29 // como si lo hay, entonces pregunto cual debe ser
31 is_open = input->get_output();
35 void Exclusa::simulate()
38 std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
42 color_updated = false;
45 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
48 case MSG_QUERY_MAX_FLOW_OUT:
50 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
52 temp = *((float *)data);
53 if (!is_open) temp = 0;
54 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
55 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
57 case MSG_RESPONSE_MAX_FLOW:
59 temp = *((float *)data);
62 Control::recieve_msg(msg, who, data);
66 void Exclusa::get_state_as_xml(std::stringstream &out)
69 // hack to avoid output problems :-)
71 PlantItem::get_state_as_xml(out);
72 out << "\t<exclusa name=\"" << name << "\">" << std::endl;
73 out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
74 out << "\t</exclusa>" << std::endl;