]> git.jsancho.org Git - guile-irrlicht.git/commitdiff
remove useless files
authorJavier Sancho <jsf@jsancho.org>
Thu, 7 May 2020 09:50:56 +0000 (11:50 +0200)
committerJavier Sancho <jsf@jsancho.org>
Thu, 7 May 2020 09:50:56 +0000 (11:50 +0200)
29 files changed:
Makefile.am
src/camera-scene-node.cpp [deleted file]
src/camera-scene-node.h [deleted file]
src/file-list.cpp [deleted file]
src/file-list.h [deleted file]
src/gui-button.cpp [deleted file]
src/gui-button.h [deleted file]
src/gui-editbox.cpp [deleted file]
src/gui-editbox.h [deleted file]
src/gui-element.cpp [deleted file]
src/gui-element.h [deleted file]
src/gui-font.cpp [deleted file]
src/gui-font.h [deleted file]
src/gui-image.cpp [deleted file]
src/gui-image.h [deleted file]
src/gui-static-text.cpp [deleted file]
src/gui-static-text.h [deleted file]
src/gui-window.cpp [deleted file]
src/gui-window.h [deleted file]
src/gui.cpp
src/io.cpp
src/mesh-scene-node.cpp [deleted file]
src/mesh-scene-node.h [deleted file]
src/mesh.cpp [deleted file]
src/mesh.h [deleted file]
src/scene-node-animator.cpp [deleted file]
src/scene-node-animator.h [deleted file]
src/texture.cpp [deleted file]
src/texture.h [deleted file]

index 65f3f944847168123f3613dd665faebba166ac59..e5887ad4f073402c5470e420d25f96c463dbd4eb 100644 (file)
@@ -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 (file)
index 7ed90f7..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 1b546ba..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_CAMERA_SCENE_NODE_H_INCLUDED__
-#define __GUILE_IRRLICHT_CAMERA_SCENE_NODE_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 878d608..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 84f3b66..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_FILE_LIST_H_INCLUDED__
-#define __GUILE_IRRLICHT_FILE_LIST_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index e8ff726..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-
-#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 (file)
index 95e442e..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_GUI_BUTTON_H_INCLUDED__
-#define __GUILE_IRRLICHT_GUI_BUTTON_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 5de75ba..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 91b184e..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_GUI_EDITBOX_H_INCLUDED__
-#define __GUILE_IRRLICHT_GUI_EDITBOX_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index e93872d..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 1e290ae..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_GUI_ELEMENT_H_INCLUDED__
-#define __GUILE_IRRLICHT_GUI_ELEMENT_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index a3a844f..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-
-#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 (file)
index 7f1f5c9..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_GUI_FONT_H_INCLUDED__
-#define __GUILE_IRRLICHT_GUI_FONT_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index a9c3f25..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-
-#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 (file)
index 8f3d335..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_GUI_IMAGE_H_INCLUDED__
-#define __GUILE_IRRLICHT_GUI_IMAGE_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index f5a4323..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 8dc7a5f..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_GUI_STATIC_TEXT_H_INCLUDED__
-#define __GUILE_IRRLICHT_GUI_STATIC_TEXT_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index a2fcf95..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-
-#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 (file)
index df16418..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_GUI_WINDOW_H_INCLUDED__
-#define __GUILE_IRRLICHT_GUI_WINDOW_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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
index 213397e38eaf921f1951fcc3ea93107be93ff0e3..5a192ec9d1b0754898621756078ad657e3e4f81d 100644 (file)
 #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);
index 1c5a3b856ee204622ff8501d23c4f89ee4fcb284..7a3b3c508f7a1ccb043c1e351e72966aa8a05c49 100644 (file)
@@ -23,7 +23,6 @@
 #include <libguile.h>
 
 #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 (file)
index 01a2dea..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index ba1477c..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_MESH_SCENE_NODE_H_INCLUDED__
-#define __GUILE_IRRLICHT_MESH_SCENE_NODE_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index e95b81a..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 895a216..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_MESH_H_INCLUDED__
-#define __GUILE_IRRLICHT_MESH_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 440fd4a..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index baddc1b..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_SCENE_NODE_ANIMATOR_H_INCLUDED__
-#define __GUILE_IRRLICHT_SCENE_NODE_ANIMATOR_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index 5dba655..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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 (file)
index f6c1ec9..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
-
-   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
-
-   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
-   <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __GUILE_IRRLICHT_TEXTURE_H_INCLUDED__
-#define __GUILE_IRRLICHT_TEXTURE_H_INCLUDED__
-
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#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