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