5 using namespace PlaQui::Model;
7 Union::Union(const std::string &_name):Transport(_name)
22 void Union::recieve_msg(int msg, IConector *who, void *data)
26 // Verifico si esta conectado a mi entrada o a mi salida
27 std::list<IConector *>::iterator i;
28 for(i=in_list.begin(); i!=in_list.end(); i++) {
29 if ((*i) == who) pos = IN;
32 case MSG_QUERY_MAX_FLOW_OUT: {
33 // Me preguntan por el flujo máximo.
34 // Primero me actualizo, y luego respondo
35 float m_data = *((float *)data)*2;
39 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
46 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
47 if (in_on_zero == 1) {
51 tmp = actual_flow/2.0f;
53 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &tmp);
57 actual_flow = (m_data<actual_flow)?m_data:actual_flow;
58 actual_flow = (actual_flow<max_flow)?actual_flow:max_flow;
62 actual_flow = actual_flow/2.0f;
64 actual_flow = max_flow/2.0f;
69 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
70 tmp = (in_on_zero==0)?actual_flow/2.0f:actual_flow;
71 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
74 if (pos == IN) in_ready++;
77 case MSG_RESPONSE_MAX_FLOW: {
78 float max = *((float *)data);
80 if (max < actual_flow) actual_flow = max;
81 if (in_on_zero == 2) actual_flow = 0;
83 if (((2*max) < actual_flow) && (max != 0)) {
85 if (in_on_zero == 1) actual_flow /= 2.0;
91 Transport::recieve_msg(msg, who, data);
95 void Union::update(int dir)
97 // Si ya me actualice, no lo tengo que hacer de nuevo
100 float c_f1, c_f2; // para ver los flujos de cada uno
103 std::list<IConector *>::iterator i = in_list.begin();
104 if (i != in_list.end()) {
105 PlantItem *o = (PlantItem *)(*i);
106 c_in1 = o->get_color();
107 c_f1 = o->get_actual_flow();
109 o = (PlantItem *)(*i);
110 c_in2 = o->get_color();
111 c_f2 = o->get_actual_flow();
114 set_color( RGB(r,g,b) );
115 if ((c_f1 != 0) && (c_f2 != 0)) {
116 // Si ambas entradas traen flujo, sumo sus colores
117 int total = c_f1+c_f2;
118 r = ((int)((c_in1.r()*c_f1/total+c_in2.r()*c_f2/total)))%256;
119 g = ((int)((c_in1.g()*c_f1/total+c_in2.g()*c_f2/total)))%256;
120 b = ((int)((c_in1.b()*c_f1/total+c_in2.b()*c_f2/total)))%256;
121 set_color(RGB(r,g,b));
123 // Veo que entrada trae color
133 // Seteo mi actualizar en true para evitar entrar de nuevo
134 // FIXME : 99999 == INFINITO!!
139 send_msg(IN, MSG_QUERY_MAX_FLOW_IN, (void *)&max_flow);
142 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&max_flow);
146 void Union::simulate()
148 if (!updated) return;
151 std::cout << name << "::Flujo actual = " << actual_flow << std::endl;