]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/conduct.cpp
se mejora la conexion entre compuertas, se salvan en el XML, hay un par de cosas...
[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 = 99999;
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                 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() );
61                 }
62                 return;
63         }
64         // Seteo mi actualizar en true para evitar entrar de nuevo
65         actual_flow = 99999;
66         updated = true;
67         actual_flow = max_flow;
68         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
69 }
70
71 void Conduct::simulate()
72 {
73         if (!updated) {
74 #ifdef DEBUG
75                 std::cout << name << "::sin actualizar!" << std::endl;
76 #endif
77                 return;
78         }
79
80 #ifdef DEBUG
81         std::cout << name << "::Flujo actual = " << actual_flow << " de " << max_flow << std::endl;
82 #endif
83         updated = false;
84 }
85
86