]> git.jsancho.org Git - guile-irrlicht.git/commitdiff
set-window-caption!
authorJavier Sancho <jsf@jsancho.org>
Wed, 4 Mar 2020 11:06:01 +0000 (12:06 +0100)
committerJavier Sancho <jsf@jsancho.org>
Wed, 4 Mar 2020 11:06:01 +0000 (12:06 +0100)
Makefile.am
irrlicht/device.scm
src/GuileIrrlicht.cpp
src/Irrlicht.cpp [deleted file]
src/Irrlicht.h [deleted file]
src/IrrlichtDevice.cpp [new file with mode: 0644]
src/IrrlichtDevice.h [new file with mode: 0644]

index f9c9ed93f84d042504e5747df3ab0216dca6b423..a82439d734b7f6b41d2caf696fe0074b0c625cf1 100644 (file)
@@ -4,7 +4,7 @@ libguile_irrlicht_la_SOURCES = \
   src/dimension2d.cpp \
   src/EDriverTypes.cpp \
   src/GuileIrrlicht.cpp \
-  src/Irrlicht.cpp
+  src/IrrlichtDevice.cpp
 libguile_irrlicht_la_CPPFLAGS = @GUILE_CFLAGS@
 libguile_irrlicht_la_LDFLAGS = \
   -version-info 0:1 \
index b697c7f4e7f466cba29e384e46b8d2d96c2b88c8..f359c494c608b801ed440526884f710ab3731dba 100644 (file)
@@ -19,7 +19,8 @@
 
 
 (define-module (irrlicht device)
-  #:export (create-device))
+  #:export (create-device
+            set-window-caption!))
 
 (load-extension "libguile-irrlicht" "init_guile_irrlicht")
 
index d1473c4872f529d15df3ccebefbda1ec486251d0..6d2c5d75ec225de20d4dfbac01dbc2114160757c 100644 (file)
 */
 
 #include <libguile.h>
-#include "Irrlicht.h"
+#include "IrrlichtDevice.h"
 
 extern "C" {
 
   void
   init_guile_irrlicht (void)
   {
-    init_irrlicht ();
+    init_irrlicht_device ();
   }
 
 }
diff --git a/src/Irrlicht.cpp b/src/Irrlicht.cpp
deleted file mode 100644 (file)
index fc42579..0000000
+++ /dev/null
@@ -1,72 +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 "EDriverTypes.h"
-#include "Irrlicht.h"
-#include "dimension2d.h"
-
-extern "C" {
-
-  static SCM irrlicht_device;
-
-  void
-  init_irrlicht (void)
-  {
-    init_irrlicht_device ();
-    scm_c_define_gsubr ("create-device", 7, 0, 0, (scm_t_subr)irr_createDevice);
-  }
-
-  void
-  init_irrlicht_device (void)
-  {
-    SCM name, slots;
-    scm_t_struct_finalize finalizer;
-
-    name = scm_from_utf8_symbol ("device");
-    slots = scm_list_1 (scm_from_utf8_symbol ("data"));
-    finalizer = NULL;
-
-    irrlicht_device =
-      scm_make_foreign_object_type (name, slots, finalizer);
-  }
-
-  SCM
-  irr_createDevice (SCM deviceType,
-                    SCM windowSize,
-                    SCM bits,
-                    SCM fullscreen,
-                    SCM stencilbuffer,
-                    SCM vsync,
-                    SCM receiver)
-  {
-    irr::IrrlichtDevice* device =
-      irr::createDevice (scm_to_driver_type (deviceType),
-                         scm_to_dimension2d_u32 (windowSize),
-                         scm_to_uint32 (bits),
-                         scm_to_bool (fullscreen),
-                         scm_to_bool (stencilbuffer),
-                         scm_to_bool (vsync));
-    return scm_make_foreign_object_1 (irrlicht_device, device);
-  }
-
-}
diff --git a/src/Irrlicht.h b/src/Irrlicht.h
deleted file mode 100644 (file)
index e2c9826..0000000
+++ /dev/null
@@ -1,46 +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_INCLUDED__
-#define __GUILE_IRRLICHT_INCLUDED__
-
-#include <libguile.h>
-
-extern "C" {
-
-  void
-  init_irrlicht (void);
-
-  void
-  init_irrlicht_device (void);
-
-  SCM
-  irr_createDevice (SCM deviceType,
-                    SCM windowSize,
-                    SCM bits,
-                    SCM fullscreen,
-                    SCM stencilbuffer,
-                    SCM vsync,
-                    SCM receiver);
-
-}
-
-#endif
diff --git a/src/IrrlichtDevice.cpp b/src/IrrlichtDevice.cpp
new file mode 100644 (file)
index 0000000..b3b33bd
--- /dev/null
@@ -0,0 +1,93 @@
+/* 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 <wchar.h>
+#include "EDriverTypes.h"
+#include "IrrlichtDevice.h"
+#include "dimension2d.h"
+
+extern "C" {
+
+  void
+  init_irrlicht_device (void)
+  {
+    init_irrlicht_device_object ();
+    scm_c_define_gsubr ("create-device", 7, 0, 0, (scm_t_subr)irr_createDevice);
+    scm_c_define_gsubr ("set-window-caption!", 2, 0, 0, (scm_t_subr)irr_setWindowCaption);
+  }
+
+  static SCM irrlicht_device;
+
+  void
+  init_irrlicht_device_object (void)
+  {
+    SCM name, slots;
+    scm_t_struct_finalize finalizer;
+
+    name = scm_from_utf8_symbol ("device");
+    slots = scm_list_1 (scm_from_utf8_symbol ("data"));
+    finalizer = NULL;
+
+    irrlicht_device =
+      scm_make_foreign_object_type (name, slots, finalizer);
+  }
+
+  SCM
+  irr_createDevice (SCM deviceType,
+                    SCM windowSize,
+                    SCM bits,
+                    SCM fullscreen,
+                    SCM stencilbuffer,
+                    SCM vsync,
+                    SCM receiver)
+  {
+    irr::IrrlichtDevice* device =
+      irr::createDevice (scm_to_driver_type (deviceType),
+                         scm_to_dimension2d_u32 (windowSize),
+                         scm_to_uint32 (bits),
+                         scm_to_bool (fullscreen),
+                         scm_to_bool (stencilbuffer),
+                         scm_to_bool (vsync));
+    return scm_make_foreign_object_1 (irrlicht_device, device);
+  }
+
+  SCM
+  irr_setWindowCaption (SCM device_obj,
+                        SCM text)
+  {
+    irr::IrrlichtDevice* device;
+    char* ctext;
+    wchar_t* wtext;
+
+    scm_assert_foreign_object_type (irrlicht_device, device_obj);
+    device = (irr::IrrlichtDevice*)scm_foreign_object_ref (device_obj, 0);
+
+    ctext = scm_to_utf8_stringn (text, NULL);
+    wtext = (wchar_t*)malloc ((strlen (ctext) + 1) * sizeof (wchar_t));
+    mbstowcs (wtext, ctext, strlen (ctext) + 1);
+
+    device->setWindowCaption (wtext);
+    return SCM_UNSPECIFIED;
+  }
+
+}
diff --git a/src/IrrlichtDevice.h b/src/IrrlichtDevice.h
new file mode 100644 (file)
index 0000000..c364903
--- /dev/null
@@ -0,0 +1,50 @@
+/* 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_DEVICE_INCLUDED__
+#define __GUILE_IRRLICHT_DEVICE_INCLUDED__
+
+#include <libguile.h>
+
+extern "C" {
+
+  void
+  init_irrlicht_device (void);
+
+  void
+  init_irrlicht_device_object (void);
+
+  SCM
+  irr_createDevice (SCM deviceType,
+                    SCM windowSize,
+                    SCM bits,
+                    SCM fullscreen,
+                    SCM stencilbuffer,
+                    SCM vsync,
+                    SCM receiver);
+
+  SCM
+  irr_setWindowCaption (SCM device,
+                        SCM text);
+
+}
+
+#endif