]> git.jsancho.org Git - guile-irrlicht.git/blob - src/device.cpp
run
[guile-irrlicht.git] / src / device.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
25 #include "device.h"
26 #include "dimension2d.h"
27 #include "driver-types.h"
28 #include "wchar.h"
29 #include "wrapped.h"
30
31 extern "C" {
32
33   void
34   init_device (void)
35   {
36     init_device_type ();
37     scm_c_define_gsubr ("create-device", 7, 0, 0, (scm_t_subr)irr_createDevice);
38     scm_c_define_gsubr ("run", 1, 0, 0, (scm_t_subr)irr_run);
39     scm_c_define_gsubr ("set-window-caption!", 2, 0, 0, (scm_t_subr)irr_setWindowCaption);
40   }
41
42   DEFINE_WRAPPED_TYPE (irr::IrrlichtDevice*, "device",
43                        init_device_type, device_p,
44                        wrap_device, unwrap_device);
45
46   SCM
47   irr_createDevice (SCM deviceType,
48                     SCM windowSize,
49                     SCM bits,
50                     SCM fullscreen,
51                     SCM stencilbuffer,
52                     SCM vsync,
53                     SCM receiver)
54   {
55     irr::IrrlichtDevice* device =
56       irr::createDevice (scm_to_driver_type (deviceType),
57                          scm_to_dimension2d_u32 (windowSize),
58                          scm_to_uint32 (bits),
59                          scm_to_bool (fullscreen),
60                          scm_to_bool (stencilbuffer),
61                          scm_to_bool (vsync));
62     return wrap_device (device);
63   }
64
65   SCM
66   irr_run (SCM wrapped_device)
67   {
68     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
69     return scm_from_bool (device->run ());
70   }
71
72   SCM
73   irr_setWindowCaption (SCM wrapped_device,
74                         SCM text)
75   {
76     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
77     device->setWindowCaption (scm_to_wide_char_string (text));
78     return SCM_UNSPECIFIED;
79   }
80
81 }