License conversion from Flora to Apache 2.0
[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 Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0
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
18 // CLASS HEADER
19 #include <dali/internal/event/dynamics/dynamics-mesh-shape-impl.h>
20
21 // INTERNAL HEADERS
22 #include <dali/integration-api/debug.h>
23 #include <dali/internal/event/common/stage-impl.h>
24 #include <dali/internal/event/dynamics/dynamics-world-impl.h>
25 #include <dali/internal/event/modeling/mesh-impl.h>
26 #include <dali/internal/update/dynamics/scene-graph-dynamics-mesh-shape.h>
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33
34 DynamicsMeshShape::DynamicsMeshShape(Mesh& mesh)
35 : DynamicsShape(Dali::DynamicsShape::MESH),
36   mMesh( &mesh )
37 {
38   DALI_LOG_INFO(Debug::Filter::gDynamics, Debug::Verbose, "%s\n", __PRETTY_FUNCTION__);
39
40   StagePtr stage( Stage::GetCurrent() );
41   DynamicsWorldPtr world( stage->GetDynamicsWorld() );
42   DALI_ASSERT_ALWAYS( world && "No Dynamics World !");
43   ResourceManager& resourceManager( ThreadLocalStorage::Get().GetResourceManager() );
44
45   SceneGraph::DynamicsMeshShape* meshShape( new SceneGraph::DynamicsMeshShape( *world->GetSceneObject(), resourceManager, mesh.GetResourceId()) );
46   mDynamicsShape = meshShape;
47
48   // Queue a message to ensure the underlying dynamics object is created in the update thread
49   InitializeDynamicsMeshShapeMessage( stage->GetUpdateInterface(), *meshShape );
50 }
51
52 DynamicsMeshShape::~DynamicsMeshShape()
53 {
54   DALI_LOG_INFO(Debug::Filter::gDynamics, Debug::Verbose, "%s\n", __PRETTY_FUNCTION__);
55 }
56
57 Vector3 DynamicsMeshShape::GetAABB() const
58 {
59   return Vector3();
60 }
61
62 } // namespace Internal
63
64 } // namespace Dali