1 #include "constructor.h"
3 Constructor::Constructor(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade):Gtk::Window(cobject)
7 set_title("Constructor");
8 Gtk::Label *lbl_plaqui_version;
9 Gtk::Image *plaqui_logo;
10 Gtk::MenuItem *mnu_about;
11 Gtk::Button *close_about;
14 lbl_plaqui_version = 0;
15 refGlade->get_widget("lbl_plaqui_version", lbl_plaqui_version);
16 refGlade->get_widget("plaqui_logo", plaqui_logo);
17 plaqui_logo->set(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/logo.png");
19 refGlade->get_widget("plaqui_logo", plaqui_logo);
20 // Calculo número de revisión.
21 std::string rev = "$Rev$";
22 rev = rev.substr(6, rev.length() - 8);
23 std::string s = "PlaQui Constructor versión " VERSION " (revisión ";
25 lbl_plaqui_version->set_text(Glib::locale_to_utf8(s));
27 refGlade->get_widget("dlgAbout", dlg_about);
28 refGlade->get_widget("close_about", close_about);
29 refGlade->get_widget("mnu_about", mnu_about);
31 // Cargo todas las imagenes de los iconos de los botones
32 ico_canio = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_n.png");
33 ico_y = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/y_n.png");
34 ico_codo = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/codo_o.png");
35 ico_tanque = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/tanque_e.png");
36 ico_exclusa = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/exclusa_h.png");
37 ico_drain = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_n.png");
38 ico_bomba = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/bomba_e.png");
39 ico_and = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/and_e.png");
40 ico_or = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/or_e.png");
41 ico_not = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_e.png");
43 //Obtengo todos los widgets de la ventana principal.
44 refGlade->get_widget("btn_canio", btn_canio);
45 refGlade->get_widget("btn_codo", btn_codo);
46 refGlade->get_widget("btn_y", btn_y);
47 refGlade->get_widget("btn_tanque",btn_tanque);
48 refGlade->get_widget("btn_bomba", btn_bomba);
49 refGlade->get_widget("btn_exclusa", btn_exclusa);
50 refGlade->get_widget("btn_drain", btn_drain);
51 refGlade->get_widget("btn_and", btn_and);
52 refGlade->get_widget("btn_or", btn_or);
53 refGlade->get_widget("btn_not", btn_not);
54 refGlade->get_widget("main_menu_quit",main_menu_quit);
55 refGlade->get_widget("main_menu_new",main_menu_new);
56 refGlade->get_widget("main_menu_open",main_menu_open);
57 refGlade->get_widget("main_menu_save",main_menu_save);
58 refGlade->get_widget("edit_menu_del",edit_menu_del);
59 refGlade->get_widget("chk_btn_logica",chk_btn_logica);
60 refGlade->get_widget("file_open_selection",file_open_selection);
61 refGlade->get_widget("file_selection",file_selection);
62 refGlade->get_widget("combo_entry",combo_entry);
63 refGlade->get_widget("btn_check",btn_check);
64 refGlade->get_widget("dlg_connect", dlg_connect);
65 refGlade->get_widget("btn_dlg_close", btn_dlg_close);
66 refGlade->get_widget("dlg_label", dlg_label);
67 refGlade->get_widget("quick_btn_new", quick_btn_new);
68 refGlade->get_widget("quick_btn_save", quick_btn_save);
69 refGlade->get_widget("quick_btn_open", quick_btn_open);
70 refGlade->get_widget("edit_menu_delete_all", edit_menu_delete_all);
71 refGlade->get_widget("btn_find", btn_find);
72 refGlade->get_widget("status_bar", status_bar);
74 //Obtengo el area de trabajo, la cual tiene definida su propia clase.
75 refGlade->get_widget_derived("workplace", workplace); //fixed
78 listTargets.push_back( Gtk::TargetEntry("STRING") );
79 listTargets.push_back( Gtk::TargetEntry("text/plain") );
80 listTargets.push_back( Gtk::TargetEntry("POINTER") );
81 listTargets.push_back( Gtk::TargetEntry("application/pointer") );
83 // Le indico cuales son los botones desde los cuales se puede hacer un drag.
84 mnu_about->signal_activate().connect( SigC::slot(*dlg_about, &Gtk::Widget::show) );
85 close_about->signal_clicked().connect( SigC::slot(*dlg_about, &Gtk::Widget::hide) );
86 btn_canio->drag_source_set(listTargets);
87 btn_y->drag_source_set(listTargets);
88 btn_codo->drag_source_set(listTargets);
89 btn_tanque->drag_source_set(listTargets);
90 btn_bomba->drag_source_set(listTargets);
91 btn_drain->drag_source_set(listTargets);
92 btn_exclusa->drag_source_set(listTargets);
93 btn_and->drag_source_set(listTargets);
94 btn_or->drag_source_set(listTargets);
95 btn_not->drag_source_set(listTargets);
97 //Conecto las señales de cada boton con su correspondiente metodo.
98 btn_canio->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_canio_drag_get));
99 btn_bomba->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_bomba_drag_get));
100 btn_exclusa->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_exclusa_drag_get));
101 btn_y->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_y_drag_get));
102 btn_codo->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_codo_drag_get));
103 btn_tanque->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_tanque_drag_get));
104 btn_drain->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_drain_drag_get));
105 btn_and->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_and_drag_get));
106 btn_or->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_or_drag_get));
107 btn_not->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_not_drag_get));
108 btn_check->signal_clicked().connect(SigC::slot(*this,&Constructor::on_btn_check_clicked));
109 btn_dlg_close->signal_clicked().connect(SigC::slot(*this,&Constructor::on_btn_dlg_connect_clicked));
110 btn_find->signal_clicked().connect(SigC::slot(*this,&Constructor::on_btn_find_clicked));
111 chk_btn_logica->signal_clicked().connect(SigC::slot(*this, &Constructor::on_chk_btn_logica_clicked));
112 quick_btn_new->signal_clicked().connect(SigC::slot(*this, &Constructor::on_quick_btn_new_clicked));
113 quick_btn_save->signal_clicked().connect(SigC::slot(*this, &Constructor::on_quick_btn_save_clicked));
114 quick_btn_open->signal_clicked().connect(SigC::slot(*this, &Constructor::on_main_menu_open));
116 main_menu_quit->signal_activate().connect(SigC::slot(*this, &Constructor::on_main_menu_quit));
117 main_menu_new->signal_activate().connect(SigC::slot(*this, &Constructor::on_quick_btn_new_clicked));
118 main_menu_open->signal_activate().connect(SigC::slot(*this, &Constructor::on_main_menu_open));
119 main_menu_save->signal_activate().connect(SigC::slot(*this, &Constructor::on_main_menu_save));
120 edit_menu_del->signal_activate().connect(SigC::slot(*this,&Constructor::on_edit_menu_del));
121 edit_menu_delete_all->signal_activate().connect(SigC::slot(*this,&Constructor::on_quick_btn_delete_all_clicked));
123 //Obtengo y conecto los botones del dialogo de Salvar/Cargar un archivo.
124 btn_file_cancel = file_selection->get_cancel_button();
125 btn_file_ok = file_selection->get_ok_button();
126 btn_file_ok->signal_clicked().connect(SigC::slot(*this,&Constructor::on_btn_file_ok_clicked));
127 btn_file_cancel->signal_clicked().connect(SigC::slot(*this,&Constructor::on_btn_file_cancel_clicked));
128 btn_open_cancel = file_open_selection->get_cancel_button();
129 btn_open_ok = file_open_selection->get_ok_button();
130 btn_open_ok->signal_clicked().connect(SigC::slot(*this,&Constructor::on_load_from_xml));
131 btn_open_cancel->signal_clicked().connect(SigC::slot(*this,&Constructor::on_btn_open_cancel_clicked));
133 // Señales para cambiar el icono cuando empieza el drag.
134 btn_canio->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_canio_drag_begin));
135 btn_y->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_y_drag_begin));
136 btn_codo->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_codo_drag_begin));
137 btn_tanque->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_tanque_drag_begin));
138 btn_bomba->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_bomba_drag_begin));
139 btn_exclusa->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_exclusa_drag_begin));
140 btn_drain->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_drain_drag_begin));
141 btn_and->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_and_drag_begin));
142 btn_or->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_or_drag_begin));
143 btn_not->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_not_drag_begin));
144 workplace->drag_dest_set(listTargets);
145 workplace->signal_drag_data_received().connect( SigC::slot(*this, &Constructor::on_item_drop_drag_received) );
146 // Apunto la lista del area de trabajo a la lista de items en el Constructor
147 workplace->listaItems = &listaItems;
148 workplace->lista_logic_Items = &lista_logic_Items;
149 workplace->logica = &logica;
153 Constructor::~Constructor()
155 // elimina todos los items
156 Constructor::on_edit_menu_delete_all();
159 // Definicion de los metodos para obtener el icono al realizar un drag.
160 void Constructor::on_btn_canio_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
162 gtk_selection_data_set (selection_data, selection_data->target, 8, (const guchar*)"canio_n.png", 12);
165 void Constructor::on_btn_y_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
167 gtk_selection_data_set(selection_data, selection_data->target, 8,(const guchar*)"y_n.png",8);
170 void Constructor::on_btn_codo_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
172 gtk_selection_data_set(selection_data, selection_data->target, 8 ,(const guchar*)"codo_o.png",10);
175 void Constructor::on_btn_tanque_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
177 gtk_selection_data_set(selection_data, selection_data->target, 8,(const guchar*)"tanque_e.png",12);
180 void Constructor::on_btn_bomba_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
182 gtk_selection_data_set(selection_data, selection_data->target, 8,(const guchar*)"bomba_e.png",11);
185 void Constructor::on_btn_exclusa_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
187 gtk_selection_data_set(selection_data, selection_data->target, 8,(const guchar*)"exclusa_h.png",13);
190 void Constructor::on_btn_drain_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
192 gtk_selection_data_set(selection_data, selection_data->target, 8,(const guchar*)"drain_n.png",11);
195 void Constructor::on_btn_and_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
197 gtk_selection_data_set(selection_data, selection_data->target, 8,(const guchar*)"and_e.png",9);
200 void Constructor::on_btn_or_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
202 gtk_selection_data_set(selection_data, selection_data->target, 8,(const guchar*)"or_e.png",8);
205 void Constructor::on_btn_not_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
207 gtk_selection_data_set(selection_data, selection_data->target, 8,(const guchar*)"not_e.png",9);
211 void Constructor::on_main_menu_quit()
218 // Carga de un archivo XML
219 void Constructor::on_main_menu_open()
221 // Conecto el boton OK para llamar al cargar del XML
222 file_open_selection->show();
225 // Salva un archivo XML
226 void Constructor::on_main_menu_save()
228 // Conecto el boton OK para llamar al salvar
230 if ( ! check_connection(name) ) {
231 dlg_connect->set_title("Error");
232 dlg_label->set_text("El elemento "+name+" no esta conectado\n\t\tcorrectamente");
235 file_selection->show();
238 // Elimina el item apuntado desde el menu principal
239 void Constructor::on_edit_menu_del()
241 workplace->delete_item(WorkPlace::pointed);
244 // Elimina todos lo items
245 void Constructor::on_edit_menu_delete_all()
247 std::list<CItem *>::iterator i = listaItems.begin();
248 while ( i != listaItems.end() ) {
249 (*i)->workplace->delete_item((*i)->get_id());
250 i = listaItems.begin();
252 i = lista_logic_Items.begin();
253 while ( i != lista_logic_Items.end() ) {
254 (*i)->workplace->delete_item((*i)->get_id());
255 i=lista_logic_Items.begin();
258 list_pointed.clear();
259 list_pointed.push_back(" ");
260 combo_entry->set_popdown_strings(list_pointed);
261 combo_entry->get_entry()->set_text("");
264 // Al presionarse el check button "logica"
265 void Constructor::on_chk_btn_logica_clicked()
268 CItem::logic_connect = !CItem::logic_connect;
269 workplace->queue_draw();
272 // Metodo que levanta el archivo XML y crea todos los items agregandolos a las listas correspondientes
273 void Constructor::on_load_from_xml()
275 on_edit_menu_delete_all();
276 file_name = file_open_selection->get_filename();
278 /* Parseo de ejemplo de un XML desde archivo */
280 document = xmlParseFile(file_name.c_str());
281 if (document == NULL) {
282 std::cout<<"NO SE PUDO CARGAR EL ARCHIVO"<<std::endl;
283 // TODO : dar un aviso de que no se pudo abrir el archivo!!
287 /* bien, el archivo se parseo bien! */
288 xmlNodePtr nodo, items;
289 nodo = document->children;
293 if (strcmp((char *)nodo->name, "planta") == 0) {
294 items = nodo->children;
295 while (items != NULL) {
297 if (items->type == XML_ELEMENT_NODE) {
298 std::cout << "ITEM" << std::endl;
299 if (xmlStrcmp(items->name, BAD_CAST"bomba")==0) {
300 current = loadBomba(items);
301 } else if (xmlStrcmp(items->name, BAD_CAST"tubo")==0) {
302 current = loadConduct(items);
303 } else if (xmlStrcmp(items->name, BAD_CAST"codo")==0) {
304 current = loadCodo(items);
305 } else if (xmlStrcmp(items->name, BAD_CAST"exclusa")==0) {
306 current = loadExclusa(items);
307 } else if (xmlStrcmp(items->name, BAD_CAST"tanque")==0) {
308 current = loadTank(items);
309 } else if (xmlStrcmp(items->name, BAD_CAST"empalme")==0) {
310 current = loadUnion(items);
311 } else if (xmlStrcmp(items->name, BAD_CAST"drenaje")==0) {
312 current = loadDrain(items);
313 } else if (xmlStrcmp(items->name, BAD_CAST"and")==0) {
314 current = loadAnd(items);
315 } else if (xmlStrcmp(items->name, BAD_CAST"not")==0) {
316 current = loadNot(items);
317 } else if (xmlStrcmp(items->name, BAD_CAST"or")==0) {
318 current = loadOr(items);
321 if (current != NULL) {
322 if (! current->is_logic )
323 listaItems.push_back(current);
325 lista_logic_Items.push_back(current);
327 // Agrego y conecto la bomba
328 current->drag_source_set(listTargets);
329 workplace->put(*current, current->get_position_x(), current->get_position_y());
330 //Apunto al workplace
331 current->workplace= workplace;
333 current->combo_entry = combo_entry;
334 //Apunto a la lista de apuntados
335 current->list_pointed = &list_pointed;
336 //Apunto a la listaItems.
337 current->listaItems = &listaItems;
338 //Apunto a la lista de items logicos
339 current->lista_logic_Items = &lista_logic_Items;
340 //Apunto a la barra de estado
341 current->status_bar = status_bar;
342 // Conecto las señales
343 current->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_item_drag_data_get));
344 current->signal_drag_begin().connect(SigC::bind( SigC::slot(*this, &Constructor::on_item_drag_begin), current));
351 // Crea las lineas que conectan la parte logica.
352 create_lines(document->children);
353 xmlFreeDoc(document);
354 workplace->update_logic_position();
355 workplace->queue_draw();
357 std::cout<< "EL XML NO ES VALIDO" << std::endl;
358 // TODO : avisar que el XML no es valido!!
360 std::cout << "CARGA COMPLETA" << std::endl;
361 file_open_selection->hide();
363 // Seteo el id en el maximo mas uno de todos los id cargados, para que quede bien cuando se agregan nuevos items en un proyecto
364 // cargado desde un archivo.
365 int id_1 = -1 , id_2 = -1;
366 std::list<CItem *>::iterator i = listaItems.begin();
367 while ( i != listaItems.end() ){
368 if ( (*i)->get_id() >= id_1 )
369 id_1 = (*i)->get_id();
374 i = lista_logic_Items.begin();
375 while ( i != lista_logic_Items.end() ){
376 if ( (*i)->get_id() >= id_2 )
377 id_2 = (*i)->get_id();
381 if ( id_1 < id_2 ) id = id_2;
385 // Recorre todo los items los cuales conocen la manera de salvarse en un archivo XML.
386 void Constructor::on_btn_file_ok_clicked()
388 std::list<CItem *>::iterator i = listaItems.begin();
389 file_name = file_selection->get_filename();
391 if ( (archivo = fopen( file_name.c_str(), "w+")) != NULL ){
392 fprintf(archivo, "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\n");
393 fprintf (archivo,"<planta>\n");
394 while ( i != listaItems.end() ){
398 i = lista_logic_Items.begin();
399 while ( i != lista_logic_Items.end() ) {
403 fprintf(archivo,"</planta>\n");
407 std::cout<<"NO SE ABRIO EL ARCHIVO"<<std::endl;
408 file_selection->hide();
411 // Salva el archivo, si no estaba salvado muestra el dialogo, si no sobreescribe el ultimo archivo salvado.
412 void Constructor::on_quick_btn_save_clicked()
417 on_btn_file_ok_clicked();
421 // Limpia la pantalla para comenzar un nuevo proyecto.
422 void Constructor::on_quick_btn_new_clicked()
424 on_quick_btn_delete_all_clicked();
428 // Borra todos los items pero desde otro boton.
429 void Constructor::on_quick_btn_delete_all_clicked()
431 on_edit_menu_delete_all();
434 // busca en la lista el nombre del item que aparece en el cuadro de texto y si lo encuentra dibuja un recuadro para mostrarlo.
435 void Constructor::on_btn_find_clicked()
438 std::list<CItem *>::iterator i = listaItems.begin();
439 while ( i !=listaItems.end() ) {
440 if ( (*i)->get_name() == combo_entry->get_entry()->get_text() ) {
447 i = lista_logic_Items.begin();
448 while ( i !=lista_logic_Items.end() ) {
449 if ( (*i)->get_name() == combo_entry->get_entry()->get_text() ) {
456 workplace->get_window()->draw_rectangle(workplace->get_style()->get_black_gc(), false , temp->get_position_x()-5, temp->get_position_y()-5,
457 temp->get_image()->get_width()+10, temp->get_image()->get_height()+10);
460 // Oculta el dialogo.
461 void Constructor::on_btn_file_cancel_clicked()
463 file_selection->hide();
466 //Muestra el dialogo para seleccionar archivo
467 void Constructor::on_btn_open_cancel_clicked()
469 file_open_selection->hide();
473 void Constructor::on_btn_dlg_connect_clicked()
478 //Metodos que permiten que el icono sea el del items durante el drag
479 void Constructor::on_canio_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
481 context->set_icon(ico_canio, 5, 5);
484 void Constructor::on_y_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
486 context->set_icon(ico_y, 5, 5);
489 void Constructor::on_codo_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
491 context->set_icon(ico_codo, 5, 5);
494 void Constructor::on_tanque_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
496 context->set_icon(ico_tanque, 5, 5);
499 void Constructor::on_bomba_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
501 context->set_icon(ico_bomba, 5, 5);
504 void Constructor::on_exclusa_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
506 context->set_icon(ico_exclusa, 5, 5);
509 void Constructor::on_drain_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
511 context->set_icon(ico_drain, 5, 5);
514 void Constructor::on_and_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
516 context->set_icon(ico_and, 5, 5);
519 void Constructor::on_or_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
521 context->set_icon(ico_or, 5, 5);
524 void Constructor::on_not_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
526 context->set_icon(ico_not, 5, 5);
529 void Constructor::on_item_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context, CItem *item)
531 context->set_icon(item->get_image(), 5, 5);
534 void Constructor::on_item_drag_data_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
536 gtk_selection_data_set (selection_data, selection_data->target, 10, (const guchar*)"item_codo.png", 13);
539 // Si un item es movido encima de otro este metodo devueve falso. De esta manera no podran encimarse items.
540 bool Constructor::can_drop(CItem *item, int _x, int _y)
542 std::list<CItem*>::iterator i = listaItems.begin();
543 while( i != listaItems.end() ) {
545 if ( temp->get_id() != item->get_id() ) {
546 if ( (temp->is_occupied_area(_x, _y)) ||
547 ( temp->is_occupied_area(_x+item->get_image()->get_width()-1, _y+item->get_image()->get_height()-1)) ||
548 ( temp->is_occupied_area(_x, _y+item->get_image()->get_height()-1)) ||
549 ( temp->is_occupied_area(_x+item->get_image()->get_width()-1, _y) ) )
558 //Cada vez que se realiza un drag o un drop este metodo es invocado.
559 //Aca se validan las posiciones de los items y se crean si no estaban en el area de trabajo.
560 void Constructor::on_item_drop_drag_received(const Glib::RefPtr<Gdk::DragContext>& context, int x, int y, GtkSelectionData* selection_data, guint info, guint time)
562 workplace->update_logic_position();
563 workplace->queue_draw();
565 /* Ajusto coordenada x e y para que caigan en un lugar de una cuadricula de 32x32 */
567 // el +1 es para evitar un bug cuando se selecciona muy cerce de la
568 // separacion de 2 cuadritos
571 // El drag es de un item
572 if (selection_data->format == 10) {
573 if (can_drop(((CItem*)drag_get_source_widget(context)),i*32, j*32)){
574 ((CItem*)drag_get_source_widget(context))->set_position(i*32, j*32);
575 workplace->move(*drag_get_source_widget(context), i*32, j*32);
579 // El Drag es desde la barra de tareas
580 if ((selection_data->length >= 0) && (selection_data->format == 8)) {
582 if (strcmp((const char *)selection_data->data, "codo_o.png")==0)
584 else if (strcmp((const char *)selection_data->data, "canio_n.png")==0)
586 else if (strcmp((const char *)selection_data->data, "y_n.png")==0)
588 else if (strcmp((const char *)selection_data->data, "tanque_e.png")==0)
590 else if (strcmp((const char *)selection_data->data, "bomba_e.png")==0)
592 else if (strcmp((const char *)selection_data->data, "exclusa_h.png")==0)
594 else if (strcmp((const char *)selection_data->data, "drain_n.png")==0)
596 else if (strcmp((const char *)selection_data->data, "and_e.png")==0){
597 a = new And(); a->is_logic = true;
598 } else if (strcmp((const char *)selection_data->data, "or_e.png")==0) {
599 a = new Or(); a->is_logic = true;
600 } else if (strcmp((const char *)selection_data->data, "not_e.png")==0) {
601 a = new Not(); a->is_logic = true;
605 sprintf(char_id,"%d",id);
607 a->set_name( a->get_name()+char_id );
608 if ( can_drop(a, i*32, j*32) ) {
609 workplace->put(*a, i*32, j*32);
610 //Apunto al workplace
611 a->workplace = workplace;
613 a->combo_entry = combo_entry;
614 //Apunto a la lista de apuntados
615 a->list_pointed = &list_pointed;
616 //Apunto a la listaItems.
617 a->listaItems = &listaItems;
618 //Apunto a la barra de estado
619 a->status_bar = status_bar;
620 //Apunto a la lista de items logicos
621 a->lista_logic_Items = &lista_logic_Items;
622 //Seteo la posicion del item
623 a->set_position(i*32,j*32);
624 // Seteo la lista de tipos de drags
625 a->drag_source_set(listTargets);
626 // Conecto las señales
627 a->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_item_drag_data_get));
628 // Utilizo el SigC::bind para que el callback on_drag_begin acepte un
629 // parametro extra, en este caso un CItem *. Esto se hace para
630 // que cuando el usuario quiera mover un item, saber que item es
631 // y pedirle su ícono para mostrar cono icono durante la operacion,
632 // Esto va a permitir, que si un widget tiene una imagen rotara o algo
633 // raro se vea el widget tal cual.
634 a->signal_drag_begin().connect(SigC::bind( SigC::slot(*this, &Constructor::on_item_drag_begin), a));
637 listaItems.push_back(a);
639 lista_logic_Items.push_back(a);
645 context->drag_finish(false, false, time);
647 workplace->update_logic_position();
648 workplace->queue_draw();
651 // Cuando se presiona el boton "Verificar Conexiones" esta funcion es invocada
652 //Muestra un dialogo de error en caso de que no esten bien conectados y un dialogo
653 //de exito si lo estan.
654 void Constructor::on_btn_check_clicked()
657 if ( ! check_connection(name) ) {
658 dlg_connect->set_title("Error");
659 dlg_label->set_text("El elemento "+name+" no esta conectado\n\t\tcorrectamente");
662 dlg_connect->set_title("Conexion");
663 dlg_label->set_text("Los elementos estan conectados\n\t\tcorrectamente");
668 //Verifica que todos los items esten correctamente conectados en sus extremos.
669 //Cada item verifica su conexion en forma independiente.
670 bool Constructor::check_connection(Glib::ustring& name)
672 std::list<CItem *>::iterator i = listaItems.begin();
673 while ( i != listaItems.end() ){
674 (*i)->set_default_connector();
675 (*i)->is_connected = false;
678 i = listaItems.begin();
679 if ( !listaItems.empty() ) {
680 while ( i != listaItems.end() ) {
682 std::cout<< "item="<<temp->get_name()<<" "<<"check= "<<temp->check_connection()<<std::endl;
683 if ( !temp->check_connection() ) {
684 name = temp->get_name();
690 std::cout<<"check_connection logic"<<std::endl;
691 std::list<CItem *>::iterator j = lista_logic_Items.begin();
692 while ( j != lista_logic_Items.end() ) {
693 if ( !(*j)->check_connection() ) {
694 name = (*j)->get_name();
703 //Los siguientes metodos son utilizados para levantar cada item desde el XML
705 Not *Constructor::loadNot(xmlNodePtr nodo)
707 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
708 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
709 int orientacion=0, x, y;
711 nodo = nodo->children;
712 while (nodo != NULL) {
713 if (nodo->type == XML_ELEMENT_NODE) {
714 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
715 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
716 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
717 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
718 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
719 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
725 Not *p = new Not(orientacion);
726 p->set_position(x,y);
727 p->set_id( atoi(id.c_str()) );
733 Or *Constructor::loadOr(xmlNodePtr nodo)
735 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
736 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
737 int orientacion=0, x, y;
739 nodo = nodo->children;
740 while (nodo != NULL) {
741 if (nodo->type == XML_ELEMENT_NODE) {
742 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
743 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
744 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
745 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
746 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
747 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
753 Or *p = new Or(orientacion);
754 p->set_position(x,y);
755 p->set_id( atoi(id.c_str()) );
761 And *Constructor::loadAnd(xmlNodePtr nodo)
763 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
764 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
765 int orientacion=0, x, y;
767 xmlNodePtr inicial = nodo;
769 nodo = nodo->children;
770 while (nodo != NULL) {
771 if (nodo->type == XML_ELEMENT_NODE) {
772 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
773 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
774 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
775 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
776 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
777 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
783 And *p = new And(orientacion);
784 p->set_position(x,y);
785 p->set_id( atoi(id.c_str()) );
790 Pump *Constructor::loadBomba(xmlNodePtr nodo)
792 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
793 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
794 int orientacion=0, x, y;
798 nodo = nodo->children;
799 while (nodo != NULL) {
800 if (nodo->type == XML_ELEMENT_NODE) {
801 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
802 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
803 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
804 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
805 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
806 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
807 } else if (xmlStrcmp(nodo->name, BAD_CAST"entrega") == 0) {
808 flujo = atof( (char *)XML_GET_CONTENT(nodo->children) );
809 } else if (xmlStrcmp(nodo->name, BAD_CAST"color") == 0) {
810 color = loadColor(nodo->children);
816 Pump *p = new Pump(orientacion);
817 p->set_position(x,y);
818 p->set_entrega(flujo);
819 p->set_id( atoi(id.c_str()) );
821 p->set_liquid_color(color);
826 Gdk::Color Constructor::loadColor(xmlNodePtr nodo)
829 while (nodo != NULL) {
830 if (nodo->type == XML_ELEMENT_NODE) {
831 if (xmlStrcmp(nodo->name, BAD_CAST"rojo")==0)
832 r = atoi( (char *)XML_GET_CONTENT(nodo->children) );
833 if (xmlStrcmp(nodo->name, BAD_CAST"verde")==0)
834 g = atoi( (char *)XML_GET_CONTENT(nodo->children) );
835 if (xmlStrcmp(nodo->name, BAD_CAST"azul")==0)
836 b = atoi( (char *)XML_GET_CONTENT(nodo->children) );
842 std::cout << r << " " << g << " " << b << std::endl;
846 Conduct *Constructor::loadConduct(xmlNodePtr nodo)
848 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
849 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
850 int orientacion=0, x, y;
853 nodo = nodo->children;
854 while (nodo != NULL) {
855 if (nodo->type == XML_ELEMENT_NODE) {
856 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
857 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
858 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
859 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
860 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
861 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
862 } else if (xmlStrcmp(nodo->name, BAD_CAST"caudal") == 0) {
863 flujo = atof( (char *)XML_GET_CONTENT(nodo->children) );
869 Conduct *p = new Conduct(orientacion);
870 p->set_position(x,y);
871 p->set_caudal(flujo);
872 p->set_id( atoi(id.c_str()) );
878 Exclusa *Constructor::loadExclusa(xmlNodePtr nodo)
880 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
881 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
883 int orientacion=0, x, y;
886 nodo = nodo->children;
887 while (nodo != NULL) {
888 if (nodo->type == XML_ELEMENT_NODE) {
889 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
890 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
891 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
892 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
893 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
894 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
895 } else if (xmlStrcmp(nodo->name, BAD_CAST"estado") == 0) {
896 estado = (char *)XML_GET_CONTENT(nodo->children);
902 Exclusa *p = new Exclusa(orientacion);
903 p->set_position(x,y);
904 p->set_id( atoi(id.c_str()) );
906 p->set_estado( estado == "1" );
911 Cistern *Constructor::loadTank(xmlNodePtr nodo)
913 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
914 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
915 int orientacion=0, x, y;
916 float liquido,capacidad;
919 nodo = nodo->children;
920 while (nodo != NULL) {
921 if (nodo->type == XML_ELEMENT_NODE) {
922 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
923 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
924 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
925 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
926 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
927 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
928 } else if (xmlStrcmp(nodo->name, BAD_CAST"capacidad") == 0) {
929 capacidad = atof ((char *)XML_GET_CONTENT(nodo->children) );
930 } else if (xmlStrcmp(nodo->name, BAD_CAST"inicial") == 0) {
931 liquido = atof ((char *)XML_GET_CONTENT(nodo->children) );
932 } else if (xmlStrcmp(nodo->name, BAD_CAST"color") == 0) {
933 color = loadColor(nodo->children);
939 Cistern *p = new Cistern(orientacion);
940 p->set_position(x,y);
941 p->set_id( atoi(id.c_str()) );
943 p->set_capacidad(capacidad);
944 p->set_contenido_inicial(liquido);
945 p->set_liquid_color(color);
949 Union *Constructor::loadUnion(xmlNodePtr nodo)
951 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
952 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
954 int orientacion=0, x, y;
957 nodo = nodo->children;
958 while (nodo != NULL) {
959 if (nodo->type == XML_ELEMENT_NODE) {
960 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
961 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
962 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
963 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
964 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
965 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
966 } else if (xmlStrcmp(nodo->name, BAD_CAST"caudal") == 0) {
967 caudal = atof ((char *)XML_GET_CONTENT(nodo->children) );
968 } else if (xmlStrcmp(nodo->name, BAD_CAST"tipo") == 0) {
969 tipo = (char *)XML_GET_CONTENT(nodo->children);
975 Union *p = new Union(orientacion);
976 p->set_position(x,y);
977 p->set_id( atoi(id.c_str()) );
979 p->set_caudal(caudal);
980 p->is_union = (tipo == "union");
985 Drain *Constructor::loadDrain(xmlNodePtr nodo)
987 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
988 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
989 int orientacion=0, x, y;
991 nodo = nodo->children;
992 while (nodo != NULL) {
993 if (nodo->type == XML_ELEMENT_NODE) {
994 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
995 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
996 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
997 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
998 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
999 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
1005 Drain *p = new Drain(orientacion);
1006 p->set_position(x,y);
1007 p->set_id( atoi(id.c_str()) );
1013 Splitter *Constructor::loadCodo(xmlNodePtr nodo)
1015 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
1016 std::string id = (char *)xmlGetProp(nodo, BAD_CAST"id");
1017 int orientacion=0, x, y;
1020 nodo = nodo->children;
1021 while (nodo != NULL) {
1022 if (nodo->type == XML_ELEMENT_NODE) {
1023 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
1024 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
1025 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
1026 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
1027 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
1028 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
1029 } else if (xmlStrcmp(nodo->name, BAD_CAST"caudal") == 0) {
1030 caudal = atof( (char *)XML_GET_CONTENT(nodo->children) );
1036 Splitter *p = new Splitter(orientacion);
1037 p->set_position(x,y);
1038 p->set_id( atoi(id.c_str()) );
1040 p->set_caudal(caudal);
1045 void Constructor::create_lines(xmlNodePtr nodo)
1049 nodo = nodo->children;
1050 while (nodo != NULL) {
1051 if (nodo->type == XML_ELEMENT_NODE) {
1052 if (xmlStrcmp(nodo->name, BAD_CAST"and")==0) {
1053 name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
1054 std::cout << name << std::endl;
1055 create_line(nodo->children, workplace->get_logic_id(name));
1056 } else if (xmlStrcmp(nodo->name, BAD_CAST"not")==0) {
1057 name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
1058 std::cout << name << std::endl;
1059 create_line(nodo->children, workplace->get_logic_id(name));
1060 } else if (xmlStrcmp(nodo->name, BAD_CAST"or")==0) {
1061 name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
1062 std::cout << name << std::endl;
1063 create_line(nodo->children, workplace->get_logic_id(name));
1070 //Levanta las lineas desde el archvo XML
1071 void Constructor::create_line(xmlNodePtr nodo, int logic_id)
1074 std::cout << "Buscando lineas ..." << std::endl;
1075 while (nodo != NULL) {
1076 if (nodo->type == XML_ELEMENT_NODE) {
1077 if (xmlStrcmp(nodo->name, BAD_CAST"salida")==0) {
1078 otro = (char *)XML_GET_CONTENT(nodo->children);
1080 tmp_line.logic_id = logic_id;
1081 //workplace->get_logic_item(logic_id)->set_out_connected(true);
1082 if (workplace->get_item_id(otro) != -1) {
1083 tmp_line.store_id = workplace->get_item_id(otro);
1084 std::cout << otro << " se conecta a una compuerta" << std::endl;
1085 workplace->lista_lineas_in.push_back(tmp_line);
1087 /* Como no era un item, debe ser una compuerta */
1088 tmp_line.store_id = workplace->get_logic_id(otro);
1089 workplace->lista_lineas_logic.push_back(tmp_line);
1091 } else if (xmlStrcmp(nodo->name, BAD_CAST"entrada")==0) {
1092 otro = (char *)XML_GET_CONTENT(nodo->children);
1094 tmp_line.logic_id = logic_id;
1095 if (workplace->get_item_id(otro) != -1) {
1096 tmp_line.store_id = workplace->get_item_id(otro);
1097 /* Tengo que ver si es un tanque, para setearlo correctamente */
1098 if (dynamic_cast<Cistern *>(workplace->get_item(workplace->get_item_id(otro)))) {
1099 std::string donde = (char *)xmlGetProp(nodo, BAD_CAST"id");
1100 tmp_line.cistern_out1 = true;
1101 if (donde == "inferior") {
1102 tmp_line.cistern_out1 = false;
1105 workplace->lista_lineas_out.push_back(tmp_line);
1106 std::cout << otro << " se conecta a una compuerta" << std::endl;
1108 /* Como no era un item, debe ser una compuerta */
1109 tmp_line.store_id = workplace->get_logic_id(otro);
1110 workplace->lista_lineas_logic.push_back(tmp_line);