License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-core.git] / dali / internal / event / dynamics / dynamics-cone-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-cone-shape-impl.h>
20
21 // EXTERNAL HEADERS
22
23 // INTERNAL HEADERS
24 #include <dali/integration-api/debug.h>
25 #include <dali/internal/event/common/stage-impl.h>
26 #include <dali/internal/event/dynamics/dynamics-world-impl.h>
27 #include <dali/internal/update/dynamics/scene-graph-dynamics-cone-shape.h>
28
29 namespace Dali
30 {
31
32 namespace Internal
33 {
34
35 DynamicsConeShape::DynamicsConeShape(const float radius, const float length)
36 : DynamicsShape(Dali::DynamicsShape::CONE)
37 {
38   DALI_LOG_INFO(Debug::Filter::gDynamics, Debug::Verbose, "%s - (radius:%.1f length:%.1f)\n", __PRETTY_FUNCTION__, radius, length);
39
40   StagePtr stage( Stage::GetCurrent() );
41   DynamicsWorldPtr world( stage->GetDynamicsWorld() );
42   DALI_ASSERT_ALWAYS( world && "No Dynamics World !");
43
44   SceneGraph::DynamicsConeShape* coneShape = new SceneGraph::DynamicsConeShape( *world->GetSceneObject() );
45   mDynamicsShape = coneShape;
46
47   // Queue a message to ensure the underlying dynamics object is created in the update thread
48   InitializeDynamicsConeShapeMessage( stage->GetUpdateInterface(), *coneShape, radius, length );
49 }
50
51 DynamicsConeShape::~DynamicsConeShape()
52 {
53   DALI_LOG_INFO(Debug::Filter::gDynamics, Debug::Verbose, "%s\n", __PRETTY_FUNCTION__);
54 }
55
56 Vector3 DynamicsConeShape::GetAABB() const
57 {
58   return Vector3();
59 }
60
61 } // namespace Internal
62
63 } // namespace Dali