+void PlantItem::update_color()
+{
+ if (color_updated) return;
+
+ send_msg(IConector::IN, MSG_QUERY_COLOR);
+ color_updated = true;
+}
+
+void PlantItem::get_state_as_xml(std::stringstream &out)
+{
+ out << "\t<float name=\"" << name << "\">" << std::endl;
+ out << "\t\t<actual_flow>" << actual_flow << "</actual_flow>" << std::endl;
+ out << "\t</float>" << std::endl;
+ out << "\t<color name=\"" << name << "\">" << std::endl;
+ out << "\t\t<r>" << fluid_color.r() << "</r>" << std::endl;
+ out << "\t\t<g>" << fluid_color.g() << "</g>" << std::endl;
+ out << "\t\t<b>" << fluid_color.b() << "</b>" << std::endl;
+ out << "\t</color>" << std::endl;
+
+ // Para que quede bonito
+ actual_flow = 99999;
+}