+ // los agrego al hash
+ mapItems[name] = b;
+}
+
+void Principal::loadDrain(xmlNodePtr nodo)
+{
+ Glib::ustring name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
+ int orientacion=0, x, y;
+
+ nodo = nodo->children;
+ while (nodo != NULL) {
+ if (nodo->type == XML_ELEMENT_NODE) {
+ if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
+ orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
+ x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
+ y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ }
+ }
+ nodo = nodo->next;
+ }
+
+ // listo, ya recolecte todos los datos, ahora creo el objeto!
+ ViewDrain *b = new ViewDrain(name, orientacion);
+ b->signal_button_release_event().connect(SigC::bind( SigC::slot(*this, &Principal::on_item_clicked), b) );
+ b->set_position(x,y);
+ work_place->put(*b, x, y);
+ b->show();
+ // los agrego al hash
+ mapItems[name] = b;
+}
+
+void Principal::read_status_xml(const std::string &frame)
+{
+ std::string item_name;
+ xmlDocPtr document;
+ document = xmlParseMemory(frame.c_str(),frame.size());
+ if (document == NULL) {
+ std::cout << "read_status_xml::no se creo documento" << std::endl;
+ return;
+ }
+
+ xmlNodePtr nodo, items, props;
+ nodo = document->children;
+ float tmp;
+ bool tmp_b;
+
+ if (strcmp((char *)nodo->name, "plantstatus") == 0) {
+ items = nodo->children;
+ while (items != NULL) {
+ if (items->type == XML_ELEMENT_NODE) {
+ tmp = -1;
+ item_name = "";
+ if (xmlStrcmp(items->name, BAD_CAST"float")==0) {
+ tmp = get_float_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_actual_flow(tmp);
+ } else if (xmlStrcmp(items->name, BAD_CAST"exclusa")==0) {
+ tmp_b = get_bool_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_open(tmp_b);
+ } else if (xmlStrcmp(items->name, BAD_CAST"pump")==0) {
+ tmp_b = get_bool_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_open(tmp_b);
+ } else if (xmlStrcmp(items->name, BAD_CAST"color")==0) {
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_color( get_rgb_from_xml(items->children) );
+ } else if (xmlStrcmp(items->name, BAD_CAST"tank")==0) {
+ xmlNodePtr nodo_tmp = items->children;
+ float cap, lit;
+ cap = lit = -1;
+ while (nodo_tmp != NULL) {
+ if (nodo_tmp->type == XML_ELEMENT_NODE) {
+ if (xmlStrcmp(nodo_tmp->name, BAD_CAST"capacity")==0)
+ cap = atof( (char *)XML_GET_CONTENT(nodo_tmp->children) );
+ else if (xmlStrcmp(nodo_tmp->name, BAD_CAST"litros")==0)
+ lit= atof( (char *)XML_GET_CONTENT(nodo_tmp->children) );
+ }
+ nodo_tmp = nodo_tmp->next;
+ }
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_actual_flow(cap);
+ mapItems[item_name]->set_extra(lit);
+ }
+ }
+ items = items->next;
+ }
+
+ xmlFreeDoc(document);
+ // Actualizo la UI
+ update_ui();
+ }