]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/exclusa.cpp
Se leen bien los valores de punto flotante y la simulacion es mas coherente
[z.facultad/75.42/plaqui.git] / Model / src / exclusa.cpp
1
2 #include "exclusa.h"
3 #include <iostream>
4
5 using namespace PlaQui::Model;
6
7 Exclusa::Exclusa(const std::string &_name):Control(_name)
8 {
9         is_open = true;
10         in_slots = out_slots = 1;
11         // Genero mi logica de control
12         input = new ByPass();
13         output = new ByPass();
14         ((ByPass *)output)->set_control(this);
15         updated = false;
16 }
17
18 Exclusa::~Exclusa()
19 {
20         delete input;
21         delete output;
22 }
23
24 void Exclusa::update(int dir)
25 {
26         if (updated) return;
27
28         // Primero me fijo si la entrada esta operando, es decir
29         // si hay alguien conectado para automatizar.
30         if (input->is_operational()) {
31                 // como si lo hay, entonces pregunto cual debe ser
32                 // mi estado
33                 is_open = input->get_output();
34         }
35         actual_flow = temp = INFINITO;
36 }
37
38 void Exclusa::simulate()
39 {
40 #ifdef DEBUG
41         std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
42 #endif
43
44         updated = false;
45         color_updated = false;
46 }
47
48 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
49 {
50         switch (msg) {
51                 case MSG_QUERY_MAX_FLOW_OUT:
52                         if (updated) {
53                                 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
54                         }
55                         actual_flow = temp = *((float *)data);
56                         if (!is_open) actual_flow = temp = 0;
57                         updated = true;
58                         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
59                         who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
60                 break;
61                 case MSG_RESPONSE_MAX_FLOW:
62                         if (is_open)
63                                 actual_flow = temp = *((float *)data);
64                 break;
65                 default:
66                         Control::recieve_msg(msg, who, data);
67         }
68 }
69         
70 void Exclusa::get_state_as_xml(std::stringstream &out)
71 {
72         PlantItem::get_state_as_xml(out);
73         out << "\t<exclusa name=\"" << name << "\">" << std::endl;
74         out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
75         out << "\t</exclusa>" << std::endl;
76         temp = actual_flow = INFINITO;
77 }
78