X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/950f83d0e71dc886fcf5be9889796c5b2a85fa4c..66124e5142afe9748ba184592792fe307fd4a3b5:/Model/src/splitter.cpp?ds=sidebyside diff --git a/Model/src/splitter.cpp b/Model/src/splitter.cpp index 4d4497e..cd3ccad 100644 --- a/Model/src/splitter.cpp +++ b/Model/src/splitter.cpp @@ -9,6 +9,7 @@ Splitter::Splitter(const std::string &_name):Transport(_name) in_slots = 1; out_slots = 2; max_flow = actual_flow = 0.0f; + updated = true; } Splitter::~Splitter() @@ -27,6 +28,9 @@ void Splitter::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 actual_flow = *((float *)data); @@ -46,7 +50,9 @@ void Splitter::recieve_msg(int msg, IConector *who, void *data) break; case MSG_RESPONSE_MAX_FLOW: { float max = *((float *)data); +#ifdef DEBUG std::cout << name << ":Split " << max << std::endl; +#endif if (pos == OUT) { if (max < actual_flow) actual_flow = max; if (max_flow < actual_flow) actual_flow = max_flow; @@ -66,7 +72,7 @@ void Splitter::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; + actual_flow = INFINITO; updated = true; switch (dir) { case IN: @@ -83,7 +89,10 @@ void Splitter::simulate() return; } +#ifdef DEBUG std::cout << name << "::Flujo actual = " << actual_flow << std::endl; +#endif updated = false; + color_updated = false; }