2 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <dali/internal/event/rendering/sampler-impl.h> // Dali::Internal::Sampler
22 #include <dali/public-api/object/type-registry.h>
23 #include <dali/devel-api/rendering/sampler.h> // Dali::Internal::Sampler
24 #include <dali/internal/event/common/object-impl-helper.h> // Dali::Internal::ObjectHelper
25 #include <dali/internal/event/common/property-helper.h> // DALI_PROPERTY_TABLE_BEGIN, DALI_PROPERTY, DALI_PROPERTY_TABLE_END
26 #include <dali/internal/update/rendering/scene-graph-sampler.h> // Dali::Internal::SceneGraph::Sampler
27 #include <dali/internal/update/manager/update-manager.h>
38 * |name |type |writable|animatable|constraint-input|enum for index-checking|
40 DALI_PROPERTY_TABLE_BEGIN
41 DALI_PROPERTY( "minification-filter", STRING, true, false, true, Dali::Sampler::Property::MINIFICATION_FILTER )
42 DALI_PROPERTY( "magnification-filter", STRING, true, false, true, Dali::Sampler::Property::MAGNIGICATION_FILTER )
43 DALI_PROPERTY( "u-wrap", STRING, true, false, true, Dali::Sampler::Property::U_WRAP )
44 DALI_PROPERTY( "v-wrap", STRING, true, false, true, Dali::Sampler::Property::V_WRAP )
45 DALI_PROPERTY( "affects-transparency", BOOLEAN, true, false, true, Dali::Sampler::Property::AFFECTS_TRANSPARENCY )
46 DALI_PROPERTY_TABLE_END( DEFAULT_ACTOR_PROPERTY_START_INDEX )
48 const ObjectImplHelper<DEFAULT_PROPERTY_COUNT> SAMPLER_IMPL = { DEFAULT_PROPERTY_DETAILS };
52 return Dali::BaseHandle();
55 TypeRegistration mType( typeid( Dali::Sampler ), typeid( Dali::Handle ), Create );
57 } // unnamed namespace
59 SamplerPtr Sampler::New( const std::string& textureUnitUniformName )
61 SamplerPtr sampler( new Sampler() );
62 sampler->Initialize( textureUnitUniformName );
66 void Sampler::SetTextureUnitUniformName( const std::string& name )
68 SetTextureUnitUniformNameMessage( GetEventThreadServices(), *mSceneObject, name);
71 void Sampler::SetImage( ImagePtr& image )
73 // Keep a reference to the image object
74 mImageConnector.Set( image, OnStage() );
76 // sceneObject is being used in a separate thread; queue a message to set
79 unsigned int resourceId = image->GetResourceId();
82 SetTextureMessage( GetEventThreadServices(), *mSceneObject, resourceId );
87 ImagePtr Sampler::GetImage() const
89 return mImageConnector.Get();
92 void Sampler::SetFilterMode( Dali::Sampler::FilterMode minFilter, Dali::Sampler::FilterMode magFilter )
94 if( NULL != mSceneObject )
96 SetFilterModeMessage( GetEventThreadServices(), *mSceneObject, minFilter, magFilter );
100 void Sampler::SetWrapMode( Dali::Sampler::WrapMode uWrap, Dali::Sampler::WrapMode vWrap )
102 if( NULL != mSceneObject )
104 SetWrapModeMessage( GetEventThreadServices(), *mSceneObject, uWrap, vWrap );
108 void Sampler::SetAffectsTransparency( bool affectsTransparency )
110 if( NULL != mSceneObject )
112 SceneGraph::DoubleBufferedPropertyMessage<bool>::Send( GetEventThreadServices(), mSceneObject, &mSceneObject->mAffectsTransparency, &SceneGraph::DoubleBufferedProperty<bool>::Set, affectsTransparency );
116 const SceneGraph::Sampler* Sampler::GetSamplerSceneObject() const
121 unsigned int Sampler::GetDefaultPropertyCount() const
123 return SAMPLER_IMPL.GetDefaultPropertyCount();
126 void Sampler::GetDefaultPropertyIndices( Property::IndexContainer& indices ) const
128 SAMPLER_IMPL.GetDefaultPropertyIndices( indices );
131 const char* Sampler::GetDefaultPropertyName(Property::Index index) const
133 return SAMPLER_IMPL.GetDefaultPropertyName( index );
136 Property::Index Sampler::GetDefaultPropertyIndex( const std::string& name ) const
138 return SAMPLER_IMPL.GetDefaultPropertyIndex( name );
141 bool Sampler::IsDefaultPropertyWritable( Property::Index index ) const
143 return SAMPLER_IMPL.IsDefaultPropertyWritable( index );
146 bool Sampler::IsDefaultPropertyAnimatable( Property::Index index ) const
148 return SAMPLER_IMPL.IsDefaultPropertyAnimatable( index );
151 bool Sampler::IsDefaultPropertyAConstraintInput( Property::Index index ) const
153 return SAMPLER_IMPL.IsDefaultPropertyAConstraintInput( index );
156 Property::Type Sampler::GetDefaultPropertyType( Property::Index index ) const
158 return SAMPLER_IMPL.GetDefaultPropertyType( index );
161 void Sampler::SetDefaultProperty( Property::Index index,
162 const Property::Value& propertyValue )
166 case Dali::Sampler::Property::MINIFICATION_FILTER:
168 SceneGraph::DoubleBufferedPropertyMessage<int>::Send( GetEventThreadServices(), mSceneObject, &mSceneObject->mMinFilter, &SceneGraph::DoubleBufferedProperty<int>::Set, propertyValue.Get<int>() );
171 case Dali::Sampler::Property::MAGNIGICATION_FILTER:
173 SceneGraph::DoubleBufferedPropertyMessage<int>::Send( GetEventThreadServices(), mSceneObject, &mSceneObject->mMagFilter, &SceneGraph::DoubleBufferedProperty<int>::Set, propertyValue.Get<int>() );
176 case Dali::Sampler::Property::U_WRAP:
178 SceneGraph::DoubleBufferedPropertyMessage<int>::Send( GetEventThreadServices(), mSceneObject, &mSceneObject->mUWrapMode, &SceneGraph::DoubleBufferedProperty<int>::Set, propertyValue.Get<int>() );
181 case Dali::Sampler::Property::V_WRAP:
183 SceneGraph::DoubleBufferedPropertyMessage<int>::Send( GetEventThreadServices(), mSceneObject, &mSceneObject->mVWrapMode, &SceneGraph::DoubleBufferedProperty<int>::Set, propertyValue.Get<int>() );
186 case Dali::Sampler::Property::AFFECTS_TRANSPARENCY:
188 SceneGraph::DoubleBufferedPropertyMessage<bool>::Send( GetEventThreadServices(), mSceneObject, &mSceneObject->mAffectsTransparency, &SceneGraph::DoubleBufferedProperty<bool>::Set, propertyValue.Get<bool>() );
194 void Sampler::SetSceneGraphProperty( Property::Index index,
195 const PropertyMetadata& entry,
196 const Property::Value& value )
198 SAMPLER_IMPL.SetSceneGraphProperty( GetEventThreadServices(), this, index, entry, value );
199 OnPropertySet(index, value);
202 Property::Value Sampler::GetDefaultProperty( Property::Index index ) const
204 BufferIndex bufferIndex = GetEventThreadServices().GetEventBufferIndex();
205 Property::Value value;
209 case Dali::Sampler::Property::MINIFICATION_FILTER:
211 value = mSceneObject->mMinFilter[bufferIndex];
214 case Dali::Sampler::Property::MAGNIGICATION_FILTER:
216 value = mSceneObject->mMagFilter[bufferIndex];
219 case Dali::Sampler::Property::U_WRAP:
221 value = mSceneObject->mUWrapMode[bufferIndex];
224 case Dali::Sampler::Property::V_WRAP:
226 value = mSceneObject->mVWrapMode[bufferIndex];
229 case Dali::Sampler::Property::AFFECTS_TRANSPARENCY:
231 value = mSceneObject->mAffectsTransparency[bufferIndex];
238 const SceneGraph::PropertyOwner* Sampler::GetPropertyOwner() const
243 const SceneGraph::PropertyOwner* Sampler::GetSceneObject() const
248 const SceneGraph::PropertyBase* Sampler::GetSceneObjectAnimatableProperty( Property::Index index ) const
250 DALI_ASSERT_ALWAYS( IsPropertyAnimatable( index ) && "Property is not animatable" );
252 const SceneGraph::PropertyBase* property = NULL;
256 property = SAMPLER_IMPL.GetRegisteredSceneGraphProperty( this,
257 &Sampler::FindAnimatableProperty,
258 &Sampler::FindCustomProperty,
261 if( property == NULL && index < DEFAULT_PROPERTY_MAX_COUNT )
263 // No animatable default props
264 DALI_ASSERT_ALWAYS( 0 && "Property is not animatable" );
271 const PropertyInputImpl* Sampler::GetSceneObjectInputProperty( Property::Index index ) const
273 const PropertyInputImpl* property = NULL;
277 const SceneGraph::PropertyBase* baseProperty =
278 SAMPLER_IMPL.GetRegisteredSceneGraphProperty( this,
279 &Sampler::FindAnimatableProperty,
280 &Sampler::FindCustomProperty,
282 property = static_cast<const PropertyInputImpl*>( baseProperty );
284 if( property == NULL && index < DEFAULT_PROPERTY_MAX_COUNT )
288 case Dali::Sampler::Property::MINIFICATION_FILTER:
290 property = &mSceneObject->mMinFilter;
293 case Dali::Sampler::Property::MAGNIGICATION_FILTER:
295 property = &mSceneObject->mMagFilter;
298 case Dali::Sampler::Property::U_WRAP:
300 property = &mSceneObject->mUWrapMode;
303 case Dali::Sampler::Property::V_WRAP:
305 property = &mSceneObject->mVWrapMode;
308 case Dali::Sampler::Property::AFFECTS_TRANSPARENCY:
310 property = &mSceneObject->mAffectsTransparency;
320 int Sampler::GetPropertyComponentIndex( Property::Index index ) const
322 return Property::INVALID_COMPONENT_INDEX;
325 bool Sampler::OnStage() const
330 void Sampler::Connect()
334 mImageConnector.OnStageConnect();
336 // sceneObject is being used in a separate thread; queue a message to set
337 unsigned int resourceId = mImageConnector.Get()->GetResourceId();
338 SetTextureMessage( GetEventThreadServices(), *mSceneObject, resourceId );
341 void Sampler::Disconnect()
345 mImageConnector.OnStageDisconnect();
349 : mSceneObject( NULL ),
354 void Sampler::Initialize( const std::string& textureUnitUniformName )
356 EventThreadServices& eventThreadServices = GetEventThreadServices();
357 SceneGraph::UpdateManager& updateManager = eventThreadServices.GetUpdateManager();
359 mSceneObject = new SceneGraph::Sampler( textureUnitUniformName );
360 AddMessage( updateManager, updateManager.GetSamplerOwner(), *mSceneObject );
362 eventThreadServices.RegisterObject( this );
367 if( EventThreadServices::IsCoreRunning() )
369 EventThreadServices& eventThreadServices = GetEventThreadServices();
370 SceneGraph::UpdateManager& updateManager = eventThreadServices.GetUpdateManager();
371 RemoveMessage( updateManager, updateManager.GetSamplerOwner(), *mSceneObject );
373 eventThreadServices.UnregisterObject( this );
377 } // namespace Internal