UTC public API updates: stage.h
[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   DynamicsWorldPtr world( DynamicsWorld::Get() );
41   DALI_ASSERT_ALWAYS( world && "No Dynamics World !");
42
43   SceneGraph::DynamicsConeShape* coneShape = new SceneGraph::DynamicsConeShape( *world->GetSceneObject() );
44   mDynamicsShape = coneShape;
45
46   // Queue a message to ensure the underlying dynamics object is created in the update thread
47   InitializeDynamicsConeShapeMessage( *Stage::GetCurrent(), *coneShape, radius, length );
48 }
49
50 DynamicsConeShape::~DynamicsConeShape()
51 {
52   DALI_LOG_INFO(Debug::Filter::gDynamics, Debug::Verbose, "%s\n", __PRETTY_FUNCTION__);
53 }
54
55 Vector3 DynamicsConeShape::GetAABB() const
56 {
57   return Vector3();
58 }
59
60 } // namespace Internal
61
62 } // namespace Dali