X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fbuilder%2Fbuilder-impl.h;h=3051917ceab5ea6e45457af14b6e1d9522c4c127;hp=ba52c089f62066d261afea32974b5bc1190b0e63;hb=3dce4163d27820a63fedb91ad4628efc3f864152;hpb=e2eda444afbe82e9591fe198eef339227f90a616 diff --git a/dali-toolkit/internal/builder/builder-impl.h b/dali-toolkit/internal/builder/builder-impl.h index ba52c08..3051917 100644 --- a/dali-toolkit/internal/builder/builder-impl.h +++ b/dali-toolkit/internal/builder/builder-impl.h @@ -1,33 +1,40 @@ #ifndef __DALI_TOOLKIT_INTERNAL_BUILDER_H__ #define __DALI_TOOLKIT_INTERNAL_BUILDER_H__ -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +/* + * Copyright (c) 2014 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ // EXTERNAL INCLUDES #include #include #include -#include -#include +#include +#include +#include +#include +#include +#include +#include #include // INTERNAL INCLUDES -#include -#include +#include +#include +#include // Warning messages usually displayed #define DALI_SCRIPT_WARNING(format, args...) \ @@ -60,6 +67,7 @@ extern Dali::Integration::Log::Filter* gFilterScript; #endif class Builder; +class Replacement; /** * @copydoc Toolkit::Builder @@ -77,39 +85,69 @@ public: Dali::Toolkit::Builder::UIFormat rep = Dali::Toolkit::Builder::JSON ); /** - * @copydoc Toolkit::Builder::CreateAnimation + * @copydoc Toolkit::Builder::AddConstants + */ + void AddConstants( const Property::Map& map ); + + /** + * @copydoc Toolkit::Builder::AddConstant + */ + void AddConstant( const std::string& key, const Property::Value& value ); + + /** + * @copydoc Toolkit::Builder::GetConstants + */ + const Property::Map& GetConstants() const; + + /** + * @copydoc Toolkit::Builder::GetConstant + */ + const Property::Value& GetConstant( const std::string& key ) const; + + /** + * @copydoc Toolkit::Builder::CreateAnimation( const std::string& animationName ); */ Animation CreateAnimation( const std::string& animationName ); /** - * @copydoc Toolkit::Builder::CreateFromStyle + * @copydoc Toolkit::Builder::CreateAnimation( const std::string& animationName, const Property::Map& map ); */ - BaseHandle CreateFromStyle( const std::string& styleName ); + Animation CreateAnimation( const std::string& animationName, const Property::Map& map ); /** - * @copydoc Toolkit::Builder::GetFont + * @copydoc Toolkit::Builder::CreateAnimation( const std::string&,Dali::Actor); */ - Font GetFont(const std::string &name) const; + Animation CreateAnimation( const std::string& animationName, Dali::Actor sourceActor ); /** - * @copydoc Toolkit::Builder::GetTextStyle + * @copydoc Toolkit::Builder::CreateAnimation( const std::string&,const Property::Map&, Dali::Actor); */ - TextStyle GetTextStyle(const std::string &name) const; + Animation CreateAnimation( const std::string& animationName, const Property::Map& map, Dali::Actor sourceActor ); /** - * @copydoc Toolkit::Builder::GetImage + * @copydoc Toolkit::Builder::Create( const std::string& templateName ); */ - Image GetImage(const std::string &name) const; + BaseHandle Create( const std::string& templateName ); /** - * @copydoc Toolkit::Builder::GetActor + * @copydoc Toolkit::Builder::Create( const std::string& templateName, const Property::Map& map ); */ - Actor GetActor( const std::string &name ) const; + BaseHandle Create( const std::string& templateName, const Property::Map& map ); + + /** + * @copydoc Toolkit::Builder::CreateFromJson( const std::string& json ); + */ + BaseHandle CreateFromJson( const std::string& json ); + + /** + * @copydoc Toolkit::Builder::ApplyFromJson( Handle& handle, const std::string& json ); + */ + bool ApplyFromJson( Handle& handle, const std::string& json ); /** * @copydoc Toolkit::Builder::ApplyStyle */ - void ApplyStyle( const std::string& styleName, Handle& handle ); + bool ApplyStyle( const std::string& styleName, Handle& handle ); /** * @copydoc Toolkit::Builder::AddActors @@ -122,51 +160,184 @@ public: void AddActors( const std::string §ionName, Actor toActor ); /** - * @copydoc Toolkit::Builder::GetAnimation - */ - Animation GetAnimation( const std::string &name ) const; - - /** * @copydoc Toolkit::Builder::CreateRenderTask */ void CreateRenderTask( const std::string &name ); /** - * @copydoc Toolkit::Builder::GetShaderEffect + * @copydoc Toolkit::Builder::GetFrameBufferImage */ - ShaderEffect GetShaderEffect( const std::string &name ); + FrameBufferImage GetFrameBufferImage( const std::string &name ); /** * @copydoc Toolkit::Builder::GetFrameBufferImage */ - FrameBufferImage GetFrameBufferImage( const std::string &name ); + FrameBufferImage GetFrameBufferImage( const std::string &name, const Replacement& constant ); + + /** + * @copydoc Toolkit::Builder::GetPath + */ + Path GetPath( const std::string &name ); + + /** + * @copydoc Toolkit::Builder::GetPathConstrainer + */ + Dali::PathConstrainer GetPathConstrainer( const std::string& name ); + + /* + * Check if a given constrainer is of type PathConstrainer + * @param[in] name The name of the constrainer + * @return True if constainer is of type PathConstrainer, False otherwise + * + */ + bool IsPathConstrainer( const std::string& name ); /** - * @copydoc Toolkit::Builder::GetTopLevelActors + * @copydoc Toolkit::Builder::GetLinearConstrainer */ - ActorContainer GetTopLevelActors( void ) const; + Dali::LinearConstrainer GetLinearConstrainer( const std::string& name ); + + /* + * Check if a given constrainer is of type LinearConstrainer + * @param[in] name The name of the constrainer + * @return True if constainer is of type LinearConstrainer, False otherwise + * + */ + bool IsLinearConstrainer( const std::string& name ); + + /** + * @copydoc Toolkit::Builder::QuitSignal + */ + Toolkit::Builder::BuilderSignalType& QuitSignal(); + + /** + * Emits the quit signal + */ + void EmitQuitSignal(); protected: virtual ~Builder(); private: + typedef std::vector KeyStack; + typedef std::vector< TreeNode::KeyNodePair > MappingsLut; + typedef struct{ std::string name; Dali::LinearConstrainer linearConstrainer; } LinearConstrainerEntry; + typedef std::vector LinearConstrainerLut; + typedef struct{ std::string name; Dali::PathConstrainer pathConstrainer; } PathConstrainerEntry; + typedef std::vector PathConstrainerLut; + typedef std::map PathLut; + typedef std::map ImageLut; + +private: // Undefined Builder(const Builder&); + + // Undefined Builder& operator=(const Builder& rhs); - void SetupTask( RenderTask& task, const Toolkit::TreeNode& node ); + void LoadConstants( const TreeNode& root, Property::Map& intoMap ); -private: - Toolkit::JsonParser mParser; + Animation CreateAnimation( const std::string& animationName, + const Replacement& replacement, + Dali::Actor sourceActor ); - typedef std::map ImageLut; - ImageLut mFrameBufferImageLut; + BaseHandle Create( const std::string& templateName, + const Replacement& constant ); + + BaseHandle DoCreate( const TreeNode& root, + const TreeNode& node, + Actor parent, + const Replacement& replacements ); + + void SetupTask( RenderTask& task, + const Toolkit::TreeNode& node, + const Replacement& replacement ); - typedef std::map ShaderEffectLut; - ShaderEffectLut mShaderEffectLut; + bool ApplyStyle( const std::string& styleName, + Handle& handle, + const Replacement& replacement); - SlotDelegate mSlotDelegate; + void ApplyAllStyleProperties( const TreeNode& root, + const TreeNode& node, + Dali::Handle& handle, + const Replacement& constant ); + + void ApplyProperties( const TreeNode& root, + const TreeNode& node, + Dali::Handle& handle, + const Replacement& constant ); + + void ApplyStylesByActor( const TreeNode& root, + const TreeNode& node, + Dali::Handle& handle, + const Replacement& constant ); + + void SetProperties( const TreeNode& node, + Handle& handle, + const Replacement& constant ); + + /** + * Find the key in the mapping table, if it's present, then generate + * a property value for it (of the given type if available), + * recursing as necessary, and stopping if any cycles are detected. + * + * @param[in] mappingRoot The JSON node containing the mappings + * @param[in] theKey The key to search for + * @param[in] propertyType The property type if known, or NONE + * @param[in,out] value The string value to test and write back to. + */ + bool GetPropertyMap( const TreeNode& mappingRoot, + const char* theKey, + Property::Type propertyType, + Property::Value& value ); + + void SetCustomProperties( const TreeNode& node, + Handle& handle, + const Replacement& constant, + const std::string& childName, + Property::AccessMode accessMode ); + + /** + * Find the key in the mapping table, if it's present, then generate + * a property value for it (of the given type if available), + * recursing as necessary, and stopping if any cycles are detected. + * + * @param[in] mappingRoot The JSON node containing the mappings + * @param[in] theKey The key to search for + * @param[in,out] keyStack the stack of visited keys + * @param[in] propertyType The property type if known, or NONE + * @param[in,out] value The string value to test and write back to. + */ + bool RecursePropertyMap( const TreeNode& mappingRoot, + KeyStack& keyStack, + const char* theKey, + Property::Type propertyType, + Property::Value& value ); + + + /** + * Tests if the value is a string delimited by <>. If it is, then it attempts to + * change the value to the mapping from a matching key in the mappings table. + * @param[in] mappingRoot The JSON node containing the mappings + * @param[in,out] keyStack the stack of visited keys + * @param[in,out] value The string value to test and write back to. + * @return true if the value was converted, false otherwise. + */ + bool ConvertChildValue( const TreeNode& mappingRoot, + KeyStack& keyStack, + Property::Value& value ); + +private: + Toolkit::JsonParser mParser; + ImageLut mFrameBufferImageLut; + PathLut mPathLut; + PathConstrainerLut mPathConstrainerLut; + LinearConstrainerLut mLinearConstrainerLut; + SlotDelegate mSlotDelegate; + Property::Map mReplacementMap; + MappingsLut mCompleteMappings; + Toolkit::Builder::BuilderSignalType mQuitSignal; }; } // namespace Internal