X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/57ae549a3b51ba148315ff4e64da089203cc7c02..289cd57714db01c97f3fa7cb65efedf30114919f:/Constructor/src/workplace.cpp?ds=sidebyside diff --git a/Constructor/src/workplace.cpp b/Constructor/src/workplace.cpp index 64ad9f5..1666c8a 100644 --- a/Constructor/src/workplace.cpp +++ b/Constructor/src/workplace.cpp @@ -23,7 +23,6 @@ bool WorkPlace::on_expose_event(GdkEventExpose *event) get_window()->draw_point (get_style()->get_black_gc(), x-1,y); } - Glib::RefPtr gc = get_style()->get_black_gc(); Gdk::Color color; color.set_rgb(255,0,0); @@ -33,31 +32,34 @@ bool WorkPlace::on_expose_event(GdkEventExpose *event) std::list::iterator i = lista_lineas_in.begin(); while ( i != lista_lineas_in.end() ) { t_line temp = *i; - temp.store->get_in_logic_connect_position(w,z); - temp.logic->get_out_logic_connect_position(a, b); - get_window()->draw_line (get_style()->get_black_gc(), a, b, w,z); + if ( get_item(temp.store_id) != NULL && get_logic_item(temp.logic_id) != NULL ) { + get_item(temp.store_id)->get_in_logic_connect_position(w,z); + get_logic_item(temp.logic_id)->get_out_logic_connect_position(a, b); + get_window()->draw_line (get_style()->get_black_gc(), a, b, w,z); + } i++; } i = lista_lineas_out.begin(); while ( i != lista_lineas_out.end() ) { t_line temp = *i; - temp.store->get_out_logic_connect_position(w,z); - temp.logic->get_in_logic_connect_position(a, b); - get_window()->draw_line (get_style()->get_black_gc(), a, b, w, z); + if ( get_item(temp.store_id) != NULL && get_logic_item(temp.logic_id) != NULL ) { + get_item(temp.store_id)->get_out_logic_connect_position(w,z); + get_logic_item(temp.logic_id)->get_in_logic_connect_position(a, b); + get_window()->draw_line (get_style()->get_black_gc(), a, b, w, z); + } i++; } - return true; } void WorkPlace::delete_item(int _id) { + delete_line(_id); CItem::logic_connect = false; std::list::iterator i = listaItems->begin(); while ( i != listaItems->end() ){ CItem *temp = *i; if ( temp->get_id() == _id ){ - delete_line(_id); listaItems->erase(i); delete temp; break; @@ -68,65 +70,79 @@ void WorkPlace::delete_item(int _id) while ( i != lista_logic_Items->end() ){ CItem *temp = *i; if ( temp->get_id() == _id ){ - delete_line(_id); lista_logic_Items->erase(i); delete temp; break; } i++; } - + CItem::gate_id = -1; } CItem* WorkPlace::get_logic_item(int _id) { std::list::iterator i = lista_logic_Items->begin(); while ( i != lista_logic_Items->end() ){ - CItem *temp = *i; - if ( temp->get_id() == _id ) - return temp; + if ( (*i)->get_id() == _id ) + return *i; + i++; + } + return NULL; +} + +CItem *WorkPlace::get_item(int _id) +{ + std::list::iterator i = listaItems->begin(); + while ( i != listaItems->end() ){ + if ( (*i)->get_id() == _id ) + return *i; i++; } return NULL; } + void WorkPlace::delete_line(int _id) { std::list::iterator i = lista_lineas_in.begin(); while ( i != lista_lineas_in.end() ){ - if ( (*i).store->get_id() == _id ) { - lista_lineas_in.erase(i); - i = lista_lineas_in.begin(); - } + if (get_item( (*i).store_id ) != NULL) + if ( get_item( (*i).store_id )->get_id() == _id ) { + lista_lineas_in.erase(i); + i = lista_lineas_in.begin(); + } i++; } i = lista_lineas_in.begin(); while ( i != lista_lineas_in.end() ){ - if ( (*i).logic->get_id() == _id ) { - lista_lineas_in.erase(i); - i = lista_lineas_in.begin(); - } + if ( get_logic_item((*i).logic_id) != NULL) + if ( get_logic_item((*i).logic_id)->get_id() == _id) { + lista_lineas_in.erase(i); + i = lista_lineas_in.begin(); + } i++; } - i = lista_lineas_out.begin(); - while ( i != lista_lineas_out.end() ){ - if ( (*i).store->get_id() == _id ) { - lista_lineas_out.erase(i); - i = lista_lineas_out.begin(); - } - i++; - } - i = lista_lineas_out.begin(); - while ( i != lista_lineas_out.end() ){ - if ( (*i).logic->get_id() == _id ) { - lista_lineas_out.erase(i); - i = lista_lineas_out.begin(); - } - i++; + std::list::iterator j = lista_lineas_out.begin(); + while ( j != lista_lineas_out.end() ){ + if ( get_item((*j).store_id) != NULL ) + if ( get_item((*j).store_id)->get_id() == _id ) { + lista_lineas_out.erase(j); + j = lista_lineas_out.begin(); + } + j++; } + j = lista_lineas_out.begin(); + while ( j != lista_lineas_out.end() ){ + if ( get_logic_item((*j).logic_id) != NULL ) + if ( get_logic_item((*j).logic_id)->get_id() == _id ) { + lista_lineas_out.erase(j); + j = lista_lineas_out.begin(); + } + j++; + } } void WorkPlace::update_logic_position()