]> git.jsancho.org Git - guile-irrlicht.git/commitdiff
get-skin
authorJavier Sancho <jsf@jsancho.org>
Sun, 19 Apr 2020 18:21:17 +0000 (20:21 +0200)
committerJavier Sancho <jsf@jsancho.org>
Sun, 19 Apr 2020 18:21:17 +0000 (20:21 +0200)
Makefile.am
src/gui-environment.cpp
src/gui-environment.h
src/gui-skin.cpp [new file with mode: 0644]
src/gui-skin.h [new file with mode: 0644]
src/guile-irrlicht.cpp

index c8a062cc561ca1a34a903a477c9a5c20c95d7ddf..498cc781bcaa3e73ec0c69b9f32ccd39659ebed5 100644 (file)
@@ -41,6 +41,7 @@ libguile_irrlicht_la_SOURCES = \
   src/gui-element.cpp \
   src/gui-environment.cpp \
   src/gui-image.cpp \
+  src/gui-skin.cpp \
   src/gui-static-text.cpp \
   src/guile-irrlicht.cpp \
   src/keycodes.cpp \
index 3268ab02adfcbb3f67eafc60a25a7cb9cac317a8..6a461917eab775e058afb4628dcc2012a9622c77 100644 (file)
@@ -27,6 +27,7 @@
 #include "gui-element.h"
 #include "gui-environment.h"
 #include "gui-image.h"
+#include "gui-skin.h"
 #include "gui-static-text.h"
 #include "position2d.h"
 #include "rect.h"
@@ -43,6 +44,7 @@ extern "C" {
     DEFINE_GSUBR ("add-image!", 3, 0, 1, irr_gui_addImage);
     DEFINE_GSUBR ("add-static-text!", 3, 0, 1, irr_gui_addStaticText);
     DEFINE_GSUBR ("get-gui-environment", 1, 0, 0, irr_getGUIEnvironment);
+    DEFINE_GSUBR ("get-skin", 1, 0, 0, irr_gui_getSkin);
   }
 
   DEFINE_WRAPPED_TYPE (irr::gui::IGUIEnvironment*, "gui-environment",
@@ -126,4 +128,12 @@ extern "C" {
     return wrap_gui_static_text (staticText);
   }
 
+  SCM
+  irr_gui_getSkin (SCM wrapped_gui_environment)
+  {
+    irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrapped_gui_environment);
+    irr::gui::IGUISkin* skin = guienv->getSkin ();
+    return wrap_gui_skin (skin);
+  }
+
 }
index 85ea2506b1884cf4306857abc95ae563900d291c..c1e80d86bdb566d1d9ec2bc50ceac93b0ff62c20 100644 (file)
@@ -49,6 +49,9 @@ extern "C" {
                          SCM rectangle,
                          SCM rest);
 
+  SCM
+  irr_gui_getSkin (SCM wrapped_gui_environment);
+
 }
 
 #endif
diff --git a/src/gui-skin.cpp b/src/gui-skin.cpp
new file mode 100644 (file)
index 0000000..6dc6139
--- /dev/null
@@ -0,0 +1,40 @@
+/* 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-skin.h"
+#include "wrapped.h"
+
+extern "C" {
+
+  void
+  init_gui_skin (void)
+  {
+    init_gui_skin_type ();
+  }
+
+  DEFINE_WRAPPED_TYPE (irr::gui::IGUISkin*, "gui-skin",
+                       init_gui_skin_type, gui_skin_p,
+                       wrap_gui_skin, unwrap_gui_skin);
+
+}
diff --git a/src/gui-skin.h b/src/gui-skin.h
new file mode 100644 (file)
index 0000000..ca43d2b
--- /dev/null
@@ -0,0 +1,38 @@
+/* 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_SKIN_H_INCLUDED__
+#define __GUILE_IRRLICHT_GUI_SKIN_H_INCLUDED__
+
+#include <irrlicht/irrlicht.h>
+#include <libguile.h>
+#include "wrapped.h"
+
+extern "C" {
+
+  void
+  init_gui_skin (void);
+
+  DECLARE_WRAPPED_TYPE (irr::gui::IGUISkin*, init_gui_skin_type,
+                        gui_skin_p, wrap_gui_skin, unwrap_gui_skin);
+}
+
+#endif
index 4531715adcd5a385d4ce75ea85d9a59dfe3bc2ae..1be3a397275b9aa912cdf7c5520a783999c02574 100644 (file)
@@ -36,6 +36,7 @@
 #include "gui-element.h"
 #include "gui-environment.h"
 #include "gui-image.h"
+#include "gui-skin.h"
 #include "gui-static-text.h"
 #include "guile-irrlicht.h"
 #include "keymap.h"
@@ -72,6 +73,7 @@ extern "C" {
     init_gui_element ();
     init_gui_environment ();
     init_gui_image ();
+    init_gui_skin ();
     init_gui_static_text ();
     init_keymap ();
     init_material ();