5 using namespace PlaQui::Model;
7 Union::Union(const std::string &_name):Transport(_name)
21 void Union::recieve_msg(int msg, IConector *who, void *data)
25 // Verifico si esta conectado a mi entrada o a mi salida
26 std::list<IConector *>::iterator i;
27 for(i=in_list.begin(); i!=in_list.end(); i++) {
28 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;
41 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
42 if (in_on_zero == 1) {
48 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &tmp);
52 actual_flow = (m_data<actual_flow)?m_data:actual_flow;
53 actual_flow = (actual_flow<max_flow)?actual_flow:max_flow;
57 actual_flow = actual_flow/2.0f;
59 actual_flow = max_flow/2.0f;
64 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
65 std::cout << in_on_zero << " " << actual_flow << std::endl;
66 tmp = (in_on_zero==0)?actual_flow/2.0f:actual_flow;
67 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
70 if (pos == IN) in_ready++;
73 case MSG_RESPONSE_MAX_FLOW: {
74 float max = *((float *)data);
76 if (max < actual_flow) actual_flow = max;
77 if (in_on_zero == 2) actual_flow = 0;
79 if (((2*max) < actual_flow) && (max != 0))
85 Transport::recieve_msg(msg, who, data);
89 void Union::update(int dir)
91 // Si ya me actualice, no lo tengo que hacer de nuevo
93 // Seteo mi actualizar en true para evitar entrar de nuevo
94 // FIXME : 99999 == INFINITO!!
99 send_msg(IN, MSG_QUERY_MAX_FLOW_IN, (void *)&max_flow);
102 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&max_flow);
106 void Union::simulate()
114 std::list<IConector *>::iterator i = in_list.begin();
115 if (i != in_list.end()) {
116 PlantItem *o = (PlantItem *)(*i);
117 c_in1 = o->get_color();
119 o = (PlantItem *)(*i);
120 c_in2 = o->get_color();
123 r = ((c_in1.r()+c_in2.r())/2)%256;
124 g = ((c_in1.g()+c_in2.g())/2)%256;
125 b = ((c_in1.b()+c_in2.b())/2)%256;
126 set_color(RGB(r,g,b));
127 std::cout << name << "::Flujo actual = " << actual_flow << std::endl;