5 using namespace PlaQui::Model;
7 Splitter::Splitter(const std::string &_name):Transport(_name)
11 max_flow = actual_flow = 0.0f;
19 void Splitter::recieve_msg(int msg, IConector *who, void *data)
23 // Verifico si esta conectado a mi entrada
24 std::list<IConector *>::iterator i;
25 for(i=in_list.begin(); i!=in_list.end(); i++) {
26 if ((*i) == who) pos = IN;
30 case MSG_QUERY_MAX_FLOW_OUT: {
32 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
34 // Me preguntan por el flujo máximo.
35 // Primero me actualizo, y luego respondo
36 actual_flow = *((float *)data);
38 if (max_flow < actual_flow) actual_flow = max_flow;
42 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
44 // Listo, mi flujo ahora es el doble de lo que me pueden
47 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
51 case MSG_RESPONSE_MAX_FLOW: {
52 float max = *((float *)data);
54 std::cout << name << ":Split " << max << std::endl;
57 if (max < actual_flow) actual_flow = max;
58 if (max_flow < actual_flow) actual_flow = max_flow;
60 if (((2*max) < actual_flow) && (max != 0))
66 Transport::recieve_msg(msg, who, data);
70 void Splitter::update(int dir)
72 // Si ya me actualice, no lo tengo que hacer de nuevo
74 // Seteo mi actualizar en true para evitar entrar de nuevo
75 actual_flow = INFINITO;
79 send_msg(IN, MSG_QUERY_MAX_FLOW_IN, (void *)&max_flow);
82 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&max_flow);
86 void Splitter::simulate()
93 std::cout << name << "::Flujo actual = " << actual_flow << std::endl;
96 color_updated = false;