]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/conduct.cpp
borro los activezone
[z.facultad/75.42/plaqui.git] / Model / src / conduct.cpp
index 495e94a7bb5f129913e86c71fda77f7714c61968..02fe3a66d2899874266c3c1d6f2f5d4bc37b15f2 100644 (file)
@@ -1,6 +1,5 @@
 
 #include "conduct.h"
 
 #include "conduct.h"
-#include <iostream>
 
 using namespace PlaQui::Model;
 
 
 using namespace PlaQui::Model;
 
@@ -11,6 +10,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 +20,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,20 +48,26 @@ 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
        actual_flow = 99999;
        updated = true;
 {
        // 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;
        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()
 {
        if (!updated) {
 }
 
 void Conduct::simulate()
 {
        if (!updated) {
+               std::cout << name << "::sin actualizar!" << std::endl;
                return;
        }
 
                return;
        }
 
@@ -64,3 +75,10 @@ void Conduct::simulate()
        updated = false;
 }
 
        updated = false;
 }
 
+void Conduct::get_state_as_xml(std::stringstream &out)
+{
+       out << "\t<conduct name=\"" << name << "\">" << std::endl;
+       out << "\t\t<actual_flow>" << actual_flow << "</actual_flow>" << std::endl;
+       out << "\t</conduct>" << std::endl;
+}
+