Do not change BlendMode by following whether advanced blend equation is appied or not
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / visual-base-impl.cpp
1 /*
2  * Copyright (c) 2020 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 "visual-base-impl.h"
20
21 // EXTERNAL HEADER
22 #include <dali-toolkit/public-api/dali-toolkit-common.h>
23 #include <dali/devel-api/scripting/enum-helper.h>
24 #include <dali/devel-api/rendering/renderer-devel.h>
25 #include <dali/integration-api/debug.h>
26
27 //INTERNAL HEARDER
28 #include <dali-toolkit/public-api/visuals/color-visual-properties.h>
29 #include <dali-toolkit/public-api/visuals/primitive-visual-properties.h>
30 #include <dali-toolkit/public-api/visuals/visual-properties.h>
31 #include <dali-toolkit/devel-api/visuals/visual-properties-devel.h>
32 #include <dali-toolkit/internal/helpers/property-helper.h>
33 #include <dali-toolkit/internal/visuals/visual-base-data-impl.h>
34 #include <dali-toolkit/internal/visuals/visual-string-constants.h>
35
36 namespace
37 {
38 #if defined(DEBUG_ENABLED)
39 Debug::Filter* gVisualBaseLogFilter = Debug::Filter::New( Debug::NoLogging, false, "LOG_VISUAL_BASE" );
40 #endif
41
42 const char * const PRE_MULTIPLIED_ALPHA_PROPERTY( "preMultipliedAlpha" );
43
44 } // namespace
45
46 namespace Dali
47 {
48
49 namespace Toolkit
50 {
51
52 namespace Internal
53 {
54
55 namespace
56 {
57
58 DALI_ENUM_TO_STRING_TABLE_BEGIN( VISUAL_FITTING_MODE )
59 DALI_ENUM_TO_STRING_WITH_SCOPE( Visual::FittingMode, FIT_KEEP_ASPECT_RATIO  )
60 DALI_ENUM_TO_STRING_WITH_SCOPE( Visual::FittingMode, FILL  )
61 DALI_ENUM_TO_STRING_WITH_SCOPE( Visual::FittingMode, OVER_FIT_KEEP_ASPECT_RATIO )
62 DALI_ENUM_TO_STRING_WITH_SCOPE( Visual::FittingMode, CENTER )
63 DALI_ENUM_TO_STRING_WITH_SCOPE( Visual::FittingMode, FIT_WIDTH )
64 DALI_ENUM_TO_STRING_WITH_SCOPE( Visual::FittingMode, FIT_HEIGHT )
65 DALI_ENUM_TO_STRING_TABLE_END( VISUAL_FITTING_MODE )
66
67 } // namespace
68
69 Visual::Base::Base( VisualFactoryCache& factoryCache, FittingMode fittingMode, Toolkit::Visual::Type type )
70 : mImpl( new Impl( fittingMode, type ) ),
71   mFactoryCache( factoryCache )
72 {
73 }
74
75 Visual::Base::~Base()
76 {
77   delete mImpl;
78 }
79
80 void Visual::Base::SetCustomShader( const Property::Map& shaderMap )
81 {
82   if( mImpl->mCustomShader )
83   {
84     mImpl->mCustomShader->SetPropertyMap( shaderMap );
85   }
86   else
87   {
88     mImpl->mCustomShader = new Impl::CustomShader( shaderMap );
89   }
90 }
91
92 void Visual::Base::SetProperties( const Property::Map& propertyMap )
93 {
94   for( size_t i = 0; i < propertyMap.Count(); ++i )
95   {
96     const KeyValuePair& pair = propertyMap.GetKeyValue( i );
97     const Property::Key& key = pair.first;
98     const Property::Value& value = pair.second;
99
100     Property::Key matchKey = key;
101     if( matchKey.type == Property::Key::STRING )
102     {
103       if( matchKey == CUSTOM_SHADER )
104       {
105         matchKey = Property::Key( Toolkit::Visual::Property::SHADER );
106       }
107       else if( matchKey == TRANSFORM )
108       {
109         matchKey = Property::Key( Toolkit::Visual::Property::TRANSFORM );
110       }
111       else if( matchKey == PREMULTIPLIED_ALPHA )
112       {
113         matchKey = Property::Key( Toolkit::Visual::Property::PREMULTIPLIED_ALPHA );
114       }
115       else if( matchKey == MIX_COLOR )
116       {
117         matchKey = Property::Key( Toolkit::Visual::Property::MIX_COLOR );
118       }
119       else if( matchKey == OPACITY )
120       {
121         matchKey = Property::Key( Toolkit::Visual::Property::OPACITY );
122       }
123       else if( matchKey == VISUAL_FITTING_MODE )
124       {
125         matchKey = Property::Key( Toolkit::DevelVisual::Property::VISUAL_FITTING_MODE );
126       }
127       else if( matchKey == CORNER_RADIUS )
128       {
129         matchKey = Property::Key( Toolkit::DevelVisual::Property::CORNER_RADIUS );
130       }
131       else if( matchKey == CORNER_RADIUS_POLICY )
132       {
133         matchKey = Property::Key( Toolkit::DevelVisual::Property::CORNER_RADIUS_POLICY );
134       }
135     }
136
137     switch( matchKey.indexKey )
138     {
139       case Toolkit::Visual::Property::SHADER:
140       {
141         Property::Map shaderMap;
142         if( value.Get( shaderMap ) )
143         {
144           SetCustomShader( shaderMap );
145         }
146         break;
147       }
148
149       case Toolkit::Visual::Property::TRANSFORM:
150       {
151         Property::Map map;
152         if( value.Get( map ) )
153         {
154           mImpl->mTransform.SetPropertyMap( map );
155         }
156         break;
157       }
158
159       case Toolkit::Visual::Property::PREMULTIPLIED_ALPHA:
160       {
161         bool premultipliedAlpha = false;
162         if( value.Get( premultipliedAlpha ) )
163         {
164           EnablePreMultipliedAlpha( premultipliedAlpha );
165         }
166         break;
167       }
168
169       case Toolkit::Visual::Property::MIX_COLOR:
170       {
171         Vector4 mixColor;
172         if( value.Get( mixColor ) )
173         {
174           if( value.GetType() == Property::VECTOR4 )
175           {
176             SetMixColor( mixColor );
177           }
178           else
179           {
180             Vector3 mixColor3(mixColor);
181             SetMixColor( mixColor3 );
182           }
183         }
184         break;
185       }
186       case Toolkit::Visual::Property::OPACITY:
187       {
188         float opacity;
189         if( value.Get( opacity ) )
190         {
191           mImpl->mMixColor.a = opacity;
192           SetMixColor( mImpl->mMixColor );
193         }
194         break;
195       }
196       case Toolkit::DevelVisual::Property::VISUAL_FITTING_MODE:
197       {
198         Scripting::GetEnumerationProperty< Visual::FittingMode >(
199           value, VISUAL_FITTING_MODE_TABLE, VISUAL_FITTING_MODE_TABLE_COUNT, mImpl->mFittingMode );
200         break;
201       }
202       case Toolkit::DevelVisual::Property::CORNER_RADIUS:
203       {
204         float radius;
205         if( value.Get( radius ) )
206         {
207           mImpl->mCornerRadius = radius;
208         }
209         break;
210       }
211       case Toolkit::DevelVisual::Property::CORNER_RADIUS_POLICY:
212       {
213         int policy;
214         if( value.Get( policy ) )
215         {
216           switch( policy )
217           {
218             case Toolkit::Visual::Transform::Policy::RELATIVE:
219             case Toolkit::Visual::Transform::Policy::ABSOLUTE:
220             {
221               mImpl->mCornerRadiusPolicy = policy;
222               break;
223             }
224             default:
225             {
226               DALI_LOG_ERROR( "Unsupported policy: %d\n", policy );
227               break;
228             }
229           }
230         }
231         break;
232       }
233     }
234   }
235
236   DoSetProperties( propertyMap );
237 }
238
239 void Visual::Base::SetTransformAndSize( const Property::Map& transform, Size controlSize )
240 {
241   mImpl->mControlSize = controlSize;
242   mImpl->mTransform.UpdatePropertyMap( transform );
243
244 #if defined(DEBUG_ENABLED)
245   std::ostringstream oss;
246   oss << transform;
247   DALI_LOG_INFO( gVisualBaseLogFilter, Debug::General, "Visual::Base::SetTransformAndSize(%s) - [\e[1;32mtransform: %s  controlSize: (%3.1f, %3.1f)]\e[0m\n",
248                  GetName().c_str(), oss.str().c_str(), controlSize.x, controlSize.y );
249 #endif
250
251   OnSetTransform();
252 }
253
254 void Visual::Base::SetName( const std::string& name )
255 {
256   mImpl->mName = name;
257 }
258
259 const std::string& Visual::Base::GetName() const
260 {
261   return mImpl->mName;
262 }
263
264 float Visual::Base::GetHeightForWidth( float width )
265 {
266   float aspectCorrectedHeight = 0.f;
267   Vector2 naturalSize;
268   GetNaturalSize( naturalSize );
269   if( naturalSize.width )
270   {
271     aspectCorrectedHeight = naturalSize.height * width / naturalSize.width;
272   }
273   return aspectCorrectedHeight;
274 }
275
276 float Visual::Base::GetWidthForHeight( float height )
277 {
278   float aspectCorrectedWidth = 0.f;
279   Vector2 naturalSize;
280   GetNaturalSize( naturalSize );
281   if( naturalSize.height > 0.0f )
282   {
283     aspectCorrectedWidth = naturalSize.width * height / naturalSize.height;
284   }
285   return aspectCorrectedWidth;
286 }
287
288 void Visual::Base::GetNaturalSize( Vector2& naturalSize )
289 {
290   naturalSize = Vector2::ZERO;
291 }
292
293 void Visual::Base::DoAction( const Property::Index actionId, const Property::Value attributes )
294 {
295   OnDoAction( actionId, attributes );
296 }
297
298 void Visual::Base::SetDepthIndex( int index )
299 {
300   mImpl->mDepthIndex = index;
301   if( mImpl->mRenderer )
302   {
303     mImpl->mRenderer.SetProperty( Renderer::Property::DEPTH_INDEX, mImpl->mDepthIndex );
304   }
305 }
306
307 int Visual::Base::GetDepthIndex() const
308 {
309   return mImpl->mDepthIndex;
310 }
311
312 void Visual::Base::SetOnScene( Actor& actor )
313 {
314   if( !IsOnScene() )
315   {
316     // To display the actor correctly, renderer should not be added to actor until all required resources are ready.
317     // Thus the calling of actor.AddRenderer() should happen inside derived class as base class does not know the exact timing.
318     DoSetOnScene( actor );
319
320     if( mImpl->mRenderer )
321     {
322       RegisterMixColor();
323
324       if( IsRoundedCornerRequired() )
325       {
326         mImpl->mCornerRadiusIndex = mImpl->mRenderer.RegisterProperty( CORNER_RADIUS, mImpl->mCornerRadius );
327         mImpl->mRenderer.RegisterProperty( CORNER_RADIUS_POLICY, mImpl->mCornerRadiusPolicy );
328
329         mImpl->mRenderer.SetProperty( Renderer::Property::BLEND_MODE, BlendMode::ON );
330       }
331
332       mImpl->mRenderer.SetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA, IsPreMultipliedAlphaEnabled());
333       mImpl->mRenderer.SetProperty( Renderer::Property::DEPTH_INDEX, mImpl->mDepthIndex );
334       mImpl->mFlags |= Impl::IS_ON_SCENE; // Only sets the flag if renderer exists
335     }
336   }
337 }
338
339 void Visual::Base::SetOffScene( Actor& actor )
340 {
341   if( IsOnScene() )
342   {
343     DoSetOffScene( actor );
344     mImpl->mMixColorIndex = Property::INVALID_INDEX;
345     mImpl->mCornerRadiusIndex = Property::INVALID_INDEX;
346     mImpl->mFlags &= ~Impl::IS_ON_SCENE;
347   }
348 }
349
350 void Visual::Base::CreatePropertyMap( Property::Map& map ) const
351 {
352   DoCreatePropertyMap( map );
353
354   if( mImpl->mCustomShader )
355   {
356     mImpl->mCustomShader->CreatePropertyMap( map );
357   }
358
359   Property::Map transform;
360   mImpl->mTransform.GetPropertyMap( transform );
361   map.Insert( Toolkit::Visual::Property::TRANSFORM, transform );
362
363   bool premultipliedAlpha( IsPreMultipliedAlphaEnabled() );
364   map.Insert( Toolkit::Visual::Property::PREMULTIPLIED_ALPHA, premultipliedAlpha );
365
366   // Note, Color and Primitive will also insert their own mix color into the map
367   // which is ok, because they have a different key value range.
368   map.Insert( Toolkit::Visual::Property::MIX_COLOR, mImpl->mMixColor ); // vec4
369   map.Insert( Toolkit::Visual::Property::OPACITY, mImpl->mMixColor.a );
370
371   auto fittingModeString = Scripting::GetLinearEnumerationName< FittingMode >(
372     mImpl->mFittingMode, VISUAL_FITTING_MODE_TABLE, VISUAL_FITTING_MODE_TABLE_COUNT );
373   map.Insert( Toolkit::DevelVisual::Property::VISUAL_FITTING_MODE, fittingModeString );
374
375   map.Insert( Toolkit::DevelVisual::Property::CORNER_RADIUS, mImpl->mCornerRadius );
376   map.Insert( Toolkit::DevelVisual::Property::CORNER_RADIUS_POLICY, static_cast< int >( mImpl->mCornerRadiusPolicy ) );
377 }
378
379 void Visual::Base::CreateInstancePropertyMap( Property::Map& map ) const
380 {
381   DoCreateInstancePropertyMap( map );
382
383   if( mImpl->mCustomShader )
384   {
385     mImpl->mCustomShader->CreatePropertyMap( map );
386   }
387
388   //map.Insert( Toolkit::Visual::Property::DEPTH_INDEX, mImpl->mDepthIndex );
389   //map.Insert( Toolkit::Visual::Property::ENABLED, (bool) mImpl->mRenderer );
390 }
391
392
393 void Visual::Base::EnablePreMultipliedAlpha( bool preMultiplied )
394 {
395   if( preMultiplied )
396   {
397     mImpl->mFlags |= Impl::IS_PREMULTIPLIED_ALPHA;
398   }
399   else
400   {
401     mImpl->mFlags &= ~Impl::IS_PREMULTIPLIED_ALPHA;
402   }
403
404   if( mImpl->mRenderer )
405   {
406     mImpl->mRenderer.SetProperty(Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA, preMultiplied);
407     mImpl->mRenderer.RegisterProperty( PRE_MULTIPLIED_ALPHA_PROPERTY, static_cast<float>( preMultiplied ) );
408   }
409 }
410
411 bool Visual::Base::IsPreMultipliedAlphaEnabled() const
412 {
413   return mImpl->mFlags & Impl::IS_PREMULTIPLIED_ALPHA;
414 }
415
416 void Visual::Base::DoSetOffScene( Actor& actor )
417 {
418   actor.RemoveRenderer( mImpl->mRenderer );
419   mImpl->mRenderer.Reset();
420 }
421
422 bool Visual::Base::IsOnScene() const
423 {
424   return mImpl->mFlags & Impl::IS_ON_SCENE;
425 }
426
427 bool Visual::Base::IsRoundedCornerRequired() const
428 {
429   return !EqualsZero( mImpl->mCornerRadius );
430 }
431
432 void Visual::Base::OnDoAction( const Property::Index actionId, const Property::Value& attributes )
433 {
434   // May be overriden by derived class
435 }
436
437 void Visual::Base::RegisterMixColor()
438 {
439   // Only register if not already registered.
440   // (Color and Primitive visuals will register their own and save to this index)
441   if( mImpl->mMixColorIndex == Property::INVALID_INDEX )
442   {
443     mImpl->mMixColorIndex = mImpl->mRenderer.RegisterProperty(
444       Toolkit::Visual::Property::MIX_COLOR,
445       MIX_COLOR,
446       Vector3(mImpl->mMixColor) );
447   }
448
449   mImpl->mRenderer.SetProperty( DevelRenderer::Property::OPACITY, mImpl->mMixColor.a );
450
451   float preMultipliedAlpha = 0.0f;
452   if( IsPreMultipliedAlphaEnabled() )
453   {
454     preMultipliedAlpha = 1.0f;
455   }
456   mImpl->mRenderer.RegisterProperty( PRE_MULTIPLIED_ALPHA_PROPERTY, preMultipliedAlpha );
457 }
458
459 void Visual::Base::SetMixColor( const Vector4& color )
460 {
461   mImpl->mMixColor = color;
462
463   if( mImpl->mRenderer )
464   {
465     mImpl->mRenderer.SetProperty( mImpl->mMixColorIndex, Vector3(color) );
466     mImpl->mRenderer.SetProperty( DevelRenderer::Property::OPACITY, color.a );
467   }
468 }
469
470 void Visual::Base::SetMixColor( const Vector3& color )
471 {
472   mImpl->mMixColor.r = color.r;
473   mImpl->mMixColor.g = color.g;
474   mImpl->mMixColor.b = color.b;
475
476   if( mImpl->mRenderer )
477   {
478     mImpl->mRenderer.SetProperty( mImpl->mMixColorIndex, color );
479   }
480 }
481
482 const Vector4& Visual::Base::GetMixColor() const
483 {
484   return mImpl->mMixColor;
485 }
486
487 void Visual::Base::AddEventObserver( Visual::EventObserver& observer)
488 {
489   mImpl->mEventObserver = &observer;
490 }
491
492 void Visual::Base::RemoveEventObserver( Visual::EventObserver& observer )
493 {
494   mImpl->mEventObserver = NULL;
495 }
496
497 void Visual::Base::ResourceReady(Toolkit::Visual::ResourceStatus resourceStatus)
498 {
499   if( mImpl->mResourceStatus != resourceStatus )
500   {
501     mImpl->mResourceStatus = resourceStatus;
502
503     if( mImpl->mEventObserver )
504     {
505       // observer is currently a control impl
506       mImpl->mEventObserver->ResourceReady( *this );
507     }
508   }
509 }
510
511 bool Visual::Base::IsResourceReady() const
512 {
513   return ( mImpl->mResourceStatus == Toolkit::Visual::ResourceStatus::READY );
514 }
515
516 bool Visual::Base::IsSynchronousLoadingRequired() const
517 {
518   return ( mImpl->mFlags & Impl::IS_SYNCHRONOUS_RESOURCE_LOADING );
519 }
520
521 Toolkit::Visual::Type Visual::Base::GetType() const
522 {
523   return mImpl->mType;
524 }
525
526 Toolkit::Visual::ResourceStatus Visual::Base::GetResourceStatus() const
527 {
528   return mImpl->mResourceStatus;
529 }
530
531 Visual::FittingMode Visual::Base::GetFittingMode() const
532 {
533   return mImpl->mFittingMode;
534 }
535
536 Visual::Base& Visual::Base::GetVisualObject()
537 {
538   return *this;
539 }
540
541 Renderer Visual::Base::GetRenderer()
542 {
543   return mImpl->mRenderer;
544 }
545
546 Property::Index Visual::Base::GetPropertyIndex( Property::Key key )
547 {
548   Property::Index index = mImpl->mRenderer.GetPropertyIndex( key );
549
550   if( index == Property::INVALID_INDEX )
551   {
552     // Is it a shader property?
553     Shader shader = mImpl->mRenderer.GetShader();
554     index = shader.GetPropertyIndex( key );
555     if( index != Property::INVALID_INDEX )
556     {
557       // Yes - we should register it in the Renderer so it can be set / animated
558       // independently, as shaders are shared across multiple renderers.
559       std::string keyName;
560       Property::Index keyIndex( Property::INVALID_KEY );
561       if( key.type == Property::Key::INDEX )
562       {
563         keyName = shader.GetPropertyName( index );
564         keyIndex = key.indexKey;
565       }
566       else
567       {
568         keyName = key.stringKey;
569         // Leave keyIndex as INVALID_KEY - it can still be registered against the string key.
570       }
571       Property::Value value = shader.GetProperty( index );
572       index = mImpl->mRenderer.RegisterProperty( keyIndex, keyName, value );
573     }
574   }
575   return index;
576 }
577
578 void Visual::Base::SetupTransition(
579   Dali::Animation& transition,
580   Internal::TransitionData::Animator& animator,
581   Property::Index index,
582   Property::Value& initialValue,
583   Property::Value& targetValue )
584 {
585   if( index != Property::INVALID_INDEX )
586   {
587     if( mImpl->mRenderer )
588     {
589       if( animator.animate == false )
590       {
591         mImpl->mRenderer.SetProperty( index, targetValue );
592       }
593       else
594       {
595         if( animator.initialValue.GetType() != Property::NONE )
596         {
597           mImpl->mRenderer.SetProperty( index, initialValue );
598         }
599
600         if( ! transition )
601         {
602           transition = Dali::Animation::New( 0.1f );
603         }
604
605         transition.AnimateTo( Property( mImpl->mRenderer, index ),
606                               targetValue,
607                               animator.alphaFunction,
608                               TimePeriod( animator.timePeriodDelay,
609                                           animator.timePeriodDuration ) );
610       }
611     }
612   }
613 }
614
615 void Visual::Base::AnimateProperty(
616   Dali::Animation& transition,
617   Internal::TransitionData::Animator& animator )
618 {
619 #if defined(DEBUG_ENABLED)
620   {
621     std::ostringstream oss;
622     oss << "Visual::Base::AnimateProperty(Visual:" << mImpl->mName << " Property:" << animator.propertyKey << " Target: " << animator.targetValue << std::endl;
623     DALI_LOG_INFO( gVisualBaseLogFilter, Debug::General, oss.str().c_str() );
624   }
625 #endif
626
627   Property::Map map;
628   DoCreatePropertyMap( map );
629   Property::Value* valuePtr = map.Find( Toolkit::Visual::Property::TYPE );
630   int visualType = -1;
631   if( valuePtr )
632   {
633     valuePtr->Get( visualType );
634   }
635
636   if( animator.propertyKey == Toolkit::Visual::Property::MIX_COLOR ||
637       animator.propertyKey == MIX_COLOR ||
638       ( visualType == Toolkit::Visual::COLOR &&
639         animator.propertyKey == ColorVisual::Property::MIX_COLOR ) ||
640       ( visualType == Toolkit::Visual::PRIMITIVE &&
641         animator.propertyKey == PrimitiveVisual::Property::MIX_COLOR ) )
642   {
643     AnimateMixColorProperty( transition, animator );
644   }
645   else if(animator.propertyKey == Toolkit::Visual::Property::OPACITY ||
646           animator.propertyKey == OPACITY )
647   {
648     AnimateOpacityProperty( transition, animator );
649   }
650   else if( mImpl->mRenderer )
651   {
652     AnimateRendererProperty( transition, animator );
653   }
654 }
655
656 void Visual::Base::AnimateOpacityProperty(
657   Dali::Animation& transition,
658   Internal::TransitionData::Animator& animator )
659 {
660   float targetOpacity;
661   if( animator.targetValue.Get( targetOpacity ) )
662   {
663     mImpl->mMixColor.a = targetOpacity;
664   }
665
666   SetupTransition( transition, animator, DevelRenderer::Property::OPACITY, animator.initialValue, animator.targetValue );
667 }
668
669 void Visual::Base::AnimateRendererProperty(
670   Dali::Animation& transition,
671   Internal::TransitionData::Animator& animator )
672 {
673   Property::Index index = GetPropertyIndex( animator.propertyKey );
674   if( index != Property::INVALID_INDEX )
675   {
676     if( animator.targetValue.GetType() != Property::NONE )
677     {
678       // Try writing target value into transform property map
679       // if it's not a valid key, then it won't alter mTransform
680       Property::Map map;
681       if( animator.propertyKey.type == Property::Key::INDEX )
682       {
683         map.Add( animator.propertyKey.indexKey, animator.targetValue );
684       }
685       else
686       {
687         map.Add( animator.propertyKey.stringKey, animator.targetValue );
688       }
689
690       mImpl->mTransform.UpdatePropertyMap( map );
691     }
692
693     SetupTransition( transition, animator, index, animator.initialValue, animator.targetValue );
694   }
695 }
696
697 void Visual::Base::AnimateMixColorProperty(
698   Dali::Animation& transition,
699   Internal::TransitionData::Animator& animator )
700 {
701   Property::Index index = mImpl->mMixColorIndex;
702   bool animateOpacity = false;
703
704   Property::Value initialOpacity;
705   Property::Value targetOpacity;
706   Property::Value initialMixColor;
707   Property::Value targetMixColor;
708
709   if( index != Property::INVALID_INDEX )
710   {
711     Vector4 initialColor;
712     if( animator.initialValue.Get(initialColor) )
713     {
714       if( animator.initialValue.GetType() == Property::VECTOR4 )
715       {
716         // if there is an initial color specifying alpha, test it
717         initialOpacity = initialColor.a;
718       }
719       initialMixColor = Vector3( initialColor );
720     }
721
722     // Set target value into data store
723     if( animator.targetValue.GetType() != Property::NONE )
724     {
725       Vector4 mixColor;
726       animator.targetValue.Get(mixColor);
727       if( animator.targetValue.GetType() == Property::VECTOR4 )
728       {
729         mImpl->mMixColor.a = mixColor.a;
730         targetOpacity = mixColor.a;
731         animateOpacity = true;
732       }
733
734       mImpl->mMixColor.r = mixColor.r;
735       mImpl->mMixColor.g = mixColor.g;
736       mImpl->mMixColor.b = mixColor.b;
737       targetMixColor = Vector3(mixColor);
738     }
739
740     SetupTransition( transition, animator, index, initialMixColor, targetMixColor );
741     if( animateOpacity )
742     {
743       SetupTransition( transition, animator, DevelRenderer::Property::OPACITY, initialOpacity, targetOpacity );
744     }
745   }
746 }
747
748 } // namespace Internal
749
750 } // namespace Toolkit
751
752 } // namespace Dali