]> git.jsancho.org Git - c-irrlicht.git/commitdiff
IAnimatedMeshSceneNode
authorJavier Sancho <jsf@jsancho.org>
Sat, 12 Oct 2019 19:03:42 +0000 (21:03 +0200)
committerJavier Sancho <jsf@jsancho.org>
Sat, 12 Oct 2019 19:03:42 +0000 (21:03 +0200)
Makefile.am
include/IAnimatedMeshMD2.h [new file with mode: 0644]
include/IAnimatedMeshSceneNode.h [new file with mode: 0644]
include/ISceneManager.h
include/cirrlicht.h
src/IAnimatedMeshSceneNode.cpp [new file with mode: 0644]

index 9f632a38d2bc26a4ea23e93f0c773756e6473409..94fd41df7ce488570347314e8a8932ec45e184a9 100644 (file)
@@ -2,6 +2,7 @@ ACLOCAL_AMFLAGS = -I m4
 lib_LTLIBRARIES = libCIrrlicht.la
 libCIrrlicht_la_SOURCES = \
   src/CIrrlicht.cpp \
+  src/IAnimatedMeshSceneNode.cpp \
   src/IGUIEnvironment.cpp \
   src/IrrlichtDevice.cpp \
   src/ISceneManager.cpp \
@@ -14,6 +15,8 @@ include_HEADERS = \
   include/dimension2d.h \
   include/EDriverTypes.h \
   include/EMaterialFlags.h \
+  include/IAnimatedMeshMD2.h \
+  include/IAnimatedMeshSceneNode.h \
   include/IGUIEnvironment.h \
   include/IrrlichtDevice.h \
   include/ISceneManager.h \
diff --git a/include/IAnimatedMeshMD2.h b/include/IAnimatedMeshMD2.h
new file mode 100644 (file)
index 0000000..c9b84c9
--- /dev/null
@@ -0,0 +1,51 @@
+/* c-irrlicht --- C bindings for Irrlicht Engine
+
+   Copyright (C) 2019 Javier Sancho <jsf@jsancho.org>
+
+   This file is part of c-irrlicht.
+
+   c-irrlicht is free software; you can redistribute it and/or modify
+   it under the terms of the GNU Lesser General Public License as
+   published by the Free Software Foundation; either version 3 of the
+   License, or (at your option) any later version.
+
+   c-irrlicht is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with guile-irrlicht.  If not, see
+   <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __C_I_ANIMATED_MESH_MD2_H_INCLUDED__
+#define __C_I_ANIMATED_MESH_MD2_H_INCLUDED__
+
+enum irr_scene_EMD2_ANIMATION_TYPE
+  {
+   irr_scene_EMAT_STAND = 0,
+   irr_scene_EMAT_RUN,
+   irr_scene_EMAT_ATTACK,
+   irr_scene_EMAT_PAIN_A,
+   irr_scene_EMAT_PAIN_B,
+   irr_scene_EMAT_PAIN_C,
+   irr_scene_EMAT_JUMP,
+   irr_scene_EMAT_FLIP,
+   irr_scene_EMAT_SALUTE,
+   irr_scene_EMAT_FALLBACK,
+   irr_scene_EMAT_WAVE,
+   irr_scene_EMAT_POINT,
+   irr_scene_EMAT_CROUCH_STAND,
+   irr_scene_EMAT_CROUCH_WALK,
+   irr_scene_EMAT_CROUCH_ATTACK,
+   irr_scene_EMAT_CROUCH_PAIN,
+   irr_scene_EMAT_CROUCH_DEATH,
+   irr_scene_EMAT_DEATH_FALLBACK,
+   irr_scene_EMAT_DEATH_FALLFORWARD,
+   irr_scene_EMAT_DEATH_FALLBACKSLOW,
+   irr_scene_EMAT_BOOM,
+   irr_scene_EMAT_COUNT
+  };
+
+#endif
diff --git a/include/IAnimatedMeshSceneNode.h b/include/IAnimatedMeshSceneNode.h
new file mode 100644 (file)
index 0000000..34c3dc7
--- /dev/null
@@ -0,0 +1,53 @@
+/* c-irrlicht --- C bindings for Irrlicht Engine
+
+   Copyright (C) 2019 Javier Sancho <jsf@jsancho.org>
+
+   This file is part of c-irrlicht.
+
+   c-irrlicht is free software; you can redistribute it and/or modify
+   it under the terms of the GNU Lesser General Public License as
+   published by the Free Software Foundation; either version 3 of the
+   License, or (at your option) any later version.
+
+   c-irrlicht is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with guile-irrlicht.  If not, see
+   <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __C_SCENE_NODE_H_INCLUDED__
+#define __C_SCENE_NODE_H_INCLUDED__
+
+#include "EMaterialFlags.h"
+#include "IAnimatedMeshMD2.h"
+#include "ITexture.h"
+
+typedef void irr_scene_IAnimatedMeshSceneNode;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+  void
+  irr_scene_IAnimatedMeshSceneNode_setMaterialFlag(irr_scene_IAnimatedMeshSceneNode* node,
+                                                   irr_video_E_MATERIAL_FLAG flag,
+                                                   bool newvalue);
+
+  void
+  irr_scene_IAnimatedMeshSceneNode_setMaterialTexture(irr_scene_IAnimatedMeshSceneNode* node,
+                                                      u_int32_t textureLayer,
+                                                      irr_video_ITexture* texture);
+
+  bool
+  irr_scene_IAnimatedMeshSceneNode_setMD2Animation(irr_scene_IAnimatedMeshSceneNode* node,
+                                                   irr_scene_EMD2_ANIMATION_TYPE anim);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
index eca8a48a23d71f1a31b9cbd523182672d11971a0..728c60753d635068236ce388044cd907699795ca 100644 (file)
 #ifndef __C_SCENE_MANAGER_H_INCLUDED__
 #define __C_SCENE_MANAGER_H_INCLUDED__
 
+#include "IAnimatedMeshSceneNode.h"
 #include "vector3d.h"
 
 typedef void irr_scene_IAnimatedMesh;
-typedef void irr_scene_IAnimatedMeshSceneNode;
 typedef void irr_scene_ISceneManager;
 typedef void irr_scene_ISceneNode;
 
index 68beb1791973d810f3022ab1610a6354a9c36aef..6401841b44016dac7f43542fa0257e3e30937859 100644 (file)
@@ -25,6 +25,8 @@
 #include "dimension2d.h"
 #include "EDriverTypes.h"
 #include "EMaterialFlags.h"
+#include "IAnimatedMeshMD2.h"
+#include "IAnimatedMeshSceneNode.h"
 #include "IGUIEnvironment.h"
 #include "IrrlichtDevice.h"
 #include "ISceneManager.h"
diff --git a/src/IAnimatedMeshSceneNode.cpp b/src/IAnimatedMeshSceneNode.cpp
new file mode 100644 (file)
index 0000000..0a63c0f
--- /dev/null
@@ -0,0 +1,51 @@
+/* c-irrlicht --- C bindings for Irrlicht Engine
+
+   Copyright (C) 2019 Javier Sancho <jsf@jsancho.org>
+
+   This file is part of c-irrlicht.
+
+   c-irrlicht is free software; you can redistribute it and/or modify
+   it under the terms of the GNU Lesser General Public License as
+   published by the Free Software Foundation; either version 3 of the
+   License, or (at your option) any later version.
+
+   c-irrlicht is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with guile-irrlicht.  If not, see
+   <http://www.gnu.org/licenses/>.
+*/
+
+#include <irrlicht/irrlicht.h>
+#include "IAnimatedMeshSceneNode.h"
+
+extern "C" {
+  void
+  irr_scene_IAnimatedMeshSceneNode_setMaterialFlag(irr_scene_IAnimatedMeshSceneNode* node,
+                                                   irr_video_E_MATERIAL_FLAG flag,
+                                                   bool newvalue)
+  {
+    ((irr::scene::IAnimatedMeshSceneNode*)node)->setMaterialFlag((irr::video::E_MATERIAL_FLAG)flag,
+                                                                 newvalue);
+  }
+
+  void
+  irr_scene_IAnimatedMeshSceneNode_setMaterialTexture(irr_scene_IAnimatedMeshSceneNode* node,
+                                                      u_int32_t textureLayer,
+                                                      irr_video_ITexture* texture)
+  {
+    ((irr::scene::IAnimatedMeshSceneNode*)node)->setMaterialTexture(textureLayer,
+                                                                    (irr::video::ITexture*)texture);
+  }
+
+  bool
+  irr_scene_IAnimatedMeshSceneNode_setMD2Animation(irr_scene_IAnimatedMeshSceneNode* node,
+                                                   irr_scene_EMD2_ANIMATION_TYPE anim)
+  {
+    return ((irr::scene::IAnimatedMeshSceneNode*)node)->setMD2Animation((irr::scene::EMD2_ANIMATION_TYPE)anim);
+  }
+
+}