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
20 void Conduct::recieve_msg(int msg, IConector *who, void *data)
23 case MSG_QUERY_MAX_FLOW: {
24 // Me preguntan por el flujo máximo.
25 // Primero me actualizo, y luego respondo
27 float tmp = (actual_flow>max_flow)?max_flow:actual_flow;
28 // FIXME : no tiene que ir
29 if (out_list.size() == 0) tmp = max_flow;
30 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
33 case MSG_RESPONSE_MAX_FLOW: {
34 float max = *((float *)data);
35 // Actualizo mi flujo en base a la respuesta
36 if (max < actual_flow) {
42 Transport::recieve_msg(msg, who, data);
46 void Conduct::update()
48 // Si ya me actualice, no lo tengo que hacer de nuevo
50 // Seteo mi actualizar en true para evitar entrar de nuevo
53 send_msg(IN, MSG_QUERY_MAX_FLOW);
54 send_msg(OUT, MSG_QUERY_MAX_FLOW);
57 void Conduct::simulate()
63 std::cout << name << "::Flujo actual = " << actual_flow << std::endl;