TextField Styling upgrade, Builder to use filenames
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / atlas / text-atlas-renderer.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali-toolkit/internal/text/rendering/atlas/text-atlas-renderer.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/dali.h>
23 #include <dali/devel-api/object/property-buffer.h>
24 #include <dali/devel-api/rendering/geometry.h>
25 #include <dali/devel-api/rendering/renderer.h>
26 #include <dali/devel-api/rendering/sampler.h>
27 #include <dali/devel-api/rendering/shader.h>
28 #include <dali/devel-api/text-abstraction/font-client.h>
29 #include <dali/integration-api/debug.h>
30 // INTERNAL INCLUDES
31 #include <dali-toolkit/public-api/controls/control-depth-index-ranges.h>
32 #include <dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.h>
33
34 using namespace Dali;
35 using namespace Dali::Toolkit;
36 using namespace Dali::Toolkit::Text;
37
38 namespace
39 {
40 #if defined(DEBUG_ENABLED)
41   Debug::Filter* gLogFilter = Debug::Filter::New(Debug::Concise, true, "LOG_TEXT_RENDERING");
42 #endif
43
44 const float ZERO( 0.0f );
45 const float HALF( 0.5f );
46 const float ONE( 1.0f );
47 const float TWO( 2.0f );
48 const uint32_t DEFAULT_ATLAS_WIDTH = 512u;
49 const uint32_t DEFAULT_ATLAS_HEIGHT = 512u;
50 }
51 struct AtlasRenderer::Impl : public ConnectionTracker
52 {
53
54   enum Style
55   {
56     STYLE_NORMAL,
57     STYLE_DROP_SHADOW
58   };
59
60   struct MeshRecord
61   {
62     Vector4 mColor;
63     uint32_t mAtlasId;
64     AtlasManager::Mesh2D mMesh;
65     FrameBufferImage mBuffer;
66     bool mIsUnderline;
67   };
68
69   struct Extent
70   {
71     float mBaseLine;
72     float mLeft;
73     float mRight;
74     float mUnderlinePosition;
75     float mUnderlineThickness;
76     uint32_t mMeshRecordIndex;
77   };
78
79   struct MaxBlockSize
80   {
81     FontId mFontId;
82     uint32_t mNeededBlockWidth;
83     uint32_t mNeededBlockHeight;
84   };
85
86   struct CheckEntry
87   {
88     FontId mFontId;
89     Text::GlyphIndex mIndex;
90   };
91
92   struct TextCacheEntry
93   {
94     FontId mFontId;
95     Text::GlyphIndex mIndex;
96     uint32_t mImageId;
97   };
98
99   Impl()
100   {
101     mGlyphManager = AtlasGlyphManager::Get();
102     mFontClient = TextAbstraction::FontClient::Get();
103
104     mQuadVertexFormat[ "aPosition" ] = Property::VECTOR2;
105     mQuadVertexFormat[ "aTexCoord" ] = Property::VECTOR2;
106     mQuadIndexFormat[ "indices" ] = Property::UNSIGNED_INTEGER;
107   }
108
109   void AddGlyphs( const std::vector<Vector2>& positions,
110                   const Vector<GlyphInfo>& glyphs,
111                   const Vector4& textColor,
112                   const Vector2& shadowOffset,
113                   const Vector4& shadowColor,
114                   bool underlineEnabled,
115                   const Vector4& underlineColor,
116                   float underlineHeight,
117                   unsigned int depth )
118   {
119     AtlasManager::AtlasSlot slot;
120     std::vector< MeshRecord > meshContainer;
121     Vector< Extent > extents;
122     TextCacheEntry textCacheEntry;
123     mDepth = static_cast< int >( depth );
124
125     float currentUnderlinePosition = ZERO;
126     float currentUnderlineThickness = underlineHeight;
127     uint32_t currentBlockSize = 0;
128     FontId lastFontId = 0;
129     Style style = STYLE_NORMAL;
130
131     if ( fabsf( shadowOffset.x ) > Math::MACHINE_EPSILON_1 || fabsf( shadowOffset.y ) > Math::MACHINE_EPSILON_1 )
132     {
133       style = STYLE_DROP_SHADOW;
134     }
135
136     if ( mTextCache.Size() )
137     {
138       // Update the glyph cache with any changes to current text
139       RemoveText( glyphs );
140     }
141
142     CalculateBlocksSize( glyphs );
143
144     for( uint32_t i = 0, glyphSize = glyphs.Size(); i < glyphSize; ++i )
145     {
146       const GlyphInfo& glyph = glyphs[ i ];
147
148       // No operation for white space
149       if ( glyph.width && glyph.height )
150       {
151         // Are we still using the same fontId as previous
152         if ( glyph.fontId != lastFontId )
153         {
154           // We need to fetch fresh font underline metrics
155           FontMetrics fontMetrics;
156           mFontClient.GetFontMetrics( glyph.fontId, fontMetrics );
157           currentUnderlinePosition = ceil( fabsf( fontMetrics.underlinePosition ) );
158           float descender = ceil( fabsf( fontMetrics.descender ) );
159
160           if ( underlineHeight == ZERO )
161           {
162             currentUnderlineThickness = fontMetrics.underlineThickness;
163
164             // Ensure underline will be at least a pixel high
165             if ( currentUnderlineThickness < ONE )
166             {
167               currentUnderlineThickness = ONE;
168             }
169             else
170             {
171               currentUnderlineThickness = ceil( currentUnderlineThickness );
172             }
173           }
174
175           // Clamp the underline position at the font descender and check for ( as EFL describes it ) a broken font
176           if ( currentUnderlinePosition > descender )
177           {
178             currentUnderlinePosition = descender;
179           }
180           if ( ZERO == currentUnderlinePosition )
181           {
182             // Move offset down by one ( EFL behavior )
183             currentUnderlinePosition = ONE;
184           }
185         }
186
187         const Vector2& position = positions[ i ];
188         AtlasManager::Mesh2D newMesh;
189
190         if ( !mGlyphManager.Cached( glyph.fontId, glyph.index, slot ) )
191         {
192           // Select correct size for new atlas if needed....?
193           if ( lastFontId != glyph.fontId )
194           {
195             for ( uint32_t j = 0; j < mBlockSizes.size(); ++j )
196             {
197               if ( mBlockSizes[ j ].mFontId == glyph.fontId )
198               {
199                 currentBlockSize = j;
200                 mGlyphManager.SetNewAtlasSize( DEFAULT_ATLAS_WIDTH,
201                                                DEFAULT_ATLAS_HEIGHT,
202                                                mBlockSizes[ j ].mNeededBlockWidth,
203                                                mBlockSizes[ j ].mNeededBlockHeight );
204               }
205             }
206           }
207
208           // Create a new image for the glyph
209           BufferImage bitmap = mFontClient.CreateBitmap( glyph.fontId, glyph.index );
210           if ( bitmap )
211           {
212             // Ensure that the next image will fit into the current block size
213             bool setSize = false;
214             if ( bitmap.GetWidth() > mBlockSizes[ currentBlockSize ].mNeededBlockWidth )
215             {
216               setSize = true;
217               mBlockSizes[ currentBlockSize ].mNeededBlockWidth = bitmap.GetWidth();
218             }
219             if ( bitmap.GetHeight() > mBlockSizes[ currentBlockSize ].mNeededBlockHeight )
220             {
221               setSize = true;
222               mBlockSizes[ currentBlockSize ].mNeededBlockHeight = bitmap.GetHeight();
223             }
224
225             if ( setSize )
226             {
227               mGlyphManager.SetNewAtlasSize( DEFAULT_ATLAS_WIDTH,
228                                              DEFAULT_ATLAS_HEIGHT,
229                                              mBlockSizes[ currentBlockSize ].mNeededBlockWidth,
230                                              mBlockSizes[ currentBlockSize ].mNeededBlockHeight );
231             }
232
233             // Locate a new slot for our glyph
234             mGlyphManager.Add( glyph.fontId, glyph, bitmap, slot );
235           }
236         }
237
238         // Generate mesh data for this quad, plugging in our supplied position
239         mGlyphManager.GenerateMeshData( slot.mImageId, position, newMesh );
240         textCacheEntry.mFontId = glyph.fontId;
241         textCacheEntry.mImageId = slot.mImageId;
242         textCacheEntry.mIndex = glyph.index;
243         mTextCache.PushBack( textCacheEntry );
244
245         // Find an existing mesh data object to attach to ( or create a new one, if we can't find one using the same atlas)
246         StitchTextMesh( meshContainer,
247                         newMesh,
248                         extents,
249                         textColor,
250                         position.y + glyph.yBearing,
251                         currentUnderlinePosition,
252                         currentUnderlineThickness,
253                         slot );
254        lastFontId = glyph.fontId;
255       }
256     }
257
258     if ( underlineEnabled )
259     {
260       // Check to see if any of the text needs an underline
261       GenerateUnderlines( meshContainer, extents, underlineColor, textColor );
262     }
263
264     // For each MeshData object, create a mesh actor and add to the renderable actor
265     if ( meshContainer.size() )
266     {
267       for ( std::vector< MeshRecord >::iterator mIt = meshContainer.begin(); mIt != meshContainer.end(); ++mIt )
268       {
269         Actor actor = CreateMeshActor( *mIt );
270
271         // Create an effect if necessary
272         if ( style == STYLE_DROP_SHADOW )
273         {
274           actor.Add( GenerateShadow( *mIt, shadowOffset, shadowColor ) );
275         }
276
277         if ( mActor )
278         {
279           mActor.Add( actor );
280         }
281         else
282         {
283           mActor = actor;
284         }
285       }
286     }
287 #if defined(DEBUG_ENABLED)
288     Toolkit::AtlasGlyphManager::Metrics metrics = mGlyphManager.GetMetrics();
289     DALI_LOG_INFO( gLogFilter, Debug::General, "TextAtlasRenderer::GlyphManager::GlyphCount: %i, AtlasCount: %i, TextureMemoryUse: %iK\n",
290                                                 metrics.mGlyphCount,
291                                                 metrics.mAtlasMetrics.mAtlasCount,
292                                                 metrics.mAtlasMetrics.mTextureMemoryUsed / 1024 );
293     for ( uint32_t i = 0; i < metrics.mAtlasMetrics.mAtlasCount; ++i )
294     {
295       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Atlas [%i] %sPixels: %s Size: %ix%i, BlockSize: %ix%i, BlocksUsed: %i/%i\n",
296                                                  i + 1, i > 8 ? "" : " ",
297                                                  metrics.mAtlasMetrics.mAtlasMetrics[ i ].mPixelFormat == Pixel::L8 ? "L8  " : "BGRA",
298                                                  metrics.mAtlasMetrics.mAtlasMetrics[ i ].mSize.mWidth,
299                                                  metrics.mAtlasMetrics.mAtlasMetrics[ i ].mSize.mHeight,
300                                                  metrics.mAtlasMetrics.mAtlasMetrics[ i ].mSize.mBlockWidth,
301                                                  metrics.mAtlasMetrics.mAtlasMetrics[ i ].mSize.mBlockHeight,
302                                                  metrics.mAtlasMetrics.mAtlasMetrics[ i ].mBlocksUsed,
303                                                  metrics.mAtlasMetrics.mAtlasMetrics[ i ].mTotalBlocks );
304     }
305 #endif
306   }
307
308   Actor CreateMeshActor( const MeshRecord& meshRecord )
309   {
310     PropertyBuffer quadVertices = PropertyBuffer::New( mQuadVertexFormat, meshRecord.mMesh.mVertices.Size() );
311     PropertyBuffer quadIndices = PropertyBuffer::New( mQuadIndexFormat, meshRecord.mMesh.mIndices.Size() );
312     quadVertices.SetData( const_cast< AtlasManager::Vertex2D* >( &meshRecord.mMesh.mVertices[ 0 ] ) );
313     quadIndices.SetData( const_cast< unsigned int* >( &meshRecord.mMesh.mIndices[ 0 ] ) );
314
315     Geometry quadGeometry = Geometry::New();
316     quadGeometry.AddVertexBuffer( quadVertices );
317     quadGeometry.SetIndexBuffer( quadIndices );
318
319     Material material = mGlyphManager.GetMaterial( meshRecord.mAtlasId );
320     Dali::Renderer renderer = Dali::Renderer::New( quadGeometry, material );
321     renderer.SetDepthIndex( mDepth );
322     Actor actor = Actor::New();
323     actor.AddRenderer( renderer );
324     actor.SetSize( 1.0f, 1.0f );
325     actor.SetColor( meshRecord.mColor );
326
327     if ( meshRecord.mIsUnderline )
328     {
329       actor.SetColorMode( USE_OWN_COLOR );
330     }
331     else
332     {
333       actor.SetColorMode( USE_OWN_MULTIPLY_PARENT_COLOR );
334     }
335     return actor;
336   }
337
338   void StitchTextMesh( std::vector< MeshRecord >& meshContainer,
339                        AtlasManager::Mesh2D& newMesh,
340                        Vector< Extent >& extents,
341                        const Vector4& color,
342                        float baseLine,
343                        float underlinePosition,
344                        float underlineThickness,
345                        AtlasManager::AtlasSlot& slot )
346   {
347     if ( slot.mImageId )
348     {
349       float left = newMesh.mVertices[ 0 ].mPosition.x;
350       float right = newMesh.mVertices[ 1 ].mPosition.x;
351
352       // Check to see if there's a mesh data object that references the same atlas ?
353       uint32_t index = 0;
354       for ( std::vector< MeshRecord >::iterator mIt = meshContainer.begin(); mIt != meshContainer.end(); ++mIt, ++index )
355       {
356         if ( slot.mAtlasId == mIt->mAtlasId && color == mIt->mColor )
357         {
358           // Stitch the mesh to the existing mesh and adjust any extents
359           mGlyphManager.StitchMesh( mIt->mMesh, newMesh );
360           AdjustExtents( extents,
361                          meshContainer,
362                          index,
363                          left,
364                          right,
365                          baseLine,
366                          underlinePosition,
367                          underlineThickness );
368           return;
369         }
370       }
371
372       // No mesh data object currently exists that references this atlas, so create a new one
373       MeshRecord meshRecord;
374       meshRecord.mAtlasId = slot.mAtlasId;
375       meshRecord.mMesh = newMesh;
376       meshRecord.mColor = color;
377       meshRecord.mIsUnderline = false;
378       meshContainer.push_back( meshRecord );
379
380       // Adjust extents for this new meshrecord
381       AdjustExtents( extents,
382                      meshContainer,
383                      meshContainer.size() - 1u,
384                      left,
385                      right,
386                      baseLine,
387                      underlinePosition,
388                      underlineThickness );
389
390     }
391   }
392
393   void AdjustExtents( Vector< Extent >& extents,
394                       std::vector< MeshRecord>& meshRecords,
395                       uint32_t index,
396                       float left,
397                       float right,
398                       float baseLine,
399                       float underlinePosition,
400                       float underlineThickness )
401   {
402     bool foundExtent = false;
403     for ( Vector< Extent >::Iterator eIt = extents.Begin(); eIt != extents.End(); ++eIt )
404     {
405       if ( Equals( baseLine, eIt->mBaseLine ) )
406       {
407         foundExtent = true;
408         if ( left < eIt->mLeft )
409         {
410           eIt->mLeft = left;
411         }
412         if ( right > eIt->mRight  )
413         {
414           eIt->mRight = right;
415         }
416
417         if ( underlinePosition > eIt->mUnderlinePosition )
418         {
419           eIt->mUnderlinePosition = underlinePosition;
420         }
421         if ( underlineThickness > eIt->mUnderlineThickness )
422         {
423           eIt->mUnderlineThickness = underlineThickness;
424         }
425       }
426     }
427     if ( !foundExtent )
428     {
429       Extent extent;
430       extent.mLeft = left;
431       extent.mRight = right;
432       extent.mBaseLine = baseLine;
433       extent.mUnderlinePosition = underlinePosition;
434       extent.mUnderlineThickness = underlineThickness;
435       extent.mMeshRecordIndex = index;
436       extents.PushBack( extent );
437     }
438   }
439
440   void RemoveText( const Vector<GlyphInfo>& glyphs )
441   {
442     Vector< CheckEntry > checked;
443     CheckEntry checkEntry;
444
445     for ( Vector< TextCacheEntry >::Iterator tCit = mTextCache.Begin(); tCit != mTextCache.End(); ++tCit )
446     {
447       uint32_t index = tCit->mIndex;
448       uint32_t fontId = tCit->mFontId;
449
450       // Check that this character has not already been checked...
451       bool wasChecked = false;
452       for ( Vector< CheckEntry >::Iterator cEit = checked.Begin(); cEit != checked.End(); ++cEit )
453       {
454         if ( fontId == cEit->mFontId && index == cEit->mIndex )
455         {
456           wasChecked = true;
457         }
458       }
459
460       if ( !wasChecked )
461       {
462
463         int32_t newCount = 0;
464         int32_t oldCount = 0;
465
466         // How many times does this character occur in the old text ?
467         for ( Vector< TextCacheEntry >::Iterator oTcit = mTextCache.Begin(); oTcit != mTextCache.End(); ++oTcit )
468         {
469           if ( fontId == oTcit->mFontId && index == oTcit->mIndex )
470           {
471             oldCount++;
472           }
473         }
474
475         // And how many times in the new ?
476         for ( Vector< GlyphInfo >::Iterator cGit = glyphs.Begin(); cGit != glyphs.End(); ++cGit )
477         {
478           if ( fontId == cGit->fontId && index == cGit->index )
479           {
480             newCount++;
481           }
482         }
483         mGlyphManager.AdjustReferenceCount( fontId, tCit->mImageId, newCount - oldCount );
484         checkEntry.mIndex = index;
485         checkEntry.mFontId = fontId;
486         checked.PushBack( checkEntry );
487       }
488     }
489     mTextCache.Resize( 0 );
490   }
491
492   void CalculateBlocksSize( const Vector<GlyphInfo>& glyphs )
493   {
494     MaxBlockSize maxBlockSize;
495     for ( uint32_t i = 0; i < glyphs.Size(); ++i )
496     {
497       FontId fontId = glyphs[ i ].fontId;
498       bool foundFont = false;
499       for ( uint32_t j = 0; j < mBlockSizes.size(); ++j )
500       {
501         if ( mBlockSizes[ j ].mFontId == fontId )
502         {
503           foundFont = true;
504         }
505       }
506       if ( !foundFont )
507       {
508         FontMetrics fontMetrics;
509         mFontClient.GetFontMetrics( fontId, fontMetrics );
510         maxBlockSize.mNeededBlockWidth = static_cast< uint32_t >( fontMetrics.height );
511         maxBlockSize.mNeededBlockHeight = static_cast< uint32_t >( fontMetrics.height );
512         maxBlockSize.mFontId = fontId;
513         mBlockSizes.push_back( maxBlockSize );
514       }
515     }
516   }
517
518   void GenerateUnderlines( std::vector< MeshRecord>& meshRecords,
519                            Vector< Extent >& extents,
520                            const Vector4& underlineColor,
521                            const Vector4& textColor )
522   {
523     AtlasManager::Mesh2D newMesh;
524     unsigned short faceIndex = 0;
525     for ( Vector< Extent >::ConstIterator eIt = extents.Begin(); eIt != extents.End(); ++eIt )
526     {
527       AtlasManager::Vertex2D vert;
528       uint32_t index = eIt->mMeshRecordIndex;
529       Vector2 uv = mGlyphManager.GetAtlasSize( meshRecords[ index ].mAtlasId );
530
531       // Make sure we don't hit texture edge for single pixel texture ( filled pixel is in top left of every atlas )
532       float u = HALF / uv.x;
533       float v = HALF / uv.y;
534       float thickness = eIt->mUnderlineThickness;
535       float baseLine = eIt->mBaseLine + eIt->mUnderlinePosition - ( thickness * HALF );
536       float tlx = eIt->mLeft;
537       float brx = eIt->mRight;
538
539       vert.mPosition.x = tlx;
540       vert.mPosition.y = baseLine;
541       vert.mTexCoords.x = ZERO;
542       vert.mTexCoords.y = ZERO;
543       newMesh.mVertices.PushBack( vert );
544
545       vert.mPosition.x = brx;
546       vert.mPosition.y = baseLine;
547       vert.mTexCoords.x = u;
548       newMesh.mVertices.PushBack( vert );
549
550       vert.mPosition.x = tlx;
551       vert.mPosition.y = baseLine + thickness;
552       vert.mTexCoords.x = ZERO;
553       vert.mTexCoords.y = v;
554       newMesh.mVertices.PushBack( vert );
555
556       vert.mPosition.x = brx;
557       vert.mPosition.y = baseLine + thickness;
558       vert.mTexCoords.x = u;
559       newMesh.mVertices.PushBack( vert );
560
561       // Six indices in counter clockwise winding
562       newMesh.mIndices.PushBack( faceIndex + 1u );
563       newMesh.mIndices.PushBack( faceIndex );
564       newMesh.mIndices.PushBack( faceIndex + 2u );
565       newMesh.mIndices.PushBack( faceIndex + 2u );
566       newMesh.mIndices.PushBack( faceIndex + 3u );
567       newMesh.mIndices.PushBack( faceIndex + 1u );
568       faceIndex += 4;
569
570       if ( underlineColor == textColor )
571       {
572         mGlyphManager.StitchMesh( meshRecords[ index ].mMesh, newMesh );
573       }
574       else
575       {
576         MeshRecord record;
577         record.mMesh = newMesh;
578         record.mAtlasId = meshRecords[ index ].mAtlasId;
579         record.mColor = underlineColor;
580         record.mIsUnderline = true;
581         meshRecords.push_back( record );
582       }
583     }
584   }
585
586   Actor GenerateShadow( MeshRecord& meshRecord,
587                         const Vector2& shadowOffset,
588                         const Vector4& shadowColor )
589   {
590     // Scan vertex buffer to determine width and height of effect buffer needed
591     const Vector< AtlasManager::Vertex2D >& verts = meshRecord.mMesh.mVertices;
592     float tlx = verts[ 0 ].mPosition.x;
593     float tly = verts[ 0 ].mPosition.y;
594     float brx = ZERO;
595     float bry = ZERO;
596
597     for ( uint32_t i = 0; i < verts.Size(); ++i )
598     {
599       if ( verts[ i ].mPosition.x < tlx )
600       {
601         tlx = verts[ i ].mPosition.x;
602       }
603       if ( verts[ i ].mPosition.y < tly )
604       {
605         tly = verts[ i ].mPosition.y;
606       }
607       if ( verts[ i ].mPosition.x > brx )
608       {
609         brx = verts[ i ].mPosition.x;
610       }
611       if ( verts[ i ].mPosition.y > bry )
612       {
613         bry = verts[ i ].mPosition.y;
614       }
615     }
616
617     float width = brx - tlx;
618     float height = bry - tly;
619     float divWidth = TWO / width;
620     float divHeight = TWO / height;
621
622     // Create a buffer to render to
623     meshRecord.mBuffer = FrameBufferImage::New( width, height );
624
625     // We will render a quad into this buffer
626     unsigned int indices[ 6 ] = { 1, 0, 2, 2, 3, 1 };
627     PropertyBuffer quadVertices = PropertyBuffer::New( mQuadVertexFormat, 4u );
628     PropertyBuffer quadIndices = PropertyBuffer::New( mQuadIndexFormat, sizeof(indices)/sizeof(indices[0]) );
629
630     AtlasManager::Vertex2D vertices[ 4 ] = {
631     { Vector2( tlx + shadowOffset.x, tly + shadowOffset.y ), Vector2( ZERO, ZERO ) },
632     { Vector2( brx + shadowOffset.x, tly + shadowOffset.y ), Vector2( ONE, ZERO ) },
633     { Vector2( tlx + shadowOffset.x, bry + shadowOffset.y ), Vector2( ZERO, ONE ) },
634     { Vector2( brx + shadowOffset.x, bry + shadowOffset.y ), Vector2( ONE, ONE ) } };
635
636     quadVertices.SetData( vertices );
637     quadIndices.SetData( indices );
638
639     Geometry quadGeometry = Geometry::New();
640     quadGeometry.AddVertexBuffer( quadVertices );
641     quadGeometry.SetIndexBuffer( quadIndices );
642
643     Sampler sampler = Sampler::New( meshRecord.mBuffer, "sTexture" );
644     Material material = Material::New( mGlyphManager.GetEffectBufferShader() );
645     material.AddSampler( sampler );
646
647     Dali::Renderer renderer = Dali::Renderer::New( quadGeometry, material );
648
649     // Ensure shadow is behind the text...
650     renderer.SetDepthIndex( mDepth + CONTENT_DEPTH_INDEX - 1 );
651     Actor actor = Actor::New();
652     actor.AddRenderer( renderer );
653     actor.SetSize( 1.0f, 1.0f );
654
655     // Create a sub actor to render the source with normalized vertex positions
656     Vector< AtlasManager::Vertex2D > normVertexList;
657     for ( uint32_t i = 0; i < verts.Size(); ++i )
658     {
659       AtlasManager::Vertex2D vertex = verts[ i ];
660       vertex.mPosition.x = ( ( vertex.mPosition.x - tlx ) * divWidth ) - ONE;
661       vertex.mPosition.y = ( ( vertex.mPosition.y - tly ) * divHeight ) - ONE;
662       normVertexList.PushBack( vertex );
663     }
664
665     PropertyBuffer normVertices = PropertyBuffer::New( mQuadVertexFormat, normVertexList.Size() );
666     PropertyBuffer normIndices = PropertyBuffer::New( mQuadIndexFormat, meshRecord.mMesh.mIndices.Size() );
667     normVertices.SetData( const_cast< AtlasManager::Vertex2D* >( &normVertexList[ 0 ] ) );
668     normIndices.SetData( const_cast< unsigned int* >( &meshRecord.mMesh.mIndices[ 0 ] ) );
669
670     Geometry normGeometry = Geometry::New();
671     normGeometry.AddVertexBuffer( normVertices );
672     normGeometry.SetIndexBuffer( normIndices );
673
674     Material normMaterial = Material::New( mGlyphManager.GetGlyphShadowShader() );
675     Sampler normSampler =  mGlyphManager.GetSampler( meshRecord.mAtlasId );
676     normMaterial.AddSampler( normSampler );
677     Dali::Renderer normRenderer = Dali::Renderer::New( normGeometry, normMaterial );
678     Actor subActor = Actor::New();
679     subActor.AddRenderer( normRenderer );
680     subActor.SetSize( 1.0f, 1.0f );
681     subActor.SetColorMode( USE_OWN_MULTIPLY_PARENT_COLOR );
682     subActor.SetColor( shadowColor );
683
684     // Create a render task to render the effect
685     RenderTask task = Stage::GetCurrent().GetRenderTaskList().CreateTask();
686     task.SetTargetFrameBuffer( meshRecord.mBuffer );
687     task.SetSourceActor( subActor );
688     task.SetClearEnabled( true );
689     task.SetClearColor( Vector4::ZERO );
690     task.SetExclusive( true );
691     task.SetRefreshRate( RenderTask::REFRESH_ONCE );
692     task.FinishedSignal().Connect( this, &AtlasRenderer::Impl::RenderComplete );
693     actor.Add( subActor );
694
695     return actor;
696   }
697
698   void RenderComplete( RenderTask& renderTask )
699   {
700     // Disconnect and remove this single shot render task
701     renderTask.FinishedSignal().Disconnect( this, &AtlasRenderer::Impl::RenderComplete );
702     Stage::GetCurrent().GetRenderTaskList().RemoveTask( renderTask );
703
704     // Get the actor used for render to buffer and remove it from the parent
705     Actor renderActor = renderTask.GetSourceActor();
706     if ( renderActor )
707     {
708       Actor parent = renderActor.GetParent();
709       if ( parent )
710       {
711         parent.Remove( renderActor );
712       }
713     }
714   }
715
716   Actor mActor;                                       ///< The actor parent which renders the text
717   AtlasGlyphManager mGlyphManager;                    ///< Glyph Manager to handle upload and caching
718   TextAbstraction::FontClient mFontClient;            ///> The font client used to supply glyph information
719   std::vector< MaxBlockSize > mBlockSizes;            ///> Maximum size needed to contain a glyph in a block within a new atlas
720   std::vector< uint32_t > mFace;                      ///> Face indices for a quad
721   Vector< TextCacheEntry > mTextCache;
722   Property::Map mQuadVertexFormat;
723   Property::Map mQuadIndexFormat;
724   int mDepth;
725 };
726
727 Text::RendererPtr AtlasRenderer::New()
728 {
729   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Text::AtlasRenderer::New()\n" );
730
731   return Text::RendererPtr( new AtlasRenderer() );
732 }
733
734 Actor AtlasRenderer::Render( Text::ViewInterface& view, unsigned int depth )
735 {
736   UnparentAndReset( mImpl->mActor );
737
738   Length numberOfGlyphs = view.GetNumberOfGlyphs();
739
740   if( numberOfGlyphs > 0u )
741   {
742     Vector<GlyphInfo> glyphs;
743     glyphs.Resize( numberOfGlyphs );
744
745     std::vector<Vector2> positions;
746     positions.resize( numberOfGlyphs );
747
748     numberOfGlyphs = view.GetGlyphs( glyphs.Begin(),
749                                      &positions[0],
750                                      0u,
751                                      numberOfGlyphs );
752     glyphs.Resize( numberOfGlyphs );
753     positions.resize( numberOfGlyphs );
754
755     mImpl->AddGlyphs( positions,
756                       glyphs,
757                       view.GetTextColor(),
758                       view.GetShadowOffset(),
759                       view.GetShadowColor(),
760                       view.IsUnderlineEnabled(),
761                       view.GetUnderlineColor(),
762                       view.GetUnderlineHeight(),
763                       depth );
764   }
765
766   return mImpl->mActor;
767 }
768
769 AtlasRenderer::AtlasRenderer()
770 {
771   mImpl = new Impl();
772
773 }
774
775 AtlasRenderer::~AtlasRenderer()
776 {
777   Vector< GlyphInfo > emptyGlyphs;
778   mImpl->RemoveText( emptyGlyphs );
779   delete mImpl;
780 }