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;
58 actual_flow = max_flow;
60 if (max < actual_flow) actual_flow = max;
61 if (max_flow < actual_flow) actual_flow = max_flow;
64 if (((2*max) < actual_flow) && (max != 0))
70 Transport::recieve_msg(msg, who, data);
74 void Splitter::update(int dir)
76 // Si ya me actualice, no lo tengo que hacer de nuevo
78 // Seteo mi actualizar en true para evitar entrar de nuevo
79 actual_flow = INFINITO;
83 send_msg(IN, MSG_QUERY_MAX_FLOW_IN, (void *)&max_flow);
86 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&max_flow);
90 void Splitter::simulate()
97 std::cout << name << "::Flujo actual = " << actual_flow << std::endl;
100 color_updated = false;