]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/pump.cpp
* Se agrega un nuevo mensaje para intercambio de colores que anda muy bien
[z.facultad/75.42/plaqui.git] / Model / src / pump.cpp
1
2 #include "pump.h"
3 #include <iostream>
4
5 using namespace PlaQui::Model;
6
7 Pump::Pump(const std::string &_name):Source(_name),Control(_name)
8 {
9         in_slots = 0;
10         out_slots = 1;
11         active = true;
12         open = true;
13         max_flow = actual_flow = 0.0f;
14         input = new ByPass();
15         output = new ByPass();
16         ((ByPass *)output)->set_control(this);
17         /* El color de la bomba siempre esta actualizado */
18         color_updated = true;
19 }
20
21 Pump::~Pump()
22 {
23         delete input;
24         delete output;
25 }
26
27 void Pump::update(int dir)
28 {
29         if (updated) return;
30         // Me fijo si me tengo que apagar automaticamente
31         open = input->get_output();
32         if (active && open)
33                 actual_flow = max_flow;
34         else
35                 actual_flow = 0;
36         
37         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
38         updated = true;
39 }
40
41 void Pump::simulate()
42 {
43 #ifdef DEBUG
44         std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
45 #endif
46         updated = false;
47         color_updated = true;
48 }
49
50 bool Pump::get_output()
51 {
52         /* Si el corte fue manual, no puedo hacer nada */
53         if (active == false) return false;
54
55         /* Si no, depende del control automatico */
56         return open;
57 }
58
59 void Pump::recieve_msg(int msg, IConector *who, void *data)
60 {
61         switch (msg) {
62                 case MSG_RESPONSE_MAX_FLOW: {
63                         float tmp = *((float *)data);
64                         if (max_flow < tmp) tmp = max_flow;
65                         if (tmp < actual_flow) actual_flow = tmp;
66                 }
67                 break;
68                 case MSG_RESPONSE_COLOR:
69                         /* Por las dudas, la bomba no debe cambiar de color */
70                         ;
71                 break;
72                 default:
73                         Source::recieve_msg(msg, who, data);
74         }
75
76 }
77
78 void Pump::get_state_as_xml(std::stringstream &out)
79 {
80         // Saco el item basico por XML
81         PlantItem::get_state_as_xml(out);
82
83         // Saco lo importante de este item
84         out << "\t<pump name=\"" << name << "\">" << std::endl;
85         out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
86         out << "\t</pump>" << std::endl;
87 }
88