X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fbuilder%2Fbuilder-impl.cpp;h=9b6daa0f1ecb705979f9c513d6726bb4bacc05d7;hb=refs%2Fchanges%2F53%2F113753%2F8;hp=a7b887c2db812699d4bb547f54813d74bb8a9144;hpb=1d074a4c27d17109a3735bffaee0941dd837d603;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/builder/builder-impl.cpp b/dali-toolkit/internal/builder/builder-impl.cpp index a7b887c..9b6daa0 100644 --- a/dali-toolkit/internal/builder/builder-impl.cpp +++ b/dali-toolkit/internal/builder/builder-impl.cpp @@ -1,35 +1,49 @@ -// -// 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) 2016 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. + * + */ // CLASS HEADER #include // EXTERNAL INCLUDES #include - -// INTERNAL INCLUDES -#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include #include +#include +// INTERNAL INCLUDES #include +#include -#include -#include #include +#include +#include +#include +#include #include +#include namespace Dali { @@ -41,15 +55,12 @@ namespace Internal { class Replacement; -extern Animation CreateAnimation(const TreeNode& child, const Replacement& replacements, const Dali::Actor searchRoot ); -extern bool SetPropertyFromNode( const TreeNode& node, Property::Value& value ); -extern bool SetPropertyFromNode( const TreeNode& node, Property::Value& value, const Replacement& replacements ); -extern bool SetPropertyFromNode( const TreeNode& node, Property::Type type, Property::Value& value ); -extern bool SetPropertyFromNode( const TreeNode& node, Property::Type type, Property::Value& value, const Replacement& replacements ); -extern Actor SetupSignalAction(ConnectionTracker* tracker, const TreeNode &root, const TreeNode &child, Actor actor); -extern Actor SetupPropertyNotification(ConnectionTracker* tracker, const TreeNode &root, const TreeNode &child, Actor actor); -extern Actor SetupActor( const TreeNode& node, Actor& actor ); -extern Control SetupControl( const TreeNode& node, Control& actor ); +extern Animation CreateAnimation(const TreeNode& child, const Replacement& replacements, const Dali::Actor searchRoot, Builder* const builder ); + +extern Actor SetupSignalAction(ConnectionTracker* tracker, const TreeNode &root, const TreeNode &child, Actor actor, Dali::Toolkit::Internal::Builder* const builder); + +extern Actor SetupPropertyNotification(ConnectionTracker* tracker, const TreeNode &root, const TreeNode &child, Actor actor, Dali::Toolkit::Internal::Builder* const builder); + #if defined(DEBUG_ENABLED) Integration::Log::Filter* gFilterScript = Integration::Log::Filter::New(Debug::NoLogging, false, "LOG_SCRIPT"); @@ -58,516 +69,346 @@ Integration::Log::Filter* gFilterScript = Integration::Log::Filter::New(Debug:: namespace { -typedef std::vector TreeNodeList; - -template -std::string ToString(const T& value) -{ - std::stringstream ss; - ss << value; - return ss.str(); -} +#define TOKEN_STRING(x) #x + +const std::string KEYNAME_ACTORS = "actors"; +const std::string KEYNAME_ENTRY_TRANSITION = "entryTransition"; +const std::string KEYNAME_EXIT_TRANSITION = "exitTransition"; +const std::string KEYNAME_INCLUDES = "includes"; +const std::string KEYNAME_INHERIT = "inherit"; +const std::string KEYNAME_MAPPINGS = "mappings"; +const std::string KEYNAME_NAME = "name"; +const std::string KEYNAME_SIGNALS = "signals"; +const std::string KEYNAME_STATES = "states"; +const std::string KEYNAME_STYLES = "styles"; +const std::string KEYNAME_TEMPLATES = "templates"; +const std::string KEYNAME_TRANSITIONS = "transitions"; +const std::string KEYNAME_TYPE = "type"; +const std::string KEYNAME_VISUALS = "visuals"; + +const std::string PROPERTIES = "properties"; +const std::string ANIMATABLE_PROPERTIES = "animatableProperties"; -template <> -std::string ToString(const Rect& value) -{ - std::stringstream ss; - ss << value.x << "," << value.y << "," << value.width << "," << value.height; - return ss.str(); -} +typedef std::vector TreeNodeList; -std::string PropertyValueToString( const Property::Value& value ) +bool GetMappingKey( const std::string& str, std::string& key ) { - std::string ret; - - switch( value.GetType() ) + bool result = false; + std::string test( str ); + if( ! test.empty() ) { - case Property::NONE: - { - ret = "NONE"; - break; - } ///< No type - case Property::BOOLEAN: - { - ret = value.Get() ? "True" : "False"; - break; - } - case Property::FLOAT: - { - - ret = ToString( value.Get() ); - break; - } - case Property::INTEGER: - { - ret = ToString( value.Get() ); - break; - } - case Property::UNSIGNED_INTEGER: - { - ret = ToString( value.Get() ); - break; - } - case Property::VECTOR2: - { - ret = ToString( value.Get() ); - break; - } - case Property::VECTOR3: - { - ret = ToString( value.Get() ); - break; - } - case Property::VECTOR4: - { - ret = ToString( value.Get() ); - break; - } - case Property::MATRIX3: - { - ret = ToString( value.Get() ); - break; - } - case Property::MATRIX: - { - ret = ToString( value.Get() ); - break; - } - case Property::RECTANGLE: - { - ret = ToString( value.Get< Rect >() ); - break; - } - case Property::ROTATION: - { - break; - } - case Property::STRING: - { - ret = value.Get(); - break; - } - case Property::ARRAY: - { - ret = std::string("Array Size=") + ToString( value.Get().size() ); - break; - } - case Property::MAP: - { - ret = std::string("Map Size=") + ToString( value.Get().size() ); - break; - } - case Property::TYPE_COUNT: + if( test.at(0) == '<' ) { - ret = ""; - break; + if( test.at(test.length()-1) == '>' ) + { + key = test.substr( 1, test.length()-2 ); + result = true; + } } } - - return ret; + return result; } /* - * Sets the handle properties found in the tree node + * Recursively collects all styles in a node (An array of style names). + * + * stylesCollection The set of styles from the json file (a json object of named styles) + * style The style array to begin the collection from + * styleList The style list to add nodes to apply */ -void SetProperties( const TreeNode& node, Handle& handle, Builder& builder, const Replacement& constant ) +void CollectAllStyles( const TreeNode& stylesCollection, const TreeNode& style, TreeNodeList& styleList ) { - if( handle ) + // style is an array of style names + if( TreeNode::ARRAY == style.GetType() ) { - for( TreeNode::ConstIterator iter = node.CBegin(); iter != node.CEnd(); ++iter ) + for(TreeNode::ConstIterator iter = style.CBegin(); iter != style.CEnd(); ++iter) { - const TreeNode::KeyNodePair& keyChild = *iter; - - std::string key( keyChild.first ); - - // ignore special fields; type,actors,signals - if(key == "type" || key == "actors" || key == "signals") + if( OptionalString styleName = IsString( (*iter).second ) ) { - continue; - } - - // special field 'image' usually contains an json object description - // although sometimes refers to a framebuffer - if( 0 == keyChild.second.Size() ) - { - if(key == "image") + if( OptionalChild node = IsChildIgnoreCase( stylesCollection, *styleName) ) { - ImageActor imageActor = ImageActor::DownCast(handle); - if(imageActor) + styleList.push_back( &(*node) ); + + OptionalChild subStyle = IsChild( *node, KEYNAME_INHERIT ); + if( ! subStyle ) { - if( OptionalString s = constant.IsString( keyChild.second ) ) - { - FrameBufferImage fb = builder.GetFrameBufferImage(*s, constant); - if(fb) - { - imageActor.SetImage( fb ); - } - } + subStyle = IsChild( *node, KEYNAME_STYLES ); + } + if( subStyle ) + { + CollectAllStyles( stylesCollection, *subStyle, styleList ); } } } + } + } +} - // special field 'effect' references the shader effect instances - if(key == "effect") - { - Actor actor = Actor::DownCast(handle); - OptionalString s = constant.IsString( keyChild.second ); - if(actor && s) - { - ShaderEffect e = builder.GetShaderEffect(*s, constant); - actor.SetShaderEffect(e); - } - else - { - DALI_SCRIPT_WARNING("Could not find or set shader effect\n"); - } - - continue; - } - - Property::Index index = handle.GetPropertyIndex(key); - if( Property::INVALID_INDEX != index ) - { - Property::Type type = handle.GetPropertyType(index); +} // namespace anon - Property::Value value; - if( !SetPropertyFromNode( keyChild.second, type, value, constant ) ) - { - // verbose as this might not be a problem - // eg parent-origin can be a string which is picked up later - DALI_SCRIPT_VERBOSE("Could not convert property:%s\n", key.c_str()); - } - else - { - DALI_SCRIPT_VERBOSE("SetProperty '%s' Index=:%d Value Type=%d Value '%s'\n", key.c_str(), index, value.GetType(), PropertyValueToString(value).c_str() ); - handle.SetProperty( index, value ); - } - } - else - { - DALI_SCRIPT_VERBOSE("SetProperty INVALID '%s' Index=:%d\n", key.c_str(), index); - } +Builder::Builder() +: mSlotDelegate( this ) +{ + mParser = Dali::Toolkit::JsonParser::New(); - } // for property nodes - } - else - { - DALI_SCRIPT_WARNING("Style applied to empty handle\n"); - } -} + Property::Map defaultDirs; + defaultDirs[ TOKEN_STRING(DALI_IMAGE_DIR) ] = DALI_IMAGE_DIR; + defaultDirs[ TOKEN_STRING(DALI_SOUND_DIR) ] = DALI_SOUND_DIR; + defaultDirs[ TOKEN_STRING(DALI_STYLE_DIR) ] = DALI_STYLE_DIR; + defaultDirs[ TOKEN_STRING(DALI_STYLE_IMAGE_DIR) ] = DALI_STYLE_IMAGE_DIR; -/* - * Split a string by delimiter - */ -std::vector SplitString(const std::string &s, char delim, std::vector &elems) -{ - std::stringstream ss(s); - std::string item; - while(std::getline(ss, item, delim)) - { - elems.push_back(item); - } - return elems; + AddConstants( defaultDirs ); } -/* - * Recursively collects all styles listed in a json node 'type' field. (Could be a comma separated list). - * It also returns the first found base typeInfo from the TypeRegistry. This is the concrete object to instance. - * i.e. the type field can name a json style section or a TypeRegistry base type. - */ -void CollectAllStyles( const TreeNode& styles, const std::string& typeStyleString, TreeNodeList& additionalStyles, TypeInfo& typeInfo ) +void Builder::LoadFromString( std::string const& data, Dali::Toolkit::Builder::UIFormat format ) { - typedef std::vector StyleNames; - StyleNames styleNames; + // parser to get constants and includes only + Dali::Toolkit::JsonParser parser = Dali::Toolkit::JsonParser::New(); - SplitString(typeStyleString, ',', styleNames); + if( !parser.Parse( data ) ) + { + DALI_LOG_WARNING( "JSON Parse Error:%d:%d:'%s'\n", + parser.GetErrorLineNumber(), + parser.GetErrorColumn(), + parser.GetErrorDescription().c_str() ); - for(StyleNames::iterator iter = styleNames.begin(); iter != styleNames.end(); ++iter) + DALI_ASSERT_ALWAYS(!"Cannot parse JSON"); + } + else { - const std::string typeName(*iter); + // load constant map (allows the user to override the constants in the json after loading) + LoadConstants( *parser.GetRoot(), mReplacementMap ); - OptionalChild style = IsChild(styles, typeName); - if(style) + // merge includes + if( OptionalChild includes = IsChild(*parser.GetRoot(), KEYNAME_INCLUDES) ) { - additionalStyles.push_back(&(*style)); + Replacement replacer( mReplacementMap ); - OptionalString styleType = IsString( IsChild(*style, "type") ); - if( styleType ) - { - CollectAllStyles(styles, *styleType, additionalStyles, typeInfo); - } - else + for(TreeNode::ConstIterator iter = (*includes).CBegin(); iter != (*includes).CEnd(); ++iter) { - if(!typeInfo) + OptionalString filename = replacer.IsString( (*iter).second ); + + if( filename ) { - // if its not a style then check for a type but only the first found - typeInfo = TypeRegistry::Get().GetTypeInfo( typeName ); +#if defined(DEBUG_ENABLED) + DALI_SCRIPT_VERBOSE("Loading Include '%s'\n", (*filename).c_str()); +#endif + LoadFromString( GetFileContents(*filename) ); } } } - else + + if( !mParser.Parse( data ) ) { - DALI_ASSERT_DEBUG(!typeInfo); - typeInfo = TypeRegistry::Get().GetTypeInfo( typeName ); + DALI_LOG_WARNING( "JSON Parse Error:%d:%d:'%s'\n", + mParser.GetErrorLineNumber(), + mParser.GetErrorColumn(), + mParser.GetErrorDescription().c_str() ); + + DALI_ASSERT_ALWAYS(!"Cannot parse JSON"); } } + + DUMP_PARSE_TREE(parser); // This macro only writes out if DEBUG is enabled and the "DUMP_TREE" constant is defined in the stylesheet. + DUMP_TEST_MAPPINGS(parser); + + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Cannot parse JSON"); } -/* - * Recursively collects all styles listed in a json node 'type' field. (Could be a comma separated list). - * Adds the given node to the end of the additional styles list. - * It also returns the first found base typeInfo from the TypeRegistry. This is the concrete object to instance. - * i.e. the type field can name a json style section or a TypeRegistry base type. - */ -void CollectAllStyles( const OptionalChild& optionalStyles, const TreeNode& node, TreeNodeList& additionalStyles, TypeInfo& typeInfo ) +void Builder::AddConstants( const Property::Map& map ) +{ + mReplacementMap.Merge( map ); +} + +void Builder::AddConstant( const std::string& key, const Property::Value& value ) +{ + mReplacementMap[key] = value; +} + +const Property::Map& Builder::GetConstants() const { - OptionalString type = IsString( IsChild(node, "type") ); + return mReplacementMap; +} - if(!type) +const Property::Value& Builder::GetConstant( const std::string& key ) const +{ + Property::Value* match = mReplacementMap.Find( key ); + if( match ) { - DALI_SCRIPT_WARNING("Cannot create style as type section is missing\n"); + return (*match); } else { - additionalStyles.push_back(&node); + static Property::Value invalid; + return invalid; + } +} - if( optionalStyles ) - { - CollectAllStyles( *optionalStyles, *type, additionalStyles, typeInfo ); - } - else - { - typeInfo = TypeRegistry::Get().GetTypeInfo( *type ); - } +Animation Builder::CreateAnimation( const std::string& animationName, const Property::Map& map, Dali::Actor sourceActor ) +{ + Replacement replacement(map, mReplacementMap); + return CreateAnimation( animationName, replacement, sourceActor); +} - } +Animation Builder::CreateAnimation( const std::string& animationName, const Property::Map& map ) +{ + Replacement replacement(map, mReplacementMap); + return CreateAnimation( animationName, replacement, Stage::GetCurrent().GetRootLayer() ); } -} // namespace anon +Animation Builder::CreateAnimation( const std::string& animationName, Dali::Actor sourceActor ) +{ + Replacement replacement( mReplacementMap ); -/* - * Create a dali type from a node. - * If parent given and an actor type was created then add it to the parent and - * recursively add nodes children. - */ -BaseHandle Builder::Create( const OptionalChild& optionalStyles, const TreeNode& node, const TreeNode& root, Actor parent, - const Replacement& replacements ) + return CreateAnimation( animationName, replacement, sourceActor ); +} + +Animation Builder::CreateAnimation( const std::string& animationName ) { - BaseHandle baseHandle; - TreeNodeList allStyles; - TypeInfo typeInfo; + Replacement replacement( mReplacementMap ); + + return CreateAnimation( animationName, replacement, Dali::Stage::GetCurrent().GetRootLayer() ); +} - CollectAllStyles( optionalStyles, node, allStyles, typeInfo ); +BaseHandle Builder::Create( const std::string& templateName ) +{ + Replacement replacement( mReplacementMap ); + return Create( templateName, replacement ); +} - if(!typeInfo) +BaseHandle Builder::Create( const std::string& templateName, const Property::Map& map ) +{ + Replacement replacement( map, mReplacementMap ); + return Create( templateName, replacement ); +} + +BaseHandle Builder::CreateFromJson( const std::string& json ) +{ + BaseHandle ret; + + // merge in new template, hoping no one else has one named '@temp@' + std::string newTemplate = + std::string("{\"templates\":{\"@temp@\":") + \ + json + \ + std::string("}}"); + + if( mParser.Parse(newTemplate) ) { - DALI_SCRIPT_WARNING("Cannot create Dali type from node '%s'\n", node.GetName()); + Replacement replacement( mReplacementMap ); + ret = Create( "@temp@", replacement ); } - else + + return ret; +} + +bool Builder::ApplyFromJson( Handle& handle, const std::string& json ) +{ + bool ret = false; + + // merge new style, hoping no one else has one named '@temp@' + std::string newStyle = + std::string("{\"styles\":{\"@temp@\":") + \ + json + \ + std::string("}}"); + + if( mParser.Parse(newStyle) ) { - baseHandle = typeInfo.CreateInstance(); - Handle handle = Handle::DownCast(baseHandle); - Actor actor = Actor::DownCast(handle); - Control control = Control::DownCast(handle); + Replacement replacement( mReplacementMap ); + ret = ApplyStyle( "@temp@", handle, replacement ); + } - if(handle) - { + return ret; +} - DALI_SCRIPT_VERBOSE("Create:%s\n", typeInfo.GetName().c_str()); - DALI_SCRIPT_VERBOSE(" %d style sections\n", allStyles.size()); +bool Builder::ApplyStyle( const std::string& styleName, Handle& handle ) +{ + Replacement replacer( mReplacementMap ); + return ApplyStyle( styleName, handle, replacer ); +} -#if defined(DEBUG_ENABLED) - if(handle) - { - DALI_SCRIPT_VERBOSE(" Is Handle Object=%d\n", (long*)handle.GetObjectPtr()); - DALI_SCRIPT_VERBOSE(" Is Handle Property Count=%d\n", handle.GetPropertyCount()); - } +bool Builder::LookupStyleName( const std::string& styleName ) +{ + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); - if(actor) - { - DALI_SCRIPT_VERBOSE(" Is Actor id=%d\n", actor.GetId()); - } + OptionalChild styles = IsChild( *mParser.GetRoot(), KEYNAME_STYLES ); + OptionalChild style = IsChildIgnoreCase( *styles, styleName ); - if(control) - { - DALI_SCRIPT_VERBOSE(" Is Control id=%d\n", actor.GetId()); - } -#endif // DEBUG_ENABLED + if( styles && style ) + { + return true; + } + return false; +} - for(TreeNodeList::reverse_iterator iter = allStyles.rbegin(); iter != allStyles.rend(); ++iter) - { - if( (*iter)->GetType() == TreeNode::ARRAY ) - { - // if its an array then its a list of styles to set to objects already in the hiearchy by name - if( actor ) - { - const TreeNode& styleList = *(*iter); - for( TreeNode::ConstIterator iterSubStyle = styleList.CBegin(); iterSubStyle != styleList.CEnd(); ++iterSubStyle ) - { - const TreeNode* nameNode = (*iterSubStyle).second.Find("name"); - if( nameNode && nameNode->GetType() == TreeNode::STRING ) - { - Dali::Actor found = actor.FindChildByName( nameNode->GetString() ); - if( found ) - { - SetProperties( (*iterSubStyle).second, found, *this, replacements ); - } - else - { - DALI_SCRIPT_VERBOSE("Cannot find object '%s' in tree to style\n", nameNode->GetString()); - } - } - else - { - DALI_SCRIPT_VERBOSE("Style name is not a string '%s' '%d'\n", - nameNode->GetString(), (*iterSubStyle).second.GetType()); - } - } - } - else - { - DALI_SCRIPT_VERBOSE("Cannot apply style list to non actor\n"); - } - } - else - { - DALI_ASSERT_DEBUG( (*iter)->GetType() == TreeNode::OBJECT ); - // else it should be a map of properties - SetProperties( *(*iter), handle, *this, replacements ); - } - - if( actor ) - { - SetupActor( *(*iter), actor); - - if( control ) - { - SetupControl( *(*iter), control); - } - - // add children of all the styles - if( OptionalChild actors = IsChild( *(*iter), "actors" ) ) - { - for( TreeConstIter iter = (*actors).CBegin(); iter != (*actors).CEnd(); ++iter ) - { - Create( optionalStyles, (*iter).second, root, actor, replacements ); - } - } - } - } - - if( actor ) - { - // add signals first - SetupSignalAction( mSlotDelegate.GetConnectionTracker(), root, node, actor ); - - SetupPropertyNotification( mSlotDelegate.GetConnectionTracker(), root, node, actor ); - - // then add to parent - if( parent ) - { - parent.Add( actor ); - } +const StylePtr Builder::GetStyle( const std::string& styleName ) +{ + const StylePtr* style = mStyles.FindCaseInsensitiveC( styleName ); - } - } - else - { - DALI_SCRIPT_WARNING("Cannot create handle from type '%s'\n", typeInfo.GetName().c_str()); - } + if( style==NULL ) + { + return StylePtr(NULL); + } + else + { + return *style; } - - return baseHandle; -} - - -ActorContainer Builder::GetTopLevelActors() const -{ - // deprecated function. - return ActorContainer(); } -Animation Builder::GetAnimation( const std::string &name ) const +void Builder::AddActors( Actor toActor ) { - // deprecated - return Animation(); + // 'stage' is the default/by convention section to add from + AddActors( "stage", toActor ); } -void Builder::SetupTask( RenderTask& task, const TreeNode& node, const Replacement& constant ) +void Builder::AddActors( const std::string §ionName, Actor toActor ) { - const Stage& stage = Stage::GetCurrent(); - Layer root = stage.GetRootLayer(); + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); - if( OptionalString s = constant.IsString( IsChild(node, "source-actor") ) ) - { - Actor actor = root.FindChildByName(*s); - if(actor) - { - task.SetSourceActor( actor ); - } - else - { - DALI_SCRIPT_WARNING("Cannot find source actor on stage for render task called '%s'\n", (*s).c_str() ); - } - } + Property::Map overrideMap; + Replacement replacements(overrideMap, mReplacementMap); - if( OptionalString s = constant.IsString( IsChild(node, "camera-actor") ) ) - { - CameraActor actor = CameraActor::DownCast( root.FindChildByName(*s) ); - if(actor) - { - task.SetCameraActor( actor ); - } - else - { - DALI_SCRIPT_WARNING("Cannot find camera actor on stage for render task called '%s'\n", (*s).c_str() ); - } - } + OptionalChild add = IsChild(*mParser.GetRoot(), sectionName); - if( OptionalString s = constant.IsString( IsChild(node, "target-frame-buffer") ) ) + if( add ) { - FrameBufferImage fb = GetFrameBufferImage( *s, constant ); - if(fb) - { - task.SetTargetFrameBuffer( fb ); - } - else + for( TreeNode::ConstIterator iter = (*add).CBegin(); iter != (*add).CEnd(); ++iter ) { - DALI_SCRIPT_WARNING("Cannot find target frame buffer '%s'\n", (*s).c_str() ); + // empty actor adds directly to the stage + BaseHandle baseHandle = DoCreate( *mParser.GetRoot(), (*iter).second, Actor(), replacements ); + Actor actor = Actor::DownCast(baseHandle); + if(actor) + { + toActor.Add( actor ); + } } - } - if( OptionalString s = constant.IsString( IsChild(node, "screen-to-frame-buffer-function") ) ) - { - if("DEFAULT_SCREEN_TO_FRAMEBUFFER_FUNCTION" == *s) - { - task.SetScreenToFrameBufferFunction( RenderTask::DEFAULT_SCREEN_TO_FRAMEBUFFER_FUNCTION ); - } - else if("FULLSCREEN_FRAMEBUFFER_FUNCTION" == *s) - { - task.SetScreenToFrameBufferFunction( RenderTask::FULLSCREEN_FRAMEBUFFER_FUNCTION ); - } - else + // if were adding the 'stage' section then also check for a render task called stage + // to add automatically + if( "stage" == sectionName ) { - DALI_SCRIPT_WARNING("todo"); + if( OptionalChild renderTasks = IsChild(*mParser.GetRoot(), "renderTasks") ) + { + if( OptionalChild tasks = IsChild(*renderTasks, "stage") ) + { + CreateRenderTask( "stage" ); + } + } } } - - // other setup is via the property system - SetProperties( node, task, *this, constant ); // @ todo, remove 'source-actor', 'camera-actor'? - } void Builder::CreateRenderTask( const std::string &name ) { + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); + Replacement constant(mReplacementMap); const Stage& stage = Stage::GetCurrent(); - OptionalChild tasks = IsChild(*mParser.GetRoot(), "render-tasks"); + OptionalChild tasks = IsChild(*mParser.GetRoot(), "renderTasks"); if(tasks) { @@ -606,32 +447,40 @@ void Builder::CreateRenderTask( const std::string &name ) } } -ShaderEffect Builder::GetShaderEffect( const std::string &name) +FrameBufferImage Builder::GetFrameBufferImage( const std::string &name ) { - Replacement constant; - return GetShaderEffect( name, constant ); + Replacement constant( mReplacementMap ); + return GetFrameBufferImage(name, constant); } -ShaderEffect Builder::GetShaderEffect( const std::string &name, const Replacement& constant ) +FrameBufferImage Builder::GetFrameBufferImage( const std::string &name, const Replacement& constant ) { - ShaderEffect ret; + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); + + FrameBufferImage ret; - ShaderEffectLut::const_iterator iter( mShaderEffectLut.find( name ) ); - if( iter != mShaderEffectLut.end() ) + ImageLut::const_iterator iter( mFrameBufferImageLut.find( name ) ); + if( iter != mFrameBufferImageLut.end() ) { ret = iter->second; } else { - if( OptionalChild effects = IsChild( *mParser.GetRoot(), "shader-effects") ) + if( OptionalChild images = IsChild( *mParser.GetRoot(), "frameBufferImages") ) { - if( OptionalChild effect = IsChild( *effects, name ) ) + if( OptionalChild image = IsChild( *images, name ) ) { - Dali::Property::Value propertyMap(Property::MAP); - if( SetPropertyFromNode( *effect, Property::MAP, propertyMap, constant ) ) + Dali::Property::Value property(Property::MAP); + if( DeterminePropertyFromNode( *image, Property::MAP, property, constant ) ) { - ret = Dali::Scripting::NewShaderEffect( propertyMap ); - mShaderEffectLut[ name ] = ret; + Property::Map* map = property.GetMap(); + + if( map ) + { + (*map)[ KEYNAME_TYPE ] = Property::Value(std::string("FrameBufferImage") ); + ret = FrameBufferImage::DownCast( Dali::Scripting::NewImage( property ) ); + mFrameBufferImageLut[ name ] = ret; + } } } } @@ -640,396 +489,1093 @@ ShaderEffect Builder::GetShaderEffect( const std::string &name, const Replacemen return ret; } -FrameBufferImage Builder::GetFrameBufferImage( const std::string &name ) +Path Builder::GetPath( const std::string& name ) { - Replacement constant; - return GetFrameBufferImage(name, constant); -} + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); -FrameBufferImage Builder::GetFrameBufferImage( const std::string &name, const Replacement& constant ) -{ - FrameBufferImage ret; + Path ret; - ImageLut::const_iterator iter( mFrameBufferImageLut.find( name ) ); - if( iter != mFrameBufferImageLut.end() ) + PathLut::const_iterator iter( mPathLut.find( name ) ); + if( iter != mPathLut.end() ) { ret = iter->second; } else { - if( OptionalChild images = IsChild( *mParser.GetRoot(), "frame-buffer-images") ) + if( OptionalChild paths = IsChild( *mParser.GetRoot(), "paths") ) { - if( OptionalChild image = IsChild( *images, name ) ) + if( OptionalChild path = IsChild( *paths, name ) ) { - Dali::Property::Value propertyMap(Property::MAP); - if( SetPropertyFromNode( *image, Property::MAP, propertyMap, constant ) ) + //points property + if( OptionalChild pointsProperty = IsChild( *path, "points") ) + { + Dali::Property::Value points(Property::ARRAY); + if( DeterminePropertyFromNode( *pointsProperty, Property::ARRAY, points ) ) + { + ret = Path::New(); + ret.SetProperty( Path::Property::POINTS, points); + + //controlPoints property + if( OptionalChild pointsProperty = IsChild( *path, "controlPoints") ) + { + Dali::Property::Value points(Property::ARRAY); + if( DeterminePropertyFromNode( *pointsProperty, Property::ARRAY, points ) ) + { + ret.SetProperty( Path::Property::CONTROL_POINTS, points); + } + } + else + { + //Curvature + float curvature(0.25f); + if( OptionalFloat pointsProperty = IsFloat( *path, "curvature") ) + { + curvature = *pointsProperty; + } + ret.GenerateControlPoints(curvature); + } + + //Add the new path to the hash table for paths + mPathLut[ name ] = ret; + } + } + else { - propertyMap.SetValue("type", Property::Value(std::string("FrameBufferImage"))); - ret = Dali::Scripting::NewImage( propertyMap ); - mFrameBufferImageLut[ name ] = ret; + //Interpolation points not specified + DALI_SCRIPT_WARNING("Interpolation points not specified for path '%s'\n", name.c_str() ); } } + } } return ret; } -Font Builder::GetFont( const std::string& name ) const +PathConstrainer Builder::GetPathConstrainer( const std::string& name ) { - // deprecated function. - Font font; - return font; -} + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); -TextStyle Builder::GetTextStyle( const std::string& name ) const -{ - // deprecated - return TextStyle(); -} + //Search the pathConstrainer in the LUT + size_t count( mPathConstrainerLut.size() ); + for( size_t i(0); i!=count; ++i ) + { + if( mPathConstrainerLut[i].name == name ) + { + //PathConstrainer has already been created + return mPathConstrainerLut[i].pathConstrainer; + } + } -Image Builder::GetImage( const std::string& name) const -{ - // deprecated function. - return Image(); -} + //Create a new PathConstrainer + PathConstrainer ret; + if( OptionalChild constrainers = IsChild( *mParser.GetRoot(), "constrainers") ) + { + if( OptionalChild pathConstrainer = IsChild( *constrainers, name ) ) + { + OptionalString constrainerType(IsString(IsChild(*pathConstrainer, "type"))); + if(!constrainerType) + { + DALI_SCRIPT_WARNING("Constrainer type not specified for constrainer '%s'\n", name.c_str() ); + } + else if( *constrainerType == "PathConstrainer") + { + //points property + if( OptionalChild pointsProperty = IsChild( *pathConstrainer, "points") ) + { + Dali::Property::Value points(Property::ARRAY); + if( DeterminePropertyFromNode( *pointsProperty, Property::ARRAY, points ) ) + { + ret = PathConstrainer::New(); + ret.SetProperty( PathConstrainer::Property::POINTS, points); -Actor Builder::GetActor( const std::string &name ) const -{ - // deprecated function. - return Actor(); -} + //controlPoints property + if( OptionalChild pointsProperty = IsChild( *pathConstrainer, "controlPoints") ) + { + Dali::Property::Value points(Property::ARRAY); + if( DeterminePropertyFromNode( *pointsProperty, Property::ARRAY, points ) ) + { + ret.SetProperty( PathConstrainer::Property::CONTROL_POINTS, points); + } -void Builder::AddActors( Actor toActor ) -{ - // 'stage' is the default/by convention section to add from - AddActors( "stage", toActor ); -} + //Forward vector + OptionalVector3 forward( IsVector3( IsChild(*pathConstrainer, "forward" ) ) ); + if( forward ) + { + ret.SetProperty( PathConstrainer::Property::FORWARD, *forward); + } -void Builder::AddActors( const std::string §ionName, Actor toActor ) -{ - PropertyValueMap overrideMap; - Replacement replacements(overrideMap, mReplacementMap); + //Add the new constrainer to the vector of PathConstrainer + PathConstrainerEntry entry = {name,ret}; + mPathConstrainerLut.push_back( entry ); + } + else + { + //Control points not specified + DALI_SCRIPT_WARNING("Control points not specified for pathConstrainer '%s'\n", name.c_str() ); + } + } + } + else + { + //Interpolation points not specified + DALI_SCRIPT_WARNING("Interpolation points not specified for pathConstrainer '%s'\n", name.c_str() ); + } + } + else + { + DALI_SCRIPT_WARNING("Constrainer '%s' is not a PathConstrainer\n", name.c_str() ); + } + } + } - OptionalChild addToStage = IsChild(*mParser.GetRoot(), sectionName); + return ret; +} - if( addToStage ) + +bool Builder::IsPathConstrainer( const std::string& name ) +{ + size_t count( mPathConstrainerLut.size() ); + for( size_t i(0); i!=count; ++i ) { - OptionalChild styles = IsChild(*mParser.GetRoot(), "styles"); + if( mPathConstrainerLut[i].name == name ) + { + return true; + } + } - for( TreeNode::ConstIterator iter = (*addToStage).CBegin(); iter != (*addToStage).CEnd(); ++iter ) + if( OptionalChild constrainers = IsChild( *mParser.GetRoot(), "constrainers") ) + { + if( OptionalChild constrainer = IsChild( *constrainers, name ) ) { - // empty actor adds directly to the stage - BaseHandle baseHandle = Create( styles, (*iter).second, *mParser.GetRoot(), Actor(), replacements ); - Actor actor = Actor::DownCast(baseHandle); - if(actor) + OptionalString constrainerType(IsString(IsChild(*constrainer, "type"))); + if(!constrainerType) { - toActor.Add( actor ); + return false; + } + else + { + return *constrainerType == "PathConstrainer"; } } + } + return false; +} - // if were adding the 'stage' section then also check for a render task called stage - // to add automatically - if( "stage" == sectionName ) +Dali::LinearConstrainer Builder::GetLinearConstrainer( const std::string& name ) +{ + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); + + //Search the LinearConstrainer in the LUT + size_t count( mLinearConstrainerLut.size() ); + for( size_t i(0); i!=count; ++i ) + { + if( mLinearConstrainerLut[i].name == name ) + { + //LinearConstrainer has already been created + return mLinearConstrainerLut[i].linearConstrainer; + } + } + + //Create a new LinearConstrainer + LinearConstrainer ret; + if( OptionalChild constrainers = IsChild( *mParser.GetRoot(), "constrainers") ) + { + if( OptionalChild linearConstrainer = IsChild( *constrainers, name ) ) { - if( OptionalChild renderTasks = IsChild(*mParser.GetRoot(), "render-tasks") ) + OptionalString constrainerType(IsString(IsChild(*linearConstrainer, "type"))); + if(!constrainerType) { - if( OptionalChild tasks = IsChild(*renderTasks, "stage") ) + DALI_SCRIPT_WARNING("Constrainer type not specified for constrainer '%s'\n", name.c_str() ); + } + else if( *constrainerType == "LinearConstrainer") + { + //points property + if( OptionalChild pointsProperty = IsChild( *linearConstrainer, "value") ) { - CreateRenderTask( "stage" ); + Dali::Property::Value points(Property::ARRAY); + if( DeterminePropertyFromNode( *pointsProperty, Property::ARRAY, points ) ) + { + ret = Dali::LinearConstrainer::New(); + ret.SetProperty( LinearConstrainer::Property::VALUE, points); + + //controlPoints property + if( OptionalChild pointsProperty = IsChild( *linearConstrainer, "progress") ) + { + Dali::Property::Value points(Property::ARRAY); + if( DeterminePropertyFromNode( *pointsProperty, Property::ARRAY, points ) ) + { + ret.SetProperty( LinearConstrainer::Property::PROGRESS, points); + } + } + //Add the new constrainer to vector of LinearConstrainer + LinearConstrainerEntry entry = {name,ret}; + mLinearConstrainerLut.push_back( entry ); + } + } + else + { + //Interpolation points not specified + DALI_SCRIPT_WARNING("Values not specified for LinearConstrainer '%s'\n", name.c_str() ); } } + else + { + DALI_SCRIPT_WARNING("Constrainer '%s' is not a LinearConstrainer\n", name.c_str() ); + } } } + + return ret; } -Animation Builder::CreateAnimation( const std::string& animationName, const Replacement& replacement, Dali::Actor sourceActor ) +bool Builder::IsLinearConstrainer( const std::string& name ) { - Animation anim; - - if( OptionalChild animations = IsChild(*mParser.GetRoot(), "animations") ) + // Search the LinearConstrainer in the LUT + size_t count( mLinearConstrainerLut.size() ); + for( size_t i(0); i!=count; ++i ) { - if( OptionalChild animation = IsChild(*animations, animationName) ) + if( mLinearConstrainerLut[i].name == name ) { - anim = Dali::Toolkit::Internal::CreateAnimation( *animation, replacement, sourceActor ); - } - else - { - DALI_SCRIPT_WARNING( "Request for Animation called '%s' failed\n", animationName.c_str() ); + return true; } } - else + + if( OptionalChild constrainers = IsChild( *mParser.GetRoot(), "constrainers") ) { - DALI_SCRIPT_WARNING( "Request for Animation called '%s' failed (no animation section)\n", animationName.c_str() ); + if( OptionalChild constrainer = IsChild( *constrainers, name ) ) + { + OptionalString constrainerType(IsString(IsChild(*constrainer, "type"))); + if(!constrainerType) + { + return false; + } + else + { + return *constrainerType == "LinearConstrainer"; + } + } } - - return anim; -} - -Animation Builder::CreateAnimation( const std::string& animationName, const PropertyValueMap& map, Dali::Actor sourceActor ) -{ - Replacement replacement(map, mReplacementMap); - return CreateAnimation( animationName, replacement, sourceActor); + return false; } -Animation Builder::CreateAnimation( const std::string& animationName, const PropertyValueMap& map ) +Toolkit::Builder::BuilderSignalType& Builder::QuitSignal() { - Replacement replacement(map, mReplacementMap); - return CreateAnimation( animationName, replacement, Stage::GetCurrent().GetRootLayer() ); + return mQuitSignal; } -Animation Builder::CreateAnimation( const std::string& animationName, Dali::Actor sourceActor ) +void Builder::EmitQuitSignal() { - Replacement replacement( mReplacementMap ); - - return CreateAnimation( animationName, replacement, sourceActor ); + mQuitSignal.Emit(); } -Animation Builder::CreateAnimation( const std::string& animationName ) +Builder::~Builder() { - Replacement replacement( mReplacementMap ); - - return CreateAnimation( animationName, replacement, Dali::Stage::GetCurrent().GetRootLayer() ); } -void Builder::LoadFromString( std::string const& data, Dali::Toolkit::Builder::UIFormat format ) +void Builder::LoadConstants( const TreeNode& root, Property::Map& intoMap ) { - DALI_ASSERT_ALWAYS( format == Dali::Toolkit::Builder::JSON && "Currently only JSON is supported" ); + Replacement replacer(intoMap); - if( !mParser.Parse(data) ) + if( OptionalChild constants = IsChild(root, "constants") ) { - DALI_LOG_WARNING( "JSON Parse Error:%d:%d:'%s'\n", - mParser.GetErrorLineNumber(), - mParser.GetErrorColumn(), - mParser.GetErrorDescription().c_str() ); - - DALI_ASSERT_ALWAYS(!"Cannot parse JSON"); + for(TreeNode::ConstIterator iter = (*constants).CBegin(); + iter != (*constants).CEnd(); ++iter) + { + Dali::Property::Value property; + if( (*iter).second.GetName() ) + { +#if defined(DEBUG_ENABLED) + DALI_SCRIPT_VERBOSE("Constant set from json '%s'\n", (*iter).second.GetName()); +#endif + DeterminePropertyFromNode( (*iter).second, property, replacer ); + intoMap[ (*iter).second.GetName() ] = property; + } + } } - DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Cannot parse JSON"); - - // load constant map (allows the user to override the constants in the json after loading) - LoadConstants(); - +#if defined(DEBUG_ENABLED) + Property::Value* iter = intoMap.Find( "CONFIG_SCRIPT_LOG_LEVEL" ); + if( iter && iter->GetType() == Property::STRING ) + { + std::string logLevel( iter->Get< std::string >() ); + if( logLevel == "NoLogging" ) + { + gFilterScript->SetLogLevel( Integration::Log::NoLogging ); + } + else if( logLevel == "Concise" ) + { + gFilterScript->SetLogLevel( Integration::Log::Concise ); + } + else if( logLevel == "General" ) + { + gFilterScript->SetLogLevel( Integration::Log::General ); + } + else if( logLevel == "Verbose" ) + { + gFilterScript->SetLogLevel( Integration::Log::Verbose ); + } + } +#endif } -void Builder::AddConstants( const PropertyValueMap& map ) +Animation Builder::CreateAnimation( const std::string& animationName, const Replacement& replacement, Dali::Actor sourceActor ) { - for(PropertyValueMap::const_iterator iter = map.begin(); iter != map.end(); ++iter) + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); + + Animation anim; + + if( OptionalChild animations = IsChild(*mParser.GetRoot(), "animations") ) + { + if( OptionalChild animation = IsChild(*animations, animationName) ) + { + anim = Dali::Toolkit::Internal::CreateAnimation( *animation, replacement, sourceActor, this ); + } + else + { + DALI_SCRIPT_WARNING( "Request for Animation called '%s' failed\n", animationName.c_str() ); + } + } + else { - mReplacementMap[ (*iter).first ] = (*iter).second; + DALI_SCRIPT_WARNING( "Request for Animation called '%s' failed (no animation section)\n", animationName.c_str() ); } -} -void Builder::AddConstant( const std::string& key, const Property::Value& value ) -{ - mReplacementMap[key] = value; + return anim; } -const PropertyValueMap& Builder::GetConstants() const +BaseHandle Builder::Create( const std::string& templateName, const Replacement& constant ) { - return mReplacementMap; -} + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); -const Property::Value& Builder::GetConstant( const std::string& key ) const -{ - PropertyValueMap::const_iterator iter = mReplacementMap.find( key ); - if( iter != mReplacementMap.end() ) + BaseHandle baseHandle; + + OptionalChild templates = IsChild(*mParser.GetRoot(), KEYNAME_TEMPLATES); + + if( !templates ) { - return (*iter).second; + DALI_SCRIPT_WARNING("No template section found to CreateFromTemplate\n"); } else { - static Property::Value invalid; - return invalid; + OptionalChild childTemplate = IsChild(*templates, templateName); + if(!childTemplate) + { + DALI_SCRIPT_WARNING("Template '%s' does not exist in template section\n", templateName.c_str()); + } + else + { + OptionalString type = constant.IsString( IsChild(*childTemplate, KEYNAME_TYPE) ); + + if(!type) + { + DALI_SCRIPT_WARNING("Cannot create template '%s' as template section is missing 'type'\n", templateName.c_str()); + } + else + { + baseHandle = DoCreate( *mParser.GetRoot(), *childTemplate, Actor(), constant ); + } + } } + + return baseHandle; } -void Builder::LoadConstants() +/* + * Create a dali type from a node. + * If parent given and an actor type was created then add it to the parent and + * recursively add nodes children. + */ +BaseHandle Builder::DoCreate( const TreeNode& root, const TreeNode& node, + Actor parent, const Replacement& replacements ) { - Replacement replacer(mReplacementMap); + BaseHandle baseHandle; + TypeInfo typeInfo; + const TreeNode* templateNode = NULL; - if( OptionalChild constants = IsChild(*mParser.GetRoot(), "constants") ) + if( OptionalString typeName = IsString(node, KEYNAME_TYPE) ) { - for(TreeNode::ConstIterator iter = (*constants).CBegin(); - iter != (*constants).CEnd(); ++iter) + typeInfo = TypeRegistry::Get().GetTypeInfo( *typeName ); + + if( !typeInfo ) { - Dali::Property::Value property; - if( (*iter).second.GetName() ) + // a template name is also allowed inplace of the type name + OptionalChild templates = IsChild( root, KEYNAME_TEMPLATES); + + if( templates ) { + if( OptionalChild isTemplate = IsChild( *templates, *typeName ) ) + { + templateNode = &(*isTemplate); + + if( OptionalString templateTypeName = IsString(*templateNode, KEYNAME_TYPE) ) + { + typeInfo = TypeRegistry::Get().GetTypeInfo( *templateTypeName ); + } + } + } + } + } + + if(!typeInfo) + { + DALI_SCRIPT_WARNING("Cannot create Dali type from node '%s'\n", node.GetName()); + } + else + { + baseHandle = typeInfo.CreateInstance(); + Handle handle = Handle::DownCast(baseHandle); + Actor actor = Actor::DownCast(handle); + + if(handle) + { + + DALI_SCRIPT_VERBOSE("Create:%s\n", typeInfo.GetName().c_str()); + #if defined(DEBUG_ENABLED) - DALI_SCRIPT_VERBOSE("Constant set from json '%s'\n", (*iter).second.GetName()); -#endif - if( SetPropertyFromNode( (*iter).second, property, replacer ) ) + if(handle) + { + DALI_SCRIPT_VERBOSE(" Is Handle Object=%d\n", (long*)handle.GetObjectPtr()); + DALI_SCRIPT_VERBOSE(" Is Handle Property Count=%d\n", handle.GetPropertyCount()); + } + + if(actor) + { + DALI_SCRIPT_VERBOSE(" Is Actor id=%d\n", actor.GetId()); + } + + Toolkit::Control control = Toolkit::Control::DownCast(handle); + if(control) + { + DALI_SCRIPT_VERBOSE(" Is Control id=%d\n", actor.GetId()); + } +#endif // DEBUG_ENABLED + + if( templateNode ) + { + ApplyProperties( root, *templateNode, handle, replacements ); + + if( OptionalChild actors = IsChild( *templateNode, KEYNAME_ACTORS ) ) { - mReplacementMap[ (*iter).second.GetName() ] = property; + for( TreeConstIter iter = (*actors).CBegin(); iter != (*actors).CEnd(); ++iter ) + { + DoCreate( root, (*iter).second, actor, replacements ); + } } - else + } + + if( actor ) + { + // add children of all the styles + if( OptionalChild actors = IsChild( node, KEYNAME_ACTORS ) ) + { + for( TreeConstIter iter = (*actors).CBegin(); iter != (*actors).CEnd(); ++iter ) + { + DoCreate( root, (*iter).second, actor, replacements ); + } + } + + // apply style on top as they need the children to exist + ApplyAllStyleProperties( root, node, actor, replacements ); + + // then add to parent + if( parent ) { - DALI_SCRIPT_WARNING("Cannot convert property for constant %s\n", - (*iter).second.GetName() == NULL ? "no name?" : (*iter).second.GetName()); + parent.Add( actor ); } } + else + { + ApplyProperties( root, node, handle, replacements ); + } + } + else + { + DALI_SCRIPT_WARNING("Cannot create handle from type '%s'\n", typeInfo.GetName().c_str()); } } -#if defined(DEBUG_ENABLED) - PropertyValueMap::const_iterator iter = mReplacementMap.find( "CONFIG_SCRIPT_LOG_LEVEL" ); - if( iter != mReplacementMap.end() && (*iter).second.GetType() == Property::STRING ) + return baseHandle; +} + +void Builder::SetupTask( RenderTask& task, const TreeNode& node, const Replacement& constant ) +{ + const Stage& stage = Stage::GetCurrent(); + Layer root = stage.GetRootLayer(); + + if( OptionalString s = constant.IsString( IsChild(node, "sourceActor") ) ) { - std::string logLevel( (*iter).second.Get< std::string >() ); - if( logLevel == "NoLogging" ) + Actor actor = root.FindChildByName(*s); + if(actor) { - gFilterScript->SetLogLevel( Integration::Log::NoLogging ); + task.SetSourceActor( actor ); } - else if( logLevel == "Concise" ) + else { - gFilterScript->SetLogLevel( Integration::Log::Concise ); + DALI_SCRIPT_WARNING("Cannot find source actor on stage for render task called '%s'\n", (*s).c_str() ); } - else if( logLevel == "General" ) + } + + if( OptionalString s = constant.IsString( IsChild(node, "cameraActor") ) ) + { + CameraActor actor = CameraActor::DownCast( root.FindChildByName(*s) ); + if(actor) { - gFilterScript->SetLogLevel( Integration::Log::General ); + task.SetCameraActor( actor ); } - else if( logLevel == "Verbose" ) + else { - gFilterScript->SetLogLevel( Integration::Log::Verbose ); + DALI_SCRIPT_WARNING("Cannot find camera actor on stage for render task called '%s'\n", (*s).c_str() ); } } -#endif + if( OptionalString s = constant.IsString( IsChild(node, "targetFrameBuffer") ) ) + { + FrameBufferImage fb = GetFrameBufferImage( *s, constant ); + if(fb) + { + task.SetTargetFrameBuffer( fb ); + } + else + { + DALI_SCRIPT_WARNING("Cannot find target frame buffer '%s'\n", (*s).c_str() ); + } + } + + if( OptionalString s = constant.IsString( IsChild(node, "screenToFrameBufferFunction") ) ) + { + if("DEFAULT_SCREEN_TO_FRAMEBUFFER_FUNCTION" == *s) + { + task.SetScreenToFrameBufferFunction( RenderTask::DEFAULT_SCREEN_TO_FRAMEBUFFER_FUNCTION ); + } + else if("FULLSCREEN_FRAMEBUFFER_FUNCTION" == *s) + { + task.SetScreenToFrameBufferFunction( RenderTask::FULLSCREEN_FRAMEBUFFER_FUNCTION ); + } + else + { + DALI_SCRIPT_WARNING("todo"); + } + } + + // other setup is via the property system + SetProperties( node, task, constant ); } -void Builder::ApplyStyle( const std::string& styleName, Handle& handle ) +bool Builder::ApplyStyle( const std::string& styleName, Handle& handle, const Replacement& replacement ) { - Replacement replacer; - ApplyStyle( styleName, handle, replacer ); + DALI_ASSERT_ALWAYS(mParser.GetRoot() && "Builder script not loaded"); + + OptionalChild styles = IsChild( *mParser.GetRoot(), KEYNAME_STYLES ); + + std::string styleNameLower(styleName); + OptionalChild style = IsChildIgnoreCase( *styles, styleNameLower ); + + if( styles && style ) + { + ApplyAllStyleProperties( *mParser.GetRoot(), *style, handle, replacement ); + return true; + } + else + { + return false; + } } -void Builder::ApplyStyle( const std::string& styleName, Handle& handle, const Replacement& replacement ) +void Builder::ApplyAllStyleProperties( const TreeNode& root, const TreeNode& node, + Dali::Handle& handle, const Replacement& constant ) { - OptionalChild styles = IsChild(*mParser.GetRoot(), "styles"); + const char* styleName = node.GetName(); + + StylePtr style = Style::New(); - if( styles ) + StylePtr* matchedStyle = NULL; + if( styleName ) { - if( OptionalChild style = IsChild(*styles, styleName) ) + matchedStyle = mStyles.FindCaseInsensitive( styleName ); + if( ! matchedStyle ) { - TreeNodeList allStyles; - TypeInfo typeInfo; - - CollectAllStyles( styles, *style, allStyles, typeInfo ); + OptionalChild styleNodes = IsChild(root, KEYNAME_STYLES); + OptionalChild inheritFromNode = IsChild(node, KEYNAME_INHERIT); + if( !inheritFromNode ) + { + inheritFromNode = IsChild( node, KEYNAME_STYLES ); + } - for(TreeNodeList::reverse_iterator iter = allStyles.rbegin(); iter != allStyles.rend(); ++iter) + if( styleNodes ) { - if( (*iter)->GetType() == TreeNode::ARRAY ) + if( inheritFromNode ) { - // if its an array then its a list of styles to set to objects already in the hiearchy by name - if( Dali::Actor actor = Dali::Actor::DownCast( handle ) ) + TreeNodeList additionalStyleNodes; + + CollectAllStyles( *styleNodes, *inheritFromNode, additionalStyleNodes ); + +#if defined(DEBUG_ENABLED) + for(TreeNode::ConstIterator iter = (*inheritFromNode).CBegin(); iter != (*inheritFromNode).CEnd(); ++iter) { - const TreeNode& styleList = *(*iter); - for( TreeNode::ConstIterator iterSubStyle = styleList.CBegin(); iterSubStyle != styleList.CEnd(); ++iterSubStyle ) + if( OptionalString styleName = IsString( (*iter).second ) ) { - const TreeNode* nameNode = (*iterSubStyle).second.Find("name"); - if( nameNode && nameNode->GetType() == TreeNode::STRING ) - { - Dali::Actor found = actor.FindChildByName( nameNode->GetString() ); - if( found ) - { - SetProperties( (*iterSubStyle).second, found, *this, replacement ); - } - else - { - DALI_SCRIPT_VERBOSE("Cannot find object '%s' in tree to style\n", nameNode->GetString()); - } - } - else - { - DALI_SCRIPT_VERBOSE("Style name is not a string '%s' '%d'\n", - nameNode->GetString(), (*iterSubStyle).second.GetType()); - } + DALI_SCRIPT_VERBOSE("Style Applied '%s'\n", (*styleName).c_str()); } } - else +#endif + + // a style may have other styles, which has other styles etc so we apply in reverse by convention. + for(TreeNodeList::reverse_iterator iter = additionalStyleNodes.rbegin(); iter != additionalStyleNodes.rend(); ++iter) { - DALI_SCRIPT_VERBOSE("Cannot apply style list to non actor\n"); + RecordStyle( style, *(*iter), handle, constant ); + ApplySignals( root, *(*iter), handle ); + ApplyStylesByActor( root, *(*iter), handle, constant ); } } + + RecordStyle( style, node, handle, constant ); + mStyles.Add( styleName, style ); // shallow copy + matchedStyle = &style; + } + } + } + + if( matchedStyle ) + { + StylePtr style( *matchedStyle ); + style->ApplyVisualsAndPropertiesRecursively( handle ); // (recurses through states) + } + else // If there were no styles, instead set properties + { + SetProperties( node, handle, constant ); + } + ApplySignals( root, node, handle ); + ApplyStylesByActor( root, node, handle, constant ); +} + +void Builder::RecordStyle( StylePtr style, + const TreeNode& node, + Dali::Handle& handle, + const Replacement& replacements ) +{ + // With repeated calls, accumulate inherited states, visuals and properties + // but override any with same name + + for( TreeNode::ConstIterator iter = node.CBegin(); iter != node.CEnd(); ++iter ) + { + const TreeNode::KeyNodePair& keyValue = *iter; + std::string key( keyValue.first ); + if( key == KEYNAME_STATES ) + { + const TreeNode& states = keyValue.second; + if( states.GetType() != TreeNode::OBJECT ) + { + DALI_LOG_WARNING( "RecordStyle() Node \"%s\" is not a JSON object\n", key.c_str() ); + continue; + } + + for( TreeNode::ConstIterator iter = states.CBegin(); iter != states.CEnd(); ++iter ) + { + const TreeNode& stateNode = (*iter).second; + const char* stateName = stateNode.GetName(); + if( stateNode.GetType() != TreeNode::OBJECT ) + { + DALI_LOG_WARNING( "RecordStyle() Node \"%s\" is not a JSON object\n", stateName ); + continue; + } + + StylePtr* stylePtr = style->subStates.FindCaseInsensitive( stateName ); + if( stylePtr ) + { + StylePtr style(*stylePtr); + RecordStyle( style, stateNode, handle, replacements ); + } else { - DALI_ASSERT_DEBUG( (*iter)->GetType() == TreeNode::OBJECT ); - SetProperties( *style, handle, *this, replacement ); + StylePtr subState = Style::New(); + RecordStyle( subState, stateNode, handle, replacements ); + style->subStates.Add( stateName, subState ); } } } - else + else if( key == KEYNAME_VISUALS ) + { + for( TreeNode::ConstIterator iter = keyValue.second.CBegin(); iter != keyValue.second.CEnd(); ++iter ) + { + // Each key in this table should be a property name matching a visual. + const TreeNode::KeyNodePair& visual = *iter; + Dali::Property::Value property(Property::MAP); + if( DeterminePropertyFromNode( visual.second, Property::MAP, property, replacements ) ) + { + Property::Map* mapPtr = style->visuals.FindCaseInsensitive( visual.first ); + if( mapPtr ) + { + // Override existing visuals + mapPtr->Clear(); + mapPtr->Merge(*property.GetMap()); + } + else + { + style->visuals.Add(visual.first, *property.GetMap()); + } + } + } + } + else if( key == KEYNAME_ENTRY_TRANSITION ) + { + Dali::Property::Value property(Property::MAP); + if( DeterminePropertyFromNode( keyValue.second, Property::MAP, property, replacements ) ) + { + style->entryTransition = Toolkit::TransitionData::New( *property.GetMap() ); + } + } + else if( key == KEYNAME_EXIT_TRANSITION ) { - DALI_SCRIPT_WARNING("Could not find style:%s\n", styleName.c_str()); + Dali::Property::Value property(Property::MAP); + if( DeterminePropertyFromNode( keyValue.second, Property::MAP, property, replacements ) ) + { + style->exitTransition = Toolkit::TransitionData::New( *property.GetMap() ); + } + } + else if( key == KEYNAME_TRANSITIONS ) + { + //@todo add new transitions to style.transitions + // override existing transitions. A transition matches on target & property name + const TreeNode& node = keyValue.second; + if( node.GetType() == TreeNode::ARRAY ) + { + Dali::Property::Value property(Property::ARRAY); + if( DeterminePropertyFromNode( node, Property::ARRAY, property, replacements ) ) + { + style->transitions = *property.GetArray(); + } + } + else if( node.GetType() == TreeNode::OBJECT ) + { + Dali::Property::Value property(Property::MAP); + if( DeterminePropertyFromNode( node, Property::MAP, property, replacements ) ) + { + Property::Array propertyArray; + propertyArray.Add( property ); + style->transitions = propertyArray; + } + } + else + { + DALI_LOG_WARNING( "RecordState() Node \"%s\" is not a JSON array or object\n", key.c_str() ); + } + } + else if( key == KEYNAME_TYPE || + key == KEYNAME_ACTORS || + key == KEYNAME_SIGNALS || + key == KEYNAME_STYLES || + key == KEYNAME_MAPPINGS || + key == KEYNAME_INHERIT ) + { + continue; + } + else // It's a property + { + Property::Index index; + Property::Value value; + if( MapToTargetProperty( handle, key, keyValue.second, replacements, index, value ) ) + { + Property::Value* existingValuePtr = style->properties.Find( index ); + if( existingValuePtr != NULL ) + { + *existingValuePtr = value; // Overwrite existing property. + } + else + { + style->properties.Add( index, value ); + } + } } } - else +} + +// Set properties from node on handle. +void Builder::ApplyProperties( const TreeNode& root, const TreeNode& node, + Dali::Handle& handle, const Replacement& constant ) +{ + SetProperties( node, handle, constant ); + ApplySignals( root, node, handle ); +} + +void Builder::ApplySignals(const TreeNode& root, const TreeNode& node, Dali::Handle& handle ) +{ + Actor actor = Actor::DownCast(handle); + if( actor ) { - DALI_SCRIPT_WARNING("No style section available for style:%s\n", styleName.c_str()); + // add signals + SetupSignalAction( mSlotDelegate.GetConnectionTracker(), root, node, actor, this ); + SetupPropertyNotification( mSlotDelegate.GetConnectionTracker(), root, node, actor, this ); } } -BaseHandle Builder::CreateFromStyle( const std::string& styleName, const PropertyValueMap& map ) + +// Appling by style helper +// use FindChildByName() to apply properties referenced in KEYNAME_ACTORS in the node +void Builder::ApplyStylesByActor( const TreeNode& root, const TreeNode& node, + Dali::Handle& handle, const Replacement& constant ) { - Replacement replacement( map, mReplacementMap ); - return CreateFromStyle( styleName, replacement ); + if( Dali::Actor actor = Dali::Actor::DownCast( handle ) ) + { + if( const TreeNode* actors = node.GetChild( KEYNAME_ACTORS ) ) + { + // in a style the actor subtree properties referenced by actor name + for( TreeConstIter iter = actors->CBegin(); iter != actors->CEnd(); ++iter ) + { + Dali::Actor foundActor; + + if( (*iter).first ) + { + foundActor = actor.FindChildByName( (*iter).first ); + } + + if( !foundActor ) + { + DALI_SCRIPT_VERBOSE("Cannot find actor in style application '%s'\n", (*iter).first); + } + else + { + DALI_SCRIPT_VERBOSE("Styles applied to actor '%s'\n", (*iter).first); + ApplyProperties( root, (*iter).second, foundActor, constant ); + } + } + } + } } -BaseHandle Builder::CreateFromStyle( const std::string& styleName, const Replacement& constant ) +/* + * Sets the handle properties found in the tree node + */ +void Builder::SetProperties( const TreeNode& node, Handle& handle, const Replacement& constant ) { - BaseHandle baseHandle; + if( handle ) + { + for( TreeNode::ConstIterator iter = node.CBegin(); iter != node.CEnd(); ++iter ) + { + const TreeNode::KeyNodePair& keyChild = *iter; - OptionalChild styles = IsChild(*mParser.GetRoot(), "styles"); + std::string key( keyChild.first ); - if( !styles ) - { - DALI_SCRIPT_WARNING("No style section found to CreateFromStyle\n"); + // ignore special fields; + if( key == KEYNAME_TYPE || + key == KEYNAME_ACTORS || + key == KEYNAME_SIGNALS || + key == KEYNAME_STYLES || + key == KEYNAME_MAPPINGS || + key == KEYNAME_INHERIT || + key == KEYNAME_STATES || + key == KEYNAME_VISUALS || + key == KEYNAME_ENTRY_TRANSITION || + key == KEYNAME_EXIT_TRANSITION || + key == KEYNAME_TRANSITIONS ) + { + continue; + } + + Property::Index index; + Property::Value value; + + bool mapped = MapToTargetProperty( handle, key, keyChild.second, constant, index, value ); + if( mapped ) + { + DALI_SCRIPT_VERBOSE("SetProperty '%s' Index=:%d Value Type=%d Value '%s'\n", key.c_str(), index, value.GetType(), PropertyValueToString(value).c_str() ); + + handle.SetProperty( index, value ); + } + + // Add custom properties + SetCustomProperties(node, handle, constant, PROPERTIES, Property::READ_WRITE); + SetCustomProperties(node, handle, constant, ANIMATABLE_PROPERTIES, Property::ANIMATABLE); + + } // for property nodes } else { - OptionalChild style = IsChild(*styles, styleName); - if(!style) + DALI_SCRIPT_WARNING("Style applied to empty handle\n"); + } +} + +bool Builder::MapToTargetProperty( + Handle& propertyObject, + const std::string& key, + const TreeNode& node, + const Replacement& constant, + Property::Index& index, + Property::Value& value ) +{ + bool mapped = false; + + index = propertyObject.GetPropertyIndex( key ); + if( Property::INVALID_INDEX != index ) + { + Property::Type type = propertyObject.GetPropertyType(index); + + // if node.value is a mapping, get the property value from the "mappings" table + if( node.GetType() == TreeNode::STRING ) { - DALI_SCRIPT_WARNING("Style '%s' does not exist in style section\n", styleName.c_str()); + std::string mappingKey; + if( GetMappingKey( node.GetString(), mappingKey) ) + { + OptionalChild mappingRoot = IsChild( mParser.GetRoot(), KEYNAME_MAPPINGS ); + mapped = GetPropertyMap( *mappingRoot, mappingKey.c_str(), type, value ); + } } - else + if( ! mapped ) { - OptionalString type = constant.IsString( IsChild(*style, "type") ); + mapped = DeterminePropertyFromNode( node, type, value, constant ); + if( ! mapped ) + { + // Just determine the property from the node and if it's valid, let the property object handle it + DeterminePropertyFromNode( node, value, constant ); + mapped = ( value.GetType() != Property::NONE ); + } + } + } + else + { + DALI_LOG_ERROR("Key '%s' not found.\n", key.c_str()); + } + return mapped; +} - if(!type) +bool Builder::GetPropertyMap( const TreeNode& mappingRoot, const char* theKey, Property::Type propertyType, Property::Value& value ) +{ + KeyStack keyStack; + return RecursePropertyMap( mappingRoot, keyStack, theKey, propertyType, value ); +} + +bool Builder::RecursePropertyMap( const TreeNode& mappingRoot, KeyStack& keyStack, const char* theKey, Property::Type propertyType, Property::Value& value ) +{ + Replacement replacer( mReplacementMap ); + bool result = false; + + keyStack.push_back( theKey ); + + for( TreeNode::ConstIterator iter = mappingRoot.CBegin(); iter != mappingRoot.CEnd(); ++iter ) + { + std::string aKey( (*iter).first ); + if( aKey.compare( theKey ) == 0 ) + { + if( propertyType == Property::NONE ) { - DALI_SCRIPT_WARNING("Cannot create style '%s' as style section is missing 'type'\n", styleName.c_str()); + DeterminePropertyFromNode( (*iter).second, value, replacer ); + result = true; } else { - baseHandle = Create( styles, *style, *mParser.GetRoot(), Actor(), constant ); + result = DeterminePropertyFromNode( (*iter).second, propertyType, value, replacer ); } + + if( result ) + { + ConvertChildValue(mappingRoot, keyStack, value); + } + break; } } + keyStack.pop_back(); - return baseHandle; + return result; } - -BaseHandle Builder::CreateFromStyle( const std::string& styleName ) +bool Builder::ConvertChildValue( const TreeNode& mappingRoot, KeyStack& keyStack, Property::Value& child ) { - PropertyValueMap overrideMap; - Replacement replacement( overrideMap, mReplacementMap ); - return CreateFromStyle( styleName, replacement ); -} + bool result = false; -Builder::Builder() -: mSlotDelegate( this ) -{ - mParser = Dali::Toolkit::JsonParser::New(); + switch( child.GetType() ) + { + case Property::STRING: + { + std::string value; + if( child.Get( value ) ) + { + std::string key; + if( GetMappingKey( value, key ) ) + { + // Check key for cycles: + result=true; + for( KeyStack::iterator iter = keyStack.begin() ; iter != keyStack.end(); ++iter ) + { + if( key.compare(*iter) == 0 ) + { + // key is already in stack; stop. + DALI_LOG_WARNING("Detected cycle in stylesheet mapping table:%s\n", key.c_str()); + child = Property::Value(""); + result=false; + break; + } + } + + if( result ) + { + // The following call will overwrite the child with the value + // from the mapping. + RecursePropertyMap( mappingRoot, keyStack, key.c_str(), Property::NONE, child ); + result = true; + } + } + } + break; + } + + case Property::MAP: + { + Property::Map* map = child.GetMap(); + if( map ) + { + for( Property::Map::SizeType i=0; i < map->Count(); ++i ) + { + Property::Value& child = map->GetValue(i); + ConvertChildValue(mappingRoot, keyStack, child); + } + } + break; + } + + case Property::ARRAY: + { + Property::Array* array = child.GetArray(); + if( array ) + { + for( Property::Array::SizeType i=0; i < array->Count(); ++i ) + { + Property::Value& child = array->GetElementAt(i); + ConvertChildValue(mappingRoot, keyStack, child); + } + } + break; + } + + default: + // Ignore other types. + break; + } + + return result; } -Builder::~Builder() +void Builder::SetCustomProperties( const TreeNode& node, Handle& handle, const Replacement& constant, + const std::string& childName, Property::AccessMode accessMode ) { + // Add custom properties + if( OptionalChild customPropertiesChild = IsChild(node, childName) ) + { + const TreeNode& customPropertiesNode = *customPropertiesChild; + const TreeConstIter endIter = customPropertiesNode.CEnd(); + for( TreeConstIter iter = customPropertiesNode.CBegin(); endIter != iter; ++iter ) + { + const TreeNode::KeyNodePair& keyChild = *iter; + std::string key( keyChild.first ); + Property::Value value; + DeterminePropertyFromNode( keyChild.second, value, constant ); + + // Register/Set property. + handle.RegisterProperty( key, value, accessMode ); + } + } } + } // namespace Internal } // namespace Toolkit