6f1411eec1386762e93167fbaad3279cae3f6cbd
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / atlas-manager / atlas-manager-impl.h
1 #ifndef __DALI_TOOLKIT_ATLAS_MANAGER_IMPL_H__
2 #define __DALI_TOOLKIT_ATLAS_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/atlas-manager/atlas-manager.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 class AtlasManager;
35
36 } // namespace Toolkit
37
38 namespace Toolkit
39 {
40
41 namespace Internal
42 {
43
44 typedef Dali::Vector< Toolkit::AtlasManager::AtlasSlot > slotContainer;
45
46 class AtlasManager;
47 typedef IntrusivePtr<AtlasManager> AtlasManagerPtr;
48
49 class AtlasManager : public Dali::BaseObject
50 {
51 public:
52
53   typedef uint32_t SizeType;
54   typedef SizeType AtlasId;
55   typedef SizeType ImageId;
56
57   /**
58    * @brief Internal storage of atlas attributes and image upload results
59    */
60   struct AtlasDescriptor
61   {
62     Dali::Atlas mAtlas;                                                 // atlas image
63     SizeType mWidth;                                                    // width of atlas
64     SizeType mHeight;                                                   // height of atlas
65     SizeType mBlockWidth;                                               // width of a block in atlas
66     SizeType mBlockHeight;                                              // height of a block in atlas
67     Pixel::Format mPixelFormat;                                         // pixel format used by atlas
68     BufferImage mHorizontalStrip;                                       // Image used to pad upload
69     BufferImage mVerticalStrip;                                         // Image used to pad upload
70     PixelBuffer* mStripBuffer;                                          // Blank image buffer used to pad upload
71     Material mMaterial;                                                 // material used for atlas texture
72     SizeType mNextFreeBlock;                                            // next free block will be placed here ( actually +1 )
73     Dali::Vector< SizeType > mFreeBlocksList;                           // unless there are any previously freed blocks
74   };
75
76   struct AtlasSlotDescriptor
77   {
78     SizeType mCount;                                                    // Reference count for this slot
79     SizeType mImageWidth;                                               // Width of image stored
80     SizeType mImageHeight;                                              // Height of image stored
81     AtlasId mAtlasId;                                                   // Image is stored in this Atlas
82     Dali::Vector< SizeType > mBlocksList;                               // List of blocks within atlas used for image
83   };
84
85   AtlasManager();
86
87   /**
88    * Create a new AtlasManager
89    */
90   static AtlasManagerPtr New();
91
92   virtual ~AtlasManager();
93
94   /**
95    * @copydoc: Toolkit::AtlasManager::CreateAtlas
96    */
97   AtlasId CreateAtlas( SizeType width,
98                        SizeType height,
99                        SizeType blockWidth,
100                        SizeType blockHeight,
101                        Pixel::Format pixelformat );
102
103   /**
104    * @copydoc Toolkit::AtlasManager::SetAddPolicy
105    */
106   void SetAddPolicy( Toolkit::AtlasManager::AddFailPolicy policy );
107
108   /**
109    * @copydoc Toolkit::AtlasManager::Add
110    */
111   void Add( const BufferImage& image,
112             Toolkit::AtlasManager::AtlasSlot& slot,
113             Toolkit::AtlasManager::AtlasId atlas );
114
115   /**
116    * @copydoc Toolkit::AtlasManager::GenerateMeshData
117    */
118   void GenerateMeshData( ImageId id,
119                          const Vector2& position,
120                          MeshData& mesh );
121
122   /**
123    * @copydoc Toolkit::AtlasManager::StitchMesh
124    */
125   void StitchMesh( MeshData& first,
126                    const MeshData& second,
127                    bool optimize );
128
129   /**
130    * @copydoc Toolkit::AtlasManager::StitchMesh
131    */
132   void StitchMesh( const MeshData& first,
133                    const MeshData& second,
134                    MeshData& out, bool optimize );
135
136   /**
137    * @copydoc Toolkit::AtlasManager::Remove
138    */
139   bool Remove( ImageId id );
140
141   /**
142    * @copydoc Toolkit::AtlasManager::GetAtlasContainer
143    */
144   Dali::Atlas GetAtlasContainer( AtlasId atlas ) const;
145
146   /**
147    * @copydoc Toolkit::AtlasManager::GetAtlas
148    */
149   AtlasId GetAtlas( ImageId id ) const;
150
151   /**
152    * @copydoc Toolkit::AtlasManager::SetNewAtlasSize
153    */
154   void SetNewAtlasSize( const Vector2& size,
155                         const Vector2& blockSize );
156
157   /**
158    * @copydoc Toolkit::AtlasManager::GetAtlasSize
159    */
160   Vector2 GetAtlasSize( AtlasId atlas );
161
162   /**
163    * @copydoc Toolkit::AtlasManager::GetBlockSize
164    */
165   Vector2 GetBlockSize( AtlasId atlas );
166
167   /**
168    * @copydoc Toolkit::AtlasManager::GetFreeBlocks
169    */
170   SizeType GetFreeBlocks( AtlasId atlas ) const;
171
172   /*
173    * @copydoc Toolkit::AtlasManager::GetAtlasCount
174    */
175   SizeType GetAtlasCount() const;
176
177   /**
178    * @copydoc Toolkit::AtlasManager::GetPixelFormat
179    */
180   Pixel::Format GetPixelFormat( AtlasId atlas );
181
182   /**
183    * @copydoc Toolkit::AtlasManager::GetMetrics
184    */
185   void GetMetrics( Toolkit::AtlasManager::Metrics& metrics );
186
187 private:
188
189   std::vector< AtlasDescriptor > mAtlasList;        // List of atlases created
190   std::vector< AtlasSlotDescriptor > mImageList;  // List of bitmaps store in atlases
191
192   SizeType CheckAtlas( SizeType atlas,
193                        SizeType width,
194                        SizeType height,
195                        Pixel::Format pixelFormat,
196                        SizeType& blockArea,
197                        SizeType& totalBlocks );
198
199   void CreateMesh( SizeType atlas,
200                    SizeType imageWidth,
201                    SizeType imageHeight,
202                    const Vector2& position,
203                    SizeType widthInBlocks,
204                    SizeType heightInBlocks,
205                    Dali::MeshData& meshData,
206                    AtlasSlotDescriptor& desc );
207
208   void OptimizeVertices( const MeshData::VertexContainer& in,
209                          MeshData::FaceIndices& faces,
210                          MeshData::VertexContainer& out );
211
212   void UploadImage( const BufferImage& image,
213                     const AtlasSlotDescriptor& desc );
214
215   void PrintMeshData( const MeshData& meshData );
216
217   Vector2 mNewAtlasSize;
218   Vector2 mNewBlockSize;
219   Toolkit::AtlasManager::AddFailPolicy mAddFailPolicy;
220 };
221
222 } // namespace Internal
223
224 inline const Internal::AtlasManager& GetImplementation(const Toolkit::AtlasManager& manager)
225 {
226   DALI_ASSERT_ALWAYS( manager && "AtlasManager handle is empty" );
227
228   const BaseObject& handle = manager.GetBaseObject();
229
230   return static_cast<const Internal::AtlasManager&>(handle);
231 }
232
233 inline Internal::AtlasManager& GetImplementation(Toolkit::AtlasManager& manager)
234 {
235   DALI_ASSERT_ALWAYS( manager && "AtlasManager handle is empty" );
236
237   BaseObject& handle = manager.GetBaseObject();
238
239   return static_cast<Internal::AtlasManager&>(handle);
240 }
241
242 } // namespace Toolkit
243
244 } // namespace Dali
245
246
247  #endif // __DALI_TOOLKIT_ATLAS_MANAGER_IMPL_H__