]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/exclusa.cpp
* Se agrega el tanque la suma de color (no me gusta como esta, vere si la puedo hacer...
[z.facultad/75.42/plaqui.git] / Model / src / exclusa.cpp
index 34b2fab6164207dc6255ceb03cdbccd1712a7da8..6e76c66a13e674337c5f1f7900250dca2899055a 100644 (file)
@@ -31,6 +31,11 @@ void Exclusa::update(int dir)
 
 void Exclusa::simulate()
 {
+       std::list<IConector *>::iterator i = in_list.begin();
+       if (i != in_list.end()) {
+               PlantItem *o = (PlantItem *)(*i);
+               set_color( o->get_color() );
+       }
        std::cout << name << ": " << ((is_open)?"Abierta":"Cerrada") << std::endl;
 }
 
@@ -50,3 +55,14 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data)
        }
 }
        
+void Exclusa::get_state_as_xml(std::stringstream &out)
+{
+       // Datos comunes
+       // hack to avoid output problems :-)
+       actual_flow = temp;
+       PlantItem::get_state_as_xml(out);
+       out << "\t<exclusa name=\"" << name << "\">" << std::endl;
+       out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
+       out << "\t</exclusa>" << std::endl;
+}
+