X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/a4fcf877753b034b1df7fa73d41388849fbc9000..fb8d2fb83534b0ca76f81e6d107e38d002642a46:/Model/src/union.cpp diff --git a/Model/src/union.cpp b/Model/src/union.cpp index 58bc8e1..f581a67 100644 --- a/Model/src/union.cpp +++ b/Model/src/union.cpp @@ -95,7 +95,41 @@ void Union::recieve_msg(int msg, IConector *who, void *data) void Union::update(int dir) { // Si ya me actualice, no lo tengo que hacer de nuevo - if (updated) return; + RGB c_in1, c_in2; + unsigned r=0,g=0,b=0; + float c_f1, c_f2; // para ver los flujos de cada uno + + if (updated) { + std::list::iterator i = in_list.begin(); + if (i != in_list.end()) { + PlantItem *o = (PlantItem *)(*i); + c_in1 = o->get_color(); + c_f1 = o->get_actual_flow(); + i++; + o = (PlantItem *)(*i); + c_in2 = o->get_color(); + c_f2 = o->get_actual_flow(); + } + + set_color( RGB(r,g,b) ); + if ((c_f1 != 0) && (c_f2 != 0)) { + // Si ambas entradas traen flujo, sumo sus colores + int total = c_f1+c_f2; + r = ((int)((c_in1.r()*c_f1/total+c_in2.r()*c_f2/total)))%256; + g = ((int)((c_in1.g()*c_f1/total+c_in2.g()*c_f2/total)))%256; + b = ((int)((c_in1.b()*c_f1/total+c_in2.b()*c_f2/total)))%256; + set_color(RGB(r,g,b)); + } else { + // Veo que entrada trae color + if (c_f1 != 0) { + set_color( c_in1 ); + } + if (c_f2 != 0) { + set_color( c_in2 ); + } + } + return; + } // Seteo mi actualizar en true para evitar entrar de nuevo // FIXME : 99999 == INFINITO!! actual_flow = 99999; @@ -111,41 +145,8 @@ void Union::update(int dir) void Union::simulate() { - RGB c_in1, c_in2; - unsigned r=0,g=0,b=0; - float c_f1, c_f2; // para ver los flujos de cada uno - - if (!updated) { - return; - } - std::list::iterator i = in_list.begin(); - if (i != in_list.end()) { - PlantItem *o = (PlantItem *)(*i); - c_in1 = o->get_color(); - c_f1 = o->get_actual_flow(); - i++; - o = (PlantItem *)(*i); - c_in2 = o->get_color(); - c_f2 = o->get_actual_flow(); - } + if (!updated) return; - set_color( RGB(r,g,b) ); - if ((c_f1 != 0) && (c_f2 != 0)) { - // Si ambas entradas traen flujo, sumo sus colores - r = ((c_in1.r()+c_in2.r())/2)%256; - g = ((c_in1.g()+c_in2.g())/2)%256; - b = ((c_in1.b()+c_in2.b())/2)%256; - set_color(RGB(r,g,b)); - } else { - // Veo que entrada trae color - if (c_f1 != 0) { - set_color( c_in1 ); - } - if (c_f2 != 0) { - set_color( c_in2 ); - } - } - #ifdef DEBUG std::cout << name << "::Flujo actual = " << actual_flow << std::endl; #endif