]> git.jsancho.org Git - guile-irrlicht.git/blob - src/gui.cpp
get-pos set-pos! set-max!
[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-scrollbar.h"
35 #include "gui-skin.h"
36 #include "gui-static-text.h"
37 #include "gui-toolbar.h"
38
39 extern "C" {
40
41   void
42   init_gui (void)
43   {
44     // Init objects
45     init_gui_button ();
46     init_gui_edit_box ();
47     init_gui_element ();
48     init_gui_environment ();
49     init_gui_font ();
50     init_gui_image ();
51     init_gui_scrollbar ();
52     init_gui_skin ();
53     init_gui_static_text ();
54     init_gui_toolbar ();
55
56     // Shared procedures (used by two or more objects)
57     DEFINE_GSUBR ("add-button!", 1, 1, 1, irr_gui_addButton);
58     DEFINE_GSUBR ("get-font", 1, 1, 1, irr_gui_getFont);
59     DEFINE_GSUBR ("set-max!", 2, 0, 0, irr_gui_setMax);
60     DEFINE_GSUBR ("set-override-color!", 2, 0, 0, irr_gui_setOverrideColor);
61   }
62
63   SCM
64   irr_gui_addButton (SCM wrapped_obj,
65                      SCM rectangle,
66                      SCM rest)
67   {
68     if (gui_toolbar_p (wrapped_obj))
69       {
70         return irr_gui_IGUIToolBar_addButton (wrapped_obj, rest);
71       }
72     else if (gui_environment_p (wrapped_obj))
73       {
74         return irr_gui_IGUIEnvironment_addButton (wrapped_obj, rectangle, rest);
75       }
76     else
77       {
78         scm_error (scm_arg_type_key, NULL, "Cannot add button to object: ~S",
79                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
80       }
81   }
82
83   SCM
84   irr_gui_getFont (SCM wrapped_obj,
85                    SCM filename,
86                    SCM rest)
87   {
88     if (gui_environment_p (wrapped_obj))
89       {
90         return irr_gui_IGUIEnvironment_getFont (wrapped_obj, filename);
91       }
92     else if (gui_skin_p (wrapped_obj))
93       {
94         return irr_gui_IGUISkin_getFont (wrapped_obj, rest);
95       }
96     else
97       {
98         scm_error (scm_arg_type_key, NULL, "Cannot get font from object: ~S",
99                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
100       }
101   }
102
103   SCM
104   irr_gui_setMax (SCM wrapped_obj,
105                   SCM max)
106   {
107 #define SET_MAX(OBJ) OBJ->setMax (scm_to_int32 (max));
108
109     if (gui_edit_box_p (wrapped_obj))
110       {
111         SET_MAX (unwrap_gui_edit_box (wrapped_obj));
112       }
113     else if (gui_scrollbar_p (wrapped_obj))
114       {
115         SET_MAX (unwrap_gui_scrollbar (wrapped_obj));
116       }
117     else
118       {
119         scm_error (scm_arg_type_key, NULL, "Cannot set max to object: ~S",
120                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
121       }
122     return SCM_UNSPECIFIED;
123   }
124
125   SCM
126   irr_gui_setOverrideColor (SCM wrapped_obj,
127                             SCM color)
128   {
129 #define SET_OVERRIDE_COLOR(OBJ) OBJ->setOverrideColor (scm_to_color (color));
130
131     if (gui_edit_box_p (wrapped_obj))
132       {
133         SET_OVERRIDE_COLOR (unwrap_gui_edit_box (wrapped_obj));
134       }
135     else if (gui_static_text_p (wrapped_obj))
136       {
137         SET_OVERRIDE_COLOR (unwrap_gui_static_text (wrapped_obj));
138       }
139     else
140       {
141         scm_error (scm_arg_type_key, NULL, "Cannot set override color to object: ~S",
142                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
143       }
144     return SCM_UNSPECIFIED;
145   }
146
147 }