ce3168272c76668d0147200fc8c5797bab6d4da4
[platform/core/uifw/dali-adaptor.git] / plugins / dynamics / bullet / bullet-dynamics-shape.h
1 #ifndef __DALI_PLUGIN_BULLET_DYNAMICS_SHAPE_H__
2 #define __DALI_PLUGIN_BULLET_DYNAMICS_SHAPE_H__
3
4 //
5 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 //
7 // Licensed under the Flora License, Version 1.0 (the License);
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //     http://floralicense.org/license/
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an AS IS BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19
20 // INTERNAL INCLUDES
21 #include <dali/integration-api/dynamics/dynamics-shape-intf.h>
22
23 #include <dali/public-api/geometry/mesh-data.h>
24
25 class btCollisionShape;
26
27 namespace Dali
28 {
29
30 struct Vector3;
31
32 namespace Plugin
33 {
34
35 /*
36  *
37  */
38 class BulletDynamicsShape : public Integration::DynamicsShape
39 {
40 public:
41   BulletDynamicsShape();
42   virtual ~BulletDynamicsShape();
43
44 public:
45   // @copydoc Dali::Integration::DynamicsShape::Initialize(int,const Vector3&)
46   void Initialize( int type, const Vector3& dimensions );
47
48   // @copydoc Dali::Integration::DynamicsShape::Initialize(int, const MeshData&)
49   void Initialize( int type, const MeshData::VertexContainer& vertices, const MeshData::FaceIndices& faceIndices );
50
51 public:
52   btCollisionShape* GetShape();
53
54 private:
55
56   btCollisionShape*          mShape;
57
58 public:
59
60   MeshData::VertexContainer* mVertices;
61   MeshData::FaceIndices*     mFaces;
62
63 }; // class BulletDynamicsShape
64
65 } // namespace Plugin
66
67 } // namespace Dali
68
69 #endif // __DALI_PLUGIN_BULLET_DYNAMICS_SHAPE_H__