Merge "Fixed Text Quality Regression" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / atlas / atlas-glyph-manager-impl.h
1
2 #ifndef __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__
3 #define __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__
4
5 /*
6  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20
21
22 // EXTERNAL INCLUDES
23 #include <dali/public-api/common/vector-wrapper.h>
24 #include <dali/public-api/object/base-object.h>
25
26 // INTERNAL INCLUDES
27 #include <dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.h>
28
29 namespace Dali
30 {
31
32 namespace Toolkit
33 {
34
35 class AtlasGlyphManager;
36
37 } // namespace Toolkit
38
39 namespace Toolkit
40 {
41
42 namespace Internal
43 {
44
45 class AtlasGlyphManager;
46 typedef IntrusivePtr<AtlasGlyphManager> AtlasGlyphManagerPtr;
47
48 class AtlasGlyphManager : public Dali::BaseObject
49 {
50 public:
51
52   struct GlyphRecordEntry
53   {
54     Text::GlyphIndex mIndex;
55     uint32_t mImageId;
56     int32_t mCount;
57   };
58
59   struct FontGlyphRecord
60   {
61     Text::FontId mFontId;
62     Vector< GlyphRecordEntry > mGlyphRecords;
63   };
64
65   AtlasGlyphManager();
66
67   virtual ~AtlasGlyphManager();
68
69 /**
70    * Create a new AtlasGlyphManager
71    */
72   static AtlasGlyphManagerPtr New();
73
74   /**
75    * @copydoc Toolkit::AtlasGlyphManager::Add
76    */
77   void Add( const Text::GlyphInfo& glyph,
78             const BufferImage& bitmap,
79             Dali::Toolkit::AtlasManager::AtlasSlot& slot );
80
81   /**
82    * @copydoc Toolkit::AtlasGlyphManager::GenerateMeshData
83    */
84   void GenerateMeshData( uint32_t imageId,
85                          const Vector2& position,
86                          Toolkit::AtlasManager::Mesh2D& mesh );
87
88   /**
89    * @copydoc Toolkit::AtlasGlyphManager::StitchMesh
90    */
91   void StitchMesh( Toolkit::AtlasManager::Mesh2D& first,
92                    const Toolkit::AtlasManager::Mesh2D& second );
93
94   /**
95    * @copydoc Toolkit::AtlasGlyphManager::Cached
96    */
97   bool Cached( Text::FontId fontId,
98                Text::GlyphIndex index,
99                Dali::Toolkit::AtlasManager::AtlasSlot& slot );
100
101   /**
102    * @copydoc Toolkit::AtlasGlyphManager::GetAtlasSize
103    */
104   Vector2 GetAtlasSize( uint32_t atlasId );
105
106   /**
107    * @copydoc Toolkit::AtlasGlyphManager::SetNewAtlasSize
108    */
109   void SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight );
110
111   /**
112    * @copydoc Toolkit::AtlasGlyphManager::GetPixelFormat
113    */
114   Pixel::Format GetPixelFormat( uint32_t atlasId );
115
116   /**
117    * @copydoc toolkit::AtlasGlyphManager::AdjustReferenceCount
118    */
119   void AdjustReferenceCount( Text::FontId fontId, uint32_t imageId, int32_t delta );
120
121   /**
122    * @copydoc Toolkit::AtlasGlyphManager::GetMaterial
123    */
124   Material GetMaterial( uint32_t atlasId ) const;
125
126   /**
127    * @copydoc Toolkit::AtlasGlyphManager::GetMaterial
128    */
129   Sampler GetSampler( uint32_t atlasId ) const;
130
131   /**
132    * @copydoc Toolkit::AtlasGlyphManager::GetMetrics
133    */
134   const Toolkit::AtlasGlyphManager::Metrics& GetMetrics();
135
136   /**
137    * @copydoc Toolkit::AtlasGlyphManager::GetEffectBufferShader
138    */
139   Shader GetEffectBufferShader() const
140   {
141     return mEffectBufferShader;
142   }
143
144   /**
145    * @copydoc Toolkit::AtlasGlyphManager::GetGlyphShadowShader
146    */
147   Shader GetGlyphShadowShader() const
148   {
149     return mShadowShader;
150   }
151
152 private:
153
154   Dali::Toolkit::AtlasManager mAtlasManager;          ///> Atlas Manager created by GlyphManager
155   std::vector< FontGlyphRecord > mFontGlyphRecords;
156   Toolkit::AtlasGlyphManager::Metrics mMetrics;       ///> Metrics to pass back on GlyphManager status
157   Shader mEffectBufferShader;                         ///> Shader used to render drop shadow buffer textures
158   Shader mShadowShader;                               ///> Shader used to render drop shadow into buffer
159 };
160
161 } // namespace Internal
162
163 inline const Internal::AtlasGlyphManager& GetImplementation(const Toolkit::AtlasGlyphManager& manager)
164 {
165   DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" );
166
167   const BaseObject& handle = manager.GetBaseObject();
168
169   return static_cast<const Internal::AtlasGlyphManager&>(handle);
170 }
171
172 inline Internal::AtlasGlyphManager& GetImplementation(Toolkit::AtlasGlyphManager& manager)
173 {
174   DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" );
175
176   BaseObject& handle = manager.GetBaseObject();
177
178   return static_cast<Internal::AtlasGlyphManager&>(handle);
179 }
180
181 } // namespace Toolkit
182
183 } // namespace Dali
184
185
186  #endif // __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__