]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/bomb.cpp
- Se agregan mas comentarios a las clases
[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         updated = false;
34 }
35
36 bool Bomb::get_output()
37 {
38         /* Si el corte fue manual, no puedo hacer nada */
39         if (active == false) return false;
40
41         /* Si no, depende del control automatico */
42         return open;
43 }
44
45 void Bomb::recieve_msg(int msg, IConector *who, void *data)
46 {
47         switch (msg) {
48                 case MSG_QUERY_MAX_FLOW: {
49                         // Me preguntan por el flujo máximo.
50                         // Primero me actualizo, y luego respondo
51                         update();
52                         float tmp;
53                         if (active && open) {
54                                 tmp = (actual_flow<max_flow)?actual_flow:max_flow;
55                         } else {
56                                 tmp = 0.0f;
57                         }
58                         who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
59                 }
60                 break;
61                 case MSG_RESPONSE_MAX_FLOW: {
62                         float tmp = *((float *)data);
63                         if (tmp < actual_flow) actual_flow = tmp;
64                 }
65                 break;
66                 default:
67                         Source::recieve_msg(msg, who, data);
68         }
69
70 }
71