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 std::list<IConector *>::iterator i = in_list.begin();
27 if (i != in_list.end()) {
28 PlantItem *o = (PlantItem *)(*i);
29 set_color( o->get_color() );
31 // Primero me fijo si la entrada esta operando, es decir
32 // si hay alguien conectado para automatizar.
33 if (input->is_operational()) {
34 // como si lo hay, entonces pregunto cual debe ser
36 is_open = input->get_output();
40 void Exclusa::simulate()
43 std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
47 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
50 case MSG_QUERY_MAX_FLOW_OUT:
52 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
54 temp = *((float *)data);
55 if (!is_open) temp = 0;
56 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
57 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
59 case MSG_RESPONSE_MAX_FLOW:
61 temp = *((float *)data);
64 Control::recieve_msg(msg, who, data);
68 void Exclusa::get_state_as_xml(std::stringstream &out)
71 // hack to avoid output problems :-)
73 PlantItem::get_state_as_xml(out);
74 out << "\t<exclusa name=\"" << name << "\">" << std::endl;
75 out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
76 out << "\t</exclusa>" << std::endl;