]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/conduct.cpp
Se termina el manual de usuario del Cliente. Faltan las capturas de pantalla.
[z.facultad/75.42/plaqui.git] / Model / src / conduct.cpp
1
2 #include "conduct.h"
3
4 using namespace PlaQui::Model;
5
6 Conduct::Conduct(const std::string &_name):Transport(_name)
7 {
8         max_flow = 0.0f;
9
10         // Inicio los parametros de conectores
11         in_slots = 1;
12         out_slots = 1;
13         actual_flow = INFINITO;
14         updated = false;
15 }
16
17 Conduct::~Conduct()
18 {
19 }
20
21 void Conduct::recieve_msg(int msg, IConector *who, void *data)
22 {
23         switch (msg) {
24                 case MSG_QUERY_MAX_FLOW_OUT: {
25                         if (updated) {
26                                 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
27                         }
28                                                                                                                                                                  
29                         // Me preguntan por el flujo máximo.
30                         // Primero me actualizo, y luego respondo
31                         updated = true;
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;
35
36                         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_flow);
37                         who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
38                 }
39                 break;
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) {
44                                 actual_flow = max;
45                         }
46                 }
47                 break;
48                 default:
49                         Transport::recieve_msg(msg, who, data);
50         }
51 }
52
53 void Conduct::update(int dir)
54 {
55         // Si ya me actualice, no lo tengo que hacer de nuevo
56         if (updated) {
57                 return;
58         }
59         // Seteo mi actualizar en true para evitar entrar de nuevo
60         updated = true;
61         actual_flow = max_flow;
62         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
63 }
64
65 void Conduct::simulate()
66 {
67         if (!updated) {
68 #ifdef DEBUG
69                 std::cout << name << "::sin actualizar!" << std::endl;
70 #endif
71                 return;
72         }
73
74 #ifdef DEBUG
75         std::cout << name << "::Flujo actual = " << actual_flow << " de " << max_flow << std::endl;
76 #endif
77         updated = false;
78         color_updated = false;
79 }
80
81