Merge "Text Shadow Implementation via copied renderer." into devel/master
[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 BufferImage& 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::GetMaterial
112    */
113   Material GetMaterial( uint32_t atlasId ) const;
114
115   /**
116    * @copydoc Toolkit::AtlasGlyphManager::GetMetrics
117    */
118   const Toolkit::AtlasGlyphManager::Metrics& GetMetrics();
119
120 protected:
121
122   /**
123    * A reference counted object may only be deleted by calling Unreference()
124    */
125   virtual ~AtlasGlyphManager();
126
127 private:
128
129   Dali::Toolkit::AtlasManager mAtlasManager;          ///> Atlas Manager created by GlyphManager
130   std::vector< FontGlyphRecord > mFontGlyphRecords;
131   Toolkit::AtlasGlyphManager::Metrics mMetrics;       ///> Metrics to pass back on GlyphManager status
132
133   Shader mShaderL8;
134   Shader mShaderRgba;
135 };
136
137 } // namespace Internal
138
139 inline const Internal::AtlasGlyphManager& GetImplementation(const Toolkit::AtlasGlyphManager& manager)
140 {
141   DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" );
142
143   const BaseObject& handle = manager.GetBaseObject();
144
145   return static_cast<const Internal::AtlasGlyphManager&>(handle);
146 }
147
148 inline Internal::AtlasGlyphManager& GetImplementation(Toolkit::AtlasGlyphManager& manager)
149 {
150   DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" );
151
152   BaseObject& handle = manager.GetBaseObject();
153
154   return static_cast<Internal::AtlasGlyphManager&>(handle);
155 }
156
157 } // namespace Toolkit
158
159 } // namespace Dali
160
161 #endif // __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__