]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/pump.cpp
Se agrega XML para otros items (no todos ya implementados en el cliente).
[z.facultad/75.42/plaqui.git] / Model / src / pump.cpp
index 78d4dcd9f2e4ee6d3aaf96072e2700093f95f5a3..9c2a9b45b71a482e3db719324e8784d29d5ce92e 100644 (file)
@@ -11,6 +11,9 @@ Pump::Pump(const std::string &_name):Source(_name),Control(_name)
        active = true;
        open = true;
        max_flow = actual_flow = 0.0f;
+       input = new ByPass();
+       output = new ByPass();
+       ((ByPass *)output)->set_control(this);
 }
 
 Pump::~Pump()
@@ -20,6 +23,8 @@ Pump::~Pump()
 void Pump::update(int dir)
 {
        if (updated) return;
+       // Me fijo si me tengo que apagar automaticamente
+       open = input->get_output();
        if (active && open)
                actual_flow = max_flow;
        else
@@ -69,3 +74,14 @@ void Pump::recieve_msg(int msg, IConector *who, void *data)
 
 }
 
+void Pump::get_state_as_xml(std::stringstream &out)
+{
+       // Saco el item basico por XML
+       PlantItem::get_state_as_xml(out);
+
+       // Saco lo importante de este item
+       out << "\t<pump name=\"" << name << "\">" << std::endl;
+       out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
+       out << "\t</pump>" << std::endl;
+}
+