Blend Equation Advanced Supporting
[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 bool Visual::Base::IsAdvancedBlendEquationApplied() const
417 {
418   return IsPreMultipliedAlphaEnabled() && DevelRenderer::IsAdvancedBlendEquationApplied( mImpl->mRenderer );
419 }
420
421 void Visual::Base::DoSetOffScene( Actor& actor )
422 {
423   actor.RemoveRenderer( mImpl->mRenderer );
424   mImpl->mRenderer.Reset();
425 }
426
427 bool Visual::Base::IsOnScene() const
428 {
429   return mImpl->mFlags & Impl::IS_ON_SCENE;
430 }
431
432 bool Visual::Base::IsRoundedCornerRequired() const
433 {
434   return !EqualsZero( mImpl->mCornerRadius );
435 }
436
437 void Visual::Base::OnDoAction( const Property::Index actionId, const Property::Value& attributes )
438 {
439   // May be overriden by derived class
440 }
441
442 void Visual::Base::RegisterMixColor()
443 {
444   // Only register if not already registered.
445   // (Color and Primitive visuals will register their own and save to this index)
446   if( mImpl->mMixColorIndex == Property::INVALID_INDEX )
447   {
448     mImpl->mMixColorIndex = mImpl->mRenderer.RegisterProperty(
449       Toolkit::Visual::Property::MIX_COLOR,
450       MIX_COLOR,
451       Vector3(mImpl->mMixColor) );
452   }
453
454   if( mImpl->mMixColor.a < 1.f || IsAdvancedBlendEquationApplied() )
455   {
456     mImpl->mRenderer.SetProperty( Renderer::Property::BLEND_MODE, BlendMode::ON );
457   }
458
459   mImpl->mRenderer.SetProperty( DevelRenderer::Property::OPACITY, mImpl->mMixColor.a );
460
461   float preMultipliedAlpha = 0.0f;
462   if( IsPreMultipliedAlphaEnabled() )
463   {
464     preMultipliedAlpha = 1.0f;
465   }
466   mImpl->mRenderer.RegisterProperty( PRE_MULTIPLIED_ALPHA_PROPERTY, preMultipliedAlpha );
467 }
468
469 void Visual::Base::SetMixColor( const Vector4& color )
470 {
471   mImpl->mMixColor = color;
472
473   if( mImpl->mRenderer )
474   {
475     mImpl->mRenderer.SetProperty( mImpl->mMixColorIndex, Vector3(color) );
476     mImpl->mRenderer.SetProperty( DevelRenderer::Property::OPACITY, color.a );
477     if( color.a < 1.f || IsAdvancedBlendEquationApplied() )
478     {
479       mImpl->mRenderer.SetProperty( Renderer::Property::BLEND_MODE, BlendMode::ON );
480     }
481   }
482 }
483
484 void Visual::Base::SetMixColor( const Vector3& color )
485 {
486   mImpl->mMixColor.r = color.r;
487   mImpl->mMixColor.g = color.g;
488   mImpl->mMixColor.b = color.b;
489
490   if( mImpl->mRenderer )
491   {
492     mImpl->mRenderer.SetProperty( mImpl->mMixColorIndex, color );
493   }
494 }
495
496 const Vector4& Visual::Base::GetMixColor() const
497 {
498   return mImpl->mMixColor;
499 }
500
501 void Visual::Base::AddEventObserver( Visual::EventObserver& observer)
502 {
503   mImpl->mEventObserver = &observer;
504 }
505
506 void Visual::Base::RemoveEventObserver( Visual::EventObserver& observer )
507 {
508   mImpl->mEventObserver = NULL;
509 }
510
511 void Visual::Base::ResourceReady(Toolkit::Visual::ResourceStatus resourceStatus)
512 {
513   if( mImpl->mResourceStatus != resourceStatus )
514   {
515     mImpl->mResourceStatus = resourceStatus;
516
517     if( mImpl->mEventObserver )
518     {
519       // observer is currently a control impl
520       mImpl->mEventObserver->ResourceReady( *this );
521     }
522   }
523 }
524
525 bool Visual::Base::IsResourceReady() const
526 {
527   return ( mImpl->mResourceStatus == Toolkit::Visual::ResourceStatus::READY );
528 }
529
530 bool Visual::Base::IsSynchronousLoadingRequired() const
531 {
532   return ( mImpl->mFlags & Impl::IS_SYNCHRONOUS_RESOURCE_LOADING );
533 }
534
535 Toolkit::Visual::Type Visual::Base::GetType() const
536 {
537   return mImpl->mType;
538 }
539
540 Toolkit::Visual::ResourceStatus Visual::Base::GetResourceStatus() const
541 {
542   return mImpl->mResourceStatus;
543 }
544
545 Visual::FittingMode Visual::Base::GetFittingMode() const
546 {
547   return mImpl->mFittingMode;
548 }
549
550 Visual::Base& Visual::Base::GetVisualObject()
551 {
552   return *this;
553 }
554
555 Renderer Visual::Base::GetRenderer()
556 {
557   return mImpl->mRenderer;
558 }
559
560 Property::Index Visual::Base::GetPropertyIndex( Property::Key key )
561 {
562   Property::Index index = mImpl->mRenderer.GetPropertyIndex( key );
563
564   if( index == Property::INVALID_INDEX )
565   {
566     // Is it a shader property?
567     Shader shader = mImpl->mRenderer.GetShader();
568     index = shader.GetPropertyIndex( key );
569     if( index != Property::INVALID_INDEX )
570     {
571       // Yes - we should register it in the Renderer so it can be set / animated
572       // independently, as shaders are shared across multiple renderers.
573       std::string keyName;
574       Property::Index keyIndex( Property::INVALID_KEY );
575       if( key.type == Property::Key::INDEX )
576       {
577         keyName = shader.GetPropertyName( index );
578         keyIndex = key.indexKey;
579       }
580       else
581       {
582         keyName = key.stringKey;
583         // Leave keyIndex as INVALID_KEY - it can still be registered against the string key.
584       }
585       Property::Value value = shader.GetProperty( index );
586       index = mImpl->mRenderer.RegisterProperty( keyIndex, keyName, value );
587     }
588   }
589   return index;
590 }
591
592 void Visual::Base::SetupTransition(
593   Dali::Animation& transition,
594   Internal::TransitionData::Animator& animator,
595   Property::Index index,
596   Property::Value& initialValue,
597   Property::Value& targetValue )
598 {
599   if( index != Property::INVALID_INDEX )
600   {
601     if( mImpl->mRenderer )
602     {
603       if( animator.animate == false )
604       {
605         mImpl->mRenderer.SetProperty( index, targetValue );
606       }
607       else
608       {
609         if( animator.initialValue.GetType() != Property::NONE )
610         {
611           mImpl->mRenderer.SetProperty( index, initialValue );
612         }
613
614         if( ! transition )
615         {
616           transition = Dali::Animation::New( 0.1f );
617         }
618
619         transition.AnimateTo( Property( mImpl->mRenderer, index ),
620                               targetValue,
621                               animator.alphaFunction,
622                               TimePeriod( animator.timePeriodDelay,
623                                           animator.timePeriodDuration ) );
624       }
625     }
626   }
627 }
628
629 void Visual::Base::AnimateProperty(
630   Dali::Animation& transition,
631   Internal::TransitionData::Animator& animator )
632 {
633 #if defined(DEBUG_ENABLED)
634   {
635     std::ostringstream oss;
636     oss << "Visual::Base::AnimateProperty(Visual:" << mImpl->mName << " Property:" << animator.propertyKey << " Target: " << animator.targetValue << std::endl;
637     DALI_LOG_INFO( gVisualBaseLogFilter, Debug::General, oss.str().c_str() );
638   }
639 #endif
640
641   Property::Map map;
642   DoCreatePropertyMap( map );
643   Property::Value* valuePtr = map.Find( Toolkit::Visual::Property::TYPE );
644   int visualType = -1;
645   if( valuePtr )
646   {
647     valuePtr->Get( visualType );
648   }
649
650   if( animator.propertyKey == Toolkit::Visual::Property::MIX_COLOR ||
651       animator.propertyKey == MIX_COLOR ||
652       ( visualType == Toolkit::Visual::COLOR &&
653         animator.propertyKey == ColorVisual::Property::MIX_COLOR ) ||
654       ( visualType == Toolkit::Visual::PRIMITIVE &&
655         animator.propertyKey == PrimitiveVisual::Property::MIX_COLOR ) )
656   {
657     AnimateMixColorProperty( transition, animator );
658   }
659   else if(animator.propertyKey == Toolkit::Visual::Property::OPACITY ||
660           animator.propertyKey == OPACITY )
661   {
662     AnimateOpacityProperty( transition, animator );
663   }
664   else if( mImpl->mRenderer )
665   {
666     AnimateRendererProperty( transition, animator );
667   }
668 }
669
670 void Visual::Base::AnimateOpacityProperty(
671   Dali::Animation& transition,
672   Internal::TransitionData::Animator& animator )
673 {
674   bool isOpaque = mImpl->mMixColor.a >= 1.0f;
675
676   float initialOpacity;
677   if( animator.initialValue.Get( initialOpacity ) )
678   {
679     isOpaque = (initialOpacity >= 1.0f);
680   }
681
682   float targetOpacity;
683   if( animator.targetValue.Get( targetOpacity ) )
684   {
685     mImpl->mMixColor.a = targetOpacity;
686   }
687
688   SetupTransition( transition, animator, DevelRenderer::Property::OPACITY, animator.initialValue, animator.targetValue );
689   SetupBlendMode( transition, isOpaque, animator.animate );
690 }
691
692 void Visual::Base::AnimateRendererProperty(
693   Dali::Animation& transition,
694   Internal::TransitionData::Animator& animator )
695 {
696   Property::Index index = GetPropertyIndex( animator.propertyKey );
697   if( index != Property::INVALID_INDEX )
698   {
699     if( animator.targetValue.GetType() != Property::NONE )
700     {
701       // Try writing target value into transform property map
702       // if it's not a valid key, then it won't alter mTransform
703       Property::Map map;
704       if( animator.propertyKey.type == Property::Key::INDEX )
705       {
706         map.Add( animator.propertyKey.indexKey, animator.targetValue );
707       }
708       else
709       {
710         map.Add( animator.propertyKey.stringKey, animator.targetValue );
711       }
712
713       mImpl->mTransform.UpdatePropertyMap( map );
714     }
715
716     SetupTransition( transition, animator, index, animator.initialValue, animator.targetValue );
717   }
718 }
719
720 void Visual::Base::AnimateMixColorProperty(
721   Dali::Animation& transition,
722   Internal::TransitionData::Animator& animator )
723 {
724   Property::Index index = mImpl->mMixColorIndex;
725   bool animateOpacity = false;
726   bool isOpaque = true;
727
728   Property::Value initialOpacity;
729   Property::Value targetOpacity;
730   Property::Value initialMixColor;
731   Property::Value targetMixColor;
732
733   if( index != Property::INVALID_INDEX )
734   {
735     Vector4 initialColor;
736     if( animator.initialValue.Get(initialColor) )
737     {
738       if( animator.initialValue.GetType() == Property::VECTOR4 )
739       {
740         // if there is an initial color specifying alpha, test it
741         isOpaque = initialColor.a >= 1.0f;
742         initialOpacity = initialColor.a;
743       }
744       initialMixColor = Vector3( initialColor );
745     }
746
747     // Set target value into data store
748     if( animator.targetValue.GetType() != Property::NONE )
749     {
750       Vector4 mixColor;
751       animator.targetValue.Get(mixColor);
752       if( animator.targetValue.GetType() == Property::VECTOR4 )
753       {
754         mImpl->mMixColor.a = mixColor.a;
755         targetOpacity = mixColor.a;
756         animateOpacity = true;
757       }
758
759       mImpl->mMixColor.r = mixColor.r;
760       mImpl->mMixColor.g = mixColor.g;
761       mImpl->mMixColor.b = mixColor.b;
762       targetMixColor = Vector3(mixColor);
763     }
764
765     SetupTransition( transition, animator, index, initialMixColor, targetMixColor );
766     if( animateOpacity )
767     {
768       SetupTransition( transition, animator, DevelRenderer::Property::OPACITY, initialOpacity, targetOpacity );
769       SetupBlendMode( transition, isOpaque, animator.animate );
770     }
771   }
772 }
773
774 void Visual::Base::SetupBlendMode( Animation& transition, bool isInitialOpaque, bool animating )
775 {
776   // Ensure the blend mode is turned on if we are animating opacity, and
777   // turned off after the animation ends if the final value is opaque
778   if( ( ! isInitialOpaque || mImpl->mMixColor.a < 1.0f ) ||
779       ( mImpl->mRenderer && IsAdvancedBlendEquationApplied() ) )
780   {
781     if( mImpl->mRenderer )
782     {
783       mImpl->mRenderer.SetProperty( Renderer::Property::BLEND_MODE, BlendMode::ON );
784
785       if( animating == true && mImpl->mMixColor.a >= 1.0f )
786       {
787         // When it becomes opaque, set the blend mode back to automatically
788         if( ! mImpl->mBlendSlotDelegate )
789         {
790           mImpl->mBlendSlotDelegate = new SlotDelegate<Visual::Base>(this);
791         }
792         transition.FinishedSignal().Connect( *(mImpl->mBlendSlotDelegate),
793                                              &Visual::Base::OnMixColorFinished );
794       }
795     }
796   }
797 }
798
799 void Visual::Base::OnMixColorFinished( Animation& animation )
800 {
801   if( mImpl->mRenderer )
802   {
803     DALI_LOG_INFO( gVisualBaseLogFilter, Debug::General, "Visual::Base::OnMixColorFinished()\n");
804
805     if( mImpl->mMixColor.a >= 1.f &&
806         !IsAdvancedBlendEquationApplied() )
807     {
808       mImpl->mRenderer.SetProperty( Renderer::Property::BLEND_MODE, BlendMode::AUTO );
809     }
810     else
811     {
812       mImpl->mRenderer.SetProperty( Renderer::Property::BLEND_MODE, BlendMode::ON );
813     }
814   }
815   delete mImpl->mBlendSlotDelegate;
816   mImpl->mBlendSlotDelegate = NULL;
817 }
818
819 } // namespace Internal
820
821 } // namespace Toolkit
822
823 } // namespace Dali