]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/conduct.cpp
* Agrego lógica de control al modelo!!. Implementadas :
[z.facultad/75.42/plaqui.git] / Model / src / conduct.cpp
index 495e94a7bb5f129913e86c71fda77f7714c61968..4a4e731665ddaf96f29e15b6efb8761d94ed1ca5 100644 (file)
@@ -11,6 +11,7 @@ Conduct::Conduct(const std::string &_name):Transport(_name)
        // Inicio los parametros de conectores
        in_slots = 1;
        out_slots = 1;
        // Inicio los parametros de conectores
        in_slots = 1;
        out_slots = 1;
+       actual_flow = 9999;
 }
 
 Conduct::~Conduct()
 }
 
 Conduct::~Conduct()
@@ -20,14 +21,19 @@ Conduct::~Conduct()
 void Conduct::recieve_msg(int msg, IConector *who, void *data)
 {
        switch (msg) {
 void Conduct::recieve_msg(int msg, IConector *who, void *data)
 {
        switch (msg) {
-               case MSG_QUERY_MAX_FLOW: {
+               case MSG_QUERY_MAX_FLOW_OUT: {
                        // Me preguntan por el flujo máximo.
                        // Primero me actualizo, y luego respondo
                        // Me preguntan por el flujo máximo.
                        // Primero me actualizo, y luego respondo
-                       update();
-                       float tmp = (actual_flow>max_flow)?max_flow:actual_flow;
+                       float tmp = *((float *)data);
+       //              update();
+                       actual_flow = (actual_flow>max_flow)?max_flow:actual_flow;
+                       actual_flow = (actual_flow<tmp)?actual_flow:tmp;
+
+                       send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
                        // FIXME : no tiene que ir
                        if (out_list.size() == 0) tmp = max_flow;
                        // FIXME : no tiene que ir
                        if (out_list.size() == 0) tmp = max_flow;
-                       who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
+                       who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
+                       updated = true;
                }
                break;
                case MSG_RESPONSE_MAX_FLOW: {
                }
                break;
                case MSG_RESPONSE_MAX_FLOW: {
@@ -43,15 +49,20 @@ void Conduct::recieve_msg(int msg, IConector *who, void *data)
        }
 }
 
        }
 }
 
-void Conduct::update()
+void Conduct::update(int dir)
 {
        // Si ya me actualice, no lo tengo que hacer de nuevo
        if (updated) return;
        // Seteo mi actualizar en true para evitar entrar de nuevo
 {
        // Si ya me actualice, no lo tengo que hacer de nuevo
        if (updated) return;
        // Seteo mi actualizar en true para evitar entrar de nuevo
-       actual_flow = 99999;
+//     actual_flow = 99999;
        updated = true;
        updated = true;
-       send_msg(IN, MSG_QUERY_MAX_FLOW);
-       send_msg(OUT, MSG_QUERY_MAX_FLOW);
+       switch (dir) {
+               case IN:
+                       send_msg(IN, MSG_QUERY_MAX_FLOW_IN, (void *)&max_flow);
+               break;
+               case OUT:
+                       send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&max_flow);
+       }
 }
 
 void Conduct::simulate()
 }
 
 void Conduct::simulate()
@@ -62,5 +73,6 @@ void Conduct::simulate()
 
        std::cout << name << "::Flujo actual = " << actual_flow << std::endl;
        updated = false;
 
        std::cout << name << "::Flujo actual = " << actual_flow << std::endl;
        updated = false;
+       actual_flow = 99999;
 }
 
 }