4 using namespace PlaQui::Model;
6 Conduct::Conduct(const std::string &_name):Transport(_name)
10 // Inicio los parametros de conectores
21 void Conduct::recieve_msg(int msg, IConector *who, void *data)
24 case MSG_QUERY_MAX_FLOW_OUT: {
26 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
29 // Me preguntan por el flujo máximo.
30 // Primero me actualizo, y luego respondo
32 float tmp = *((float *)data);
33 actual_flow = (actual_flow>max_flow)?max_flow:actual_flow;
34 actual_flow = (actual_flow<tmp)?actual_flow:tmp;
36 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
37 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
40 case MSG_RESPONSE_MAX_FLOW: {
41 float max = *((float *)data);
42 // Actualizo mi flujo en base a la respuesta
43 if (max < actual_flow) {
49 Transport::recieve_msg(msg, who, data);
53 void Conduct::update(int dir)
55 // Si ya me actualice, no lo tengo que hacer de nuevo
57 std::list<IConector *>::iterator i = in_list.begin();
58 if (i != in_list.end()) {
59 PlantItem *o = (PlantItem *)(*i);
60 set_color( o->get_color() );
64 // Seteo mi actualizar en true para evitar entrar de nuevo
67 actual_flow = max_flow;
68 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
71 void Conduct::simulate()
75 std::cout << name << "::sin actualizar!" << std::endl;
81 std::cout << name << "::Flujo actual = " << actual_flow << " de " << max_flow << std::endl;