]> git.jsancho.org Git - guile-irrlicht.git/blob - src/device.cpp
Get irrlicht objects
[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 "event-receiver.h"
29 #include "gsubr.h"
30 #include "timer.h"
31 #include "wchar.h"
32 #include "wrapped.h"
33
34 using namespace irr;
35
36 extern "C" {
37
38   void
39   init_device (void)
40   {
41     init_device_type ();
42     DEFINE_GSUBR ("irr_createDevice", 7, 0, 0, irr_createDevice);
43     DEFINE_GSUBR ("irr_IrrlichtDevice_getGUIEnvironment", 1, 0, 0,
44                   irr_IrrlichtDevice_getGUIEnvironment);
45     DEFINE_GSUBR ("irr_IrrlichtDevice_getSceneManager", 1, 0, 0,
46                   irr_IrrlichtDevice_getSceneManager);
47     DEFINE_GSUBR ("irr_IrrlichtDevice_getVideoDriver", 1, 0, 0,
48                   irr_IrrlichtDevice_getVideoDriver);
49     DEFINE_GSUBR ("irr_IrrlichtDevice_setWindowCaption", 2, 0, 0,
50                   irr_IrrlichtDevice_setWindowCaption);
51     DEFINE_GSUBR ("get-timer", 1, 0, 0, irr_getTimer);
52     DEFINE_GSUBR ("is-window-active?", 1, 0, 0, irr_isWindowActive);
53     DEFINE_GSUBR ("run", 1, 0, 0, irr_run);
54     DEFINE_GSUBR ("set-event-receiver!", 2, 0, 0, irr_setEventReceiver);
55     DEFINE_GSUBR ("set-resizable!", 2, 0, 0, irr_setResizable);
56     DEFINE_GSUBR ("yield", 1, 0, 0, irr_yield);
57   }
58
59   DEFINE_WRAPPED_TYPE (irr::IrrlichtDevice*, "device",
60                        init_device_type, device_p,
61                        wrap_device, unwrap_device);
62
63   SCM
64   irr_createDevice (SCM device_type,
65                     SCM window_size,
66                     SCM bits,
67                     SCM fullscreen,
68                     SCM stencilbuffer,
69                     SCM vsync,
70                     SCM receiver)
71   {
72     IrrlichtDevice* device =
73       createDevice (scm_to_driver_type (device_type),
74                     scm_to_dimension2d_u32 (window_size),
75                     scm_to_uint32 (bits),
76                     scm_to_bool (fullscreen),
77                     scm_to_bool (stencilbuffer),
78                     scm_to_bool (vsync),
79                     (IEventReceiver*)scm_to_pointer (receiver));
80     return scm_from_pointer ((void*)device, NULL);
81   }
82
83   SCM
84   irr_IrrlichtDevice_getGUIEnvironment (SCM device){
85     gui::IGUIEnvironment* gui_env =
86       ((IrrlichtDevice*)scm_to_pointer (device))->getGUIEnvironment ();
87     return scm_from_pointer ((void*)gui_env, NULL);
88   }
89
90   SCM
91   irr_IrrlichtDevice_getSceneManager (SCM device)
92   {
93     scene::ISceneManager* manager =
94       ((IrrlichtDevice*)scm_to_pointer (device))->getSceneManager ();
95     return scm_from_pointer ((void*)manager, NULL);
96   }
97
98   SCM
99   irr_IrrlichtDevice_getVideoDriver (SCM device)
100   {
101     video::IVideoDriver* driver =
102       ((IrrlichtDevice*)scm_to_pointer (device))->getVideoDriver ();
103     return scm_from_pointer ((void*)driver, NULL);
104   }
105
106   SCM
107   irr_IrrlichtDevice_setWindowCaption (SCM device,
108                                        SCM text)
109   {
110     ((IrrlichtDevice*)scm_to_pointer (device))->
111       setWindowCaption (scm_to_wide_char_string (text));
112     return SCM_UNSPECIFIED;
113   }
114
115   SCM
116   irr_getTimer (SCM wrapped_device)
117   {
118     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
119     return wrap_timer (device->getTimer ());
120   }
121
122   SCM
123   irr_isWindowActive (SCM wrapped_device)
124   {
125     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
126     return scm_from_bool (device->isWindowActive ());
127   }
128
129   SCM
130   irr_run (SCM wrapped_device)
131   {
132     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
133     return scm_from_bool (device->run ());
134   }
135
136   SCM
137   irr_setEventReceiver (SCM wrapped_device,
138                         SCM receiver)
139   {
140     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
141     device->setEventReceiver (unwrap_event_receiver (receiver));
142     return SCM_UNSPECIFIED;
143   }
144
145   SCM
146   irr_setResizable (SCM wrapped_device,
147                     SCM resize)
148   {
149     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
150     device->setResizable (scm_to_bool (resize));
151     return SCM_UNSPECIFIED;
152   }
153
154   SCM
155   irr_yield (SCM wrapped_device)
156   {
157     irr::IrrlichtDevice* device = unwrap_device (wrapped_device);
158     device->yield ();
159     return SCM_UNSPECIFIED;
160   }
161
162 }