2 #include "cisternptywnd.h"
4 Cistern::Cistern(int orientacion)
10 imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/tanque_e.png");
11 imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/tanque_o.png");
12 null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/tanque_null.png");
13 imgActual = orientacion;
22 set_size_request(image->get_width(), image->get_height());
24 Glib::RefPtr<Gnome::Glade::Xml> ref = Gnome::Glade::Xml::create(PACKAGE_DATA_DIR"/plaqui-constructor/dialogs/constructor.glade", "cistern_pty_wnd");
25 ref->get_widget_derived("cistern_pty_wnd",cistern_pty_wnd);
26 cistern_pty_wnd->cistern = this;
27 cistern_pty_wnd->set_title("Propiedades del Tanque");
33 connect_vec.push_back(temp); // entrada arriba
35 connect_vec.push_back(temp); // salida abajo
42 bool Cistern::on_button_press_event(GdkEventButton *event)
46 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
47 list_pointed->push_back(name);
48 combo_entry->set_popdown_strings(*list_pointed);
49 combo_entry->get_entry()->set_text (name);
50 WorkPlace::pointed = ID;
51 if (CItem::logic_connect && CItem::gate_id != -1) {
52 if ( detect_click_position((int)event->x, (int)event->y) == IN ){
53 tmp_line.logic_id = workplace->get_logic_item(CItem::gate_id)->get_id();
54 tmp_line.store_id = ID;
55 workplace->lista_lineas_in.push_back(tmp_line);
56 workplace->queue_draw();
57 } else if (detect_click_position((int)event->x, (int)event->y) == OUT) {
58 tmp_line.logic_id = workplace->get_logic_item(CItem::gate_id)->get_id();
59 tmp_line.store_id = ID;
60 workplace->lista_lineas_out.push_back(tmp_line);
61 workplace->queue_draw();
66 if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
68 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);
73 in_x = x + image->get_width()-5;
76 out_y = y + image->get_height();
83 out_x = x + image->get_width() -16;
84 out_y = y + image->get_height();
86 set_size_request(image->get_width(),image->get_height());
87 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);
90 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
91 menu_popup.popup(event->button, event->time);
92 return true; //It has been handled.
95 if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
96 cistern_pty_wnd->spin_capacidad->set_value( capacidad );
97 cistern_pty_wnd->spin_inicial->set_value( contenido_inicial );
98 cistern_pty_wnd->txt_cistern_name->set_text( name );
99 cistern_pty_wnd->show();
101 workplace->queue_draw();
105 void Cistern::on_menu_popup_rotar()
107 GdkEventButton event;
108 event.type = GDK_BUTTON_PRESS;
110 Cistern::on_button_press_event(&event);
113 void Cistern::on_menu_popup_propiedades()
115 GdkEventButton event;
116 event.type = GDK_2BUTTON_PRESS;
118 Cistern::on_button_press_event(&event);
121 void Cistern::set_capacidad(double _cap)
126 void Cistern::set_liquid_color(Gdk::Color _color)
128 liquid_color = _color;
131 void Cistern::set_contenido_inicial(double _ini)
133 contenido_inicial = _ini;
136 double Cistern::get_capacidad()
141 double Cistern::get_contenido_inicial()
143 return contenido_inicial;
146 Gdk::Color Cistern::get_liquid_color()
151 void Cistern::save(FILE *archivo)
153 char c_id[50], c_cap[50], c_x[50], c_y[50], c_img[50], c_ini[50], c_red[50], c_green[50], c_blue[50];
154 Glib::ustring con0, con1;
155 con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
156 con1 = "\t\t\t<salida>"+get_other_name(connect_vec[1].id_dest)+"</salida>\n";
157 sprintf(c_red,"\t\t\t<rojo>%d</rojo>\n",liquid_color.get_red());
158 sprintf(c_green,"\t\t\t<verde>%d</verde>\n",liquid_color.get_green());
159 sprintf(c_blue,"\t\t\t<azul>%d</azul>\n",liquid_color.get_blue());
160 sprintf(c_x,"\t\t<x>%d</x>\n",x);
161 sprintf(c_y,"\t\t<y>%d</y>\n",y);
162 sprintf(c_id,"%d",ID);
163 sprintf(c_cap,"\t\t<capacidad>%.2f</capacidad>\n", capacidad);
164 sprintf(c_ini,"\t\t<inicial>%.2f</inicial>\n", contenido_inicial);
165 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
167 dato = "\t<tanque nombre=\""+name+"\" id=\"";
172 dato += "\t\t<color>\n";
176 dato += "\t\t</color>\n";
177 dato += "\t\t<conector>\n"+con0+con1+"\t\t</conector>\n";
181 dato += "\t</tanque>\n";
182 fprintf(archivo,dato.c_str());
185 bool Cistern::check_connection()
187 CItem * _item, *_item1;
188 ConnectorType temp0, temp1;
189 switch (get_img_actual()) {
191 temp0 = is_other_connection_area( get_position_x() + 16, get_position_y() - 5, &_item);//arriba - entrada
192 temp1 = is_other_connection_area( get_position_x()+get_image()->get_width() + 5 , get_position_y()+get_image()->get_height() -16, &_item1);//abajo - salida
195 temp0 = is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() - 5, &_item);//arriba - entrada
196 temp1 = is_other_connection_area( get_position_x() -5, get_position_y()+get_image()->get_height()-16, &_item1); //abajo - salida
198 if (temp0 == OUT && temp1 == IN) {
199 connect_vec[0].id_dest = _item->get_id();
200 connect_vec[1].id_dest = _item1->get_id();
201 return (is_connected = true);
206 ConnectorType Cistern::get_connector_type(int _a, int _b)
209 case 0: if ( (_a <= x+22)&&(_a>=x+10)&&(_b<=y+10)&&(_b > y) )//arriba
210 return connect_vec[0].type;
211 if ( (_a <= x+image->get_width()-1)&&(_a >=x+image->get_width()-10)&&(_b<=y+image->get_height()-10)&&(_b >=y+image->get_height()-22) )//abajo
212 return connect_vec[1].type;
214 case 1: if ( (_a <= x+image->get_width()-10)&&(_a>=x+image->get_width()-22)&&(_b<=y+10)&&(_b > y) )//arriba
215 return connect_vec[0].type;
216 if ( (_a <= x +10)&&(_a > x)&&(_b<=y+image->get_height()-10)&&(_b >=y+image->get_height()-22) )//abajo
217 return connect_vec[1].type;
222 void Cistern::set_default_connector()
224 connect_vec[0].type = IN;
225 connect_vec[1].type = OUT;
228 void Cistern::get_in_logic_connect_position(int& _a, int& _b)
234 void Cistern::get_out_logic_connect_position(int& _a, int& _b)
240 ConnectorType Cistern::detect_click_position(int _a, int _b)
242 //VER DONDE CAEN LOS CLICKS!!!!!!!!!!!!!! SI ES CON RESPECTO AL WORKPLACE O AL ITEM!!!
245 if ( (_a<=32) &&(_a>=0)&&(_b<=32)&&(_b>=0) )
247 if ( (_a<=image->get_width())&&(_a>=image->get_width()-32)&&(_b<=image->get_height())&&(_b>=image->get_height()-32) )
251 if ( (_a<=image->get_width()) &&(_a>=image->get_width()-32)&&(_b<=32)&&(_b>=0) )
253 if ( (_a<=32)&&(_a>=0)&&(_b<=image->get_height())&&(_b>=image->get_height()-32) )
259 void Cistern::update_logic_position()
263 in_x = x + image->get_width()-5;
266 out_y = y + image->get_height();
271 out_x = x + image->get_width() -16;
272 out_y = y + image->get_height();