]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/exclusa.cpp
Se arreglan un par de huevadas y ahora se ve 10 puntos el exclusa_inteligente.xml
[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         // Primero me fijo si la entrada esta operando, es decir
27         // si hay alguien conectado para automatizar.
28         if (input->is_operational()) {
29                 // como si lo hay, entonces pregunto cual debe ser
30                 // mi estado
31                 is_open = input->get_output();
32         }
33         if (updated) return;
34         actual_flow = temp = INFINITO;
35 }
36
37 void Exclusa::simulate()
38 {
39 #ifdef DEBUG
40         std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
41 #endif
42
43         updated = false;
44         color_updated = false;
45 }
46
47 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
48 {
49         switch (msg) {
50                 case MSG_QUERY_MAX_FLOW_OUT:
51                         if (updated) {
52                                 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
53                         }
54                         actual_flow = temp = *((float *)data);
55                         if (!is_open) actual_flow = temp = 0;
56                         updated = true;
57                         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
58                         who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
59                 break;
60                 case MSG_RESPONSE_MAX_FLOW:
61                         if (is_open)
62                                 actual_flow = temp = *((float *)data);
63                 break;
64                 default:
65                         Control::recieve_msg(msg, who, data);
66         }
67 }
68         
69 void Exclusa::get_state_as_xml(std::stringstream &out)
70 {
71         PlantItem::get_state_as_xml(out);
72         out << "\t<exclusa name=\"" << name << "\">" << std::endl;
73         out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
74         out << "\t</exclusa>" << std::endl;
75         temp = actual_flow = INFINITO;
76 }
77