X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/be1908f8097dbbc871bfd7c55432de43d25647b7..cc77948bedbd851e009ad3b8a421dea93c3ceeff:/Model/src/conduct.cpp?ds=inline diff --git a/Model/src/conduct.cpp b/Model/src/conduct.cpp index b6eb6f2..e4a89d0 100644 --- a/Model/src/conduct.cpp +++ b/Model/src/conduct.cpp @@ -11,6 +11,7 @@ Conduct::Conduct(const std::string &_name):Transport(_name) in_slots = 1; out_slots = 1; actual_flow = 99999; + updated = false; } Conduct::~Conduct() @@ -21,15 +22,19 @@ void Conduct::recieve_msg(int msg, IConector *who, void *data) { switch (msg) { case MSG_QUERY_MAX_FLOW_OUT: { + if (updated) { + who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow); + } + // Me preguntan por el flujo máximo. // Primero me actualizo, y luego respondo + updated = true; float tmp = *((float *)data); actual_flow = (actual_flow>max_flow)?max_flow:actual_flow; actual_flow = (actual_flowrecieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow); - updated = true; } break; case MSG_RESPONSE_MAX_FLOW: { @@ -48,7 +53,14 @@ void Conduct::recieve_msg(int msg, IConector *who, void *data) void Conduct::update(int dir) { // Si ya me actualice, no lo tengo que hacer de nuevo - if (updated) return; + if (updated) { + std::list::iterator i = in_list.begin(); + if (i != in_list.end()) { + PlantItem *o = (PlantItem *)(*i); + set_color( o->get_color() ); + } + return; + } // Seteo mi actualizar en true para evitar entrar de nuevo actual_flow = 99999; updated = true; @@ -65,11 +77,6 @@ void Conduct::simulate() return; } - std::list::iterator i = in_list.begin(); - if (i != in_list.end()) { - PlantItem *o = (PlantItem *)(*i); - set_color( o->get_color() ); - } #ifdef DEBUG std::cout << name << "::Flujo actual = " << actual_flow << " de " << max_flow << std::endl; #endif