X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fvisual-base-impl.cpp;h=c829e8fce6852f9c5bcc5c9472dcdcccea8fdca7;hb=refs%2Fchanges%2F18%2F153818%2F9;hp=0d2b05071ea5624a2d813c96dd4599a5518b33d8;hpb=5a2a5883422f4d114902ac57d57d7d1e973fbb2e;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/visual-base-impl.cpp b/dali-toolkit/internal/visuals/visual-base-impl.cpp index 0d2b050..c829e8f 100644 --- a/dali-toolkit/internal/visuals/visual-base-impl.cpp +++ b/dali-toolkit/internal/visuals/visual-base-impl.cpp @@ -26,7 +26,7 @@ //INTERNAL HEARDER #include #include -#include +#include #include #include @@ -82,29 +82,29 @@ void Visual::Base::SetProperties( const Property::Map& propertyMap ) { if( matchKey == CUSTOM_SHADER ) { - matchKey = Property::Key( DevelVisual::Property::SHADER ); + matchKey = Property::Key( Toolkit::Visual::Property::SHADER ); } else if( matchKey == TRANSFORM ) { - matchKey = Property::Key( DevelVisual::Property::TRANSFORM ); + matchKey = Property::Key( Toolkit::Visual::Property::TRANSFORM ); } else if( matchKey == PREMULTIPLIED_ALPHA ) { - matchKey = Property::Key( DevelVisual::Property::PREMULTIPLIED_ALPHA ); + matchKey = Property::Key( Toolkit::Visual::Property::PREMULTIPLIED_ALPHA ); } else if( matchKey == MIX_COLOR ) { - matchKey = Property::Key( DevelVisual::Property::MIX_COLOR ); + matchKey = Property::Key( Toolkit::Visual::Property::MIX_COLOR ); } else if( matchKey == OPACITY ) { - matchKey = Property::Key( DevelVisual::Property::OPACITY ); + matchKey = Property::Key( Toolkit::Visual::Property::OPACITY ); } } switch( matchKey.indexKey ) { - case DevelVisual::Property::SHADER: + case Toolkit::Visual::Property::SHADER: { Property::Map shaderMap; if( value.Get( shaderMap ) ) @@ -114,7 +114,7 @@ void Visual::Base::SetProperties( const Property::Map& propertyMap ) break; } - case DevelVisual::Property::TRANSFORM: + case Toolkit::Visual::Property::TRANSFORM: { Property::Map map; if( value.Get( map ) ) @@ -124,7 +124,7 @@ void Visual::Base::SetProperties( const Property::Map& propertyMap ) break; } - case DevelVisual::Property::PREMULTIPLIED_ALPHA: + case Toolkit::Visual::Property::PREMULTIPLIED_ALPHA: { bool premultipliedAlpha = false; if( value.Get( premultipliedAlpha ) ) @@ -134,7 +134,7 @@ void Visual::Base::SetProperties( const Property::Map& propertyMap ) break; } - case DevelVisual::Property::MIX_COLOR: + case Toolkit::Visual::Property::MIX_COLOR: { Vector4 mixColor; if( value.Get( mixColor ) ) @@ -151,7 +151,7 @@ void Visual::Base::SetProperties( const Property::Map& propertyMap ) } break; } - case DevelVisual::Property::OPACITY: + case Toolkit::Visual::Property::OPACITY: { float opacity; if( value.Get( opacity ) ) @@ -221,7 +221,7 @@ void Visual::Base::GetNaturalSize( Vector2& naturalSize ) naturalSize = Vector2::ZERO; } -void Visual::Base::SetDepthIndex( float index ) +void Visual::Base::SetDepthIndex( int index ) { mImpl->mDepthIndex = index; if( mImpl->mRenderer ) @@ -230,7 +230,7 @@ void Visual::Base::SetDepthIndex( float index ) } } -float Visual::Base::GetDepthIndex() const +int Visual::Base::GetDepthIndex() const { return mImpl->mDepthIndex; } @@ -276,17 +276,31 @@ void Visual::Base::CreatePropertyMap( Property::Map& map ) const Property::Map transform; mImpl->mTransform.GetPropertyMap( transform ); - map.Insert( DevelVisual::Property::TRANSFORM, transform ); + map.Insert( Toolkit::Visual::Property::TRANSFORM, transform ); bool premultipliedAlpha( IsPreMultipliedAlphaEnabled() ); - map.Insert( DevelVisual::Property::PREMULTIPLIED_ALPHA, premultipliedAlpha ); + map.Insert( Toolkit::Visual::Property::PREMULTIPLIED_ALPHA, premultipliedAlpha ); // Note, Color and Primitive will also insert their own mix color into the map // which is ok, because they have a different key value range. - map.Insert( DevelVisual::Property::MIX_COLOR, mImpl->mMixColor ); // vec4 - map.Insert( DevelVisual::Property::OPACITY, mImpl->mMixColor.a ); + map.Insert( Toolkit::Visual::Property::MIX_COLOR, mImpl->mMixColor ); // vec4 + map.Insert( Toolkit::Visual::Property::OPACITY, mImpl->mMixColor.a ); } +void Visual::Base::CreateInstancePropertyMap( Property::Map& map ) const +{ + DoCreateInstancePropertyMap( map ); + + if( mImpl->mCustomShader ) + { + mImpl->mCustomShader->CreatePropertyMap( map ); + } + + //map.Insert( Toolkit::Visual::Property::DEPTH_INDEX, mImpl->mDepthIndex ); + //map.Insert( Toolkit::Visual::Property::ENABLED, (bool) mImpl->mRenderer ); +} + + void Visual::Base::EnablePreMultipliedAlpha( bool preMultipled ) { if( preMultipled ) @@ -320,11 +334,6 @@ bool Visual::Base::IsOnStage() const return mImpl->mFlags & Impl::IS_ON_STAGE; } -bool Visual::Base::IsFromCache() const -{ - return mImpl->mFlags & Impl::IS_FROM_CACHE; -} - void Visual::Base::RegisterMixColor() { // Only register if not already registered. @@ -333,7 +342,7 @@ void Visual::Base::RegisterMixColor() { mImpl->mMixColorIndex = DevelHandle::RegisterProperty( mImpl->mRenderer, - Toolkit::DevelVisual::Property::MIX_COLOR, + Toolkit::Visual::Property::MIX_COLOR, MIX_COLOR, Vector3(mImpl->mMixColor) ); } @@ -347,7 +356,7 @@ void Visual::Base::RegisterMixColor() { mImpl->mOpacityIndex = DevelHandle::RegisterProperty( mImpl->mRenderer, - Toolkit::DevelVisual::Property::OPACITY, + Toolkit::Visual::Property::OPACITY, OPACITY, mImpl->mMixColor.a ); } @@ -392,6 +401,37 @@ const Vector4& Visual::Base::GetMixColor() const return mImpl->mMixColor; } +void Visual::Base::AddResourceObserver( Visual::ResourceObserver& observer) +{ + mImpl->mResourceObserver = &observer; +} + +void Visual::Base::RemoveResourceObserver( Visual::ResourceObserver& observer ) +{ + mImpl->mResourceObserver = NULL; +} + +void Visual::Base::ResourceReady() +{ + if( mImpl->mResourceReady ) + { + // only inform the observer the first time the resource is ready + return; + } + mImpl->mResourceReady = true; + + if( mImpl->mResourceObserver ) + { + // observer is currently a control impl + mImpl->mResourceObserver->ResourceReady( *this ); + } +} + +bool Visual::Base::IsResourceReady() const +{ + return mImpl->mResourceReady; +} + Renderer Visual::Base::GetRenderer() { return mImpl->mRenderer; @@ -480,11 +520,14 @@ void Visual::Base::AnimateProperty( Property::Map map; DoCreatePropertyMap( map ); - Property::Value* valuePtr = map.Find( Toolkit::DevelVisual::Property::TYPE ); - int visualType; - valuePtr->Get(visualType); + Property::Value* valuePtr = map.Find( Toolkit::Visual::Property::TYPE ); + int visualType = -1; + if( valuePtr ) + { + valuePtr->Get( visualType ); + } - if( animator.propertyKey == Toolkit::DevelVisual::Property::MIX_COLOR || + if( animator.propertyKey == Toolkit::Visual::Property::MIX_COLOR || animator.propertyKey == MIX_COLOR || ( visualType == Toolkit::Visual::COLOR && animator.propertyKey == ColorVisual::Property::MIX_COLOR ) || @@ -493,14 +536,14 @@ void Visual::Base::AnimateProperty( { AnimateMixColorProperty( transition, animator ); } - else if(animator.propertyKey == Toolkit::DevelVisual::Property::OPACITY || + else if(animator.propertyKey == Toolkit::Visual::Property::OPACITY || animator.propertyKey == OPACITY ) { AnimateOpacityProperty( transition, animator ); } else if( mImpl->mRenderer ) { - AnimateRendererProperty(transition, animator); + AnimateRendererProperty( transition, animator ); } }