]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/item.cpp
Se agrega generacion de XML para dar el estado actual de la planta simulada.
[z.facultad/75.42/plaqui.git] / Constructor / item.cpp
index 08af2cfecea9d6beca45211cfa282ac234546ff7..de9c4cd6ee5ab04a6a5a83d5fcfcf9268204211b 100644 (file)
@@ -13,6 +13,8 @@ CItem::CItem()
        ref = Gnome::Glade::Xml::create("constructor.glade", "item_pty_wnd");
        ref->get_widget_derived("item_pty_wnd",property_wnd);
        caudal_max = 0.0;
        ref = Gnome::Glade::Xml::create("constructor.glade", "item_pty_wnd");
        ref->get_widget_derived("item_pty_wnd",property_wnd);
        caudal_max = 0.0;
+       is_union = true;
+       is_connected = false;
        property_wnd->item = this;
        menu_image_propiedades.set(Gtk::Stock::PREFERENCES, Gtk::ICON_SIZE_MENU);
        menu_image_delete.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
        property_wnd->item = this;
        menu_image_propiedades.set(Gtk::Stock::PREFERENCES, Gtk::ICON_SIZE_MENU);
        menu_image_delete.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
@@ -59,12 +61,6 @@ void CItem::on_menu_popup_conectar()
 {
 }
 
 {
 }
 
-void CItem::set_position(int _x, int _y)
-{
-       this->x = _x;
-       this->y = _y;
-}
-
 int CItem::get_position_x()
 {
        return x;
 int CItem::get_position_x()
 {
        return x;
@@ -75,31 +71,41 @@ int CItem::get_position_y()
        return y;
 }
 
        return y;
 }
 
-bool CItem::is_occupied_area(int _a, int _b)
-{      
-       if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
-                       return true;
-               else return false;
+int CItem::get_id()
+{
+       return ID;
 }
 
 }
 
-void CItem::set_id(int _id)
+double CItem::get_caudal()
 {
 {
-       ID = _id;
+       return caudal_max;
 }
 
 }
 
-int CItem::get_id()
+
+Glib::ustring CItem::get_name()
 {
 {
-       return ID;
+       return name;
 }
 
 }
 
-void CItem::set_caudal(double _caudal)
+int CItem::get_img_actual()
 {
 {
-        caudal_max = _caudal;
+       return imgActual;
 }
 
 }
 
-double CItem::get_caudal()
+void CItem::set_position(int _x, int _y)
 {
 {
-       return caudal_max;
+       this->x = _x;
+       this->y = _y;
+}
+
+void CItem::set_id(int _id)
+{
+       ID = _id;
+}
+
+void CItem::set_caudal(double _caudal)
+{
+        caudal_max = _caudal;
 }
 
 void CItem::set_name(Glib::ustring _name)
 }
 
 void CItem::set_name(Glib::ustring _name)
@@ -107,7 +113,30 @@ void CItem::set_name(Glib::ustring _name)
        name = _name;
 }
 
        name = _name;
 }
 
-Glib::ustring CItem::get_name()
+bool CItem::is_occupied_area(int _a, int _b)
+{      
+       if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
+                       return true;
+               else return false;
+}
+
+ConnectorType CItem::is_other_connection_area(int _a, int _b)
+{
+       ConnectorType temp2;
+       std::list<CItem *>::iterator i = listaItems->begin();
+       while ( i != listaItems->end() ) {
+               CItem *temp = *i;
+               if (temp != this) 
+                       if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF )
+                               return temp2;
+               i++;
+       }
+       return UNDEF;
+}
+ConnectorType CItem::get_connector_type( int _a, int _b )
+{
+       return UNDEF;
+}
+void CItem::set_default_connector()
 {
 {
-       return name;
 }
 }