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
99 // Seteo mi actualizar en true para evitar entrar de nuevo
100 // FIXME : 99999 == INFINITO!!
105 send_msg(IN, MSG_QUERY_MAX_FLOW_IN, (void *)&max_flow);
108 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&max_flow);
112 void Union::simulate()
115 unsigned r=0,g=0,b=0;
116 float c_f1, c_f2; // para ver los flujos de cada uno
121 std::list<IConector *>::iterator i = in_list.begin();
122 if (i != in_list.end()) {
123 PlantItem *o = (PlantItem *)(*i);
124 c_in1 = o->get_color();
125 c_f1 = o->get_actual_flow();
127 o = (PlantItem *)(*i);
128 c_in2 = o->get_color();
129 c_f2 = o->get_actual_flow();
132 set_color( RGB(r,g,b) );
133 if ((c_f1 != 0) && (c_f2 != 0)) {
134 // Si ambas entradas traen flujo, sumo sus colores
135 r = ((c_in1.r()+c_in2.r())/2)%256;
136 g = ((c_in1.g()+c_in2.g())/2)%256;
137 b = ((c_in1.b()+c_in2.b())/2)%256;
138 set_color(RGB(r,g,b));
140 // Veo que entrada trae color
150 std::cout << name << "::Flujo actual = " << actual_flow << std::endl;