]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/pump.cpp
679866f02c4f080118b8a3e286b7e781eeb535ba
[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 }
18
19 Pump::~Pump()
20 {
21 }
22
23 void Pump::update(int dir)
24 {
25         if (updated) return;
26         // Me fijo si me tengo que apagar automaticamente
27         open = input->get_output();
28         if (active && open)
29                 actual_flow = max_flow;
30         else
31                 actual_flow = 0;
32         
33         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
34         updated = true;
35 }
36
37 void Pump::simulate()
38 {
39 #ifdef DEBUG
40         std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
41 #endif
42         updated = false;
43 }
44
45 bool Pump::get_output()
46 {
47         /* Si el corte fue manual, no puedo hacer nada */
48         if (active == false) return false;
49
50         /* Si no, depende del control automatico */
51         return open;
52 }
53
54 void Pump::recieve_msg(int msg, IConector *who, void *data)
55 {
56         switch (msg) {
57                 case MSG_RESPONSE_MAX_FLOW: {
58                         float tmp = *((float *)data);
59                         if (max_flow < tmp) tmp = max_flow;
60                         if (tmp < actual_flow) actual_flow = tmp;
61                 }
62                 break;
63                 default:
64                         Source::recieve_msg(msg, who, data);
65         }
66
67 }
68
69 void Pump::get_state_as_xml(std::stringstream &out)
70 {
71         // Saco el item basico por XML
72         PlantItem::get_state_as_xml(out);
73
74         // Saco lo importante de este item
75         out << "\t<pump name=\"" << name << "\">" << std::endl;
76         out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
77         out << "\t</pump>" << std::endl;
78 }
79