Changed Atlas manager to use Dali::Texture instead of Dali::Atlas
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / atlas / atlas-glyph-manager.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/atlas-glyph-manager.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/adaptor-framework/singleton-service.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager-impl.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 AtlasGlyphManager::AtlasGlyphManager()
34 {
35 }
36
37 AtlasGlyphManager::~AtlasGlyphManager()
38 {
39 }
40
41 AtlasGlyphManager AtlasGlyphManager::Get()
42 {
43   AtlasGlyphManager manager;
44
45   // Check whether the AtlasGlyphManager is already created
46   SingletonService singletonService( SingletonService::Get() );
47   if ( singletonService )
48   {
49     Dali::BaseHandle handle = singletonService.GetSingleton(typeid(AtlasGlyphManager));
50     if(handle)
51     {
52       // If so, downcast the handle of singleton to AtlasGlyphManager
53       manager = AtlasGlyphManager(dynamic_cast<Internal::AtlasGlyphManager*>(handle.GetObjectPtr()));
54     }
55
56     if(!manager)
57     {
58       // If not, create the AtlasGlyphManager and register it as a singleton
59       manager = AtlasGlyphManager(new Internal::AtlasGlyphManager());
60       singletonService.Register(typeid(manager), manager);
61     }
62   }
63   return manager;
64 }
65
66 AtlasGlyphManager::AtlasGlyphManager(Internal::AtlasGlyphManager *impl)
67   : BaseHandle(impl)
68 {
69 }
70
71 void AtlasGlyphManager::Add( const Text::GlyphInfo& glyph,
72                              const PixelData& bitmap,
73                              AtlasManager::AtlasSlot& slot )
74 {
75   GetImplementation(*this).Add( glyph, bitmap, slot );
76 }
77
78 void AtlasGlyphManager::GenerateMeshData( uint32_t imageId,
79                                           const Vector2& position,
80                                           Toolkit::AtlasManager::Mesh2D& mesh )
81 {
82   GetImplementation(*this).GenerateMeshData( imageId,
83                                              position,
84                                              mesh );
85 }
86
87 bool AtlasGlyphManager::IsCached( Text::FontId fontId,
88                                   Text::GlyphIndex index,
89                                   AtlasManager::AtlasSlot& slot )
90 {
91   return GetImplementation(*this).IsCached( fontId, index, slot );
92 }
93
94 void AtlasGlyphManager::SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight )
95 {
96   GetImplementation(*this).SetNewAtlasSize( width, height, blockWidth, blockHeight );
97 }
98
99 Vector2 AtlasGlyphManager::GetAtlasSize( uint32_t atlasId )
100 {
101   return GetImplementation(*this).GetAtlasSize( atlasId );
102 }
103
104 Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId )
105 {
106   return GetImplementation(*this).GetPixelFormat( atlasId );
107 }
108
109 TextureSet AtlasGlyphManager::GetTextures( uint32_t atlasId ) const
110 {
111   return GetImplementation(*this).GetTextures( atlasId );
112 }
113
114 Shader AtlasGlyphManager::GetShader( uint32_t atlasId ) const
115 {
116   return GetImplementation(*this).GetShader( atlasId );
117 }
118
119 const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics()
120 {
121   return GetImplementation(*this).GetMetrics();
122 }
123
124 void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta )
125 {
126   GetImplementation(*this).AdjustReferenceCount( fontId, index, delta );
127 }
128
129 } // namespace Toolkit
130
131 } // namespace Dali