]> git.jsancho.org Git - guile-irrlicht.git/blob - src/IrrlichtDevice.cpp
get-scene-manager
[guile-irrlicht.git] / src / IrrlichtDevice.cpp
1 /* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
2
3    Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
4
5    This file is part of guile-irrlicht.
6
7    guile-irrlicht is free software; you can redistribute it and/or modify
8    it under the terms of the GNU Lesser General Public License as
9    published by the Free Software Foundation; either version 3 of the
10    License, or (at your option) any later version.
11
12    guile-irrlicht is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with guile-irrlicht. If not, see
19    <http://www.gnu.org/licenses/>.
20 */
21
22 #include <irrlicht/irrlicht.h>
23 #include <libguile.h>
24 #include <wchar.h>
25
26 #include "dimension2d.h"
27 #include "EDriverTypes.h"
28 #include "IrrlichtDevice.h"
29 #include "ISceneManager.h"
30 #include "IVideoDriver.h"
31
32 extern "C" {
33
34   void
35   init_device (void)
36   {
37     init_device_type ();
38     scm_c_define_gsubr ("create-device", 7, 0, 0, (scm_t_subr)irr_createDevice);
39     scm_c_define_gsubr ("get-scene-manager", 1, 0, 0, (scm_t_subr)irr_getSceneManager);
40     scm_c_define_gsubr ("get-video-driver", 1, 0, 0, (scm_t_subr)irr_getVideoDriver);
41     scm_c_define_gsubr ("set-window-caption!", 2, 0, 0, (scm_t_subr)irr_setWindowCaption);
42   }
43
44   static SCM device_type;
45
46   void
47   init_device_type (void)
48   {
49     SCM name, slots;
50     scm_t_struct_finalize finalizer;
51
52     name = scm_from_utf8_symbol ("device");
53     slots = scm_list_1 (scm_from_utf8_symbol ("data"));
54     finalizer = NULL;
55
56     device_type =
57       scm_make_foreign_object_type (name, slots, finalizer);
58   }
59
60   SCM
61   wrap_device (irr::IrrlichtDevice* device)
62   {
63     return scm_make_foreign_object_1 (device_type, device);
64   }
65
66   irr::IrrlichtDevice*
67   unwrap_device (SCM device_obj)
68   {
69     scm_assert_foreign_object_type (device_type, device_obj);
70     return (irr::IrrlichtDevice*)scm_foreign_object_ref (device_obj, 0);
71   }
72
73   SCM
74   irr_createDevice (SCM deviceType,
75                     SCM windowSize,
76                     SCM bits,
77                     SCM fullscreen,
78                     SCM stencilbuffer,
79                     SCM vsync,
80                     SCM receiver)
81   {
82     irr::IrrlichtDevice* device =
83       irr::createDevice (scm_to_driver_type (deviceType),
84                          scm_to_dimension2d_u32 (windowSize),
85                          scm_to_uint32 (bits),
86                          scm_to_bool (fullscreen),
87                          scm_to_bool (stencilbuffer),
88                          scm_to_bool (vsync));
89     return wrap_device (device);
90   }
91
92   SCM
93   irr_getSceneManager (SCM device_obj)
94   {
95     irr::IrrlichtDevice* device = unwrap_device (device_obj);
96     irr::scene::ISceneManager* scene_manager = device->getSceneManager();
97     return wrap_scene_manager (scene_manager);
98   }
99
100   SCM
101   irr_getVideoDriver (SCM device_obj)
102   {
103     irr::IrrlichtDevice* device = unwrap_device (device_obj);
104     irr::video::IVideoDriver* driver = device->getVideoDriver();
105     return wrap_video_driver (driver);
106   }
107
108   SCM
109   irr_setWindowCaption (SCM device_obj,
110                         SCM text)
111   {
112     irr::IrrlichtDevice* device = unwrap_device (device_obj);
113     char* ctext;
114     wchar_t* wtext;
115
116     ctext = scm_to_utf8_stringn (text, NULL);
117     wtext = (wchar_t*)malloc ((strlen (ctext) + 1) * sizeof (wchar_t));
118     mbstowcs (wtext, ctext, strlen (ctext) + 1);
119
120     device->setWindowCaption (wtext);
121     return SCM_UNSPECIFIED;
122   }
123
124 }