[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-physics / third-party / bullet3 / src / BulletCollision / Gimpact / btGImpactBvhStructs.h
1 #ifndef GIM_BOX_SET_STRUCT_H_INCLUDED
2 #define GIM_BOX_SET_STRUCT_H_INCLUDED
3
4 /*! \file gim_box_set.h
5 \author Francisco Leon Najera
6 */
7 /*
8 This source file is part of GIMPACT Library.
9
10 For the latest info, see http://gimpact.sourceforge.net/
11
12 Copyright (c) 2007 Francisco Leon Najera. C.C. 80087371.
13 email: projectileman@yahoo.com
14
15
16 This software is provided 'as-is', without any express or implied warranty.
17 In no event will the authors be held liable for any damages arising from the use of this software.
18 Permission is granted to anyone to use this software for any purpose,
19 including commercial applications, and to alter it and redistribute it freely,
20 subject to the following restrictions:
21
22 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
23 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
24 3. This notice may not be removed or altered from any source distribution.
25 */
26
27 #include "LinearMath/btAlignedObjectArray.h"
28
29 #include "btBoxCollision.h"
30 #include "btTriangleShapeEx.h"
31 #include "gim_pair.h" //for GIM_PAIR
32
33 ///GIM_BVH_DATA is an internal GIMPACT collision structure to contain axis aligned bounding box
34 struct GIM_BVH_DATA
35 {
36         btAABB m_bound;
37         int m_data;
38 };
39
40 //! Node Structure for trees
41 class GIM_BVH_TREE_NODE
42 {
43 public:
44         btAABB m_bound;
45
46 protected:
47         int m_escapeIndexOrDataIndex;
48
49 public:
50         GIM_BVH_TREE_NODE()
51         {
52                 m_escapeIndexOrDataIndex = 0;
53         }
54
55         SIMD_FORCE_INLINE bool isLeafNode() const
56         {
57                 //skipindex is negative (internal node), triangleindex >=0 (leafnode)
58                 return (m_escapeIndexOrDataIndex >= 0);
59         }
60
61         SIMD_FORCE_INLINE int getEscapeIndex() const
62         {
63                 //btAssert(m_escapeIndexOrDataIndex < 0);
64                 return -m_escapeIndexOrDataIndex;
65         }
66
67         SIMD_FORCE_INLINE void setEscapeIndex(int index)
68         {
69                 m_escapeIndexOrDataIndex = -index;
70         }
71
72         SIMD_FORCE_INLINE int getDataIndex() const
73         {
74                 //btAssert(m_escapeIndexOrDataIndex >= 0);
75
76                 return m_escapeIndexOrDataIndex;
77         }
78
79         SIMD_FORCE_INLINE void setDataIndex(int index)
80         {
81                 m_escapeIndexOrDataIndex = index;
82         }
83 };
84
85 #endif  // GIM_BOXPRUNING_H_INCLUDED