- temp.store->get_in_logic_connect_position(w,z);
- get_window()->draw_line (get_style()->get_black_gc(), temp.logic->get_position_x(),temp.logic->get_position_y(), w,z);
+ 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;
+ if (dynamic_cast<Pump *>(get_item(temp.store_id))) {
+ item_y_offset = -15;
+ } else if (dynamic_cast<Exclusa *>(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);
+ 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);
+ }