4 using namespace PlaQui::Model;
6 Conduct::Conduct(const std::string &_name):Transport(_name)
10 // Inicio los parametros de conectores
20 void Conduct::recieve_msg(int msg, IConector *who, void *data)
23 case MSG_QUERY_MAX_FLOW_OUT: {
24 // Me preguntan por el flujo máximo.
25 // Primero me actualizo, y luego respondo
26 float tmp = *((float *)data);
27 actual_flow = (actual_flow>max_flow)?max_flow:actual_flow;
28 actual_flow = (actual_flow<tmp)?actual_flow:tmp;
30 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
31 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
35 case MSG_RESPONSE_MAX_FLOW: {
36 float max = *((float *)data);
37 // Actualizo mi flujo en base a la respuesta
38 if (max < actual_flow) {
44 Transport::recieve_msg(msg, who, data);
48 void Conduct::update(int dir)
50 // Si ya me actualice, no lo tengo que hacer de nuevo
52 // Seteo mi actualizar en true para evitar entrar de nuevo
55 actual_flow = max_flow;
56 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
59 void Conduct::simulate()
62 std::cout << name << "::sin actualizar!" << std::endl;
66 std::list<IConector *>::iterator i = in_list.begin();
67 if (i != in_list.end()) {
68 PlantItem *o = (PlantItem *)(*i);
69 set_color( o->get_color() );
71 std::cout << name << "::Flujo actual = " << actual_flow << " de " << max_flow << std::endl;