]> git.jsancho.org Git - guile-irrlicht.git/blob - src/guile-irrlicht.cpp
35e27f108879944c2120031b8c3721d2d55a0c67
[guile-irrlicht.git] / src / guile-irrlicht.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 <libguile.h>
23
24 #include "animated-mesh.h"
25 #include "animated-mesh-scene-node.h"
26 #include "box3d.h"
27 #include "camera-scene-node.h"
28 #include "cursor-control.h"
29 #include "device.h"
30 #include "file-archive.h"
31 #include "file-system.h"
32 #include "gui-element.h"
33 #include "gui-environment.h"
34 #include "gui-static-text.h"
35 #include "guile-irrlicht.h"
36 #include "keymap.h"
37 #include "material.h"
38 #include "material-flags.h"
39 #include "mesh.h"
40 #include "mesh-scene-node.h"
41 #include "reference-counted.h"
42 #include "scene-manager.h"
43 #include "scene-node.h"
44 #include "scene-node-animator.h"
45 #include "texture.h"
46 #include "vertex3d.h"
47 #include "video-driver.h"
48 #include "wchar.h"
49
50 extern "C" {
51
52   void
53   init_guile_irrlicht (void)
54   {
55     // Init modules
56     init_animated_mesh ();
57     init_animated_mesh_scene_node ();
58     init_box3d ();
59     init_camera_scene_node ();
60     init_cursor_control ();
61     init_device ();
62     init_file_archive ();
63     init_file_system ();
64     init_gui_element ();
65     init_gui_environment ();
66     init_gui_static_text ();
67     init_keymap ();
68     init_material ();
69     init_material_flag ();
70     init_mesh ();
71     init_mesh_scene_node ();
72     init_reference_counted ();
73     init_scene_manager ();
74     init_scene_node ();
75     init_scene_node_animator ();
76     init_texture ();
77     init_vertex3d ();
78     init_video_driver ();
79
80     // Shared procedures (used by two or more objects)
81     scm_c_define_gsubr ("draw-all", 1, 0, 0, (scm_t_subr)irr_drawAll);
82     scm_c_define_gsubr ("get-name", 1, 0, 0, (scm_t_subr)irr_getName);
83     scm_c_define_gsubr ("set-material!", 2, 0, 0, (scm_t_subr)irr_setMaterial);
84     scm_c_define_gsubr ("set-position!", 2, 0, 0, (scm_t_subr)irr_setPosition);
85     scm_c_define_gsubr ("set-visible!", 2, 0, 0, (scm_t_subr)irr_setVisible);
86     scm_c_export ("draw-all", "get-name", "set-material!", "set-position!",
87                   "set-visible!", NULL);
88   }
89
90   SCM
91   irr_drawAll (SCM wrapped_obj)
92   {
93     if (gui_environment_p (wrapped_obj))
94       {
95         unwrap_gui_environment (wrapped_obj)->drawAll ();
96       }
97     else if (scene_manager_p (wrapped_obj))
98       {
99         unwrap_scene_manager (wrapped_obj)->drawAll ();
100       }
101     else
102       {
103         scm_error (scm_arg_type_key, NULL, "Cannot draw all elements from object: ~S",
104                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
105       }
106     return SCM_UNSPECIFIED;
107   }
108
109   SCM
110   irr_getName (SCM wrapped_obj)
111   {
112     if (video_driver_p (wrapped_obj))
113       {
114         return scm_from_wide_char_string (unwrap_video_driver (wrapped_obj)->getName ());
115       }
116     else
117       {
118         scm_error (scm_arg_type_key, NULL, "Cannot get name from object: ~S",
119                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
120       }
121   }
122
123   SCM
124   irr_setMaterial (SCM wrapped_obj,
125                    SCM material)
126   {
127     if (video_driver_p (wrapped_obj))
128       {
129         return irr_video_setMaterial (wrapped_obj, material);
130       }
131     else
132       {
133         scm_error (scm_arg_type_key, NULL, "Cannot set material to object: ~S",
134                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
135       }
136   }
137
138   SCM
139   irr_setPosition (SCM wrapped_obj,
140                    SCM position)
141   {
142     if (cursor_control_p (wrapped_obj))
143       {
144         return irr_gui_setPosition (wrapped_obj, position);
145       }
146     else if (scene_node_p (wrapped_obj) || mesh_scene_node_p (wrapped_obj))
147       {
148         return irr_scene_setPosition (wrapped_obj, position);
149       }
150     else
151       {
152         scm_error (scm_arg_type_key, NULL, "Cannot set position for object: ~S",
153                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
154       }
155   }
156
157   SCM
158   irr_setVisible (SCM wrapped_obj,
159                   SCM visible)
160   {
161     if (cursor_control_p (wrapped_obj))
162       {
163         unwrap_cursor_control (wrapped_obj)->setVisible (scm_to_bool (visible));
164       }
165     else if (gui_element_p (wrapped_obj))
166       {
167         unwrap_gui_element (wrapped_obj)->setVisible (scm_to_bool (visible));
168       }
169     else if (scene_node_p (wrapped_obj))
170       {
171         unwrap_scene_node (wrapped_obj)->setVisible (scm_to_bool (visible));
172       }
173     else
174       {
175         scm_error (scm_arg_type_key, NULL, "Cannot set visibility for object: ~S",
176                    scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
177       }
178     return SCM_UNSPECIFIED;
179   }
180
181 }