]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/src/conduct.cpp
Se agrega una pequeña mejora al dibujo de las lineas. Tengo pensado mejorarlas
[z.facultad/75.42/plaqui.git] / Constructor / src / conduct.cpp
1 #include "conduct.h"
2
3 Conduct::Conduct(int orientacion)
4 {
5         in_x = -1;
6         imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_n.png");
7         imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_s.png");
8         null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
9         imgActual = orientacion;
10         switch (imgActual) {
11                 case 1:
12                         image = imageS;
13                         break;
14                 default: 
15                         imgActual = 0;
16                         image = imageN;                 
17         }
18         set_size_request(image->get_width(), image->get_height());
19         property_wnd->set_title("Propiedades del Tubo");
20         name="tubo";
21         Connector temp;
22         temp.id_dest = -1;
23         temp.type = UNDEF;
24         connect_vec.push_back(temp);
25         connect_vec.push_back(temp);
26 }
27
28 Conduct::~Conduct()
29 {
30 }
31
32 bool Conduct::on_button_press_event(GdkEventButton *event)
33 {
34         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
35                 combo_entry->set_text(name);
36                 WorkPlace::pointed = ID;
37         }
38         
39         if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
40                 image = null; 
41                 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
42                 imgActual++;
43                 switch (imgActual) {
44                         case 1:
45                                 image = imageS;
46                                 break;
47                         default: 
48                                 imgActual = 0;
49                                 image = imageN;                 
50                 }
51                 set_size_request(image->get_width(), image->get_height());              
52                 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
53         }
54         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
55                 menu_popup.popup(event->button, event->time);
56                  return true; //It has been handled.
57         }
58         
59         if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
60                 property_wnd->spin_caudal->set_value( caudal_max );
61                 property_wnd->txt_item_name->set_text (name);
62                 property_wnd->show();
63         }
64         return true;
65 }
66
67 void Conduct::on_menu_popup_rotar()
68 {
69         GdkEventButton event; 
70                 event.type = GDK_BUTTON_PRESS;
71                 event.button = 2;
72         Conduct::on_button_press_event(&event);
73 }
74
75 void Conduct::on_menu_popup_propiedades()
76 {
77         GdkEventButton event;
78         event.type = GDK_2BUTTON_PRESS;
79         event.button = 1;
80         Conduct::on_button_press_event(&event);
81 }
82
83 void Conduct::save(FILE *archivo)
84 {
85         char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
86         Glib::ustring  con0, con1;
87         if (connect_vec[0].type == IN)
88                 con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
89         else
90                 con0 = "\t\t\t<salida>"+get_other_name(connect_vec[0].id_dest)+"</salida>\n";
91         if (connect_vec[1].type == IN) 
92                 con1 = "\t\t\t<entrada>"+get_other_name(connect_vec[1].id_dest)+"</entrada>\n";
93         else
94                 con1 = "\t\t\t<salida>"+get_other_name(connect_vec[1].id_dest)+"</salida>\n";
95         sprintf(c_x,"\t\t<x>%d</x>\n",x);
96         sprintf(c_y,"\t\t<y>%d</y>\n",y);
97         sprintf(c_id,"%d",ID);
98         sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
99         sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
100         Glib::ustring dato;
101         dato = "\t<tubo nombre=\""+name+"\" id=\"";
102         dato += c_id;
103         dato += "\">\n";
104         dato += c_caudal;
105         dato += "\t\t<conector>\n"+con0 + con1+"\t\t</conector>\n";     
106         dato += c_img;
107         dato += c_x; 
108         dato += c_y;
109         dato += "\t</tubo>\n";
110         fprintf(archivo,dato.c_str());  
111 }
112
113 bool Conduct::check_connection()
114 {
115         ConnectorType aux;
116         CItem *_item0, *_item1;
117         switch (get_img_actual()) {
118                         case 0:
119                                 connect_vec[0].type = is_other_connection_area( get_position_x()+16, get_position_y()-5, &_item0);
120                                 connect_vec[1].type = is_other_connection_area( get_position_x()+16, get_position_y()+get_image()->get_height() +5,& _item1);
121                         break;          
122                         case 1:
123                                 connect_vec[0].type = is_other_connection_area( get_position_x()-5, get_position_y()+16, &_item0);
124                                 connect_vec[1].type = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item1);
125         }
126         if ( connect_vec[0].type != UNDEF && connect_vec[1].type != UNDEF ) {
127                 aux = connect_vec[0].type; 
128                 connect_vec[0].type = connect_vec[1].type;
129                 connect_vec[1].type = aux;
130                 connect_vec[0].id_dest = _item0->get_id();
131                 connect_vec[1].id_dest = _item1->get_id();
132                 return ( is_connected = (connect_vec[0].type != connect_vec[1].type) );
133         }
134         else return is_connected;
135 }
136
137 /*si no estoy conectado pregunto por el del otro lado, y ahi puedo setear los dos
138  *si ya estoy devuelvo.
139 */
140 ConnectorType Conduct::get_connector_type(int _a, int _b)
141
142         CItem *_item;
143         if ( ! is_connected ) {
144                 switch (imgActual) {
145                         case 0:
146                                 if ( (_a <= x+image->get_width()-10 )&&(_a >= x + 10) && (_b <= y+10) &&(_b > 0 ) )  //arriba
147                                         return is_other_connection_area(get_position_x()+16, get_position_y()+get_image()->get_height() +5, &_item); //pregunto que hay abajo
148                                 if ((_a <= x+22 )&&(_a >= x + 10) && (_b <= y+image->get_height()-1) &&(_b >= y+image->get_height()-10 ))//abajo
149                                         return is_other_connection_area( get_position_x()+16, get_position_y()-5,& _item);//pregunto que hay arriba.
150                                 break;
151                         case 1: 
152                                 if ((_a <= x+10 )&&(_a > 0) && (_b <= y+image->get_height()-10) &&(_b >= y+10 )) //izquierda
153                                         return is_other_connection_area(get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item);//pregunto por la derecha
154                                 if ((_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <= y+image->get_height()-10) &&(_b >= y +10 )) //derecha
155                                         return is_other_connection_area(get_position_x()-5, get_position_y()+16, &_item); //pregunto por la izquierda.
156                 }
157         } else {
158                 switch (imgActual) {
159                         case 0: 
160                                 if ( (_a <= x+image->get_width()-10 )&&(_a >= x + 10) && (_b <= y+10) &&(_b > 0 ) ) //arriba
161                                         return connect_vec[0].type;
162                                 if ((_a <= x+22 )&&(_a >= x + 10) && (_b <= y+image->get_height()-1) &&(_b >= y+image->get_height()-10 )) //abajo
163                                         return connect_vec[1].type;
164                                 break;
165                         case 1:
166                                 if ((_a <= x+10 )&&(_a > 0) && (_b <= y+image->get_height()-10) &&(_b >= y+10 )) //izquierda
167                                         return connect_vec[0].type;
168                                 if ((_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <= y+image->get_height()-10) &&(_b >= y +10 )) //derecha
169                                         return connect_vec[1].type;
170                 }
171         }
172         return UNDEF;
173 }
174
175
176 void Conduct::set_default_connector()
177 {
178         connect_vec[0].type = UNDEF;
179         connect_vec[1].type = UNDEF;
180 }