]> git.jsancho.org Git - guile-irrlicht.git/blob - src/gui.cpp
bcc1cef441ff88c9da05f5d8832f8c0edba94b62
[guile-irrlicht.git] / src / gui.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 "gsubr.h"
27 #include "gui.h"
28 #include "gui-button.h"
29 #include "gui-edit-box.h"
30 #include "gui-element.h"
31 #include "gui-environment.h"
32 #include "gui-font.h"
33 #include "gui-image.h"
34 #include "gui-skin.h"
35 #include "gui-static-text.h"
36 #include "gui-toolbar.h"
37
38 extern "C" {
39
40   void
41   init_gui (void)
42   {
43     // Init objects
44     init_gui_button ();
45     init_gui_edit_box ();
46     init_gui_element ();
47     init_gui_environment ();
48     init_gui_font ();
49     init_gui_image ();
50     init_gui_skin ();
51     init_gui_static_text ();
52     init_gui_toolbar ();
53
54     // Shared procedures (used by two or more objects)
55     DEFINE_GSUBR ("add-button!", 1, 1, 1, irr_gui_addButton);
56     DEFINE_GSUBR ("get-font", 1, 1, 1, irr_gui_getFont);
57     DEFINE_GSUBR ("set-override-color!", 2, 0, 0, irr_gui_setOverrideColor);
58   }
59
60   SCM
61   irr_gui_addButton (SCM wrapped_obj,
62                      SCM rectangle,
63                      SCM rest)
64   {
65     if (gui_toolbar_p (wrapped_obj))
66       {
67         return irr_gui_IGUIToolBar_addButton (wrapped_obj, rest);
68       }
69     else if (gui_environment_p (wrapped_obj))
70       {
71         return irr_gui_IGUIEnvironment_addButton (wrapped_obj, rectangle, rest);
72       }
73     else
74       {
75         scm_error (scm_arg_type_key, NULL, "Cannot add button to object: ~S",
76                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
77       }
78   }
79
80   SCM
81   irr_gui_getFont (SCM wrapped_obj,
82                    SCM filename,
83                    SCM rest)
84   {
85     if (gui_environment_p (wrapped_obj))
86       {
87         return irr_gui_IGUIEnvironment_getFont (wrapped_obj, filename);
88       }
89     else if (gui_skin_p (wrapped_obj))
90       {
91         return irr_gui_IGUISkin_getFont (wrapped_obj, rest);
92       }
93     else
94       {
95         scm_error (scm_arg_type_key, NULL, "Cannot get font from object: ~S",
96                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
97       }
98   }
99
100   SCM
101   irr_gui_setOverrideColor (SCM wrapped_obj,
102                             SCM color)
103   {
104 #define SET_OVERRIDE_COLOR(OBJ) OBJ->setOverrideColor (scm_to_color (color));
105
106     if (gui_edit_box_p (wrapped_obj))
107       {
108         SET_OVERRIDE_COLOR (unwrap_gui_edit_box (wrapped_obj));
109       }
110     else if (gui_static_text_p (wrapped_obj))
111       {
112         SET_OVERRIDE_COLOR (unwrap_gui_static_text (wrapped_obj));
113       }
114     else
115       {
116         scm_error (scm_arg_type_key, NULL, "Cannot set override color to object: ~S",
117                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
118       }
119     return SCM_UNSPECIFIED;
120   }
121
122 }