5 using namespace PlaQui::Model;
7 Conduct::Conduct(const std::string &_name):Transport(_name)
9 max_flow = actual_flow = 0.0f;
11 // Inicio los parametros de conectores
21 void Conduct::recieve_msg(int msg, IConector *who, void *data)
24 case MSG_QUERY_MAX_FLOW_OUT: {
25 // Me preguntan por el flujo máximo.
26 // Primero me actualizo, y luego respondo
27 float tmp = *((float *)data);
29 actual_flow = (actual_flow>max_flow)?max_flow:actual_flow;
30 actual_flow = (actual_flow<tmp)?actual_flow:tmp;
32 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
33 // FIXME : no tiene que ir
34 if (out_list.size() == 0) tmp = max_flow;
35 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
39 case MSG_RESPONSE_MAX_FLOW: {
40 float max = *((float *)data);
41 // Actualizo mi flujo en base a la respuesta
42 if (max < actual_flow) {
48 Transport::recieve_msg(msg, who, data);
52 void Conduct::update(int dir)
54 // Si ya me actualice, no lo tengo que hacer de nuevo
56 // Seteo mi actualizar en true para evitar entrar de nuevo
57 // actual_flow = 99999;
61 send_msg(IN, MSG_QUERY_MAX_FLOW_IN, (void *)&max_flow);
64 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&max_flow);
68 void Conduct::simulate()
74 std::cout << name << "::Flujo actual = " << actual_flow << std::endl;