Revert "[Tizen] Add codes for Dali Windows Backend"
[platform/core/uifw/dali-core.git] / dali / internal / update / nodes / node.h
index 1f9478a..71102fb 100644 (file)
@@ -1,8 +1,8 @@
-#ifndef __DALI_INTERNAL_SCENE_GRAPH_NODE_H__
-#define __DALI_INTERNAL_SCENE_GRAPH_NODE_H__
+#ifndef DALI_INTERNAL_SCENE_GRAPH_NODE_H
+#define DALI_INTERNAL_SCENE_GRAPH_NODE_H
 
 /*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2018 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.
 // INTERNAL INCLUDES
 #include <dali/public-api/actors/actor-enumerations.h>
 #include <dali/public-api/actors/draw-mode.h>
-#include <dali/devel-api/common/set-wrapper.h>
 #include <dali/public-api/math/quaternion.h>
 #include <dali/public-api/math/math-utils.h>
 #include <dali/public-api/math/vector3.h>
+#include <dali/integration-api/debug.h>
 #include <dali/internal/common/message.h>
 #include <dali/internal/event/common/event-thread-services.h>
+#include <dali/internal/render/data-providers/node-data-provider.h>
 #include <dali/internal/update/common/animatable-property.h>
 #include <dali/internal/update/common/property-owner.h>
 #include <dali/internal/update/common/property-vector3.h>
 #include <dali/internal/update/common/scene-graph-buffers.h>
 #include <dali/internal/update/common/inherited-property.h>
-#include <dali/integration-api/debug.h>
+#include <dali/internal/update/manager/transform-manager.h>
+#include <dali/internal/update/manager/transform-manager-property.h>
 #include <dali/internal/update/nodes/node-declarations.h>
-#include <dali/internal/update/node-attachments/node-attachment-declarations.h>
-#include <dali/internal/render/data-providers/node-data-provider.h>
 #include <dali/internal/update/rendering/scene-graph-renderer.h>
 
 namespace Dali
@@ -44,16 +44,16 @@ namespace Dali
 namespace Internal
 {
 
-// value types used by messages
+// Value types used by messages.
 template <> struct ParameterType< ColorMode > : public BasicType< ColorMode > {};
 template <> struct ParameterType< PositionInheritanceMode > : public BasicType< PositionInheritanceMode > {};
+template <> struct ParameterType< ClippingMode::Type > : public BasicType< ClippingMode::Type > {};
 
 namespace SceneGraph
 {
 
 class DiscardQueue;
 class Layer;
-class NodeAttachment;
 class RenderTask;
 class UpdateManager;
 
@@ -69,14 +69,13 @@ enum NodePropertyFlags
   SizeFlag             = 0x008,
   OverlayFlag          = 0x010,
   SortModifierFlag     = 0x020,
-  ChildDeletedFlag     = 0x040
+  ChildDeletedFlag     = 0x040,
 };
 
 static const int AllFlags = ( ChildDeletedFlag << 1 ) - 1; // all the flags
 
 /**
- * Size is not inherited.
- * VisibleFlag is inherited so that attachments can be synchronized with nodes after they become visible
+ * Size is not inherited. VisibleFlag is inherited
  */
 static const int InheritedDirtyFlags = TransformFlag | VisibleFlag | ColorFlag | OverlayFlag;
 
@@ -107,15 +106,9 @@ public:
   static Node* New();
 
   /**
-   * Virtual destructor
-   */
-  virtual ~Node();
-
-  /**
-   * Overriden delete operator
-   * Deletes the node from its global memory pool
+   * Deletes a Node.
    */
-  void operator delete( void* ptr );
+  static void Delete( Node* node );
 
   /**
    * Called during UpdateManager::DestroyNode shortly before Node is destroyed.
@@ -130,7 +123,7 @@ public:
    */
   bool IsLayer()
   {
-    return (GetLayer() != NULL);
+    return mIsLayer;
   }
 
   /**
@@ -142,52 +135,91 @@ public:
     return NULL;
   }
 
-  // Attachments
+  /**
+   * This method sets clipping information on the node based on its hierarchy in the scene-graph.
+   * A value is calculated that can be used during sorting to increase sort speed.
+   * @param[in] clippingId The Clipping ID of the node to set
+   * @param[in] clippingDepth The Clipping Depth of the node to set
+   * @param[in] scissorDepth The Scissor Clipping Depth of the node to set
+   */
+  void SetClippingInformation( const uint32_t clippingId, const uint32_t clippingDepth, const uint32_t scissorDepth )
+  {
+    // We only set up the sort value if we have a stencil clipping depth, IE. At least 1 clipping node has been hit.
+    // If not, if we traverse down a clipping tree and back up, and there is another
+    // node on the parent, this will have a non-zero clipping ID that must be ignored
+    if( clippingDepth > 0u )
+    {
+      mClippingDepth = clippingDepth;
+
+      // Calculate the sort value here on write, as when read (during sort) it may be accessed several times.
+      // The items must be sorted by Clipping ID first (so the ID is kept in the most-significant bits).
+      // For the same ID, the clipping nodes must be first, so we negate the
+      // clipping enabled flag and set it as the least significant bit.
+      mClippingSortModifier = ( clippingId << 1u ) | ( mClippingMode == ClippingMode::DISABLED ? 1u : 0u );
+    }
+    else
+    {
+      // If we do not have a clipping depth, then set this to 0 so we do not have a Clipping ID either.
+      mClippingSortModifier = 0u;
+    }
+
+    // The scissor depth does not modify the clipping sort modifier (as scissor clips are 2D only).
+    // For this reason we can always update the member variable.
+    mScissorDepth = scissorDepth;
+  }
 
   /**
-   * Attach an object to this Node; This should only be done by UpdateManager::AttachToNode.
-   * @pre The Node does not already have an attachment.
-   * @param[in] attachment The object to attach.
+   * Gets the Clipping ID for this node.
+   * @return The Clipping ID for this node.
    */
-  void Attach( NodeAttachment& attachment );
+  uint32_t GetClippingId() const
+  {
+    return mClippingSortModifier >> 1u;
+  }
 
   /**
-   * Query the node if it has an attachment.
-   * @return True if it has an attachment.
+   * Gets the Clipping Depth for this node.
+   * @return The Clipping Depth for this node.
    */
-  bool HasAttachment() const
+  uint32_t GetClippingDepth() const
   {
-    return mAttachment;
+    return mClippingDepth;
   }
 
   /**
-   * Add a renderer to the node
-   * @param[in] renderer The renderer added to the node
+   * Gets the Scissor Clipping Depth for this node.
+   * @return The Scissor Clipping Depth for this node.
    */
-  void AddRenderer( Renderer* renderer )
+  uint32_t GetScissorDepth() const
   {
-    //Check that it has not been already added
-    unsigned int rendererCount( mRenderer.Size() );
-    for( unsigned int i(0); i<rendererCount; ++i )
-    {
-      if( mRenderer[i] == renderer )
-      {
-        //Renderer already in the list
-        return;
-      }
-    }
+    return mScissorDepth;
+  }
 
-    //If it is the first renderer added, make sure the world transform will be calculated
-    //in the next update as world transform is not computed if node has no renderers
-    if( rendererCount == 0 )
-    {
-      mDirtyFlags |= TransformFlag;
-    }
+  /**
+   * Sets the clipping mode for this node.
+   * @param[in] clippingMode The ClippingMode to set
+   */
+  void SetClippingMode( const ClippingMode::Type clippingMode )
+  {
+    mClippingMode = clippingMode;
+  }
 
-    mRenderer.PushBack( renderer );
+  /**
+   * Gets the Clipping Mode for this node.
+   * @return The ClippingMode of this node
+   */
+  ClippingMode::Type GetClippingMode() const
+  {
+    return mClippingMode;
   }
 
   /**
+   * Add a renderer to the node
+   * @param[in] renderer The renderer added to the node
+   */
+  void AddRenderer( Renderer* renderer );
+
+  /**
    * Remove a renderer from the node
    * @param[in] renderer The renderer to be removed
    */
@@ -197,7 +229,7 @@ public:
    * Get the renderer at the given index
    * @param[in] index
    */
-  Renderer* GetRendererAt( unsigned int index )
+  Renderer* GetRendererAt( unsigned int index ) const
   {
     return mRenderer[index];
   }
@@ -210,15 +242,6 @@ public:
     return mRenderer.Size();
   }
 
-  /**
-   * Retreive the object attached to this node.
-   * @return The attachment.
-   */
-  NodeAttachment& GetAttachment() const
-  {
-    return *mAttachment;
-  }
-
   // Containment methods
 
   /**
@@ -319,21 +342,12 @@ public:
   int GetDirtyFlags() const;
 
   /**
-   * Query whether a node is clean.
-   * @return True if the node is clean.
-   */
-  bool IsClean() const
-  {
-    return ( NothingFlag == GetDirtyFlags() );
-  }
-
-  /**
    * Retrieve the parent-origin of the node.
    * @return The parent-origin.
    */
   const Vector3& GetParentOrigin() const
   {
-    return mParentOrigin.mValue;
+    return mParentOrigin.Get(0);
   }
 
   /**
@@ -342,8 +356,7 @@ public:
    */
   void SetParentOrigin(const Vector3& origin)
   {
-    mParentOrigin.mValue = origin;
-    mParentOrigin.OnSet();
+    mParentOrigin.Set(0,origin );
   }
 
   /**
@@ -352,7 +365,7 @@ public:
    */
   const Vector3& GetAnchorPoint() const
   {
-    return mAnchorPoint.mValue;
+    return mAnchorPoint.Get(0);
   }
 
   /**
@@ -361,8 +374,7 @@ public:
    */
   void SetAnchorPoint(const Vector3& anchor)
   {
-    mAnchorPoint.mValue = anchor;
-    mAnchorPoint.OnSet();
+    mAnchorPoint.Set(0, anchor );
   }
 
   /**
@@ -372,128 +384,12 @@ public:
    */
   const Vector3& GetPosition(BufferIndex bufferIndex) const
   {
-    return mPosition[bufferIndex];
-  }
-
-  /**
-   * Sets both the local & base positions of the node.
-   * @param[in] updateBufferIndex The current update buffer index.
-   * @param[in] position The new local & base position.
-   */
-  void BakePosition(BufferIndex updateBufferIndex, const Vector3& position)
-  {
-    mPosition.Bake( updateBufferIndex, position );
-  }
-
-  /**
-   * Sets the world of the node derived from the position of all its parents.
-   * @param[in] updateBufferIndex The current update buffer index.
-   * @param[in] position The world position.
-   */
-  void SetWorldPosition( BufferIndex updateBufferIndex, const Vector3& position )
-  {
-    mWorldPosition.Set( updateBufferIndex, position );
-  }
-
-  /**
-   * Sets the position of the node derived from the position of all its parents.
-   * This method should only be called when the parent's world position is up-to-date.
-   * With a non-central anchor-point, the local orientation and scale affects the world position.
-   * Therefore the world orientation & scale must be updated before the world position.
-   * @pre The node has a parent.
-   * @param[in] updateBufferIndex The current update buffer index.
-   */
-  void InheritWorldPosition(BufferIndex updateBufferIndex)
-  {
-    DALI_ASSERT_DEBUG(mParent != NULL);
-
-    switch( mPositionInheritanceMode )
+    if( mTransformId != INVALID_TRANSFORM_ID )
     {
-      case INHERIT_PARENT_POSITION  : ///@see Dali::PositionInheritanceMode for how these modes are expected to work
-      {
-        Vector3 finalPosition(-0.5f, -0.5f, -0.5f);
-
-        finalPosition += mParentOrigin.mValue;
-        finalPosition *= mParent->GetSize(updateBufferIndex);
-        finalPosition += mPosition[updateBufferIndex];
-        finalPosition *= mParent->GetWorldScale(updateBufferIndex);
-        const Quaternion& parentWorldOrientation = mParent->GetWorldOrientation(updateBufferIndex);
-        if(!parentWorldOrientation.IsIdentity())
-        {
-          finalPosition *= parentWorldOrientation;
-        }
-
-        // check if a node needs to be offsetted locally (only applies when AnchorPoint is not central)
-        // dont use operator== as that does a slower comparison (and involves function calls)
-        Vector3 localOffset(0.5f, 0.5f, 0.5f);    // AnchorPoint::CENTER
-        localOffset -= mAnchorPoint.mValue;
-
-        if( ( fabsf( localOffset.x ) >= Math::MACHINE_EPSILON_0 ) ||
-            ( fabsf( localOffset.y ) >= Math::MACHINE_EPSILON_0 ) ||
-            ( fabsf( localOffset.z ) >= Math::MACHINE_EPSILON_0 ) )
-        {
-          localOffset *= mSize[updateBufferIndex];
-
-          Vector3 scale = mWorldScale[updateBufferIndex];
-
-          // Pick up sign of local scale
-          if (mScale[updateBufferIndex].x < 0.0f)
-          {
-            scale.x = -scale.x;
-          }
-          if (mScale[updateBufferIndex].y < 0.0f)
-          {
-            scale.y = -scale.y;
-          }
-          if (mScale[updateBufferIndex].z < 0.0f)
-          {
-            scale.z = -scale.z;
-          }
-
-          // If the anchor-point is not central, then position is affected by the local orientation & scale
-          localOffset *= scale;
-          const Quaternion& localWorldOrientation = mWorldOrientation[updateBufferIndex];
-          if(!localWorldOrientation.IsIdentity())
-          {
-            localOffset *= localWorldOrientation;
-          }
-          finalPosition += localOffset;
-        }
-
-        finalPosition += mParent->GetWorldPosition(updateBufferIndex);
-        mWorldPosition.Set( updateBufferIndex, finalPosition );
-        break;
-      }
-      case USE_PARENT_POSITION_PLUS_LOCAL_POSITION :
-      {
-        // copy parents position plus local transform
-        mWorldPosition.Set( updateBufferIndex, mParent->GetWorldPosition(updateBufferIndex) + mPosition[updateBufferIndex] );
-        break;
-      }
-      case USE_PARENT_POSITION :
-      {
-        // copy parents position
-        mWorldPosition.Set( updateBufferIndex, mParent->GetWorldPosition(updateBufferIndex) );
-        break;
-      }
-      case DONT_INHERIT_POSITION :
-      {
-        // use local position as world position
-        mWorldPosition.Set( updateBufferIndex, mPosition[updateBufferIndex] );
-        break;
-      }
+      return mPosition.Get(bufferIndex);
     }
-  }
 
-  /**
-   * Copies the previous inherited position, if this changed in the previous frame.
-   * This method should be called instead of InheritWorldPosition i.e. if the inherited position
-   * does not need to be recalculated in the current frame.
-   * @param[in] updateBufferIndex The current update buffer index.
-   */
-  void CopyPreviousWorldPosition( BufferIndex updateBufferIndex )
-  {
-    mWorldPosition.CopyPrevious( updateBufferIndex );
+    return Vector3::ZERO;
   }
 
   /**
@@ -502,27 +398,19 @@ public:
    */
   const Vector3& GetWorldPosition( BufferIndex bufferIndex ) const
   {
-    return mWorldPosition[bufferIndex];
+    return mWorldPosition.Get(bufferIndex);
   }
 
   /**
-   * Set the position inheritance mode.
-   * @see Dali::Actor::PositionInheritanceMode
-   * @param[in] mode The new position inheritance mode.
+   * Set whether the Node inherits position.
+   * @param[in] inherit True if the parent position is inherited.
    */
-  void SetPositionInheritanceMode( PositionInheritanceMode mode )
+  void SetInheritPosition(bool inherit)
   {
-    mPositionInheritanceMode = mode;
-
-    SetDirtyFlag(TransformFlag);
-  }
-
-  /**
-   * @return The position inheritance mode.
-   */
-  PositionInheritanceMode GetPositionInheritanceMode() const
-  {
-    return mPositionInheritanceMode;
+    if( mTransformId != INVALID_TRANSFORM_ID )
+    {
+      mTransformManager->SetInheritPosition( mTransformId, inherit );
+    }
   }
 
   /**
@@ -532,62 +420,12 @@ public:
    */
   const Quaternion& GetOrientation(BufferIndex bufferIndex) const
   {
-    return mOrientation[bufferIndex];
-  }
-
-  /**
-   * Sets both the local & base orientations of the node.
-   * @param[in] updateBufferIndex The current update buffer index.
-   * @param[in] orientation The new local & base orientation.
-   */
-  void BakeOrientation(BufferIndex updateBufferIndex, const Quaternion& orientation)
-  {
-    mOrientation.Bake( updateBufferIndex, orientation );
-  }
-
-  /**
-   * Sets the orientation of the node derived from the rotation of all its parents.
-   * @param[in] updateBufferIndex The current update buffer index.
-   * @param[in] orientation The world orientation.
-   */
-  void SetWorldOrientation( BufferIndex updateBufferIndex, const Quaternion& orientation )
-  {
-    mWorldOrientation.Set( updateBufferIndex, orientation );
-  }
-
-  /**
-   * Sets the orientation of the node derived from the rotation of all its parents.
-   * This method should only be called when the parents world orientation is up-to-date.
-   * @pre The node has a parent.
-   * @param[in] updateBufferIndex The current update buffer index.
-   */
-  void InheritWorldOrientation( BufferIndex updateBufferIndex )
-  {
-    DALI_ASSERT_DEBUG(mParent != NULL);
-
-    const Quaternion& localOrientation = mOrientation[updateBufferIndex];
-
-    if(localOrientation.IsIdentity())
+    if( mTransformId != INVALID_TRANSFORM_ID )
     {
-      mWorldOrientation.Set( updateBufferIndex, mParent->GetWorldOrientation(updateBufferIndex) );
+      return mOrientation.Get(0);
     }
-    else
-    {
-      Quaternion finalOrientation( mParent->GetWorldOrientation(updateBufferIndex) );
-      finalOrientation *= localOrientation;
-      mWorldOrientation.Set( updateBufferIndex, finalOrientation );
-    }
-  }
 
-  /**
-   * Copies the previous inherited orientation, if this changed in the previous frame.
-   * This method should be called instead of InheritWorldOrientation i.e. if the inherited orientation
-   * does not need to be recalculated in the current frame.
-   * @param[in] updateBufferIndex The current update buffer index.
-   */
-  void CopyPreviousWorldOrientation( BufferIndex updateBufferIndex )
-  {
-    mWorldOrientation.CopyPrevious( updateBufferIndex );
+    return Quaternion::IDENTITY;
   }
 
   /**
@@ -597,7 +435,7 @@ public:
    */
   const Quaternion& GetWorldOrientation( BufferIndex bufferIndex ) const
   {
-    return mWorldOrientation[bufferIndex];
+    return mWorldOrientation.Get(0);
   }
 
   /**
@@ -606,66 +444,27 @@ public:
    */
   void SetInheritOrientation(bool inherit)
   {
-    if (inherit != mInheritOrientation)
+    if( mTransformId != INVALID_TRANSFORM_ID )
     {
-      mInheritOrientation = inherit;
-
-      SetDirtyFlag(TransformFlag);
+      mTransformManager->SetInheritOrientation(mTransformId, inherit );
     }
   }
 
   /**
-   * Query whether the node inherits orientation from its parent.
-   * @return True if the parent orientation is inherited.
-   */
-  bool IsOrientationInherited() const
-  {
-    return mInheritOrientation;
-  }
-
-  /**
    * Retrieve the local scale of the node, relative to its parent.
    * @param[in] bufferIndex The buffer to read from.
    * @return The local scale.
    */
   const Vector3& GetScale(BufferIndex bufferIndex) const
   {
-    return mScale[bufferIndex];
-  }
+    if( mTransformId != INVALID_TRANSFORM_ID )
+    {
+      return mScale.Get(0);
+    }
 
-  /**
-   * Sets the scale of the node derived from the scale of all its parents and a pre-scale
-   * @param[in] updateBufferIndex The current update buffer index.
-   * @param[in] scale The world scale.
-   */
-  void SetWorldScale(BufferIndex updateBufferIndex, const Vector3& scale)
-  {
-    mWorldScale.Set( updateBufferIndex, scale );
+    return Vector3::ONE;
   }
 
-  /**
-   * Sets the scale of the node derived from the scale of all its parents and a pre-scale.
-   * This method should only be called when the parents world scale is up-to-date.
-   * @pre The node has a parent.
-   * @param[in] updateBufferIndex The current update buffer index.
-   */
-  void InheritWorldScale(BufferIndex updateBufferIndex)
-  {
-    DALI_ASSERT_DEBUG(mParent != NULL);
-
-    mWorldScale.Set( updateBufferIndex, mParent->GetWorldScale(updateBufferIndex) * mScale[updateBufferIndex] );
-  }
-
-  /**
-   * Copies the previous inherited scale, if this changed in the previous frame.
-   * This method should be called instead of InheritWorldScale i.e. if the inherited scale
-   * does not need to be recalculated in the current frame.
-   * @param[in] updateBufferIndex The current update buffer index.
-   */
-  void CopyPreviousWorldScale( BufferIndex updateBufferIndex )
-  {
-    mWorldScale.CopyPrevious( updateBufferIndex );
-  }
 
   /**
    * Retrieve the scale of the node derived from the scale of all its parents.
@@ -674,7 +473,7 @@ public:
    */
   const Vector3& GetWorldScale( BufferIndex bufferIndex ) const
   {
-    return mWorldScale[bufferIndex];
+    return mWorldScale.Get(0);
   }
 
   /**
@@ -683,24 +482,13 @@ public:
    */
   void SetInheritScale( bool inherit )
   {
-    if( inherit != mInheritScale )
+    if( mTransformId != INVALID_TRANSFORM_ID )
     {
-      mInheritScale = inherit;
-
-      SetDirtyFlag( TransformFlag );
+      mTransformManager->SetInheritScale(mTransformId, inherit );
     }
   }
 
   /**
-   * Query whether the Node inherits scale.
-   * @return if scale is inherited
-   */
-  bool IsScaleInherited() const
-  {
-    return mInheritScale;
-  }
-
-  /**
    * Retrieve the visibility of the node.
    * @param[in] bufferIndex The buffer to read from.
    * @return True if the node is visible.
@@ -820,41 +608,59 @@ public:
    */
   const Vector3& GetSize(BufferIndex bufferIndex) const
   {
-    return mSize[bufferIndex];
+    if( mTransformId != INVALID_TRANSFORM_ID )
+    {
+      return mSize.Get(0);
+    }
+
+    return Vector3::ZERO;
   }
 
   /**
-   * Set the world-matrix of a node, with scale + rotation + translation.
-   * Scale and rotation are centered at the origin.
-   * Translation is applied independently of the scale or rotatation axis.
-   * @param[in] updateBufferIndex The current update buffer index.
-   * @param[in] scale The scale.
-   * @param[in] rotation The rotation.
-   * @param[in] translation The translation.
+   * Retrieve the bounding sphere of the node
+   * @return A vector4 describing the bounding sphere. XYZ is the center and W is the radius
    */
-  void SetWorldMatrix( BufferIndex updateBufferIndex, const Vector3& scale, const Quaternion& rotation, const Vector3& translation )
+  const Vector4& GetBoundingSphere() const
   {
-    mWorldMatrix.Get( updateBufferIndex ).SetTransformComponents( scale, rotation, translation );
-    mWorldMatrix.SetDirty( updateBufferIndex );
+    if( mTransformId != INVALID_TRANSFORM_ID )
+    {
+      return mTransformManager->GetBoundingSphere( mTransformId );
+    }
+
+    return Vector4::ZERO;
   }
 
   /**
-   * Retrieve the cached world-matrix of a node.
-   * @param[in] bufferIndex The buffer to read from.
-   * @return The world-matrix.
+   * Retrieve world matrix and size of the node
+   * @param[out] The local to world matrix of the node
+   * @param[out] size The current size of the node
    */
-  const Matrix& GetWorldMatrix( BufferIndex bufferIndex ) const
+  void GetWorldMatrixAndSize( Matrix& worldMatrix, Vector3& size ) const
   {
-    return mWorldMatrix[ bufferIndex ];
+    if( mTransformId != INVALID_TRANSFORM_ID )
+    {
+      mTransformManager->GetWorldMatrixAndSize( mTransformId, worldMatrix, size );
+    }
   }
 
   /**
-   * Copy previous frames world matrix
-   * @param[in] updateBufferIndex The current update buffer index.
+   * Checks if local matrix has changed since last update
+   * @return true if local matrix has changed, false otherwise
+   */
+  bool IsLocalMatrixDirty() const
+  {
+    return (mTransformId != INVALID_TRANSFORM_ID) &&
+           (mTransformManager->IsLocalMatrixDirty( mTransformId ));
+  }
+
+  /**
+   * Retrieve the cached world-matrix of a node.
+   * @param[in] bufferIndex The buffer to read from.
+   * @return The world-matrix.
    */
-  void CopyPreviousWorldMatrix( BufferIndex updateBufferIndex )
+  const Matrix& GetWorldMatrix( BufferIndex bufferIndex ) const
   {
-    mWorldMatrix.CopyPrevious( updateBufferIndex );
+    return mWorldMatrix.Get(bufferIndex);
   }
 
   /**
@@ -893,29 +699,54 @@ public:
     return mDrawMode;
   }
 
+  /*
+   * Returns the transform id of the node
+   * @return The transform component id of the node
+   */
+  TransformId GetTransformId() const
+  {
+    return mTransformId;
+  }
+
   /**
    * Equality operator, checks for identity, not values.
-   *
+   * @param[in]
    */
   bool operator==( const Node* rhs ) const
   {
-    if ( this == rhs )
-    {
-      return true;
-    }
-    return false;
+    return ( this == rhs );
   }
 
-  unsigned short GetDepth() const
+  /**
+   * @brief Sets the sibling order of the node
+   * @param[in] order The new order
+   */
+  void SetDepthIndex( unsigned int depthIndex ){ mDepthIndex = depthIndex; }
+
+  /**
+   * @brief Get the depth index of the node
+   * @return Current depth index
+   */
+  unsigned int GetDepthIndex(){ return mDepthIndex; }
+
+  /**
+   * @brief Sets the boolean which states whether the position should use the anchor-point.
+   * @param[in] positionUsesAnchorPoint True if the position should use the anchor-point
+   */
+  void SetPositionUsesAnchorPoint( bool positionUsesAnchorPoint )
   {
-    return mDepth;
+    if( mTransformId != INVALID_TRANSFORM_ID && mPositionUsesAnchorPoint != positionUsesAnchorPoint )
+    {
+      mPositionUsesAnchorPoint = positionUsesAnchorPoint;
+      mTransformManager->SetPositionUsesAnchorPoint( mTransformId, mPositionUsesAnchorPoint );
+    }
   }
 
 public:
   /**
    * @copydoc UniformMap::Add
    */
-  void AddUniformMapping( UniformPropertyMapping* map );
+  void AddUniformMapping( OwnerPointer< UniformPropertyMapping >& map );
 
   /**
    * @copydoc UniformMap::Remove
@@ -929,19 +760,40 @@ public:
    */
   void PrepareRender( BufferIndex bufferIndex );
 
+  /**
+   * Called by UpdateManager when the node is added.
+   * Creates a new transform component in the transform manager and initialize all the properties
+   * related to the transformation
+   * @param[in] transformManager A pointer to the trnasform manager (Owned by UpdateManager)
+   */
+  void CreateTransform( SceneGraph::TransformManager* transformManager );
+
+  /**
+   * Reset dirty flags
+   */
+  void ResetDirtyFlags( BufferIndex updateBufferIndex );
+
 protected:
 
   /**
    * Set the parent of a Node.
    * @param[in] parentNode the new parent.
    */
-  void SetParent(Node& parentNode);
+  void SetParent( Node& parentNode );
+
+protected:
 
   /**
    * Protected constructor; See also Node::New()
    */
   Node();
 
+  /**
+   * Protected virtual destructor; See also Node::Delete( Node* )
+   * Kept protected to allow destructor chaining from layer
+   */
+  virtual ~Node();
+
 private: // from NodeDataProvider
 
   /**
@@ -960,11 +812,6 @@ private: // from NodeDataProvider
     return GetWorldColor( bufferId );
   }
 
-  virtual const Vector3& GetRenderSize( unsigned int bufferId ) const
-  {
-    return GetSize( bufferId );
-  }
-
 public: // From UniformMapDataProvider
   /**
    * @copydoc UniformMapDataProvider::GetUniformMapChanged
@@ -991,11 +838,6 @@ private:
   Node& operator=(const Node& rhs);
 
   /**
-   * @copydoc Dali::Internal::SceneGraph::PropertyOwner::ResetDefaultProperties()
-   */
-  virtual void ResetDefaultProperties( BufferIndex updateBufferIndex );
-
-  /**
    * Recursive helper to disconnect a Node and its children.
    * Disconnected Nodes have no parent or children.
    * @param[in] updateBufferIndex The current update buffer index.
@@ -1004,50 +846,53 @@ private:
 
 public: // Default properties
 
-  PropertyVector3                mParentOrigin;  ///< Local transform; the position is relative to this. Sets the TransformFlag dirty when changed
-  PropertyVector3                mAnchorPoint;   ///< Local transform; local center of rotation. Sets the TransformFlag dirty when changed
+  TransformManager*                  mTransformManager;
+  TransformId                        mTransformId;
+  TransformManagerPropertyVector3    mParentOrigin;           ///< Local transform; the position is relative to this. Sets the TransformFlag dirty when changed
+  TransformManagerPropertyVector3    mAnchorPoint;            ///< Local transform; local center of rotation. Sets the TransformFlag dirty when changed
+  TransformManagerPropertyVector3    mSize;                   ///< Size is provided for layouting
+  TransformManagerPropertyVector3    mPosition;               ///< Local transform; distance between parent-origin & anchor-point
+  TransformManagerPropertyQuaternion mOrientation;            ///< Local transform; rotation relative to parent node
+  TransformManagerPropertyVector3    mScale;                  ///< Local transform; scale relative to parent node
 
-  AnimatableProperty<Vector3>    mSize;          ///< Size is provided for layouting
-  AnimatableProperty<Vector3>    mPosition;      ///< Local transform; distance between parent-origin & anchor-point
-  AnimatableProperty<Quaternion> mOrientation;   ///< Local transform; rotation relative to parent node
-  AnimatableProperty<Vector3>    mScale;         ///< Local transform; scale relative to parent node
-  AnimatableProperty<bool>       mVisible;       ///< Visibility can be inherited from the Node hierachy
-  AnimatableProperty<Vector4>    mColor;         ///< Color can be inherited from the Node hierarchy
+  AnimatableProperty<bool>           mVisible;                ///< Visibility can be inherited from the Node hierachy
+  AnimatableProperty<Vector4>        mColor;                  ///< Color can be inherited from the Node hierarchy
 
   // Inherited properties; read-only from public API
 
-  InheritedVector3    mWorldPosition;     ///< Full inherited position
-  InheritedQuaternion mWorldOrientation;  ///< Full inherited orientation
-  InheritedVector3    mWorldScale;        ///< Full inherited scale
-  InheritedMatrix     mWorldMatrix;       ///< Full inherited world matrix
-  InheritedColor      mWorldColor;        ///< Full inherited color
+  TransformManagerVector3Input       mWorldPosition;          ///< Full inherited position
+  TransformManagerVector3Input       mWorldScale;
+  TransformManagerQuaternionInput    mWorldOrientation;       ///< Full inherited orientation
+  TransformManagerMatrixInput        mWorldMatrix;            ///< Full inherited world matrix
+  InheritedColor                     mWorldColor;             ///< Full inherited color
 
-protected:
+  uint32_t                           mClippingSortModifier;   ///< Contains bit-packed clipping information for quick access when sorting
 
-  Node*               mParent;                       ///< Pointer to parent node (a child is owned by its parent)
-  RenderTask*         mExclusiveRenderTask;          ///< Nodes can be marked as exclusive to a single RenderTask
-
-  NodeAttachmentOwner mAttachment;                   ///< Optional owned attachment
-  RendererContainer   mRenderer;                     ///< Container of renderers; not owned
+protected:
 
-  NodeContainer       mChildren;                     ///< Container of children; not owned
+  Node*                              mParent;                 ///< Pointer to parent node (a child is owned by its parent)
+  RenderTask*                        mExclusiveRenderTask;    ///< Nodes can be marked as exclusive to a single RenderTask
 
-  CollectedUniformMap mCollectedUniformMap[2];      ///< Uniform maps of the node
-  unsigned int        mUniformMapChanged[2];        ///< Records if the uniform map has been altered this frame
-  unsigned int        mRegenerateUniformMap : 2;    ///< Indicate if the uniform map has to be regenerated this frame
+  RendererContainer                  mRenderer;               ///< Container of renderers; not owned
 
-  // flags, compressed to bitfield
-  unsigned short mDepth: 12;                        ///< Depth in the hierarchy
-  int  mDirtyFlags:8;                               ///< A composite set of flags for each of the Node properties
+  NodeContainer                      mChildren;               ///< Container of children; not owned
 
-  bool mIsRoot:1;                                    ///< True if the node cannot have a parent
-  bool mInheritOrientation:1;                        ///< Whether the parent's orientation should be inherited.
-  bool mInheritScale:1;                              ///< Whether the parent's scale should be inherited.
+  CollectedUniformMap                mCollectedUniformMap[2]; ///< Uniform maps of the node
+  unsigned int                       mUniformMapChanged[2];   ///< Records if the uniform map has been altered this frame
+  uint32_t                           mClippingDepth;          ///< The number of stencil clipping nodes deep this node is
+  uint32_t                           mScissorDepth;           ///< The number of scissor clipping nodes deep this node is
 
-  DrawMode::Type          mDrawMode:2;               ///< How the Node and its children should be drawn
-  PositionInheritanceMode mPositionInheritanceMode:2;///< Determines how position is inherited, 2 bits is enough
-  ColorMode               mColorMode:2;              ///< Determines whether mWorldColor is inherited, 2 bits is enough
+  uint32_t                           mDepthIndex;             ///< Depth index of the node
 
+  // flags, compressed to bitfield
+  unsigned int                       mRegenerateUniformMap:2; ///< Indicate if the uniform map has to be regenerated this frame
+  int                                mDirtyFlags:8;           ///< A composite set of flags for each of the Node properties
+  DrawMode::Type                     mDrawMode:2;             ///< How the Node and its children should be drawn
+  ColorMode                          mColorMode:2;            ///< Determines whether mWorldColor is inherited, 2 bits is enough
+  ClippingMode::Type                 mClippingMode:2;         ///< The clipping mode of this node
+  bool                               mIsRoot:1;               ///< True if the node cannot have a parent
+  bool                               mIsLayer:1;              ///< True if the node is a layer
+  bool                               mPositionUsesAnchorPoint:1; ///< True if the node should use the anchor-point when calculating the position
   // Changes scope, should be at end of class
   DALI_LOG_OBJECT_STRING_DECLARATION;
 };
@@ -1087,15 +932,15 @@ inline void SetAnchorPointMessage( EventThreadServices& eventThreadServices, con
   new (slot) LocalType( &node, &Node::SetAnchorPoint, anchor );
 }
 
-inline void SetPositionInheritanceModeMessage( EventThreadServices& eventThreadServices, const Node& node, PositionInheritanceMode mode )
+inline void SetInheritPositionMessage( EventThreadServices& eventThreadServices, const Node& node, bool inherit )
 {
-  typedef MessageValue1< Node, PositionInheritanceMode > LocalType;
+  typedef MessageValue1< Node, bool > LocalType;
 
   // Reserve some memory inside the message queue
   unsigned int* slot = eventThreadServices.ReserveMessageSlot( sizeof( LocalType ) );
 
   // Construct message in the message queue memory; note that delete should not be called on the return value
-  new (slot) LocalType( &node, &Node::SetPositionInheritanceMode, mode );
+  new (slot) LocalType( &node, &Node::SetInheritPosition, inherit );
 }
 
 inline void SetInheritScaleMessage( EventThreadServices& eventThreadServices, const Node& node, bool inherit )
@@ -1152,10 +997,52 @@ inline void RemoveRendererMessage( EventThreadServices& eventThreadServices, con
   // Construct message in the message queue memory; note that delete should not be called on the return value
   new (slot) LocalType( &node, &Node::RemoveRenderer, renderer );
 }
+
+inline void SetDepthIndexMessage( EventThreadServices& eventThreadServices, const Node& node, unsigned int depthIndex )
+{
+  typedef MessageValue1< Node, unsigned int > LocalType;
+
+  // Reserve some memory inside the message queue
+  unsigned int* slot = eventThreadServices.ReserveMessageSlot( sizeof( LocalType ) );
+
+  // Construct message in the message queue memory; note that delete should not be called on the return value
+  new (slot) LocalType( &node, &Node::SetDepthIndex, depthIndex );
+}
+
+inline void SetClippingModeMessage( EventThreadServices& eventThreadServices, const Node& node, ClippingMode::Type clippingMode )
+{
+  typedef MessageValue1< Node, ClippingMode::Type > LocalType;
+
+  // Reserve some memory inside the message queue
+  unsigned int* slot = eventThreadServices.ReserveMessageSlot( sizeof( LocalType ) );
+
+  // Construct message in the message queue memory; note that delete should not be called on the return value
+  new (slot) LocalType( &node, &Node::SetClippingMode, clippingMode );
+}
+
+inline void SetPositionUsesAnchorPointMessage( EventThreadServices& eventThreadServices, const Node& node, bool positionUsesAnchorPoint )
+{
+  typedef MessageValue1< Node, bool > LocalType;
+
+  // Reserve some memory inside the message queue
+  unsigned int* slot = eventThreadServices.ReserveMessageSlot( sizeof( LocalType ) );
+
+  // Construct message in the message queue memory; note that delete should not be called on the return value
+  new (slot) LocalType( &node, &Node::SetPositionUsesAnchorPoint, positionUsesAnchorPoint );
+}
+
 } // namespace SceneGraph
 
+// Template specialisation for OwnerPointer<Node>, because delete is protected
+template <>
+void OwnerPointer<Dali::Internal::SceneGraph::Node>::Reset();
+
 } // namespace Internal
 
+// Template specialisations for OwnerContainer<Node*>, because delete is protected
+template <>
+void OwnerContainer<Dali::Internal::SceneGraph::Node*>::Delete( Dali::Internal::SceneGraph::Node* pointer );
+
 } // namespace Dali
 
-#endif // __DALI_INTERNAL_SCENE_GRAPH_NODE_H_
+#endif // DALI_INTERNAL_SCENE_GRAPH_NODE_H