]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/exclusa.cpp
* Se agrega un nuevo mensaje para intercambio de colores que anda muy bien
[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 }
34
35 void Exclusa::simulate()
36 {
37 #ifdef DEBUG
38         std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
39 #endif
40
41         updated = false;
42         color_updated = false;
43 }
44
45 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
46 {
47         switch (msg) {
48                 case MSG_QUERY_MAX_FLOW_OUT:
49                         if (updated) {
50                                 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
51                         }
52                         temp = *((float *)data);
53                         if (!is_open) temp = 0;
54                         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
55                         who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
56                 break;
57                 case MSG_RESPONSE_MAX_FLOW:
58                         if (is_open)
59                                 temp = *((float *)data);
60                 break;
61                 default:
62                         Control::recieve_msg(msg, who, data);
63         }
64 }
65         
66 void Exclusa::get_state_as_xml(std::stringstream &out)
67 {
68         // Datos comunes
69         // hack to avoid output problems :-)
70         actual_flow = temp;
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 }
76