X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/70d2e24643727ab1ea48e1793d609d27b7d21fed..325f784cbf310091cb5749842a52cf7e1ad64b1b:/Model/src/plantitem.cpp
diff --git a/Model/src/plantitem.cpp b/Model/src/plantitem.cpp
index 1ce56f8..9405a94 100644
--- a/Model/src/plantitem.cpp
+++ b/Model/src/plantitem.cpp
@@ -8,6 +8,7 @@ PlantItem::PlantItem(const std::string &_name):IConector(0, 0)
{
name = _name;
updated = false;
+ fluid_color = RGB(255,255,255);
}
PlantItem::PlantItem(unsigned ins, unsigned outs):IConector(ins, outs)
@@ -31,3 +32,17 @@ void PlantItem::recieve_msg(int msg, IConector *who, void *data)
}
}
+void PlantItem::get_state_as_xml(std::stringstream &out)
+{
+ out << "\t" << std::endl;
+ out << "\t\t" << actual_flow << "" << std::endl;
+ out << "\t" << std::endl;
+ out << "\t" << std::endl;
+ out << "\t\t" << fluid_color.r() << "" << std::endl;
+ out << "\t\t" << fluid_color.g() << "" << std::endl;
+ out << "\t\t" << fluid_color.b() << "" << std::endl;
+ out << "\t" << std::endl;
+
+ // Para que quede bonito
+ actual_flow = 99999;
+}