]> git.jsancho.org Git - guile-irrlicht.git/blob - src/gui-environment.cpp
get-skin
[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 "gsubr.h"
27 #include "gui-element.h"
28 #include "gui-environment.h"
29 #include "gui-image.h"
30 #include "gui-skin.h"
31 #include "gui-static-text.h"
32 #include "position2d.h"
33 #include "rect.h"
34 #include "texture.h"
35 #include "wchar.h"
36 #include "wrapped.h"
37
38 extern "C" {
39
40   void
41   init_gui_environment (void)
42   {
43     init_gui_environment_type ();
44     DEFINE_GSUBR ("add-image!", 3, 0, 1, irr_gui_addImage);
45     DEFINE_GSUBR ("add-static-text!", 3, 0, 1, irr_gui_addStaticText);
46     DEFINE_GSUBR ("get-gui-environment", 1, 0, 0, irr_getGUIEnvironment);
47     DEFINE_GSUBR ("get-skin", 1, 0, 0, irr_gui_getSkin);
48   }
49
50   DEFINE_WRAPPED_TYPE (irr::gui::IGUIEnvironment*, "gui-environment",
51                        init_gui_environment_type, gui_environment_p,
52                        wrap_gui_environment, unwrap_gui_environment);
53
54   SCM
55   irr_getGUIEnvironment (SCM wrapped_obj)
56   {
57     irr::gui::IGUIEnvironment* gui_environment;
58     if (device_p (wrapped_obj))
59       {
60         gui_environment = unwrap_device (wrapped_obj)->getGUIEnvironment ();
61       }
62     else
63       {
64         scm_error (scm_arg_type_key, NULL, "Cannot get GUI environment from object: ~S",
65                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
66       }
67     return wrap_gui_environment (gui_environment);
68   }
69
70   SCM
71   irr_gui_addImage (SCM wrapped_gui_environment,
72                     SCM image,
73                     SCM position,
74                     SCM rest)
75   {
76     SCM use_alpha_channel = SCM_BOOL_T;
77     SCM parent = SCM_BOOL_F;
78     SCM id = scm_from_int32 (-1);
79     SCM text = SCM_BOOL_F;
80
81     scm_c_bind_keyword_arguments ("add-image!", rest, (scm_t_keyword_arguments_flags)0,
82                                   scm_from_utf8_keyword ("use_alpha_channel"), &use_alpha_channel,
83                                   scm_from_utf8_keyword ("parent"), &parent,
84                                   scm_from_utf8_keyword ("id"), &id,
85                                   scm_from_utf8_keyword ("text"), &text,
86                                   SCM_UNDEFINED);
87
88     irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrapped_gui_environment);
89     irr::gui::IGUIImage* guiImage =
90       guienv->addImage (unwrap_texture (image),
91                         scm_to_position2d_s32 (position),
92                         scm_to_bool (use_alpha_channel),
93                         scm_is_false (parent) ? 0 : unwrap_gui_element (parent),
94                         scm_to_int32 (id),
95                         scm_is_false (text) ? 0 : scm_to_wide_char_string (text));
96     return wrap_gui_image (guiImage);
97   }
98
99   SCM
100   irr_gui_addStaticText (SCM wrapped_gui_environment,
101                          SCM text,
102                          SCM rectangle,
103                          SCM rest)
104   {
105     SCM border = SCM_BOOL_F;
106     SCM word_wrap = SCM_BOOL_T;
107     SCM parent = SCM_BOOL_F;
108     SCM id = scm_from_int32 (-1);
109     SCM fill_background = SCM_BOOL_F;
110
111     scm_c_bind_keyword_arguments ("add-static-text!", rest, (scm_t_keyword_arguments_flags)0,
112                                   scm_from_utf8_keyword ("border"), &border,
113                                   scm_from_utf8_keyword ("word-wrap"), &word_wrap,
114                                   scm_from_utf8_keyword ("parent"), &parent,
115                                   scm_from_utf8_keyword ("id"), &id,
116                                   scm_from_utf8_keyword ("fill-background"), &fill_background,
117                                   SCM_UNDEFINED);
118
119     irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrapped_gui_environment);
120     irr::gui::IGUIStaticText* staticText =
121       guienv->addStaticText (scm_to_wide_char_string (text),
122                              scm_to_rect_s32 (rectangle),
123                              scm_to_bool (border),
124                              scm_to_bool (word_wrap),
125                              scm_is_false (parent) ? 0 : unwrap_gui_element (parent),
126                              scm_to_int32 (id),
127                              scm_to_bool (fill_background));
128     return wrap_gui_static_text (staticText);
129   }
130
131   SCM
132   irr_gui_getSkin (SCM wrapped_gui_environment)
133   {
134     irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrapped_gui_environment);
135     irr::gui::IGUISkin* skin = guienv->getSkin ();
136     return wrap_gui_skin (skin);
137   }
138
139 }