Apply fittingMode lazy when resource is not ready
[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   : mLock(world.GetMutex()),
28     mPhysicsWorld(world)
29   {
30   }
31   Impl(Impl&)         = delete;
32   const Impl& operator=(const Impl&) = delete;
33
34   Dali::Mutex::ScopedLock mLock;
35   Internal::PhysicsWorld& mPhysicsWorld;
36   friend Internal::PhysicsAdaptor;
37 };
38
39 PhysicsAdaptor::ScopedPhysicsAccessor::ScopedPhysicsAccessor(Internal::PhysicsWorld& world)
40 : mImpl(new Impl(world))
41 {
42 }
43
44 PhysicsAdaptor::ScopedPhysicsAccessor::~ScopedPhysicsAccessor()
45 {
46   delete mImpl;
47 }
48
49 Dali::Any PhysicsAdaptor::ScopedPhysicsAccessor::GetNative()
50 {
51   return mImpl->mPhysicsWorld.GetNative();
52 }
53
54 Dali::Any PhysicsAdaptor::ScopedPhysicsAccessor::HitTest(
55   Dali::Vector3 rayFromWorld, Dali::Vector3 rayToWorld, Dali::Vector3& localPivot, float& distanceFromCamera)
56 {
57   return mImpl->mPhysicsWorld.HitTest(rayFromWorld, rayToWorld, localPivot, distanceFromCamera);
58 }
59
60 } // namespace Dali::Toolkit::Physics