]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/union.cpp
definitivamente tengo que aprender a documentar en alguna de esas cosas raras que...
[z.facultad/75.42/plaqui.git] / Model / src / union.cpp
index 443cb2bfbf0f78bdd2c8d09fbb9c805d273ba2b2..36ae347b7e1ad6ad716d46181a8c9cec701e170e 100644 (file)
@@ -8,9 +8,10 @@ Union::Union(const std::string &_name):Transport(_name)
 {
        in_slots = 2;
        out_slots = 1;
-       max_flow = actual_flow = 0.0f;
+       max_flow = 0.0f;
        in_on_zero = 0;
        in_ready = 0;
+       actual_flow = 999999;
 }
 
 Union::~Union()
@@ -42,7 +43,7 @@ void Union::recieve_msg(int msg, IConector *who, void *data)
                                        if (in_ready == 0)
                                                tmp = max_flow;
                                        else
-                                               tmp = max_flow/2.0f;
+                                               tmp = actual_flow/2.0f;
                                }
                                send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &tmp);
                        } else {
@@ -61,7 +62,6 @@ void Union::recieve_msg(int msg, IConector *who, void *data)
                                                actual_flow = 0;
                                }
                                send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
-                               std::cout << in_on_zero << " " << actual_flow << std::endl;
                                tmp = (in_on_zero==0)?actual_flow/2.0f:actual_flow;
                                who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
                        }
@@ -75,8 +75,10 @@ void Union::recieve_msg(int msg, IConector *who, void *data)
                                if (max < actual_flow)  actual_flow = max;
                                if (in_on_zero == 2) actual_flow = 0;
                        } else {
-                                       if (((2*max) < actual_flow) && (max != 0))
+                                       if (((2*max) < actual_flow) && (max != 0)) {
                                                actual_flow = 2*max;
+                                               if (in_on_zero == 1) actual_flow /= 2.0;
+                                       }
                        }
                }
                break;
@@ -104,13 +106,43 @@ 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<IConector *>::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
+               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 );
+               }
+       }
+               
        std::cout << name << "::Flujo actual = " << actual_flow << std::endl;
        updated = false;
-       actual_flow = 99999;
        in_on_zero = 0;
        in_ready = 0;
 }