]> git.jsancho.org Git - guile-irrlicht.git/blob - src/IrrlichtDevice.cpp
More bindings
[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
25 #include "dimension2d.h"
26 #include "EDriverTypes.h"
27 #include "IGUIEnvironment.h"
28 #include "IrrlichtDevice.h"
29 #include "ISceneManager.h"
30 #include "IVideoDriver.h"
31 #include "util.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 ("device-drop!", 1, 0, 0, (scm_t_subr)irr_deviceDrop);
41     scm_c_define_gsubr ("get-gui-environment", 1, 0, 0, (scm_t_subr)irr_getGUIEnvironment);
42     scm_c_define_gsubr ("get-scene-manager", 1, 0, 0, (scm_t_subr)irr_getSceneManager);
43     scm_c_define_gsubr ("get-video-driver", 1, 0, 0, (scm_t_subr)irr_getVideoDriver);
44     scm_c_define_gsubr ("set-window-caption!", 2, 0, 0, (scm_t_subr)irr_setWindowCaption);
45   }
46
47   DEFINE_WRAPPED_TYPE (irr::IrrlichtDevice*, "device",
48                        init_device_type, wrap_device, unwrap_device);
49
50   SCM
51   irr_createDevice (SCM deviceType,
52                     SCM windowSize,
53                     SCM bits,
54                     SCM fullscreen,
55                     SCM stencilbuffer,
56                     SCM vsync,
57                     SCM receiver)
58   {
59     irr::IrrlichtDevice* device =
60       irr::createDevice (scm_to_driver_type (deviceType),
61                          scm_to_dimension2d_u32 (windowSize),
62                          scm_to_uint32 (bits),
63                          scm_to_bool (fullscreen),
64                          scm_to_bool (stencilbuffer),
65                          scm_to_bool (vsync));
66     return wrap_device (device);
67   }
68
69   SCM
70   irr_deviceDrop (SCM wrapped_device)
71   {
72     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
73     return scm_from_bool (device->drop ());
74   }
75
76   SCM
77   irr_getGUIEnvironment (SCM wrapped_device)
78   {
79     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
80     irr::gui::IGUIEnvironment* gui_environment = device->getGUIEnvironment ();
81     return wrap_gui_environment (gui_environment);
82   }
83
84   SCM
85   irr_getSceneManager (SCM wrapped_device)
86   {
87     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
88     irr::scene::ISceneManager* scene_manager = device->getSceneManager ();
89     return wrap_scene_manager (scene_manager);
90   }
91
92   SCM
93   irr_getVideoDriver (SCM wrapped_device)
94   {
95     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
96     irr::video::IVideoDriver* driver = device->getVideoDriver ();
97     return wrap_video_driver (driver);
98   }
99
100   SCM
101   irr_setWindowCaption (SCM wrapped_device,
102                         SCM text)
103   {
104     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
105     device->setWindowCaption (scm_to_wide_char_string (text));
106     return SCM_UNSPECIFIED;
107   }
108
109 }