]> git.jsancho.org Git - guile-irrlicht.git/commitdiff
get-font get-skin-font
authorJavier Sancho <jsf@jsancho.org>
Mon, 20 Apr 2020 06:37:45 +0000 (08:37 +0200)
committerJavier Sancho <jsf@jsancho.org>
Mon, 20 Apr 2020 06:37:45 +0000 (08:37 +0200)
Makefile.am
src/gui-environment.cpp
src/gui-environment.h
src/gui-font.cpp [new file with mode: 0644]
src/gui-font.h [new file with mode: 0644]
src/gui-skin.cpp
src/gui-skin.h
src/gui.cpp
src/guile-irrlicht.cpp

index 498cc781bcaa3e73ec0c69b9f32ccd39659ebed5..48c67f1a651d001fafcd97a0cb73665d6a989b94 100644 (file)
@@ -40,6 +40,7 @@ libguile_irrlicht_la_SOURCES = \
   src/gui-edit-box.cpp \
   src/gui-element.cpp \
   src/gui-environment.cpp \
+  src/gui-font.cpp \
   src/gui-image.cpp \
   src/gui-skin.cpp \
   src/gui-static-text.cpp \
index 6a461917eab775e058afb4628dcc2012a9622c77..692075f825074176de1638f13747b01a007e3f3d 100644 (file)
@@ -26,6 +26,7 @@
 #include "gsubr.h"
 #include "gui-element.h"
 #include "gui-environment.h"
+#include "gui-font.h"
 #include "gui-image.h"
 #include "gui-skin.h"
 #include "gui-static-text.h"
@@ -43,6 +44,7 @@ extern "C" {
     init_gui_environment_type ();
     DEFINE_GSUBR ("add-image!", 3, 0, 1, irr_gui_addImage);
     DEFINE_GSUBR ("add-static-text!", 3, 0, 1, irr_gui_addStaticText);
+    DEFINE_GSUBR ("get-font", 2, 0, 0, irr_gui_getFont);
     DEFINE_GSUBR ("get-gui-environment", 1, 0, 0, irr_getGUIEnvironment);
     DEFINE_GSUBR ("get-skin", 1, 0, 0, irr_gui_getSkin);
   }
@@ -128,6 +130,15 @@ extern "C" {
     return wrap_gui_static_text (staticText);
   }
 
+  SCM
+  irr_gui_getFont (SCM wrapped_gui_environment,
+                   SCM filename)
+  {
+    irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrapped_gui_environment);
+    irr::gui::IGUIFont* font = guienv->getFont (scm_to_utf8_stringn (filename, NULL));
+    return wrap_gui_font (font);
+  }
+
   SCM
   irr_gui_getSkin (SCM wrapped_gui_environment)
   {
index c1e80d86bdb566d1d9ec2bc50ceac93b0ff62c20..1cc5cc630cd572fbdf39d283f4741657d8ed70dc 100644 (file)
@@ -49,6 +49,10 @@ extern "C" {
                          SCM rectangle,
                          SCM rest);
 
+  SCM
+  irr_gui_getFont (SCM wrapped_gui_environment,
+                   SCM filename);
+
   SCM
   irr_gui_getSkin (SCM wrapped_gui_environment);
 
diff --git a/src/gui-font.cpp b/src/gui-font.cpp
new file mode 100644 (file)
index 0000000..a3a844f
--- /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-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
new file mode 100644 (file)
index 0000000..7f1f5c9
--- /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_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
index 6dc61399811615f85716e46ff8484aff339952ff..cfc9edb7064719ef2224a0de773c4b9ffa8377b5 100644 (file)
@@ -22,6 +22,8 @@
 #include <irrlicht/irrlicht.h>
 #include <libguile.h>
 
+#include "gsubr.h"
+#include "gui-font.h"
 #include "gui-skin.h"
 #include "wrapped.h"
 
@@ -31,10 +33,56 @@ extern "C" {
   init_gui_skin (void)
   {
     init_gui_skin_type ();
+    DEFINE_GSUBR ("get-skin-font", 1, 0, 1, irr_gui_getSkinFont);
   }
 
   DEFINE_WRAPPED_TYPE (irr::gui::IGUISkin*, "gui-skin",
                        init_gui_skin_type, gui_skin_p,
                        wrap_gui_skin, unwrap_gui_skin);
 
+  SCM
+  irr_gui_getSkinFont (SCM wrapped_gui_skin,
+                       SCM rest)
+  {
+    SCM which = scm_from_utf8_symbol ("default");
+
+    scm_c_bind_keyword_arguments ("get-skin-font", rest, (scm_t_keyword_arguments_flags)0,
+                                  scm_from_utf8_keyword ("which"), &which,
+                                  SCM_UNDEFINED);
+
+    irr::gui::IGUISkin* skin = unwrap_gui_skin (wrapped_gui_skin);
+    irr::gui::IGUIFont* font = skin->getFont (scm_to_default_font (which));
+    return wrap_gui_font (font);
+  }
+
+  irr::gui::EGUI_DEFAULT_FONT
+  scm_to_default_font (SCM default_font)
+  {
+    char* font = scm_to_utf8_stringn (scm_symbol_to_string (default_font), NULL);
+    if (!strcmp (font, "default"))
+      {
+        return irr::gui::EGDF_DEFAULT;
+      }
+    else if (!strcmp (font, "button"))
+      {
+        return irr::gui::EGDF_BUTTON;
+      }
+    else if (!strcmp (font, "window"))
+      {
+        return irr::gui::EGDF_WINDOW;
+      }
+    else if (!strcmp (font, "menu"))
+      {
+        return irr::gui::EGDF_MENU;
+      }
+    else if (!strcmp (font, "tooltip"))
+      {
+        return irr::gui::EGDF_TOOLTIP;
+      }
+    else
+      {
+        scm_error (scm_arg_type_key, NULL, "Wrong default font: ~S",
+                   scm_list_1 (default_font), scm_list_1 (default_font));
+      }
+  }
 }
index ca43d2b60bda683c4f637b8ee3695a7a7c32ee3a..5a86bb1caf77861bfc9b57e3eee4cc2d7bd3450f 100644 (file)
@@ -33,6 +33,14 @@ extern "C" {
 
   DECLARE_WRAPPED_TYPE (irr::gui::IGUISkin*, init_gui_skin_type,
                         gui_skin_p, wrap_gui_skin, unwrap_gui_skin);
+
+  SCM
+  irr_gui_getSkinFont (SCM wrapped_gui_skin,
+                       SCM rest);
+
+  irr::gui::EGUI_DEFAULT_FONT
+  scm_to_default_font (SCM default_font);
+
 }
 
 #endif
index bb4f9e92efa2047bea3a05ed7951b09603e3af0b..313a83b2ef34487db5f5626fc821fca5d57bb511 100644 (file)
 #include "gsubr.h"
 #include "gui.h"
 #include "gui-edit-box.h"
+#include "gui-element.h"
+#include "gui-environment.h"
+#include "gui-font.h"
+#include "gui-image.h"
+#include "gui-skin.h"
 #include "gui-static-text.h"
 
 extern "C" {
@@ -33,6 +38,16 @@ extern "C" {
   void
   init_gui (void)
   {
+    // Init objects
+    init_gui_edit_box ();
+    init_gui_element ();
+    init_gui_environment ();
+    init_gui_font ();
+    init_gui_image ();
+    init_gui_skin ();
+    init_gui_static_text ();
+
+    // Shared procedures (used by two or more objects)
     DEFINE_GSUBR ("set-override-color!", 2, 0, 0, irr_gui_setOverrideColor);
   }
 
index 1be3a397275b9aa912cdf7c5520a783999c02574..bc76b72078b0a40737e416b6ca44ebe712676e9c 100644 (file)
 #include "file-system.h"
 #include "gsubr.h"
 #include "gui.h"
-#include "gui-edit-box.h"
 #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"
 #include "material.h"
@@ -69,12 +65,6 @@ extern "C" {
     init_file_archive ();
     init_file_system ();
     init_gui ();
-    init_gui_edit_box ();
-    init_gui_element ();
-    init_gui_environment ();
-    init_gui_image ();
-    init_gui_skin ();
-    init_gui_static_text ();
     init_keymap ();
     init_material ();
     init_mesh ();