]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/src/drain.cpp
Se ponen flags del compilador para libxml2 con pkg-config.
[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         
46         if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
47                 image = null; 
48                 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);
49                 imgActual++;
50                 switch (imgActual) {
51                         case 1:
52                                 image = imageE;
53                                 break;
54                         case 2:
55                                 image = imageS;
56                                 break;
57                         case 3: 
58                                 image = imageO;
59                                 break;
60                         default: 
61                                 imgActual = 0;
62                                 image = imageN;                 
63                 }
64                 set_size_request(image->get_width(),image->get_height());
65                 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);
66         }
67         
68         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
69                 menu_popup.popup(event->button, event->time);
70                  return true; //It has been handled.
71         }
72         
73         if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
74                 property_wnd->txt_item_name->set_text( name );
75                 property_wnd->show();
76         }               
77         return true;
78 }
79
80 void Drain::on_menu_popup_rotar()
81 {
82         GdkEventButton event; 
83                 event.type = GDK_BUTTON_PRESS;
84                 event.button = 2;
85         Drain::on_button_press_event(&event);
86 }
87
88 void Drain::on_menu_popup_propiedades()
89 {
90         GdkEventButton event; 
91                 event.type = GDK_2BUTTON_PRESS;
92                 event.button = 1;
93         Drain::on_button_press_event(&event);
94 }
95
96 void Drain::save(FILE *archivo)
97 {
98         char c_id[50], c_x[50], c_y[50], c_img[50];
99         Glib::ustring con0;
100         con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
101         sprintf(c_x,"\t\t<x>%d</x>\n",x);
102         sprintf(c_y,"\t\t<y>%d</y>\n",y);
103         sprintf(c_id,"%d",ID);
104         sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
105         Glib::ustring dato;
106         dato = "\t<drenaje nombre=\""+name+"\" id=\"";
107         dato += c_id;
108         dato += "\">\n";
109         dato += "\t\t<conector>\n"+con0+"\t\t</conector>\n";
110         dato += c_img;
111         dato += c_x; 
112         dato += c_y;
113         dato += "\t</drenaje>\n";
114         fprintf(archivo,dato.c_str());  
115 }
116
117 bool Drain::check_connection()
118 {
119         CItem *_item0;
120         ConnectorType temp;
121         switch (get_img_actual()) {
122                 case 0:
123                         temp = is_other_connection_area( get_position_x()+16 , get_position_y() -5,& _item0);
124                         break;  
125                 case 1:
126                         temp = is_other_connection_area( get_position_x()+image->get_width() + 5, get_position_y()+16,& _item0);
127                         break;
128                 case 2:
129                         temp = is_other_connection_area( get_position_x()+16, get_position_y()+image->get_height()+5, &_item0);
130                         break;
131                 case 3:         
132                         temp = is_other_connection_area( get_position_x()-5, get_position_y()+16,& _item0);
133         }
134         if ( is_connected = (temp == OUT) ) {
135                 connect_vec[0].id_dest = _item0->get_id();
136                 return is_connected;
137         }
138         std::cout<<"conector dest ="<<temp<<std::endl;
139         return is_connected;
140 }
141
142 ConnectorType Drain::get_connector_type(int _a, int _b)
143 {
144         switch (imgActual) {
145                 case 0: 
146                         if ( (_a <= x+22)&&(_a>=x+10)&&(_b<=y+10)&&(_b > y) ) 
147                                 return connect_vec[0].type;
148                         break;
149                 case 1: 
150                         if ( (_a <= x+image->get_width() -1)&&(_a>=x+image->get_width()-10)&&(_b<=y+22)&&(_b >= y+10) )
151                                 return connect_vec[0].type;
152                         break;
153                 case 2:
154                         if ( (_a <= x +22)&&(_a >= x+10)&&(_b<=y+image->get_height() -1)&&(_b >=y+image->get_height()-10) ) 
155                                 return connect_vec[0].type;
156                         break;
157                 case 3:
158                         if ( (_a <= x+10)&&(_a >x)&&(_b<=y+22)&&(_b >=y+10) ) 
159                                 return connect_vec[0].type;
160         }
161         return UNDEF;   
162 }
163
164 void Drain::set_default_connector()
165 {
166         connect_vec[0].type = IN;
167 }