]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/union.cpp
El Transmitter ya anda bien (se puede escuchar con un nc -p [puerto] -l -u :).
[z.facultad/75.42/plaqui.git] / Constructor / union.cpp
1 #include "union.h"
2
3 Union::Union()
4 {
5         imageN = Gdk::Pixbuf::create_from_file("y_n.png");
6         imageS = Gdk::Pixbuf::create_from_file("y_s.png");
7         imageE = Gdk::Pixbuf::create_from_file("y_e.png");
8         imageO = Gdk::Pixbuf::create_from_file("y_o.png");
9         null = Gdk::Pixbuf::create_from_file("null.png");
10         imgActual = 0;
11         image = imageN;
12         set_size_request(image->get_width(), image->get_height());
13         property_wnd->set_title("Propiedades del Empalme");
14         property_wnd->rd_btn_division->property_visible() = true;
15         property_wnd->rd_btn_union->property_visible() = true;
16         property_wnd->lb_type->property_visible() = true;
17         name = "union";
18         Connector temp;
19         temp.id_dest = -1;
20         temp.type = IN;
21         connect_vec.push_back(temp); //izquierda
22         connect_vec.push_back(temp); //derecha
23         temp.type = OUT;
24         connect_vec.push_back(temp); //medio
25 }
26
27 Union::~Union()
28 {
29 }
30
31 bool Union::on_button_press_event(GdkEventButton *event)
32 {
33         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1))
34                 combo_entry->set_text(name);
35         
36         if ((event->type == GDK_BUTTON_PRESS) && (event->button == 2 )){
37                 image = null;   
38                 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);
39                 imgActual++;
40                 switch (imgActual) {
41                         case 1:
42                                 image = imageE;
43                                 break;
44                         case 2:
45                                 image = imageS;
46                                 break;
47                         case 3:
48                                 image = imageO;
49                                 break;
50                         default: 
51                                 imgActual = 0;
52                                 image = imageN;                 
53                 }
54                 set_size_request(image->get_width(), image->get_height());              
55                 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);
56         }
57         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
58                 menu_popup.popup(event->button, event->time);
59                  return true; //It has been handled.
60         }
61         
62         if ((event->type == GDK_2BUTTON_PRESS) && ( event->button == 1)){
63                 property_wnd->spin_caudal->set_value( caudal_max );
64                 property_wnd->txt_item_name->set_text( name );
65                 if (is_union) property_wnd->rd_btn_union->set_active(true);
66                 property_wnd->show();
67         }
68         return true;
69 }
70
71 void Union::on_menu_popup_rotar()
72 {
73         GdkEventButton event; 
74         event.type = GDK_BUTTON_PRESS;
75         event.button = 2;
76         Union::on_button_press_event(&event);
77 }
78
79 void Union::on_menu_popup_propiedades()
80 {
81         GdkEventButton event; 
82         event.type = GDK_2BUTTON_PRESS;
83         event.button = 1;
84         Union::on_button_press_event(&event);
85 }
86
87 void Union::save(FILE *archivo)
88 {
89         char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
90         Glib::ustring  con0, con1, con2, c_type;
91         if (is_union){
92                 con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
93                 con1 = "\t\t\t<entrada>"+get_other_name(connect_vec[1].id_dest)+"</entrada>\n";
94                 con2 = "\t\t\t<salida>"+get_other_name(connect_vec[2].id_dest)+"</salida>\n";
95                 c_type = "\t\t<tipo>union</tipo>\n";
96         } else {
97                 con0 = "\t\t\t<salida>"+get_other_name(connect_vec[0].id_dest)+"</salida>\n";
98                 con1 = "\t\t\t<salida>"+get_other_name(connect_vec[1].id_dest)+"</salida>\n";
99                 con2 = "\t\t\t<entrada>"+get_other_name(connect_vec[2].id_dest)+"</entrada>\n";         
100                 c_type = "\t\t<tipo>division</tipo>\n";
101         }
102         sprintf(c_x,"\t\t<x>%d</x>\n",x);
103         sprintf(c_y,"\t\t<y>%d</y>\n",y);
104         sprintf(c_id,"%d",ID);
105         sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
106         sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
107         Glib::ustring dato;
108         dato = "\t<empalme nombre=\""+name+"\" id=\"";
109         dato += c_id;
110         dato += "\">\n";
111         dato += c_type;
112         dato += "\t\t<conector>\n"+con0+con1+con2+"\t\t</conector>\n";
113         dato += c_caudal;
114         dato += c_img;
115         dato += c_x; 
116         dato += c_y;
117         dato += "\t</empalme>\n";
118         fprintf(archivo,dato.c_str());  
119 }
120
121 bool Union::check_connection()
122 {
123         CItem * _item0, *_item1, *_item2;
124         ConnectorType temp0, temp1, temp2;
125         switch (get_img_actual()) {
126                         case 0:
127                                 temp0 = is_other_connection_area( get_position_x() - 5, get_position_y() +16, &_item0);
128                                 temp1 = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item1);
129                                 temp2 = is_other_connection_area( get_position_x()+get_image()->get_width()/2, get_position_y()+get_image()->get_height()+5, &_item2);
130                                 break;
131                         case 1:
132                                 temp2 = is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()/2, &_item2);
133                                 temp0 = is_other_connection_area( get_position_x()+get_image()->get_width()-16, get_position_y()-5, &_item0);
134                                 temp1 = is_other_connection_area( get_position_x()+get_image()->get_width()-16, get_position_y()+get_image()->get_height()+5,& _item1);
135                                 break;
136                         case 2:
137                                 temp1 = is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16,& _item1);
138                                 temp2 = is_other_connection_area( get_position_x()+get_image()->get_width()/2, get_position_y()-5, &_item2);
139                                 temp0 = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()-16, &_item0);
140                                 break;
141                         case 3:
142                                 temp1 = is_other_connection_area( get_position_x()+16, get_position_y()-5, &_item1);
143                                 temp2 = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()/2,& _item0);
144                                 temp0 = is_other_connection_area( get_position_x()+16, get_position_y()+get_image()->get_height()+5, &_item1);
145         }
146         if ( is_union ) {
147                 if ( temp0 == OUT && temp1 == OUT && temp2 == IN ) {
148                         connect_vec[0].id_dest = _item0->get_id();
149                         connect_vec[1].id_dest = _item1->get_id();
150                         connect_vec[2].id_dest = _item2->get_id();
151                         return (is_connected = true);
152                 }
153         } else {
154                 if ( temp0 == IN && temp1 == IN && temp2 == OUT ) {
155                         connect_vec[0].id_dest = _item0->get_id();
156                         connect_vec[1].id_dest = _item1->get_id();
157                         connect_vec[2].id_dest = _item2->get_id();
158                         return (is_connected = true);
159                 }
160         }
161         return is_connected;
162 }
163
164 ConnectorType Union::get_connector_type(int _a, int _b)
165 {
166         switch ( imgActual) {
167                 case 0: if ((_a <= x+10) && (_a > x+1) && (_b<= y + 22) && (_b >= y+10))
168                                                 return connect_vec[0].type;
169                                         if ((_a <= x+image->get_width()-1) && (_a >= x+image->get_width()-10)&&(_b <= y+22) && (_b >= y+10))
170                                                 return connect_vec[1].type;
171                                         if ((_a <= x+image->get_width()/2 + 5)&&( _a>= x+image->get_width()/2 - 5) && (_b<=y+image->get_height()-1)&&(_b >= y+image->get_height()-10)) 
172                                                 return connect_vec[2].type;
173                                         break;
174                 case 1: if ((_a <= x+image->get_width()-10) && (_a >= x+image->get_width() -22) && (_b<= y + 10) && (_b > y ))
175                                                 return connect_vec[0].type;
176                                         if ((_a <= x +10) && (_a > x )&&(_b <= y+image->get_height()/2+5 ) && (_b >= y+image->get_height()/2-5))
177                                                 return connect_vec[2].type;
178                                         if ((_a <= x+image->get_width() - 10)&&( _a>= x+image->get_width()-22) && (_b<=y+image->get_height()-1)&&(_b >= y+image->get_height()-10))
179                                                 return connect_vec[1].type;
180                                         break;
181                 case 2: if ((_a <= x+10) && (_a > x) && (_b<= y+image->get_height()-10) && (_b >= y+image->get_height()-22))
182                                                 return connect_vec[1].type;
183                                         if ((_a <= x+image->get_width()-1) && (_a >= x+image->get_width()-10)&&(_b <= y+image->get_height()-10) && (_b >= y+image->get_height()-22))
184                                                 return connect_vec[0].type;
185                                         if ((_a <= x+image->get_width()/2 + 5)&&( _a>= x+image->get_width()/2 - 5) && (_b<=y+10)&&(_b > y))
186                                                 return connect_vec[2].type;
187                                         break;
188                 case 3: if ((_a <= x+22) && (_a >= x+10) && (_b<= y + 10) && (_b > y ))
189                                                 return connect_vec[1].type;
190                                         if ((_a <= x+22) && (_a >= x+10 )&&(_b <= y+image->get_height()-1 ) && (_b >= y+image->get_height()-10))
191                                                 return connect_vec[0].type;
192                                         if ((_a <= x+image->get_width() -1)&&( _a>= x+image->get_width()-10) && (_b<=y+image->get_height()/2+5)&&(_b >= y+image->get_height()/2-5))
193                                                 return connect_vec[2].type;
194         }
195         return UNDEF;
196 }
197
198 void Union::set_default_connector()
199 {
200         if (is_union) {
201                 connect_vec[0].type = IN;
202                 connect_vec[1].type = IN;
203                 connect_vec[2].type = OUT;
204         } else {
205                 connect_vec[0].type = OUT;
206                 connect_vec[1].type = OUT;
207                 connect_vec[2].type = IN;
208         }
209 }