Revert "License conversion from Flora to Apache 2.0"
[platform/core/uifw/dali-core.git] / dali / internal / update / animation / scene-graph-constraint-base.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 // CLASS HEADER
18 #include <dali/internal/update/animation/scene-graph-constraint.h>
19
20 // INTERNAL INCLUDES
21 #include <dali/public-api/animation/active-constraint.h>
22
23 namespace Dali
24 {
25
26 namespace Internal
27 {
28
29 namespace SceneGraph
30 {
31
32 ConstraintBase::ConstraintBase( PropertyOwnerSet& ownerSet )
33 : mWeight( Dali::ActiveConstraint::DEFAULT_WEIGHT ),
34   mRemoveAction( Dali::Constraint::DEFAULT_REMOVE_ACTION ),
35   mFirstApply( true ),
36   mDisconnected( true ),
37   mObservedOwners( ownerSet )
38 {
39 }
40
41 ConstraintBase::~ConstraintBase()
42 {
43   if ( !mDisconnected )
44   {
45     StopObservation();
46   }
47
48 // TODO - Override new & delete to provide this for everything
49 #ifdef DEBUG_ENABLED
50   // Fill with garbage pattern to help detect invalid memory access
51   memset ( &mWeight, 0xFA, sizeof(mWeight) );
52 #endif
53 }
54
55 void ConstraintBase::ResetDefaultProperties( BufferIndex updateBufferIndex )
56 {
57   // Not used, since the weight property is reset by PropertyOwner
58   DALI_ASSERT_DEBUG( false );
59 }
60
61 } // namespace SceneGraph
62
63 } // namespace Internal
64
65 } // namespace Dali