X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/cafdb587ee6e195e5a917cea7570c2ea7e22a003..4404d8472c0088ec061b2f4f6527412f7ba23569:/Client/src/principal.cpp diff --git a/Client/src/principal.cpp b/Client/src/principal.cpp index 76680bd..2e8d708 100644 --- a/Client/src/principal.cpp +++ b/Client/src/principal.cpp @@ -22,9 +22,12 @@ Principal::Principal(BaseObjectType *co, const Glib::RefPtr & txt_view = 0; txt_target = txt_command = txt_args = 0; work_place = 0; - lbl_nombre = lbl_color = lbl_flujo = 0; + lbl_cap_flujo = lbl_cap_extra = lbl_extra = lbl_nombre = lbl_color = lbl_flujo = 0; rg->get_widget("lbl_nombre", lbl_nombre); + rg->get_widget("lbl_extra", lbl_extra); + rg->get_widget("lbl_cap_extra", lbl_cap_extra); + rg->get_widget("lbl_cap_flujo", lbl_cap_flujo); rg->get_widget("lbl_flujo", lbl_flujo); rg->get_widget("mnu_file_connect", conect); rg->get_widget("mnu_file_disconnect", mnu_disconnect); @@ -57,7 +60,8 @@ Principal::Principal(BaseObjectType *co, const Glib::RefPtr & Principal::~Principal() { - delete conexion; + if (conexion != NULL) + delete conexion; } void Principal::on_dlg_connect_ok() @@ -97,6 +101,10 @@ void Principal::on_mnu_file_disconnect() { if (conexion == NULL) return; + PlaQui::Server::Command c("transmission", "stop"); + c.add_arg(conexion->get_host()); + c.add_arg("7528"); + conexion->send(c); conexion->finish(); } @@ -141,6 +149,11 @@ bool Principal::on_item_clicked(GdkEventButton *e, ViewItem *i) { lbl_nombre->set_text(i->get_name()); lbl_flujo->set_text(i->get_actual_flow()); + lbl_extra->set_text(i->get_extra()); + + lbl_cap_flujo->set_text(i->get_cap_flow()); + lbl_cap_extra->set_text(i->get_cap_extra()); + txt_view->get_buffer()->insert_at_cursor("Selecciono "); txt_view->get_buffer()->insert_at_cursor(i->get_name()); txt_view->get_buffer()->insert_at_cursor("\n"); @@ -152,14 +165,15 @@ void Principal::on_conexion_connected() ico_conected->set( Gtk::Stock::YES , Gtk::IconSize(Gtk::ICON_SIZE_LARGE_TOOLBAR)); // Pido la planta por defecto - PlaQui::Server::Command c("plant", "get"); - c.add_arg("default"); - conexion->send(c); + if (conexion != NULL) { + PlaQui::Server::Command c("plant", "get"); + c.add_arg("default"); + conexion->send(c); + } } void Principal::on_conexion_frame(const std::string &frame) { - std::cout << "FRAME" << std::endl; read_status_xml(frame); } @@ -482,6 +496,7 @@ void Principal::read_status_xml(const std::string &frame) xmlNodePtr nodo, items, props; nodo = document->children; float tmp; + bool tmp_b; if (strcmp((char *)nodo->name, "plantstatus") == 0) { std::cout << "LEGO EL XML!" << std::endl; @@ -493,10 +508,13 @@ void Principal::read_status_xml(const std::string &frame) 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); } - if (item_name != "") - mapItems[item_name]->set_actual_flow(tmp); } items = items->next; } @@ -515,7 +533,21 @@ float Principal::get_float_from_xml(xmlNodePtr nodo) } nodo = nodo->next; } - std::cout << "get_float == " << tmp << std::endl; return tmp; } +bool Principal::get_bool_from_xml(xmlNodePtr nodo) +{ + std::string tmp; + while (nodo != NULL) { + if (nodo->type == XML_ELEMENT_NODE) { + if (xmlStrcmp(nodo->name, BAD_CAST"active")==0) { + tmp = (char *)XML_GET_CONTENT(nodo->children); + break; + } + } + nodo = nodo->next; + } + return tmp == "true"; +} +