]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/src/drain.cpp
Se agrega como crear un cuadradito de color para indicar donde esta la entrada y...
[z.facultad/75.42/plaqui.git] / Constructor / src / drain.cpp
1 #include "drain.h"
2
3 Drain::Drain(int orientacion)
4 {
5         imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_e.png");
6         imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_o.png");
7         imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_n.png");
8         imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_s.png");
9         null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
10         imgActual = orientacion;
11         switch (imgActual) {
12                 case 1:
13                         image = imageE;
14                         break;
15                 case 2:
16                         image = imageS;
17                         break;
18                 case 3: 
19                         image = imageO;
20                         break;
21                 default: 
22                         imgActual = 0;
23                         image = imageN;                 
24         }
25         set_size_request(image->get_width(), image->get_height());
26         property_wnd->item = this;
27         property_wnd->lb_max_fluid->property_visible() = false;
28         property_wnd->spin_caudal->property_visible() = false;
29         property_wnd->set_title("Propiedades del Drenaje");     
30         name = "drenaje";
31         Connector temp;
32         temp.id_dest = -1;
33         temp.type = IN;
34         connect_vec.push_back(temp);
35 }
36
37 Drain::~Drain()
38 {
39 }
40
41 bool Drain::on_button_press_event(GdkEventButton *event)
42 {
43         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
44                 combo_entry->set_text(name);
45                 WorkPlace::pointed = ID;
46         }
47         
48         if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
49                 image = null; 
50                 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);
51                 imgActual++;
52                 switch (imgActual) {
53                         case 1:
54                                 image = imageE;
55                                 break;
56                         case 2:
57                                 image = imageS;
58                                 break;
59                         case 3: 
60                                 image = imageO;
61                                 break;
62                         default: 
63                                 imgActual = 0;
64                                 image = imageN;                 
65                 }
66                 set_size_request(image->get_width(),image->get_height());
67                 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);
68         }
69         
70         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
71                 menu_popup.popup(event->button, event->time);
72                  return true; //It has been handled.
73         }
74         
75         if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
76                 property_wnd->txt_item_name->set_text( name );
77                 property_wnd->show();
78         }               
79         return true;
80 }
81
82 void Drain::on_menu_popup_rotar()
83 {
84         GdkEventButton event; 
85                 event.type = GDK_BUTTON_PRESS;
86                 event.button = 2;
87         Drain::on_button_press_event(&event);
88 }
89
90 void Drain::on_menu_popup_propiedades()
91 {
92         GdkEventButton event; 
93                 event.type = GDK_2BUTTON_PRESS;
94                 event.button = 1;
95         Drain::on_button_press_event(&event);
96 }
97
98 void Drain::save(FILE *archivo)
99 {
100         char c_id[50], c_x[50], c_y[50], c_img[50];
101         Glib::ustring con0;
102         con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
103         sprintf(c_x,"\t\t<x>%d</x>\n",x);
104         sprintf(c_y,"\t\t<y>%d</y>\n",y);
105         sprintf(c_id,"%d",ID);
106         sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
107         Glib::ustring dato;
108         dato = "\t<drenaje nombre=\""+name+"\" id=\"";
109         dato += c_id;
110         dato += "\">\n";
111         dato += "\t\t<conector>\n"+con0+"\t\t</conector>\n";
112         dato += c_img;
113         dato += c_x; 
114         dato += c_y;
115         dato += "\t</drenaje>\n";
116         fprintf(archivo,dato.c_str());  
117 }
118
119 bool Drain::check_connection()
120 {
121         CItem *_item0;
122         ConnectorType temp;
123         switch (get_img_actual()) {
124                 case 0:
125                         temp = is_other_connection_area( get_position_x()+16 , get_position_y() -5,& _item0);
126                         break;  
127                 case 1:
128                         temp = is_other_connection_area( get_position_x()+image->get_width() + 5, get_position_y()+16,& _item0);
129                         break;
130                 case 2:
131                         temp = is_other_connection_area( get_position_x()+16, get_position_y()+image->get_height()+5, &_item0);
132                         break;
133                 case 3:         
134                         temp = is_other_connection_area( get_position_x()-5, get_position_y()+16,& _item0);
135         }
136         if ( is_connected = (temp == OUT) ) {
137                 connect_vec[0].id_dest = _item0->get_id();
138                 return is_connected;
139         }
140         std::cout<<"conector dest ="<<temp<<std::endl;
141         return is_connected;
142 }
143
144 ConnectorType Drain::get_connector_type(int _a, int _b)
145 {
146         switch (imgActual) {
147                 case 0: 
148                         if ( (_a <= x+22)&&(_a>=x+10)&&(_b<=y+10)&&(_b > y) ) 
149                                 return connect_vec[0].type;
150                         break;
151                 case 1: 
152                         if ( (_a <= x+image->get_width() -1)&&(_a>=x+image->get_width()-10)&&(_b<=y+22)&&(_b >= y+10) )
153                                 return connect_vec[0].type;
154                         break;
155                 case 2:
156                         if ( (_a <= x +22)&&(_a >= x+10)&&(_b<=y+image->get_height() -1)&&(_b >=y+image->get_height()-10) ) 
157                                 return connect_vec[0].type;
158                         break;
159                 case 3:
160                         if ( (_a <= x+10)&&(_a >x)&&(_b<=y+22)&&(_b >=y+10) ) 
161                                 return connect_vec[0].type;
162         }
163         return UNDEF;   
164 }
165
166 void Drain::set_default_connector()
167 {
168         connect_vec[0].type = IN;
169 }