Fixed dynamic shapes using meshes.
[platform/core/uifw/dali-core.git] / dali / internal / event / dynamics / dynamics-mesh-shape-impl.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 // CLASS HEADER
18 #include <dali/internal/event/dynamics/dynamics-mesh-shape-impl.h>
19
20 // INTERNAL HEADERS
21 #include <dali/integration-api/debug.h>
22 #include <dali/internal/event/common/stage-impl.h>
23 #include <dali/internal/event/dynamics/dynamics-world-impl.h>
24 #include <dali/internal/event/modeling/mesh-impl.h>
25 #include <dali/internal/update/dynamics/scene-graph-dynamics-mesh-shape.h>
26
27 namespace Dali
28 {
29
30 namespace Internal
31 {
32
33 DynamicsMeshShape::DynamicsMeshShape(Mesh& mesh)
34 : DynamicsShape(Dali::DynamicsShape::MESH),
35   mMesh( mesh )
36 {
37   DALI_LOG_INFO(Debug::Filter::gDynamics, Debug::Verbose, "%s\n", __PRETTY_FUNCTION__);
38
39   StagePtr stage( Stage::GetCurrent() );
40   DynamicsWorldPtr world( stage->GetDynamicsWorld() );
41   DALI_ASSERT_ALWAYS( world && "No Dynamics World !");
42   ResourceManager& resourceManager( ThreadLocalStorage::Get().GetResourceManager() );
43
44   SceneGraph::DynamicsMeshShape* meshShape( new SceneGraph::DynamicsMeshShape( *world->GetSceneObject(), resourceManager, mMesh.GetResourceId()) );
45   mDynamicsShape = meshShape;
46
47   // Queue a message to ensure the underlying dynamics object is created in the update thread
48   InitializeDynamicsMeshShapeMessage( stage->GetUpdateInterface(), *meshShape );
49 }
50
51 DynamicsMeshShape::~DynamicsMeshShape()
52 {
53   DALI_LOG_INFO(Debug::Filter::gDynamics, Debug::Verbose, "%s\n", __PRETTY_FUNCTION__);
54 }
55
56 Vector3 DynamicsMeshShape::GetAABB() const
57 {
58   return Vector3();
59 }
60
61 } // namespace Internal
62
63 } // namespace Dali