[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-physics / public-api / scoped-physics-accessor.cpp
1 /*
2  * Copyright (c) 2023 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 #include <dali-physics/public-api/physics-adaptor.h>
18
19 #include <dali-physics/internal/physics-adaptor-impl.h>
20 #include <dali-physics/internal/physics-world-impl.h>
21
22 namespace Dali::Toolkit::Physics
23 {
24 struct PhysicsAdaptor::ScopedPhysicsAccessor::Impl
25 {
26   Impl(Internal::PhysicsWorld& world)
27   : mPhysicsWorld(world)
28   {
29     mPhysicsWorld.Lock();
30   }
31   Impl(Impl&)         = delete;
32   const Impl& operator=(const Impl&) = delete;
33
34   ~Impl()
35   {
36     mPhysicsWorld.Unlock();
37   }
38   Internal::PhysicsWorld& mPhysicsWorld;
39   friend Internal::PhysicsAdaptor;
40 };
41
42 PhysicsAdaptor::ScopedPhysicsAccessor::ScopedPhysicsAccessor(Internal::PhysicsWorld& world)
43 : mImpl(new Impl(world))
44 {
45 }
46
47 PhysicsAdaptor::ScopedPhysicsAccessor::~ScopedPhysicsAccessor()
48 {
49   delete mImpl;
50 }
51
52 Dali::Any PhysicsAdaptor::ScopedPhysicsAccessor::GetNative()
53 {
54   return mImpl->mPhysicsWorld.GetNative();
55 }
56
57 Dali::Any PhysicsAdaptor::ScopedPhysicsAccessor::HitTest(
58   Dali::Vector3 rayFromWorld, Dali::Vector3 rayToWorld, Dali::Any nativeFilter, Dali::Vector3& localPivot, float& distanceFromCamera)
59 {
60   return mImpl->mPhysicsWorld.HitTest(rayFromWorld, rayToWorld, nativeFilter, localPivot, distanceFromCamera);
61 }
62
63 } // namespace Dali::Toolkit::Physics