]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/exclusa.cpp
Se agrega generacion de XML para dar el estado actual de la planta simulada.
[z.facultad/75.42/plaqui.git] / Model / src / exclusa.cpp
index 326a7b9e04df00788edef54cb5610ec8803ef250..34b2fab6164207dc6255ceb03cdbccd1712a7da8 100644 (file)
@@ -6,7 +6,7 @@ using namespace PlaQui::Model;
 
 Exclusa::Exclusa(const std::string &_name):Control(_name)
 {
 
 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();
        in_slots = out_slots = 1;
        // Genero mi logica de control
        input = new ByPass();
@@ -20,22 +20,27 @@ Exclusa::~Exclusa()
 
 void Exclusa::update(int dir)
 {
 
 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()
 {
 }
 
 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)
 {
 }
 
 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);
        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);
                break;
                case MSG_RESPONSE_MAX_FLOW:
                        temp = *((float *)data);