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);
}
Exclusa::~Exclusa()
void Exclusa::update(int dir)
{
- // no hace nada
+ // 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::list<IConector *>::iterator i = in_list.begin();
+ if (i != in_list.end()) {
+ PlantItem *o = (PlantItem *)(*i);
+ set_color( o->get_color() );
+ }
+ 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);
+ if (!is_open) temp = 0;
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)
+ temp = *((float *)data);
break;
default:
Control::recieve_msg(msg, who, 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<exclusa name=\"" << name << "\">" << std::endl;
+ out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
+ out << "\t</exclusa>" << std::endl;
+}
+