X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/16f64e28170d4473eebaa309d3082785c32b809c..9322e49b932d824e5664aa8c0e0f9a41464537b1:/Model/src/union.cpp?ds=inline diff --git a/Model/src/union.cpp b/Model/src/union.cpp index 450b6e6..4e1a2ac 100644 --- a/Model/src/union.cpp +++ b/Model/src/union.cpp @@ -11,7 +11,7 @@ Union::Union(const std::string &_name):Transport(_name) max_flow = 0.0f; in_on_zero = 0; in_ready = 0; - actual_flow = 999999; + actual_flow = INFINITO; updated = false; } @@ -35,21 +35,35 @@ void Union::recieve_msg(int msg, IConector *who, void *data) float m_data = *((float *)data)*2; float tmp; - if (updated) { - float tmp = actual_flow/2.0f; +/* if (updated) { + if (m_data == 0) { + tmp = 0; + actual_flow /= 2.0f; + } else { + tmp = actual_flow/2.0f; + } who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp); break; - } + }*/ updated = true; if (m_data == 0) { in_on_zero++; tmp = 0.0f; who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp); - if (in_on_zero == 1) { - if (in_ready == 0) - tmp = max_flow; - else - tmp = actual_flow/2.0f; + switch (in_on_zero) { + case 1: + if (in_ready == 0) + tmp = max_flow; + else + tmp = actual_flow/2.0f; + break; + case 0: + if (in_ready == 1) { + tmp = actual_flow/2.0f; + } + break; + case 2: + tmp = 0.0f; } send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &tmp); } else { @@ -130,8 +144,7 @@ void Union::update(int dir) if (updated) return; // Seteo mi actualizar en true para evitar entrar de nuevo - // FIXME : 99999 == INFINITO!! - actual_flow = 99999; + actual_flow = INFINITO; updated = true; switch (dir) { case IN: