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);
21 void Exclusa::update(int dir)
23 // Primero me fijo si la entrada esta operando, es decir
24 // si hay alguien conectado para automatizar.
25 if (input->is_operational()) {
26 // como si lo hay, entonces pregunto cual debe ser
28 is_open = input->get_output();
32 void Exclusa::simulate()
34 std::list<IConector *>::iterator i = in_list.begin();
35 if (i != in_list.end()) {
36 PlantItem *o = (PlantItem *)(*i);
37 set_color( o->get_color() );
39 std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
42 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
45 case MSG_QUERY_MAX_FLOW_OUT:
46 temp = *((float *)data);
47 if (!is_open) temp = 0;
48 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
49 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
51 case MSG_RESPONSE_MAX_FLOW:
53 temp = *((float *)data);
56 Control::recieve_msg(msg, who, data);
60 void Exclusa::get_state_as_xml(std::stringstream &out)
63 // hack to avoid output problems :-)
65 PlantItem::get_state_as_xml(out);
66 out << "\t<exclusa name=\"" << name << "\">" << std::endl;
67 out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
68 out << "\t</exclusa>" << std::endl;