X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/44b4462a9330a34738100db1408ba6517a29a299..551d0c744aaa1e33f000efb66b6f3f042966d21f:/Constructor/item.cpp diff --git a/Constructor/item.cpp b/Constructor/item.cpp index 79515ff..31d955d 100644 --- a/Constructor/item.cpp +++ b/Constructor/item.cpp @@ -126,9 +126,26 @@ int CItem::get_conector_out() return conector_out; } +int CItem::get_img_actual() +{ + return imgActual; +} + 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; } + +bool CItem::is_other_occupied_area(int _a, int _b) +{ + std::list::iterator i = listaItems->begin(); + while ( i != listaItems->end() ){ + CItem *temp = *i; + if ( temp->is_occupied_area(_a,_b) ) + return true; + i++; + } + return false; +}