From 133aa2fc930e0eff6ea840bac2212060943a1dbf Mon Sep 17 00:00:00 2001 From: Javier Sancho Date: Thu, 7 May 2020 11:50:56 +0200 Subject: [PATCH] remove useless files --- Makefile.am | 13 ------------ src/camera-scene-node.cpp | 38 ----------------------------------- src/camera-scene-node.h | 39 ------------------------------------ src/file-list.cpp | 38 ----------------------------------- src/file-list.h | 39 ------------------------------------ src/gui-button.cpp | 40 ------------------------------------- src/gui-button.h | 38 ----------------------------------- src/gui-editbox.cpp | 39 ------------------------------------ src/gui-editbox.h | 38 ----------------------------------- src/gui-element.cpp | 39 ------------------------------------ src/gui-element.h | 38 ----------------------------------- src/gui-font.cpp | 40 ------------------------------------- src/gui-font.h | 38 ----------------------------------- src/gui-image.cpp | 40 ------------------------------------- src/gui-image.h | 39 ------------------------------------ src/gui-static-text.cpp | 39 ------------------------------------ src/gui-static-text.h | 38 ----------------------------------- src/gui-window.cpp | 40 ------------------------------------- src/gui-window.h | 39 ------------------------------------ src/gui.cpp | 12 ----------- src/io.cpp | 2 -- src/mesh-scene-node.cpp | 39 ------------------------------------ src/mesh-scene-node.h | 39 ------------------------------------ src/mesh.cpp | 39 ------------------------------------ src/mesh.h | 39 ------------------------------------ src/scene-node-animator.cpp | 39 ------------------------------------ src/scene-node-animator.h | 40 ------------------------------------- src/texture.cpp | 38 ----------------------------------- src/texture.h | 39 ------------------------------------ 29 files changed, 1038 deletions(-) delete mode 100644 src/camera-scene-node.cpp delete mode 100644 src/camera-scene-node.h delete mode 100644 src/file-list.cpp delete mode 100644 src/file-list.h delete mode 100644 src/gui-button.cpp delete mode 100644 src/gui-button.h delete mode 100644 src/gui-editbox.cpp delete mode 100644 src/gui-editbox.h delete mode 100644 src/gui-element.cpp delete mode 100644 src/gui-element.h delete mode 100644 src/gui-font.cpp delete mode 100644 src/gui-font.h delete mode 100644 src/gui-image.cpp delete mode 100644 src/gui-image.h delete mode 100644 src/gui-static-text.cpp delete mode 100644 src/gui-static-text.h delete mode 100644 src/gui-window.cpp delete mode 100644 src/gui-window.h delete mode 100644 src/mesh-scene-node.cpp delete mode 100644 src/mesh-scene-node.h delete mode 100644 src/mesh.cpp delete mode 100644 src/mesh.h delete mode 100644 src/scene-node-animator.cpp delete mode 100644 src/scene-node-animator.h delete mode 100644 src/texture.cpp delete mode 100644 src/texture.h diff --git a/Makefile.am b/Makefile.am index 65f3f94..e5887ad 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,7 +27,6 @@ libguile_irrlicht_la_SOURCES = \ src/animated-mesh-md2.cpp \ src/animated-mesh-scene-node.cpp \ src/box3d.cpp \ - src/camera-scene-node.cpp \ src/color.cpp \ src/cursor-control.cpp \ src/device.cpp \ @@ -35,22 +34,14 @@ libguile_irrlicht_la_SOURCES = \ src/driver-types.cpp \ src/event-receiver.cpp \ src/file-archive.cpp \ - src/file-list.cpp \ src/file-system.cpp \ src/gui.cpp \ - src/gui-button.cpp \ - src/gui-editbox.cpp \ - src/gui-element.cpp \ src/gui-environment.cpp \ - src/gui-font.cpp \ - src/gui-image.cpp \ src/gui-in-out-fader.cpp \ src/gui-listbox.cpp \ src/gui-scrollbar.cpp \ src/gui-skin.cpp \ - src/gui-static-text.cpp \ src/gui-toolbar.cpp \ - src/gui-window.cpp \ src/guile-irrlicht.cpp \ src/io.cpp \ src/keycodes.cpp \ @@ -59,16 +50,12 @@ libguile_irrlicht_la_SOURCES = \ src/material-flags.cpp \ src/material-types.cpp \ src/matrix4.cpp \ - src/mesh.cpp \ - src/mesh-scene-node.cpp \ src/position2d.cpp \ src/primitive-types.cpp \ src/rect.cpp \ src/reference-counted.cpp \ src/scene-manager.cpp \ src/scene-node.cpp \ - src/scene-node-animator.cpp \ - src/texture.cpp \ src/timer.cpp \ src/vector2d.cpp \ src/vector3d.cpp \ diff --git a/src/camera-scene-node.cpp b/src/camera-scene-node.cpp deleted file mode 100644 index 7ed90f7..0000000 --- a/src/camera-scene-node.cpp +++ /dev/null @@ -1,38 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "camera-scene-node.h" - -extern "C" { - - void - init_camera_scene_node (void) - { - init_camera_scene_node_type (); - } - - DEFINE_WRAPPED_TYPE (irr::scene::ICameraSceneNode*, "camera_scene_node", - init_camera_scene_node_type, camera_scene_node_p, - wrap_camera_scene_node, unwrap_camera_scene_node); - -} diff --git a/src/camera-scene-node.h b/src/camera-scene-node.h deleted file mode 100644 index 1b546ba..0000000 --- a/src/camera-scene-node.h +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_CAMERA_SCENE_NODE_H_INCLUDED__ -#define __GUILE_IRRLICHT_CAMERA_SCENE_NODE_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_camera_scene_node (void); - - DECLARE_WRAPPED_TYPE (irr::scene::ICameraSceneNode*, init_camera_scene_node_type, - camera_scene_node_p, wrap_camera_scene_node, unwrap_camera_scene_node); - -} - -#endif diff --git a/src/file-list.cpp b/src/file-list.cpp deleted file mode 100644 index 878d608..0000000 --- a/src/file-list.cpp +++ /dev/null @@ -1,38 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "file-list.h" - -extern "C" { - - void - init_file_list (void) - { - init_file_list_type (); - } - - DEFINE_WRAPPED_TYPE (irr::io::IFileList*, "file-list", - init_file_list_type, file_list_p, - wrap_file_list, unwrap_file_list); - -} diff --git a/src/file-list.h b/src/file-list.h deleted file mode 100644 index 84f3b66..0000000 --- a/src/file-list.h +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_FILE_LIST_H_INCLUDED__ -#define __GUILE_IRRLICHT_FILE_LIST_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_file_list (void); - - DECLARE_WRAPPED_TYPE (irr::io::IFileList*, init_file_list_type, - file_list_p, wrap_file_list, unwrap_file_list); - -} - -#endif diff --git a/src/gui-button.cpp b/src/gui-button.cpp deleted file mode 100644 index e8ff726..0000000 --- a/src/gui-button.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include - -#include "gui-button.h" -#include "wrapped.h" - -extern "C" { - - void - init_gui_button (void) - { - init_gui_button_type (); - } - - DEFINE_WRAPPED_TYPE (irr::gui::IGUIButton*, "gui-button", - init_gui_button_type, gui_button_p, - wrap_gui_button, unwrap_gui_button); - -} diff --git a/src/gui-button.h b/src/gui-button.h deleted file mode 100644 index 95e442e..0000000 --- a/src/gui-button.h +++ /dev/null @@ -1,38 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_GUI_BUTTON_H_INCLUDED__ -#define __GUILE_IRRLICHT_GUI_BUTTON_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_gui_button (void); - - DECLARE_WRAPPED_TYPE (irr::gui::IGUIButton*, init_gui_button_type, - gui_button_p, wrap_gui_button, unwrap_gui_button); -} - -#endif diff --git a/src/gui-editbox.cpp b/src/gui-editbox.cpp deleted file mode 100644 index 5de75ba..0000000 --- a/src/gui-editbox.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "gui-editbox.h" -#include "wrapped.h" - -extern "C" { - - void - init_gui_editbox (void) - { - init_gui_editbox_type (); - } - - DEFINE_WRAPPED_TYPE (irr::gui::IGUIEditBox*, "gui-editbox", - init_gui_editbox_type, gui_editbox_p, - wrap_gui_editbox, unwrap_gui_editbox); - -} diff --git a/src/gui-editbox.h b/src/gui-editbox.h deleted file mode 100644 index 91b184e..0000000 --- a/src/gui-editbox.h +++ /dev/null @@ -1,38 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_GUI_EDITBOX_H_INCLUDED__ -#define __GUILE_IRRLICHT_GUI_EDITBOX_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_gui_editbox (void); - - DECLARE_WRAPPED_TYPE (irr::gui::IGUIEditBox*, init_gui_editbox_type, - gui_editbox_p, wrap_gui_editbox, unwrap_gui_editbox); -} - -#endif diff --git a/src/gui-element.cpp b/src/gui-element.cpp deleted file mode 100644 index e93872d..0000000 --- a/src/gui-element.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "gui-element.h" -#include "wrapped.h" - -extern "C" { - - void - init_gui_element (void) - { - init_gui_element_type (); - } - - DEFINE_WRAPPED_TYPE (irr::gui::IGUIElement*, "gui-element", - init_gui_element_type, gui_element_p, - wrap_gui_element, unwrap_gui_element); - -} diff --git a/src/gui-element.h b/src/gui-element.h deleted file mode 100644 index 1e290ae..0000000 --- a/src/gui-element.h +++ /dev/null @@ -1,38 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_GUI_ELEMENT_H_INCLUDED__ -#define __GUILE_IRRLICHT_GUI_ELEMENT_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_gui_element (void); - - DECLARE_WRAPPED_TYPE (irr::gui::IGUIElement*, init_gui_element_type, - gui_element_p, wrap_gui_element, unwrap_gui_element); -} - -#endif diff --git a/src/gui-font.cpp b/src/gui-font.cpp deleted file mode 100644 index a3a844f..0000000 --- a/src/gui-font.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include - -#include "gui-font.h" -#include "wrapped.h" - -extern "C" { - - void - init_gui_font (void) - { - init_gui_font_type (); - } - - DEFINE_WRAPPED_TYPE (irr::gui::IGUIFont*, "gui-font", - init_gui_font_type, gui_font_p, - wrap_gui_font, unwrap_gui_font); - -} diff --git a/src/gui-font.h b/src/gui-font.h deleted file mode 100644 index 7f1f5c9..0000000 --- a/src/gui-font.h +++ /dev/null @@ -1,38 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_GUI_FONT_H_INCLUDED__ -#define __GUILE_IRRLICHT_GUI_FONT_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_gui_font (void); - - DECLARE_WRAPPED_TYPE (irr::gui::IGUIFont*, init_gui_font_type, - gui_font_p, wrap_gui_font, unwrap_gui_font); -} - -#endif diff --git a/src/gui-image.cpp b/src/gui-image.cpp deleted file mode 100644 index a9c3f25..0000000 --- a/src/gui-image.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include - -#include "gui-image.h" -#include "wrapped.h" - -extern "C" { - - void - init_gui_image (void) - { - init_gui_image_type (); - } - - DEFINE_WRAPPED_TYPE (irr::gui::IGUIImage*, "gui-image", - init_gui_image_type, gui_image_p, - wrap_gui_image, unwrap_gui_image); - -} diff --git a/src/gui-image.h b/src/gui-image.h deleted file mode 100644 index 8f3d335..0000000 --- a/src/gui-image.h +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_GUI_IMAGE_H_INCLUDED__ -#define __GUILE_IRRLICHT_GUI_IMAGE_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_gui_image (void); - - DECLARE_WRAPPED_TYPE (irr::gui::IGUIImage*, init_gui_image_type, - gui_image_p, wrap_gui_image, unwrap_gui_image); - -} - -#endif diff --git a/src/gui-static-text.cpp b/src/gui-static-text.cpp deleted file mode 100644 index f5a4323..0000000 --- a/src/gui-static-text.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "gui-static-text.h" -#include "wrapped.h" - -extern "C" { - - void - init_gui_static_text (void) - { - init_gui_static_text_type (); - } - - DEFINE_WRAPPED_TYPE (irr::gui::IGUIStaticText*, "gui-static-text", - init_gui_static_text_type, gui_static_text_p, - wrap_gui_static_text, unwrap_gui_static_text); - -} diff --git a/src/gui-static-text.h b/src/gui-static-text.h deleted file mode 100644 index 8dc7a5f..0000000 --- a/src/gui-static-text.h +++ /dev/null @@ -1,38 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_GUI_STATIC_TEXT_H_INCLUDED__ -#define __GUILE_IRRLICHT_GUI_STATIC_TEXT_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_gui_static_text (void); - - DECLARE_WRAPPED_TYPE (irr::gui::IGUIStaticText*, init_gui_static_text_type, - gui_static_text_p, wrap_gui_static_text, unwrap_gui_static_text); -} - -#endif diff --git a/src/gui-window.cpp b/src/gui-window.cpp deleted file mode 100644 index a2fcf95..0000000 --- a/src/gui-window.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include - -#include "gui-window.h" -#include "wrapped.h" - -extern "C" { - - void - init_gui_window (void) - { - init_gui_window_type (); - } - - DEFINE_WRAPPED_TYPE (irr::gui::IGUIWindow*, "gui-window", - init_gui_window_type, gui_window_p, - wrap_gui_window, unwrap_gui_window); - -} diff --git a/src/gui-window.h b/src/gui-window.h deleted file mode 100644 index df16418..0000000 --- a/src/gui-window.h +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_GUI_WINDOW_H_INCLUDED__ -#define __GUILE_IRRLICHT_GUI_WINDOW_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_gui_window (void); - - DECLARE_WRAPPED_TYPE (irr::gui::IGUIWindow*, init_gui_window_type, - gui_window_p, wrap_gui_window, unwrap_gui_window); - -} - -#endif diff --git a/src/gui.cpp b/src/gui.cpp index 213397e..5a192ec 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -25,19 +25,13 @@ #include "color.h" #include "gsubr.h" #include "gui.h" -#include "gui-button.h" -#include "gui-editbox.h" -#include "gui-element.h" #include "gui-environment.h" -#include "gui-font.h" #include "gui-image.h" #include "gui-in-out-fader.h" #include "gui-listbox.h" #include "gui-scrollbar.h" #include "gui-skin.h" -#include "gui-static-text.h" #include "gui-toolbar.h" -#include "gui-window.h" extern "C" { @@ -45,19 +39,13 @@ extern "C" { init_gui (void) { // Init objects - init_gui_button (); - init_gui_editbox (); - init_gui_element (); init_gui_environment (); - init_gui_font (); init_gui_image (); init_gui_in_out_fader (); init_gui_listbox (); init_gui_scrollbar (); init_gui_skin (); - init_gui_static_text (); init_gui_toolbar (); - init_gui_window (); // Shared procedures (used by two or more objects) DEFINE_GSUBR ("add-button!", 1, 1, 1, irr_gui_addButton); diff --git a/src/io.cpp b/src/io.cpp index 1c5a3b8..7a3b3c5 100644 --- a/src/io.cpp +++ b/src/io.cpp @@ -23,7 +23,6 @@ #include #include "file-archive.h" -#include "file-list.h" #include "file-system.h" #include "io.h" @@ -34,7 +33,6 @@ extern "C" { { // Init objects init_file_archive (); - init_file_list (); init_file_system (); // Shared procedures (used by two or more objects) diff --git a/src/mesh-scene-node.cpp b/src/mesh-scene-node.cpp deleted file mode 100644 index 01a2dea..0000000 --- a/src/mesh-scene-node.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "mesh-scene-node.h" -#include "wrapped.h" - -extern "C" { - - void - init_mesh_scene_node (void) - { - init_mesh_scene_node_type (); - } - - DEFINE_WRAPPED_TYPE (irr::scene::IMeshSceneNode*, "mesh-scene-node", - init_mesh_scene_node_type, mesh_scene_node_p, - wrap_mesh_scene_node, unwrap_mesh_scene_node); - -} diff --git a/src/mesh-scene-node.h b/src/mesh-scene-node.h deleted file mode 100644 index ba1477c..0000000 --- a/src/mesh-scene-node.h +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_MESH_SCENE_NODE_H_INCLUDED__ -#define __GUILE_IRRLICHT_MESH_SCENE_NODE_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_mesh_scene_node (void); - - DECLARE_WRAPPED_TYPE (irr::scene::IMeshSceneNode*, init_mesh_scene_node_type, - mesh_scene_node_p, wrap_mesh_scene_node, unwrap_mesh_scene_node); - -} - -#endif diff --git a/src/mesh.cpp b/src/mesh.cpp deleted file mode 100644 index e95b81a..0000000 --- a/src/mesh.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "mesh.h" -#include "wrapped.h" - -extern "C" { - - void - init_mesh (void) - { - init_mesh_type (); - } - - DEFINE_WRAPPED_TYPE (irr::scene::IMesh*, "mesh", - init_mesh_type, mesh_p, - wrap_mesh, unwrap_mesh); - -} diff --git a/src/mesh.h b/src/mesh.h deleted file mode 100644 index 895a216..0000000 --- a/src/mesh.h +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_MESH_H_INCLUDED__ -#define __GUILE_IRRLICHT_MESH_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_mesh (void); - - DECLARE_WRAPPED_TYPE (irr::scene::IMesh*, init_mesh_type, - mesh_p, wrap_mesh, unwrap_mesh); - -} - -#endif diff --git a/src/scene-node-animator.cpp b/src/scene-node-animator.cpp deleted file mode 100644 index 440fd4a..0000000 --- a/src/scene-node-animator.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "scene-node-animator.h" -#include "wrapped.h" - -extern "C" { - - void - init_scene_node_animator (void) - { - init_scene_node_animator_type (); - } - - DEFINE_WRAPPED_TYPE (irr::scene::ISceneNodeAnimator*, "scene-node-animator", - init_scene_node_animator_type, scene_node_animator_p, - wrap_scene_node_animator, unwrap_scene_node_animator); - -} diff --git a/src/scene-node-animator.h b/src/scene-node-animator.h deleted file mode 100644 index baddc1b..0000000 --- a/src/scene-node-animator.h +++ /dev/null @@ -1,40 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_SCENE_NODE_ANIMATOR_H_INCLUDED__ -#define __GUILE_IRRLICHT_SCENE_NODE_ANIMATOR_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_scene_node_animator (void); - - DECLARE_WRAPPED_TYPE (irr::scene::ISceneNodeAnimator*, init_scene_node_animator_type, - scene_node_animator_p, wrap_scene_node_animator, - unwrap_scene_node_animator); - -} - -#endif diff --git a/src/texture.cpp b/src/texture.cpp deleted file mode 100644 index 5dba655..0000000 --- a/src/texture.cpp +++ /dev/null @@ -1,38 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "texture.h" - -extern "C" { - - void - init_texture (void) - { - init_texture_type (); - } - - DEFINE_WRAPPED_TYPE (irr::video::ITexture*, "texture", - init_texture_type, texture_p, - wrap_texture, unwrap_texture); - -} diff --git a/src/texture.h b/src/texture.h deleted file mode 100644 index f6c1ec9..0000000 --- a/src/texture.h +++ /dev/null @@ -1,39 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#ifndef __GUILE_IRRLICHT_TEXTURE_H_INCLUDED__ -#define __GUILE_IRRLICHT_TEXTURE_H_INCLUDED__ - -#include -#include -#include "wrapped.h" - -extern "C" { - - void - init_texture (void); - - DECLARE_WRAPPED_TYPE (irr::video::ITexture*, init_texture_type, - texture_p, wrap_texture, unwrap_texture); - -} - -#endif -- 2.39.2