]> git.jsancho.org Git - guile-irrlicht.git/blob - src/scene-node.cpp
Some macros
[guile-irrlicht.git] / src / scene-node.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 "animated-mesh-scene-node.h"
26 #include "gsubr.h"
27 #include "material-flags.h"
28 #include "matrix4.h"
29 #include "mesh-scene-node.h"
30 #include "scene-node.h"
31 #include "scene-node-animator.h"
32 #include "texture.h"
33 #include "vector3d.h"
34 #include "wrapped.h"
35
36 extern "C" {
37
38   void
39   init_scene_node (void)
40   {
41     init_scene_node_type ();
42     DEFINE_GSUBR ("add-animator!", 2, 0, 0, irr_scene_addAnimator);
43     DEFINE_GSUBR ("get-absolute-transformation", 1, 0, 0, irr_scene_getAbsoluteTransformation);
44     DEFINE_GSUBR ("set-material-texture!", 3, 0, 0, irr_scene_setMaterialTexture);
45   }
46
47   DEFINE_WRAPPED_TYPE (irr::scene::ISceneNode*, "scene-node",
48                        init_scene_node_type, scene_node_p,
49                        wrap_scene_node, unwrap_scene_node);
50
51   SCM
52   irr_scene_addAnimator (SCM wrapped_scene_node,
53                          SCM animator)
54   {
55 #define ADD_ANIMATOR(NODE) NODE->addAnimator (unwrap_scene_node_animator (animator));
56
57     if (animated_mesh_scene_node_p (wrapped_scene_node))
58       {
59         ADD_ANIMATOR (unwrap_animated_mesh_scene_node (wrapped_scene_node));
60       }
61     else if (mesh_scene_node_p (wrapped_scene_node))
62       {
63         ADD_ANIMATOR (unwrap_mesh_scene_node (wrapped_scene_node));
64       }
65     else if (scene_node_p (wrapped_scene_node))
66       {
67         ADD_ANIMATOR (unwrap_scene_node (wrapped_scene_node));
68       }
69     else
70       {
71         scm_error (scm_arg_type_key, NULL, "Cannot add animator flag to object: ~S",
72                    scm_list_1 (wrapped_scene_node), scm_list_1 (wrapped_scene_node));
73       }
74
75     return SCM_UNSPECIFIED;
76   }
77
78   SCM
79   irr_scene_getAbsoluteTransformation (SCM wrapped_scene_node)
80   {
81     irr::scene::ISceneNode* node = unwrap_scene_node (wrapped_scene_node);
82     return scm_from_matrix4 (node->getAbsoluteTransformation ());
83   }
84
85   SCM
86   irr_scene_ISceneNode_setMaterialFlag (SCM wrapped_scene_node,
87                                         SCM flag,
88                                         SCM newvalue)
89   {
90 #define SET_MATERIAL_FLAG(NODE) NODE->setMaterialFlag (scm_to_material_flag (flag), \
91                                                        scm_to_bool (newvalue));
92
93     if (animated_mesh_scene_node_p (wrapped_scene_node))
94       {
95         SET_MATERIAL_FLAG (unwrap_animated_mesh_scene_node (wrapped_scene_node));
96       }
97     else if (mesh_scene_node_p (wrapped_scene_node))
98       {
99         SET_MATERIAL_FLAG (unwrap_mesh_scene_node (wrapped_scene_node));
100       }
101     else if (scene_node_p (wrapped_scene_node))
102       {
103         SET_MATERIAL_FLAG (unwrap_scene_node (wrapped_scene_node));
104       }
105     else
106       {
107         scm_error (scm_arg_type_key, NULL, "Cannot set material flag to object: ~S",
108                    scm_list_1 (wrapped_scene_node), scm_list_1 (wrapped_scene_node));
109       }
110
111     return SCM_UNSPECIFIED;
112   }
113
114   SCM
115   irr_scene_setMaterialTexture (SCM wrapped_scene_node,
116                                 SCM texture_layer,
117                                 SCM texture)
118   {
119 #define SET_MATERIAL_TEXTURE(NODE) NODE->setMaterialTexture (scm_to_uint32 (texture_layer), \
120                                                              unwrap_texture (texture));
121
122     if (animated_mesh_scene_node_p (wrapped_scene_node))
123       {
124         SET_MATERIAL_TEXTURE (unwrap_animated_mesh_scene_node (wrapped_scene_node));
125       }
126     else if (mesh_scene_node_p (wrapped_scene_node))
127       {
128         SET_MATERIAL_TEXTURE (unwrap_mesh_scene_node (wrapped_scene_node));
129       }
130     else if (scene_node_p (wrapped_scene_node))
131       {
132         SET_MATERIAL_TEXTURE (unwrap_scene_node (wrapped_scene_node));
133       }
134     else
135       {
136         scm_error (scm_arg_type_key, NULL, "Cannot set material texture to object: ~S",
137                    scm_list_1 (wrapped_scene_node), scm_list_1 (wrapped_scene_node));
138       }
139
140     return SCM_UNSPECIFIED;
141   }
142
143   SCM
144   irr_scene_setPosition (SCM wrapped_scene_node,
145                          SCM position)
146   {
147 #define SET_POSITION(NODE) NODE->setPosition (scm_to_vector3df (position));
148
149     if (scene_node_p (wrapped_scene_node))
150       {
151         SET_POSITION (unwrap_scene_node (wrapped_scene_node));
152       }
153     else if (mesh_scene_node_p (wrapped_scene_node))
154       {
155         SET_POSITION (unwrap_mesh_scene_node (wrapped_scene_node));
156       }
157     else
158       {
159         scm_error (scm_arg_type_key, NULL, "Cannot set position to object: ~S",
160                    scm_list_1 (wrapped_scene_node), scm_list_1 (wrapped_scene_node));
161       }
162
163     return SCM_UNSPECIFIED;
164   }
165
166 }