License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-core.git] / dali / internal / update / common / property-owner.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/update/common/property-owner.h>
20
21 // EXTERNAL INCLUDES
22 #include <algorithm>
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/common/dali-common.h>
26 #include <dali/internal/update/animation/scene-graph-constraint-base.h>
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33
34 namespace SceneGraph
35 {
36
37 PropertyOwner* PropertyOwner::New()
38 {
39   return new PropertyOwner();
40 }
41
42 PropertyOwner::~PropertyOwner()
43 {
44   DisconnectFromSceneGraph();
45 }
46
47 void PropertyOwner::AddObserver(Observer& observer)
48 {
49   //Check for duplicates in debug builds
50   DALI_ASSERT_DEBUG( mObservers.End() == std::find( mObservers.Begin(), mObservers.End(), &observer ) );
51
52   mObservers.PushBack( &observer );
53 }
54
55 void PropertyOwner::RemoveObserver(Observer& observer)
56 {
57   // Find the observer...
58   const ConstObserverIter endIter =  mObservers.End();
59   for( ObserverIter iter = mObservers.Begin(); iter != endIter; ++iter)
60   {
61     if( (*iter) == &observer)
62     {
63       // erase it
64       mObservers.Erase(iter);
65       break;
66     }
67   }
68 }
69
70 bool PropertyOwner::IsObserved()
71 {
72   return mObservers.Count() != 0u;
73 }
74
75 void PropertyOwner::DisconnectFromSceneGraph()
76 {
77   // Notification for observers
78   const ConstObserverIter endIter = mObservers.End();
79   for( ConstObserverIter iter = mObservers.Begin(); iter != endIter; ++iter)
80   {
81     (*iter)->PropertyOwnerDestroyed(*this);
82   }
83
84   mObservers.Clear();
85
86   // Remove all constraints when disconnected from scene-graph
87   mConstraints.Clear();
88 }
89
90 void PropertyOwner::InstallCustomProperty(PropertyBase* property)
91 {
92   DALI_ASSERT_DEBUG( NULL != property );
93
94   mCustomProperties.PushBack( property );
95 }
96
97 void PropertyOwner::ResetToBaseValues( BufferIndex updateBufferIndex )
98 {
99   // Reset custom properties
100   const OwnedPropertyIter endIter = mCustomProperties.End();
101   for ( OwnedPropertyIter iter = mCustomProperties.Begin(); endIter != iter; ++iter )
102   {
103     (*iter)->ResetToBaseValue( updateBufferIndex );
104   }
105
106   // Reset constraint weights
107   const ConstraintIter constraintEndIter = mConstraints.End();
108   for( ConstraintIter iter = mConstraints.Begin(); constraintEndIter != iter; ++iter )
109   {
110     (*iter)->mWeight.ResetToBaseValue( updateBufferIndex );
111   }
112
113   // Notification for derived classes, to reset default properties
114   ResetDefaultProperties( updateBufferIndex );
115 }
116
117 ConstraintOwnerContainer& PropertyOwner::GetConstraints()
118 {
119   return mConstraints;
120 }
121
122 void PropertyOwner::ApplyConstraint( ConstraintBase* constraint )
123 {
124   mConstraints.PushBack( constraint );
125
126   constraint->OnConnect();
127 }
128
129 void PropertyOwner::RemoveConstraint( ConstraintBase* constraint )
130 {
131   // Reset constraint weights
132   const ConstraintIter constraintEndIter = mConstraints.End();
133   for( ConstraintIter iter = mConstraints.Begin(); constraintEndIter != iter; ++iter )
134   {
135     if ( *iter == constraint )
136     {
137       mConstraints.Erase( iter );
138       return; // We're finished
139     }
140   }
141
142   // Should not come here
143   DALI_ASSERT_DEBUG( false && "Constraint missing in RemoveConstraint" );
144 }
145
146 PropertyOwner::PropertyOwner()
147 {
148 }
149
150 } // namespace SceneGraph
151
152 } // namespace Internal
153
154 } // namespace Dali