]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/cistern.cpp
* Se agrega un Tanque al ejemplo, y ANDA!!!!
[z.facultad/75.42/plaqui.git] / Constructor / cistern.cpp
1 #include "cistern.h"
2 #include "cisternptywnd.h"
3
4 Cistern::Cistern()
5 {
6         imageE = Gdk::Pixbuf::create_from_file("tanque_e.png");
7         imageO = Gdk::Pixbuf::create_from_file("tanque_o.png");
8         null = Gdk::Pixbuf::create_from_file("tanque_null.png");
9         imgActual = 0;
10         image = imageE;
11         set_size_request(image->get_width(), image->get_height());
12
13         Glib::RefPtr<Gnome::Glade::Xml> ref = Gnome::Glade::Xml::create("constructor.glade", "cistern_pty_wnd");
14         ref->get_widget_derived("cistern_pty_wnd",cistern_pty_wnd);
15         cistern_pty_wnd->cistern = this;
16         cistern_pty_wnd->set_title("Propiedades del Tanque");   
17         name = "tanque";
18 }
19
20 Cistern::~Cistern()
21 {
22 }
23
24 bool Cistern::on_button_press_event(GdkEventButton *event)
25 {
26         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1))
27                 combo_entry->set_text(name);
28         
29         if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
30                 image = null; 
31                 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);
32                 imgActual++;
33                 switch (imgActual) {
34                         case 1:
35                                 image = imageO;
36                                 break;
37                         default: 
38                                 imgActual = 0;
39                                 image = imageE;                 
40                 }
41                 set_size_request(image->get_width(),image->get_height());
42                 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);
43         }
44         
45         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
46                 menu_popup.popup(event->button, event->time);
47                  return true; //It has been handled.
48         }
49         
50         if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
51                 cistern_pty_wnd->spin_capacidad->set_value( capacidad );
52                 cistern_pty_wnd->spin_inicial->set_value( contenido_inicial );
53                 cistern_pty_wnd->txt_cistern_name->set_text( name );
54                 cistern_pty_wnd->show();
55         }               
56         return true;
57 }
58
59 void Cistern::on_menu_popup_rotar()
60 {
61         GdkEventButton event; 
62                 event.type = GDK_BUTTON_PRESS;
63                 event.button = 2;
64         Cistern::on_button_press_event(&event);
65 }
66
67 void Cistern::on_menu_popup_propiedades()
68 {
69         GdkEventButton event; 
70                 event.type = GDK_2BUTTON_PRESS;
71                 event.button = 1;
72         Cistern::on_button_press_event(&event);
73 }
74
75 void Cistern::set_capacidad(double _cap)
76 {
77         capacidad = _cap;
78 }
79
80 double Cistern::get_capacidad()
81 {
82         return capacidad;
83 }
84
85 void Cistern::set_contenido_inicial(double _ini)
86 {
87         contenido_inicial = _ini;
88 }
89
90 double Cistern::get_contenido_inicial()
91 {
92         return contenido_inicial;
93 }
94
95 void Cistern::save(FILE *archivo)
96 {
97         char c_id[50], c_cap[50], c_x[50], c_y[50], c_img[50], c_ini[50];
98         sprintf(c_x,"\t\t<x>%d</x>\n",x);
99         sprintf(c_y,"\t\t<y>%d</y>\n",y);
100         sprintf(c_id,"%d",ID);
101         sprintf(c_cap,"\t\t<capacidad>%.2f</capacidad>\n", capacidad);
102         sprintf(c_ini,"\t\t<inicial>%.2f</inicial>\n", contenido_inicial);
103         sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
104         Glib::ustring dato;
105         dato = "\t<tanque nombre=\""+name+"\" id=\"";
106         dato += c_id;
107         dato += "\">\n";
108         dato += c_cap;
109         dato += c_ini;
110         dato += c_img;
111         dato += c_x; 
112         dato += c_y;
113         dato += "\t</tanque>\n";
114         fprintf(archivo,dato.c_str());  
115 }
116
117 bool Cistern::check_connection()
118 {
119         switch (get_img_actual()) {
120                 case 0:
121                         if ( is_other_connection_area( get_position_x()+get_image()->get_width() + 5 , get_position_y()+get_image()->get_height() -16) &&
122                                  is_other_connection_area( get_position_x() + 16, get_position_y() - 5) ) 
123                                 return true;                            
124                 case 1:
125                         if ( is_other_connection_area( get_position_x() -5, get_position_y()+get_image()->get_height()-16) &&
126                                  is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() - 5) )
127                                 return true;
128         }
129         return false;
130 }
131
132 bool Cistern::is_connection_area(int _a, int _b)
133 {
134         switch (imgActual) {
135                 case 0: if ( ( (_a <= x+22)&&(_a>=x+10)&&(_b<=y+10)&&(_b > y) ) ||
136                                                  ( (_a <= x+image->get_width()-1)&&(_a >=x+image->get_width()-10)&&(_b<=y+image->get_height()-10)&&(_b >=y+image->get_height()-22) ) )
137                                                 return true;
138                 case 1: if ( ( (_a <= x+image->get_width()-10)&&(_a>=x+image->get_width()-22)&&(_b<=y+10)&&(_b > y) ) ||
139                                                  ( (_a <= x +10)&&(_a > x)&&(_b<=y+image->get_height()-10)&&(_b >=y+image->get_height()-22) ) )
140                                                 return true;
141         }
142         return false;
143 }