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