]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/bomb.cpp
- Se corrige la bomba para que tenga mas informacion sobre el flujo maximo y
[z.facultad/75.42/plaqui.git] / Model / src / bomb.cpp
1
2 #include "bomb.h"
3 #include <iostream>
4
5 using namespace PlaQui::Model;
6
7 Bomb::Bomb(const std::string &_name):Source(_name)
8 {
9         in_slots = 0;
10         out_slots = 1;
11         active = true;
12         open = true;
13         max_flow = actual_flow = 0.0f;
14 }
15
16 Bomb::~Bomb()
17 {
18 }
19
20 void Bomb::update()
21 {
22         if (updated) return;
23         actual_flow = 99999;
24         updated = true;
25         send_msg(OUT, MSG_QUERY_MAX_FLOW);
26 }
27
28 void Bomb::simulate()
29 {
30         std::cout << name << "::Flujo actual = " << ((active && open)?actual_flow:0) \
31         << " de " << max_flow;
32         std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
33 }
34
35 bool Bomb::get_output()
36 {
37         /* Si el corte fue manual, no puedo hacer nada */
38         if (active == false) return false;
39
40         /* Si no, depende del control automatico */
41         return open;
42 }
43
44 void Bomb::recieve_msg(int msg, IConector *who, void *data)
45 {
46         switch (msg) {
47                 case MSG_QUERY_MAX_FLOW: {
48                         // Me preguntan por el flujo máximo.
49                         // Primero me actualizo, y luego respondo
50                         update();
51                         float tmp;
52                         if (active && open) {
53                                 tmp = (actual_flow<max_flow)?actual_flow:max_flow;
54                         } else {
55                                 tmp = 0.0f;
56                         }
57                         who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
58                 }
59                 break;
60                 case MSG_RESPONSE_MAX_FLOW: {
61                         float tmp = *((float *)data);
62                         if (tmp < actual_flow) actual_flow = tmp;
63                 }
64                 break;
65                 default:
66                         Source::recieve_msg(msg, who, data);
67         }
68
69 }
70