]> git.jsancho.org Git - guile-irrlicht.git/blob - src/IrrlichtDevice.cpp
get-gui-environment
[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 "IGUIEnvironment.h"
29 #include "IrrlichtDevice.h"
30 #include "ISceneManager.h"
31 #include "IVideoDriver.h"
32
33 extern "C" {
34
35   void
36   init_device (void)
37   {
38     init_device_type ();
39     scm_c_define_gsubr ("create-device", 7, 0, 0, (scm_t_subr)irr_createDevice);
40     scm_c_define_gsubr ("get-gui-environment", 1, 0, 0, (scm_t_subr)irr_getGUIEnvironment);
41     scm_c_define_gsubr ("get-scene-manager", 1, 0, 0, (scm_t_subr)irr_getSceneManager);
42     scm_c_define_gsubr ("get-video-driver", 1, 0, 0, (scm_t_subr)irr_getVideoDriver);
43     scm_c_define_gsubr ("set-window-caption!", 2, 0, 0, (scm_t_subr)irr_setWindowCaption);
44   }
45
46   static SCM device_type;
47
48   void
49   init_device_type (void)
50   {
51     SCM name, slots;
52     scm_t_struct_finalize finalizer;
53
54     name = scm_from_utf8_symbol ("device");
55     slots = scm_list_1 (scm_from_utf8_symbol ("data"));
56     finalizer = NULL;
57
58     device_type =
59       scm_make_foreign_object_type (name, slots, finalizer);
60   }
61
62   SCM
63   wrap_device (irr::IrrlichtDevice* device)
64   {
65     return scm_make_foreign_object_1 (device_type, device);
66   }
67
68   irr::IrrlichtDevice*
69   unwrap_device (SCM device_obj)
70   {
71     scm_assert_foreign_object_type (device_type, device_obj);
72     return (irr::IrrlichtDevice*)scm_foreign_object_ref (device_obj, 0);
73   }
74
75   SCM
76   irr_createDevice (SCM deviceType,
77                     SCM windowSize,
78                     SCM bits,
79                     SCM fullscreen,
80                     SCM stencilbuffer,
81                     SCM vsync,
82                     SCM receiver)
83   {
84     irr::IrrlichtDevice* device =
85       irr::createDevice (scm_to_driver_type (deviceType),
86                          scm_to_dimension2d_u32 (windowSize),
87                          scm_to_uint32 (bits),
88                          scm_to_bool (fullscreen),
89                          scm_to_bool (stencilbuffer),
90                          scm_to_bool (vsync));
91     return wrap_device (device);
92   }
93
94   SCM
95   irr_getGUIEnvironment (SCM device_obj)
96   {
97     irr::IrrlichtDevice* device = unwrap_device (device_obj);
98     irr::gui::IGUIEnvironment* gui_environment = device->getGUIEnvironment();
99     return wrap_gui_environment (gui_environment);
100   }
101
102   SCM
103   irr_getSceneManager (SCM device_obj)
104   {
105     irr::IrrlichtDevice* device = unwrap_device (device_obj);
106     irr::scene::ISceneManager* scene_manager = device->getSceneManager();
107     return wrap_scene_manager (scene_manager);
108   }
109
110   SCM
111   irr_getVideoDriver (SCM device_obj)
112   {
113     irr::IrrlichtDevice* device = unwrap_device (device_obj);
114     irr::video::IVideoDriver* driver = device->getVideoDriver();
115     return wrap_video_driver (driver);
116   }
117
118   SCM
119   irr_setWindowCaption (SCM device_obj,
120                         SCM text)
121   {
122     irr::IrrlichtDevice* device = unwrap_device (device_obj);
123     char* ctext;
124     wchar_t* wtext;
125
126     ctext = scm_to_utf8_stringn (text, NULL);
127     wtext = (wchar_t*)malloc ((strlen (ctext) + 1) * sizeof (wchar_t));
128     mbstowcs (wtext, ctext, strlen (ctext) + 1);
129
130     device->setWindowCaption (wtext);
131     return SCM_UNSPECIFIED;
132   }
133
134 }