]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/exclusa.cpp
* Se eliminar los LogicControl dentro de los elementos que los creaban
[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 }
16
17 Exclusa::~Exclusa()
18 {
19         delete input;
20         delete output;
21 }
22
23 void Exclusa::update(int dir)
24 {
25         // Primero me fijo si la entrada esta operando, es decir
26         // si hay alguien conectado para automatizar.
27         if (input->is_operational()) {
28                 // como si lo hay, entonces pregunto cual debe ser
29                 // mi estado
30                 is_open = input->get_output();
31         }
32 }
33
34 void Exclusa::simulate()
35 {
36         std::list<IConector *>::iterator i = in_list.begin();
37         if (i != in_list.end()) {
38                 PlantItem *o = (PlantItem *)(*i);
39                 set_color( o->get_color() );
40         }
41 #ifdef DEBUG
42         std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
43 #endif
44 }
45
46 void Exclusa::recieve_msg(int msg, IConector *who, void *data)
47 {
48         switch (msg) {
49                 case MSG_QUERY_MAX_FLOW_OUT:
50                         temp = *((float *)data);
51                         if (!is_open) temp = 0;
52                         send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
53                         who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
54                 break;
55                 case MSG_RESPONSE_MAX_FLOW:
56                         if (is_open)
57                                 temp = *((float *)data);
58                 break;
59                 default:
60                         Control::recieve_msg(msg, who, data);
61         }
62 }
63         
64 void Exclusa::get_state_as_xml(std::stringstream &out)
65 {
66         // Datos comunes
67         // hack to avoid output problems :-)
68         actual_flow = temp;
69         PlantItem::get_state_as_xml(out);
70         out << "\t<exclusa name=\"" << name << "\">" << std::endl;
71         out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
72         out << "\t</exclusa>" << std::endl;
73 }
74