]> git.jsancho.org Git - guile-irrlicht.git/blob - src/video-driver.cpp
Define procedures with keywords from C code
[guile-irrlicht.git] / src / video-driver.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 "color.h"
26 #include "device.h"
27 #include "rect.h"
28 #include "texture.h"
29 #include "video-driver.h"
30 #include "wrapped.h"
31
32 extern "C" {
33
34   void
35   init_video_driver (void)
36   {
37     init_video_driver_type ();
38     scm_c_define_gsubr ("begin-scene", 1, 0, 1, (scm_t_subr)irr_video_beginScene);
39     scm_c_define_gsubr ("get-texture", 2, 0, 0, (scm_t_subr)irr_video_getTexture);
40     scm_c_define_gsubr ("get-video-driver", 1, 0, 0, (scm_t_subr)irr_getVideoDriver);
41     scm_c_export ("begin-scene", "get-texture", "get-video-driver", NULL);
42   }
43
44   DEFINE_WRAPPED_TYPE (irr::video::IVideoDriver*, "video-driver",
45                        init_video_driver_type, video_driver_p,
46                        wrap_video_driver, unwrap_video_driver);
47
48   SCM
49   irr_video_beginScene (SCM wrapped_video_driver,
50                         SCM rest)
51   {
52     SCM back_buffer = scm_from_bool(1);
53     SCM z_buffer = scm_from_bool(1);
54     SCM color = scm_list_4 (scm_from_uint32 (255),
55                             scm_from_uint32 (0),
56                             scm_from_uint32 (0),
57                             scm_from_uint32 (0));
58     SCM video_data = scm_from_bool(0);
59     SCM source_rect = scm_from_bool(0);
60
61     scm_c_bind_keyword_arguments ("begin-scene", rest, (scm_t_keyword_arguments_flags)0,
62                                   scm_from_utf8_keyword ("back-buffer"), &back_buffer,
63                                   scm_from_utf8_keyword ("z-buffer"), &z_buffer,
64                                   scm_from_utf8_keyword ("color"), &color,
65                                   scm_from_utf8_keyword ("video-data"), &video_data,
66                                   scm_from_utf8_keyword ("source-rect"), &source_rect,
67                                   SCM_UNDEFINED);
68
69     irr::video::IVideoDriver* driver = unwrap_video_driver (wrapped_video_driver);
70     irr::core::rect<irr::s32>* sourceRectAddress = 0;
71     if (!scm_is_false (source_rect))
72       {
73         irr::core::rect<irr::s32> sourceRect = scm_to_rect_s32 (source_rect);
74         sourceRectAddress = &sourceRect;
75       }
76     return scm_from_bool (driver->beginScene (scm_to_bool (back_buffer),
77                                               scm_to_bool (z_buffer),
78                                               scm_to_color (color),
79                                               irr::video::SExposedVideoData (),
80                                               sourceRectAddress));
81   }
82
83   SCM
84   irr_video_getTexture (SCM wrapped_video_driver,
85                         SCM filename)
86   {
87     irr::video::IVideoDriver* driver = unwrap_video_driver (wrapped_video_driver);
88     irr::video::ITexture* texture = driver->getTexture (scm_to_utf8_stringn (filename, NULL));
89     return wrap_texture (texture);
90   }
91
92   SCM
93   irr_getVideoDriver (SCM wrapped_obj)
94   {
95     irr::video::IVideoDriver* driver;
96     if (device_p (wrapped_obj))
97       {
98         driver = unwrap_device (wrapped_obj)->getVideoDriver ();
99       }
100     else
101       {
102         scm_error (scm_arg_type_key, NULL, "Cannot get video driver from object: ~S",
103                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
104       }
105     return wrap_video_driver (driver);
106   }
107
108 }