]> git.jsancho.org Git - guile-irrlicht.git/blob - src/gui-environment.cpp
refactor
[guile-irrlicht.git] / src / gui-environment.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 "gui-element.h"
27 #include "gui-environment.h"
28 #include "gui-static-text.h"
29 #include "rect.h"
30 #include "wchar.h"
31 #include "wrapped.h"
32
33 extern "C" {
34
35   void
36   init_gui_environment (void)
37   {
38     init_gui_environment_type ();
39     scm_c_define_gsubr ("add-static-text!", 8, 0, 0, (scm_t_subr)irr_gui_addStaticText);
40     scm_c_define_gsubr ("get-gui-environment", 1, 0, 0, (scm_t_subr)irr_getGUIEnvironment);
41   }
42
43   DEFINE_WRAPPED_TYPE (irr::gui::IGUIEnvironment*, "gui-environment",
44                        init_gui_environment_type, gui_environment_p,
45                        wrap_gui_environment, unwrap_gui_environment);
46
47   SCM
48   irr_getGUIEnvironment (SCM wrapped_obj)
49   {
50     irr::gui::IGUIEnvironment* gui_environment;
51     if (device_p (wrapped_obj))
52       {
53         gui_environment = unwrap_device (wrapped_obj)->getGUIEnvironment ();
54       }
55     else
56       {
57         scm_error (scm_arg_type_key, NULL, "Cannot get GUI environment from object: ~S",
58                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
59       }
60     return wrap_gui_environment (gui_environment);
61   }
62
63   SCM
64   irr_gui_addStaticText (SCM wrappedGUIEnvironment,
65                          SCM text,
66                          SCM rectangle,
67                          SCM border,
68                          SCM wordWrap,
69                          SCM parent,
70                          SCM id,
71                          SCM fillBackground)
72   {
73     irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrappedGUIEnvironment);
74     irr::gui::IGUIStaticText* staticText =
75       guienv->addStaticText (scm_to_wide_char_string (text),
76                              scm_to_rect_s32 (rectangle),
77                              scm_to_bool (border),
78                              scm_to_bool (wordWrap),
79                              scm_is_false (parent) ? 0 : unwrap_gui_element (parent),
80                              scm_to_int32 (id),
81                              scm_to_bool (fillBackground));
82     return wrap_gui_static_text (staticText);
83   }
84
85 }