virtual void on_menu_popup_rotar();
virtual void save(FILE *archivo);
virtual bool check_connection();
+ virtual ConnectorType detect_click_position(int _a, int _b);
+ virtual void update_logic_position();
+ virtual void get_in_logic_connect_position(int& _a, int& _b);
+ virtual void get_out_logic_connect_position(int& _a, int& _b);
private:
+ int in_x, in_y, out_x, out_y;
+ std::vector<t_logic_connector> vec_connector;
Glib::RefPtr<Gdk::Pixbuf> imageN; // 0
Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
Glib::RefPtr<Gdk::Pixbuf> imageE; // 2
///Tipo de estado en el que pueden estar los conectores de un item
typedef enum { UNDEF, IN, OUT } ConnectorType;
+
+typedef struct {
+ ConnectorType type;
+ Glib::ustring name_dest;
+}t_logic_connector;
+
///Clase que define un conector del item
class Connector {
public:
virtual void on_menu_popup_rotar();
virtual void save(FILE *archivo);
virtual bool check_connection();
+ virtual ConnectorType detect_click_position(int _a, int _b);
+ virtual void update_logic_position();
+ virtual void get_in_logic_connect_position(int& _a, int& _b);
+ virtual void get_out_logic_connect_position(int& _a, int& _b);
private:
+ int in_x, in_y, out_x, out_y;
+ int cant_connections;
+ std::vector<t_logic_connector> vec_connector;
Glib::RefPtr<Gdk::Pixbuf> imageN; // 0
Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
Glib::RefPtr<Gdk::Pixbuf> imageE; // 2
virtual void on_menu_popup_rotar();
virtual void save(FILE *archivo);
virtual bool check_connection();
+ virtual ConnectorType detect_click_position(int _a, int _b);
+ virtual void update_logic_position();
+ virtual void get_in_logic_connect_position(int& _a, int& _b);
+ virtual void get_out_logic_connect_position(int& _a, int& _b);
private:
+ int in_x, in_y, out_x, out_y;
+ std::vector<t_logic_connector> vec_connector;
Glib::RefPtr<Gdk::Pixbuf> imageN; // 0
Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
Glib::RefPtr<Gdk::Pixbuf> imageE; // 2
CItem *get_logic_item(int _id);
void update_logic_position();
std::list<CItem *> *listaItems, *lista_logic_Items;
- /** Listas de lineas que van de una compuerta a un item y de un item a una compuerta
+ /** Listas de lineas que van de una compuerta a la entrada de un item y de la salida de un item a una compuerta
+ lista_lineas_in = compuerta --> (entrada) item
+ lista_lineas_out= compuerta --> (salida) item
*/
std::list<t_line> lista_lineas_in, lista_lineas_out;
static int pointed;
And::And()
{
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/and_n.png");
imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/and_s.png");
imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/and_e.png");
switch (imgActual) {
case 1:
image = imageS;
+ in_x = x +16;
+ in_y = y;
+ out_x = x+16;
+ out_y = y+32;
break;
case 2:
image = imageO;
+ in_x = x+32;
+ in_y = y+16;
+ out_x = x;
+ out_y = y+16;
break;
case 3:
image = imageN;
+ in_x = x+16;
+ in_y = y+32;
+ out_x = x+16;
+ out_y = y;
break;
default:
imgActual = 0;
image = imageE;
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
}
set_size_request(image->get_width(),image->get_height());
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);
void And::save(FILE *archivo)
{
+ vec_connector.clear();
+ check_connection();
+ Glib::ustring dato;
+ char c_img[50], c_x[50], c_y[50], c_id[50];
+ sprintf(c_id,"%d",ID);
+ sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
+ sprintf(c_x,"\t\t<x>%d</x>\n",x);
+ sprintf(c_y,"\t\t<y>%d</y>\n",y);
+ dato = "\t<and nombre=\""+name+"\" id=\"";
+ dato += c_id;
+ dato += "\">\n";
+ dato += c_img;
+ dato += c_x;
+ dato += c_y;
+ for ( int i=0; i<=vec_connector.size()-1; i++) {
+ if ( vec_connector[i].type == IN ) {
+ dato += "\t\t<entrada>";
+ dato += vec_connector[i].name_dest + "</entrada>\n";
+ } else {
+ dato += "\t\t<salida>";
+ dato += vec_connector[i].name_dest + "</salida>\n";
+ }
+ }
+ dato += "\t</and>\n";
+ fprintf(archivo, dato.c_str() );
+}
+
+bool And::check_connection()
+{
+ int cant_in = 0, cant_out =0;
+ t_logic_connector temp;
+ std::list<t_line>::iterator i = workplace->lista_lineas_in.begin();
+ while ( i != workplace->lista_lineas_in.end() ) {
+ if ( (*i).logic->get_id() == ID ) {
+ temp.type = OUT;
+ temp.name_dest = (*i).store->get_name();
+ vec_connector.push_back(temp);
+ cant_out++;
+ }
+ i++;
+ }
+ i = workplace->lista_lineas_out.begin();
+ while ( i != workplace->lista_lineas_out.end() ) {
+ if ( (*i).logic->get_id() == ID ) {
+ temp.type = IN;
+ temp.name_dest = (*i).store->get_name();
+ vec_connector.push_back(temp);
+ cant_in++;
+ }
+ i++;
+ }
+ //FIXME la and tiene n entradas y una salida!!!!!!!!!!!!!!!
+ return true;// (cant_in == cant_out );
}
+ConnectorType And::detect_click_position(int _a, int _b)
+{
+ switch (imgActual) {
+ case 0:
+ if ( (_a<=32 )&&(_a>=22)&&(_b<=20)&&(_b>=10) )
+ return OUT;
+ if ( (_a<=10)&&(_a>=0)&&(_b<=20)&&(_b>=10) )
+ return IN;
+ break;
+ case 1:
+ if ( (_a<=20 )&&(_a>=10)&&(_b<=32)&&(_b>=22) )
+ return OUT;
+ if ( (_a<=20)&&(_a>=10)&&(_b<=10)&&(_b>=0) )
+ return IN;
+ break;
+ case 2:
+ if ( (_a<=10 )&&(_a>=0)&&(_b<=20)&&(_b>=10) )
+ return OUT;
+ if ( (_a<=32)&&(_a>=22)&&(_b<=20)&&(_b>=10) )
+ return IN;
+ break;
+ case 3:
+ if ( (_a<=20 )&&(_a>=10)&&(_b<=10)&&(_b>=0) )
+ return OUT;
+ if ( (_a<=20)&&(_a>=10)&&(_b<=32)&&(_b>=22) )
+ return IN;
+ }
+ return UNDEF;
+}
-// CAMBIAR TODO ESTO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-bool And::check_connection()
+void And::update_logic_position()
{
- /*switch (get_img_actual()) {
- case 0:
- if ( is_other_connection_area( get_position_x()-5, get_position_y()+16) &&
- is_other_connection_area( get_position_x()+get_image()->get_width()-16, +get_position_y()+get_image()->get_height() + 5) )
- return true;
- case 1:
- if ( is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() -5) &&
- is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16) )
- return true;
- case 2:
- if ( is_other_connection_area( get_position_x() + 16, get_position_y() -5) &&
- is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()-16) )
- return true;
- case 3:
- if ( is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y() +16) &&
- is_other_connection_area( get_position_x() + 16, get_position_y()+get_image()->get_height() + 5) )
- return true;
+ switch (imgActual) {
+ case 0:
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
+ break;
+ case 1:
+ in_x = x+16;
+ in_y = y;
+ out_x = x+16;
+ out_y = y+32;
+ break;
+ case 2:
+ in_x = x+32;
+ in_y = y+16;
+ out_x = x;
+ out_y = y+16;
+ break;
+ case 3:
+ in_x = x+16;
+ in_y = y+32;
+ out_x = x+16;
+ out_y = y;
}
- return false;*/
- return true;
+}
+
+void And::get_in_logic_connect_position(int& _a, int& _b)
+{
+ _a = in_x;
+ _b = in_y;
+}
+
+void And::get_out_logic_connect_position(int& _a, int& _b)
+{
+ _a =out_x;
+ _b =out_y;
}
file_open_selection->hide();
id = listaItems.size()+lista_logic_Items.size()+1;
}
+
void Constructor::on_btn_file_ok_clicked()
{
std::list<CItem *>::iterator i = listaItems.begin();
fprintf(archivo, "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\n");
fprintf (archivo,"<planta>\n");
while ( i != listaItems.end() ){
- CItem *temp = *i;
- temp->save(archivo);
+ (*i)->save(archivo);
+ i++;
+ }
+ i = lista_logic_Items.begin();
+ while ( i != lista_logic_Items.end() ) {
+ (*i)->save(archivo);
i++;
}
fprintf(archivo,"</planta>\n");
dlg_label->set_text("Los elementos estan conectados\n\t\tcorrectamente");
dlg_connect->show();
}
+ std::cout<<"check_connection logic"<<std::endl;
+ std::list<CItem *>::iterator j = lista_logic_Items.begin();
+ while ( j != lista_logic_Items.end() ) {
+ (*j)->check_connection();
+ j++;
+ }
+
+
}
Pump *Constructor::loadBomba(xmlNodePtr nodo)
Not::Not()
{
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_n.png");
imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_s.png");
imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_e.png");
switch (imgActual) {
case 1:
image = imageS;
+ in_x = x +16;
+ in_y = y;
+ out_x = x+16;
+ out_y = y+32;
break;
case 2:
image = imageO;
+ in_x = x+32;
+ in_y = y+16;
+ out_x = x;
+ out_y = y+16;
break;
case 3:
image = imageN;
+ in_x = x+16;
+ in_y = y+32;
+ out_x = x+16;
+ out_y = y;
break;
default:
imgActual = 0;
image = imageE;
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
}
set_size_request(image->get_width(),image->get_height());
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);
void Not::save(FILE *archivo)
{
+ vec_connector.clear();
+ check_connection();
+ Glib::ustring dato;
+ char c_img[50], c_x[50], c_y[50], c_id[50];
+ sprintf(c_id,"%d",ID);
+ sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
+ sprintf(c_x,"\t\t<x>%d</x>\n",x);
+ sprintf(c_y,"\t\t<y>%d</y>\n",y);
+ dato = "\t<not nombre=\""+name+"\" id=\"";
+ dato += c_id;
+ dato += "\">\n";
+ dato += c_img;
+ dato += c_x;
+ dato += c_y;
+ for ( int i=0; i<=vec_connector.size()-1; i++) {
+ if ( vec_connector[i].type == IN ) {
+ dato += "\t\t<entrada>";
+ dato += vec_connector[i].name_dest + "</entrada>\n";
+ } else {
+ dato += "\t\t<salida>";
+ dato += vec_connector[i].name_dest + "</salida>\n";
+ }
+ }
+ dato += "\t</not>\n";
+ fprintf(archivo, dato.c_str() );
+}
+
+bool Not::check_connection()
+{
+ int cant_in = 0, cant_out =0;
+ t_logic_connector temp;
+ std::list<t_line>::iterator i = workplace->lista_lineas_in.begin();
+ while ( i != workplace->lista_lineas_in.end() ) {
+ if ( (*i).logic->get_id() == ID ) {
+ temp.type = OUT;
+ temp.name_dest = (*i).store->get_name();
+ vec_connector.push_back(temp);
+ cant_out++;
+ }
+ i++;
+ }
+ i = workplace->lista_lineas_out.begin();
+ while ( i != workplace->lista_lineas_out.end() ) {
+ if ( (*i).logic->get_id() == ID ) {
+ temp.type = IN;
+ temp.name_dest = (*i).store->get_name();
+ vec_connector.push_back(temp);
+ cant_in++;
+ }
+ i++;
+ }
+
+ //FIXME la not tiene que tener una sola salida y una sola entrada!!!!!
+ return true;// (cant_in == cant_out );
}
+ConnectorType Not::detect_click_position(int _a, int _b)
+{
+ switch (imgActual) {
+ case 0:
+ if ( (_a<=32 )&&(_a>=22)&&(_b<=20)&&(_b>=10) )
+ return OUT;
+ if ( (_a<=10)&&(_a>=0)&&(_b<=20)&&(_b>=10) )
+ return IN;
+ break;
+ case 1:
+ if ( (_a<=20 )&&(_a>=10)&&(_b<=32)&&(_b>=22) )
+ return OUT;
+ if ( (_a<=20)&&(_a>=10)&&(_b<=10)&&(_b>=0) )
+ return IN;
+ break;
+ case 2:
+ if ( (_a<=10 )&&(_a>=0)&&(_b<=20)&&(_b>=10) )
+ return OUT;
+ if ( (_a<=32)&&(_a>=22)&&(_b<=20)&&(_b>=10) )
+ return IN;
+ break;
+ case 3:
+ if ( (_a<=20 )&&(_a>=10)&&(_b<=10)&&(_b>=0) )
+ return OUT;
+ if ( (_a<=20)&&(_a>=10)&&(_b<=32)&&(_b>=22) )
+ return IN;
+ }
+ return UNDEF;
+}
-// CAMBIAR TODO ESTO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-bool Not::check_connection()
+void Not::update_logic_position()
{
-/* switch (get_img_actual()) {
- case 0:
- if ( is_other_connection_area( get_position_x()-5, get_position_y()+16) &&
- is_other_connection_area( get_position_x()+get_image()->get_width()-16, +get_position_y()+get_image()->get_height() + 5) )
- return true;
- break;
- case 1:
- if ( is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() -5) &&
- is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16) )
- return true;
- break;
- case 2:
- if ( is_other_connection_area( get_position_x() + 16, get_position_y() -5) &&
- is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()-16) )
- return true;
- break;
- case 3:
- if ( is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y() +16) &&
- is_other_connection_area( get_position_x() + 16, get_position_y()+get_image()->get_height() + 5) )
- return true;
+ switch (imgActual) {
+ case 0:
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
+ break;
+ case 1:
+ in_x = x+16;
+ in_y = y;
+ out_x = x+16;
+ out_y = y+32;
+ break;
+ case 2:
+ in_x = x+32;
+ in_y = y+16;
+ out_x = x;
+ out_y = y+16;
+ break;
+ case 3:
+ in_x = x+16;
+ in_y = y+32;
+ out_x = x+16;
+ out_y = y;
}
- return false;*/
- return true;
+}
+
+void Not::get_in_logic_connect_position(int& _a, int& _b)
+{
+ _a = in_x;
+ _b = in_y;
+}
+
+void Not::get_out_logic_connect_position(int& _a, int& _b)
+{
+ _a =out_x;
+ _b =out_y;
}
Or::Or()
{
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/or_n.png");
imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/or_s.png");
imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/or_e.png");
if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
CItem::logic_connect = true;
CItem::gate_id = ID;
- //if ( detect_click_position(event->x, event->y) == IN ) {
combo_entry->set_text(name);
WorkPlace::pointed = ID;
}
switch (imgActual) {
case 1:
image = imageS;
+ in_x = x +16;
+ in_y = y;
+ out_x = x+16;
+ out_y = y+32;
break;
case 2:
image = imageO;
+ in_x = x+32;
+ in_y = y+16;
+ out_x = x;
+ out_y = y+16;
break;
case 3:
image = imageN;
+ in_x = x+16;
+ in_y = y+32;
+ out_x = x+16;
+ out_y = y;
break;
default:
imgActual = 0;
image = imageE;
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
}
set_size_request(image->get_width(),image->get_height());
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);
void Or::save(FILE *archivo)
{
-
+ vec_connector.clear();
+ check_connection();
+ Glib::ustring dato;
+ char c_img[50], c_x[50], c_y[50], c_id[50];
+ sprintf(c_id,"%d",ID);
+ sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
+ sprintf(c_x,"\t\t<x>%d</x>\n",x);
+ sprintf(c_y,"\t\t<y>%d</y>\n",y);
+ dato = "\t<or nombre=\""+name+"\" id=\"";
+ dato += c_id;
+ dato += "\">\n";
+ dato += c_img;
+ dato += c_x;
+ dato += c_y;
+ for ( int i=0; i<=vec_connector.size()-1; i++) {
+ if ( vec_connector[i].type == IN ) {
+ dato += "\t\t<entrada>";
+ dato += vec_connector[i].name_dest + "</entrada>\n";
+ } else {
+ dato += "\t\t<salida>";
+ dato += vec_connector[i].name_dest + "</salida>\n";
+ }
+ }
+ dato += "\t</or>\n";
+ fprintf(archivo, dato.c_str() );
}
bool Or::check_connection()
{
- return true;
+ int cant_in = 0, cant_out =0;
+ t_logic_connector temp;
+ std::list<t_line>::iterator i = workplace->lista_lineas_in.begin();
+ while ( i != workplace->lista_lineas_in.end() ) {
+ if ( (*i).logic->get_id() == ID ) {
+ temp.type = OUT;
+ temp.name_dest = (*i).store->get_name();
+ vec_connector.push_back(temp);
+ cant_out++;
+ }
+ i++;
+ }
+
+ i = workplace->lista_lineas_out.begin();
+ while ( i != workplace->lista_lineas_out.end() ) {
+ if ( (*i).logic->get_id() == ID ) {
+ temp.type = IN;
+ temp.name_dest = (*i).store->get_name();
+ vec_connector.push_back(temp);
+ cant_in++;
+ }
+ i++;
+ }
+
+ //FIXME la or tiene n entradas y una salida!!!!!!!!!!!!!!!!!!
+ return true;// (cant_in == cant_out );
+}
+
+ConnectorType Or::detect_click_position(int _a, int _b)
+{
+ switch (imgActual) {
+ case 0:
+ if ( (_a<=32 )&&(_a>=22)&&(_b<=20)&&(_b>=10) )
+ return OUT;
+ if ( (_a<=10)&&(_a>=0)&&(_b<=20)&&(_b>=10) )
+ return IN;
+ break;
+ case 1:
+ if ( (_a<=20 )&&(_a>=10)&&(_b<=32)&&(_b>=22) )
+ return OUT;
+ if ( (_a<=20)&&(_a>=10)&&(_b<=10)&&(_b>=0) )
+ return IN;
+ break;
+ case 2:
+ if ( (_a<=10 )&&(_a>=0)&&(_b<=20)&&(_b>=10) )
+ return OUT;
+ if ( (_a<=32)&&(_a>=22)&&(_b<=20)&&(_b>=10) )
+ return IN;
+ break;
+ case 3:
+ if ( (_a<=20 )&&(_a>=10)&&(_b<=10)&&(_b>=0) )
+ return OUT;
+ if ( (_a<=20)&&(_a>=10)&&(_b<=32)&&(_b>=22) )
+ return IN;
+ }
+ return UNDEF;
+}
+
+void Or::update_logic_position()
+{
+ switch (imgActual) {
+ case 0:
+ in_x = x;
+ in_y = y+16;
+ out_x = x+32;
+ out_y = y+16;
+ break;
+ case 1:
+ in_x = x+16;
+ in_y = y;
+ out_x = x+16;
+ out_y = y+32;
+ break;
+ case 2:
+ in_x = x+32;
+ in_y = y+16;
+ out_x = x;
+ out_y = y+16;
+ break;
+ case 3:
+ in_x = x+16;
+ in_y = y+32;
+ out_x = x+16;
+ out_y = y;
+ }
+}
+
+void Or::get_in_logic_connect_position(int& _a, int& _b)
+{
+ _a = in_x;
+ _b = in_y;
+}
+
+void Or::get_out_logic_connect_position(int& _a, int& _b)
+{
+ _a =out_x;
+ _b =out_y;
}
color.set_rgb(255,0,0);
gc->set_rgb_bg_color(color);
get_style()->set_black(color);
- int w, z;
+ int a, b, w, z;
std::list<t_line>::iterator i = lista_lineas_in.begin();
while ( i != lista_lineas_in.end() ) {
t_line temp = *i;
temp.store->get_in_logic_connect_position(w,z);
- get_window()->draw_line (get_style()->get_black_gc(), temp.logic->get_position_x(),temp.logic->get_position_y(), w,z);
+ temp.logic->get_out_logic_connect_position(a, b);
+ get_window()->draw_line (get_style()->get_black_gc(), a, b, w,z);
i++;
}
i = lista_lineas_out.begin();
while ( i != lista_lineas_out.end() ) {
t_line temp = *i;
temp.store->get_out_logic_connect_position(w,z);
- get_window()->draw_line (get_style()->get_black_gc(), temp.logic->get_position_x(),temp.logic->get_position_y(), w,z);
+ temp.logic->get_in_logic_connect_position(a, b);
+ get_window()->draw_line (get_style()->get_black_gc(), a, b, w, z);
i++;
}
(*i)->update_logic_position();
i++;
}
+ i = lista_logic_Items->begin();
+ while ( i != lista_logic_Items->end() ){
+ (*i)->update_logic_position();
+ i++;
+ }
}