X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/8e0b92d947f09e5e4c00f49218aa1ba9ebc4dcb3..fb8d2fb83534b0ca76f81e6d107e38d002642a46:/Constructor/src/workplace.cpp diff --git a/Constructor/src/workplace.cpp b/Constructor/src/workplace.cpp index fd9b898..37b0aa4 100644 --- a/Constructor/src/workplace.cpp +++ b/Constructor/src/workplace.cpp @@ -1,44 +1,96 @@ #include "workplace.h" #include "item.h" +#include "pump.h" +#include "exclusa.h" int WorkPlace::pointed = -1; -WorkPlace::WorkPlace( BaseObjectType* cobject, const Glib::RefPtr &refGlade):Gtk::Fixed(cobject) +WorkPlace::WorkPlace(BaseObjectType* cobject, const Glib::RefPtr &refGlade):Gtk::Fixed(cobject) { + gc = Gdk::GC::create(get_window()); + std::cout << "Aca" << std::endl; + Glib::RefPtr colormap = gc->get_colormap(); + color_in = Gdk::Color("red"); + color_out = Gdk::Color("blue"); + color_dot = Gdk::Color("black"); + colormap->alloc_color(color_in); + colormap->alloc_color(color_out); + colormap->alloc_color(color_dot); } WorkPlace::~WorkPlace() { } +void WorkPlace::on_realize() +{ + Gtk::Fixed::on_realize(); + gc = Gdk::GC::create(get_window()); + std::cout << "Aca" << std::endl; + Glib::RefPtr colormap = gc->get_colormap(); + color_in = Gdk::Color("red"); + color_out = Gdk::Color("blue"); + colormap->alloc_color(color_in); + colormap->alloc_color(color_out); +} + bool WorkPlace::on_expose_event(GdkEventExpose *event) { int x, y; + gc->set_foreground(color_dot); for(x=0; xdraw_point (get_style()->get_black_gc(), x,y); - get_window()->draw_point (get_style()->get_black_gc(), x,y+1); - get_window()->draw_point (get_style()->get_black_gc(), x,y-1); - get_window()->draw_point (get_style()->get_black_gc(), x+1,y); - get_window()->draw_point (get_style()->get_black_gc(), x-1,y); + get_window()->draw_point (gc, x,y); + get_window()->draw_point (gc, x,y+1); + get_window()->draw_point (gc, x,y-1); + get_window()->draw_point (gc, x+1,y); + get_window()->draw_point (gc, x-1,y); } if ( *logica ) { std::list::iterator j = listaItems->begin(); while ( j != listaItems->end() ) { - (*j)->draw_connectors(); + (*j)->update_logic_position(); j++; } } - int a, b, w, z; + int a, b, w, z, x_offset, y_offset, img; + int item_x_offset, item_y_offset; std::list::iterator i = lista_lineas_in.begin(); while ( i != lista_lineas_in.end() ) { t_line temp = *i; 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); + img = get_logic_item(temp.logic_id)->get_img_actual(); + item_y_offset = item_x_offset = 0; + x_offset = y_offset = 0; + if (dynamic_cast(get_item(temp.store_id))) { + item_y_offset = -15; + } else if (dynamic_cast(get_item(temp.store_id))) { + if (get_item(temp.store_id)->get_img_actual()==0) { + item_y_offset = -15; + } else { + item_x_offset = 15; + } + } + switch (img) { + case 0: + x_offset = 15; + break; + case 1: + y_offset = 15; + break; + case 2: + x_offset = -15; + break; + case 3: + y_offset = -15; + } get_logic_item(temp.logic_id)->get_out_logic_connect_position(a, b); - draw_line(a, b, w,z); + get_item(temp.store_id)->get_in_logic_connect_position(w,z); + draw_line(a+x_offset, b+y_offset, w+item_x_offset, z+item_y_offset, color_in); + get_window()->draw_line(gc, a, b, a+x_offset, b+y_offset); + get_window()->draw_line(gc, w, z, w+item_x_offset, z+item_y_offset); } i++; } @@ -46,9 +98,26 @@ bool WorkPlace::on_expose_event(GdkEventExpose *event) while ( i != lista_lineas_out.end() ) { t_line temp = *i; if ( get_item(temp.store_id) != NULL && get_logic_item(temp.logic_id) != NULL ) { + img = get_logic_item(temp.logic_id)->get_img_actual(); + item_y_offset = item_x_offset = 0; + x_offset = y_offset = 0; + switch (img) { + case 0: + x_offset = -15; + break; + case 1: + y_offset = -15; + break; + case 2: + x_offset = 15; + break; + case 3: + y_offset = 15; + } 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); - draw_line(w, z, a, b); + draw_line(w+item_y_offset, z+item_y_offset, a+x_offset, b+y_offset,color_out); + get_window()->draw_line(gc, a, b, a+x_offset, b+y_offset); } i++; } @@ -162,9 +231,11 @@ void WorkPlace::update_logic_position() } } -void WorkPlace::draw_line(int x1, int y1, int x2, int y2) +void WorkPlace::draw_line(int x1, int y1, int x2, int y2, Gdk::Color &color) { - get_window()->draw_line (get_style()->get_black_gc(), x1, y1, x1, y2); - get_window()->draw_line (get_style()->get_black_gc(), x1, y2, x2, y2); + gc->set_foreground(color); + gc->set_line_attributes(3, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER); + get_window()->draw_line (gc, x1, y1, x1, y2); + get_window()->draw_line (gc, x1, y2, x2, y2); }