X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fsuper-blur-view%2Fsuper-blur-view-impl.cpp;h=581b87e99393e0647663b25c31b809a78605ce21;hp=3b2443b4bc47e316a132eb5a58e13e8655068f03;hb=c207c7aae76e4a6111656669fbed81052513b460;hpb=57869973578f6a0b0f836d396c7232ddb8302c6b diff --git a/dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp b/dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp index 3b2443b..581b87e 100644 --- a/dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp +++ b/dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,17 +15,26 @@ * */ +// CLASS HEADER +#include "super-blur-view-impl.h" + // EXTERNAL INCLUDES #include +#include #include +#include #include -#include +#include +#include +#include #include -// CLASS HEADER -#include "super-blur-view-impl.h" +// INTERNAL_INCLUDES +#include +#include +#include -namespace //unnamed namespace +namespace //Unnamed namespace { using namespace Dali; @@ -35,10 +44,24 @@ const unsigned int GAUSSIAN_BLUR_DEFAULT_NUM_SAMPLES = 11; const unsigned int GAUSSIAN_BLUR_NUM_SAMPLES_INCREMENTATION = 10; const float GAUSSIAN_BLUR_BELL_CURVE_WIDTH = 4.5f; const float GAUSSIAN_BLUR_BELL_CURVE_WIDTH_INCREMENTATION = 5.f; -const Pixel::Format GAUSSIAN_BLUR_RENDER_TARGET_PIXEL_FORMAT = Pixel::RGB888; +const Pixel::Format GAUSSIAN_BLUR_RENDER_TARGET_PIXEL_FORMAT = Pixel::RGBA8888; const float GAUSSIAN_BLUR_DOWNSAMPLE_WIDTH_SCALE = 0.5f; const float GAUSSIAN_BLUR_DOWNSAMPLE_HEIGHT_SCALE = 0.5f; +const char* ALPHA_UNIFORM_NAME( "uAlpha" ); +const char* FRAGMENT_SHADER = DALI_COMPOSE_SHADER( + varying mediump vec2 vTexCoord;\n + uniform sampler2D sTexture;\n + uniform lowp vec4 uColor;\n + uniform lowp float uAlpha;\n + \n + void main()\n + {\n + gl_FragColor = texture2D( sTexture, vTexCoord ) * uColor;\n + gl_FragColor.a *= uAlpha; + }\n +); + /** * The constraint is used to blend the group of blurred images continuously with a unified blur strength property value which ranges from zero to one. */ @@ -51,20 +74,20 @@ struct ActorOpacityConstraint mRange = Vector2( index*rangeLength, (index+1.f)*rangeLength ); } - float operator()( float current, const PropertyInput& blurProperty ) + void operator()( float& current, const PropertyInputContainer& inputs ) { - float blurStrength = blurProperty.GetFloat(); - if(blurStrength <= mRange.x) + float blurStrength = inputs[0]->GetFloat(); + if(blurStrength < mRange.x) { - return 1.f; + current = 0.f; } else if(blurStrength > mRange.y) { - return 0.f; + current = 1.f; } else { - return (mRange.y - blurStrength)/(mRange.y-mRange.x); + current = ( blurStrength - mRange.x) / ( mRange.y - mRange.x ); } } @@ -79,13 +102,12 @@ namespace Dali namespace Toolkit { -const Property::Index SuperBlurView::PROPERTY_IMAGE( Internal::SuperBlurView::SUPER_BLUR_VIEW_PROPERTY_START_INDEX ); - namespace Internal { namespace { + const unsigned int DEFAULT_BLUR_LEVEL(5u); ///< The default blur level when creating SuperBlurView from the type registry BaseHandle Create() @@ -93,24 +115,26 @@ BaseHandle Create() return Toolkit::SuperBlurView::New( DEFAULT_BLUR_LEVEL ); } -// Type registration -TypeRegistration typeRegistration( typeid(Toolkit::SuperBlurView), typeid(Toolkit::Control), Create ); +// Setup properties, signals and actions using the type-registry. +DALI_TYPE_REGISTRATION_BEGIN( Toolkit::SuperBlurView, Toolkit::Control, Create ) -PropertyRegistration property1( typeRegistration, "image", Toolkit::SuperBlurView::PROPERTY_IMAGE, Property::MAP, &SuperBlurView::SetProperty, &SuperBlurView::GetProperty ); +DALI_PROPERTY_REGISTRATION( Toolkit, SuperBlurView, "image", MAP, IMAGE ) + +DALI_TYPE_REGISTRATION_END() } // unnamed namespace SuperBlurView::SuperBlurView( unsigned int blurLevels ) -: Control( CONTROL_BEHAVIOUR_NONE ), - mBlurLevels( blurLevels ), +: Control( ControlBehaviour( DISABLE_SIZE_NEGOTIATION | DISABLE_STYLE_CHANGE_SIGNALS ) ), + mTargetSize( Vector2::ZERO ), mBlurStrengthPropertyIndex(Property::INVALID_INDEX), - mResourcesCleared( true ), - mTargetSize( Vector2::ZERO ) + mBlurLevels( blurLevels ), + mResourcesCleared( true ) { DALI_ASSERT_ALWAYS( mBlurLevels > 0 && " Minimal blur level is one, otherwise no blur is needed" ); - mGaussianBlurView.assign( blurLevels, NULL ); + mGaussianBlurView.assign( blurLevels, Toolkit::GaussianBlurView() ); mBlurredImage.assign( blurLevels, FrameBufferImage() ); - mImageActors.assign( blurLevels + 1, ImageActor() ); + mVisuals.assign( blurLevels+1, Toolkit::Visual::Base() ); } SuperBlurView::~SuperBlurView() @@ -134,49 +158,40 @@ Toolkit::SuperBlurView SuperBlurView::New( unsigned int blurLevels ) void SuperBlurView::OnInitialize() { - mBlurStrengthPropertyIndex = Self().RegisterProperty( "blur-strength",0.f ); - - DALI_ASSERT_ALWAYS( mImageActors.size() == mBlurLevels+1 && "must synchronize the ImageActor group if blur levels got changed " ); - for(unsigned int i=0; i<=mBlurLevels;i++) - { - mImageActors[i] = ImageActor::New( ); - mImageActors[i].SetParentOrigin( ParentOrigin::CENTER ); - mImageActors[i].SetZ(-static_cast(i)*0.01f); - mImageActors[i].SetColorMode( USE_OWN_MULTIPLY_PARENT_ALPHA ); - Self().Add( mImageActors[i] ); - } - - for(unsigned int i=0; i < mBlurLevels; i++) - { - mImageActors[i].ApplyConstraint( Constraint::New( Actor::COLOR_ALPHA, ParentSource( mBlurStrengthPropertyIndex ), ActorOpacityConstraint(mBlurLevels, i) ) ); - } - - Self().SetSize(Stage::GetCurrent().GetSize()); + mBlurStrengthPropertyIndex = Self().RegisterProperty( "blurStrength", 0.f ); } void SuperBlurView::SetImage(Image inputImage) { - DALI_ASSERT_ALWAYS( mImageActors.size() == mBlurLevels+1 && "must synchronize the ImageActor group if blur levels got changed " ); - DALI_ASSERT_ALWAYS( mBlurredImage.size() == mBlurLevels && "must synchronize the blurred image group if blur levels got changed " ); + mInputImage = inputImage; + if( mTargetSize == Vector2::ZERO ) + { + return; + } ClearBlurResource(); - mImageActors[0].SetImage( inputImage ); + Actor self( Self() ); - for(unsigned int i=1; i<=mBlurLevels;i++) - { - mImageActors[i].SetImage( mBlurredImage[i-1] ); - } + mVisuals[0] = Toolkit::VisualFactory::Get().CreateVisual( mInputImage ); + DevelControl::RegisterVisual( *this, 0, mVisuals[0] ); // Will clean up previously registered visuals for this index. + mVisuals[0].SetDepthIndex(0); + // custom shader is not applied on the original image. BlurImage( 0, inputImage); for(unsigned int i=1; i(i); + mBlurredImage[i-1] = FrameBufferImage::New( mTargetSize.width/std::pow(2.f,exponent) , mTargetSize.height/std::pow(2.f,exponent), + GAUSSIAN_BLUR_RENDER_TARGET_PIXEL_FORMAT ); + + mVisuals[i] = Toolkit::VisualFactory::Get().CreateVisual( mBlurredImage[i - 1] ); + DevelControl::RegisterVisual( *this, i, mVisuals[i] ); // Will clean up existing visual with same index. + mVisuals[i].SetDepthIndex( i ); + SetShaderEffect( mVisuals[i] ); + } + + if( mInputImage ) + { + SetImage( mInputImage ); + } + } + + Control::OnSizeSet( targetSize ); +} + +void SuperBlurView::OnStageConnection( int depth ) +{ + if( mTargetSize == Vector2::ZERO ) + { + return; + } + + // Exception to the rule, chaining up first ensures visuals have SetOnStage called to create their renderers + Control::OnStageConnection( depth ); + + Actor self = Self(); + for(unsigned int i=0; i<=mBlurLevels;i++) + { + // Note that the renderer indices are depending on the order they been added to the actor + // which might be different from the blur level of its texture. + // We can check the depth index of the renderer to know which blurred image it renders. + // All visuals WILL have renderers at this point as we are simply creating visuals with an Image handle. + Renderer renderer = self.GetRendererAt( i ); + int depthIndex = renderer.GetProperty(Renderer::Property::DEPTH_INDEX); + if( depthIndex > 0 ) { - float exponent = static_cast(i+1); - mBlurredImage[i] = FrameBufferImage::New( mTargetSize.width/std::pow(2.f,exponent) , mTargetSize.height/std::pow(2.f,exponent), - GAUSSIAN_BLUR_RENDER_TARGET_PIXEL_FORMAT, Dali::Image::Never ); + Property::Index index = renderer.RegisterProperty( ALPHA_UNIFORM_NAME, 0.f ); + Constraint constraint = Constraint::New( renderer, index, ActorOpacityConstraint(mBlurLevels, depthIndex-1) ); + constraint.AddSource( Source( self, mBlurStrengthPropertyIndex ) ); + constraint.Apply(); } } } +Vector3 SuperBlurView::GetNaturalSize() +{ + if( mInputImage ) + { + return Vector3( mInputImage.GetWidth(), mInputImage.GetHeight(), 0.f ); + } + return Vector3::ZERO; +} + void SuperBlurView::SetProperty( BaseObject* object, Property::Index propertyIndex, const Property::Value& value ) { Toolkit::SuperBlurView superBlurView = Toolkit::SuperBlurView::DownCast( Dali::BaseHandle( object ) ); - if ( superBlurView ) + if( superBlurView ) { SuperBlurView& superBlurViewImpl( GetImpl( superBlurView ) ); - switch ( propertyIndex ) + if( propertyIndex == Toolkit::SuperBlurView::Property::IMAGE ) { - case Toolkit::SuperBlurView::PROPERTY_IMAGE: + Dali::Image image = Scripting::NewImage( value ); + if ( image ) + { + superBlurViewImpl.SetImage( image ); + } + else { - Dali::Image image = Scripting::NewImage( value ); - if ( image ) - { - superBlurViewImpl.SetImage( image ); - } - else - { - DALI_LOG_ERROR( "Cannot create image from property value\n" ); - } - break; + DALI_LOG_ERROR( "Cannot create image from property value\n" ); } } } @@ -302,24 +362,21 @@ Property::Value SuperBlurView::GetProperty( BaseObject* object, Property::Index { Property::Value value; - Toolkit::SuperBlurView pushButton = Toolkit::SuperBlurView::DownCast( Dali::BaseHandle( object ) ); + Toolkit::SuperBlurView blurView = Toolkit::SuperBlurView::DownCast( Dali::BaseHandle( object ) ); - if ( pushButton ) + if( blurView ) { - SuperBlurView& superBlurViewImpl( GetImpl( pushButton ) ); + SuperBlurView& superBlurViewImpl( GetImpl( blurView ) ); - switch ( propertyIndex ) + if( propertyIndex == Toolkit::SuperBlurView::Property::IMAGE ) { - case Toolkit::SuperBlurView::PROPERTY_IMAGE: + Property::Map map; + Image inputImage = superBlurViewImpl.GetImage(); + if( inputImage ) { - Property::Map map; - if ( !superBlurViewImpl.mImageActors.empty() && superBlurViewImpl.mImageActors[0] ) - { - Scripting::CreatePropertyMap( superBlurViewImpl.mImageActors[0], map ); - } - value = Property::Value( map ); - break; + Scripting::CreatePropertyMap( inputImage, map ); } + value = Property::Value( map ); } }