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