]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/pump.cpp
Se arregla bug en la union que hacia que el flujo inicial este en 0, y eso condicion...
[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         std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
40         updated = false;
41 }
42
43 bool Pump::get_output()
44 {
45         /* Si el corte fue manual, no puedo hacer nada */
46         if (active == false) return false;
47
48         /* Si no, depende del control automatico */
49         return open;
50 }
51
52 void Pump::recieve_msg(int msg, IConector *who, void *data)
53 {
54         switch (msg) {
55                 case MSG_RESPONSE_MAX_FLOW: {
56                         float tmp = *((float *)data);
57                         if (max_flow < tmp) tmp = max_flow;
58                         if (tmp < actual_flow) actual_flow = tmp;
59                 }
60                 break;
61                 default:
62                         Source::recieve_msg(msg, who, data);
63         }
64
65 }
66
67 void Pump::get_state_as_xml(std::stringstream &out)
68 {
69         // Saco el item basico por XML
70         PlantItem::get_state_as_xml(out);
71
72         // Saco lo importante de este item
73         out << "\t<pump name=\"" << name << "\">" << std::endl;
74         out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
75         out << "\t</pump>" << std::endl;
76 }
77