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