624c443b92d639fde01e6d0b72483f91cde8d563
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / shaper.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/shaper.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/text-abstraction/shaping.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Text
31 {
32
33 CharacterIndex min( CharacterIndex index0,
34                     CharacterIndex index1 )
35 {
36   return ( index0 < index1 ) ? index0 : index1;
37 }
38
39 void ShapeText( const Vector<Character>& text,
40                 const Vector<LineBreakInfo>& lineBreakInfo,
41                 const Vector<ScriptRun>& scripts,
42                 const Vector<FontRun>& fonts,
43                 CharacterIndex startCharacterIndex,
44                 GlyphIndex startGlyphIndex,
45                 Length numberOfCharacters,
46                 Vector<GlyphInfo>& glyphs,
47                 Vector<CharacterIndex>& glyphToCharacterMap,
48                 Vector<Length>& charactersPerGlyph,
49                 Vector<GlyphIndex>& newParagraphGlyphs )
50 {
51   if( 0u == numberOfCharacters )
52   {
53     // Nothing to do if there are no characters.
54     return;
55   }
56
57 #ifdef DEBUG_ENABLED
58   const Length numberOfFontRuns = fonts.Count();
59   const Length numberOfScriptRuns = scripts.Count();
60   const Length totalNumberOfCharacters = text.Count();
61 #endif
62
63   DALI_ASSERT_DEBUG( ( 0u != numberOfFontRuns ) &&
64                      ( totalNumberOfCharacters == fonts[numberOfFontRuns - 1u].characterRun.characterIndex + fonts[numberOfFontRuns - 1u].characterRun.numberOfCharacters ) &&
65                      "Toolkit::Text::ShapeText. All characters must have a font set." );
66
67   DALI_ASSERT_DEBUG( ( 0u != numberOfScriptRuns ) &&
68                      ( totalNumberOfCharacters == scripts[numberOfScriptRuns - 1u].characterRun.characterIndex + scripts[numberOfScriptRuns - 1u].characterRun.numberOfCharacters ) &&
69                      "Toolkit::Text::ShapeText. All characters must have a script set." );
70
71   // The text needs to be split in chunks of consecutive characters.
72   // Each chunk must contain characters with the same font id and script set.
73   // A chunk of consecutive characters must not contain a LINE_MUST_BREAK, if there is one a new chunk has to be created.
74
75   TextAbstraction::Shaping shaping = TextAbstraction::Shaping::Get();
76
77   // To shape the text a font and an script is needed.
78
79   // Get the font run containing the startCharacterIndex character.
80   Vector<FontRun>::ConstIterator fontRunIt = fonts.Begin();
81   for( Vector<FontRun>::ConstIterator endIt = fonts.End(); fontRunIt < endIt; ++fontRunIt )
82   {
83     const FontRun& run = *fontRunIt;
84     if( startCharacterIndex < run.characterRun.characterIndex + run.characterRun.numberOfCharacters )
85     {
86       // Found.
87       break;
88     }
89   }
90
91   // Get the script run containing the startCharacterIndex character.
92   Vector<ScriptRun>::ConstIterator scriptRunIt = scripts.Begin();
93   for( Vector<ScriptRun>::ConstIterator endIt = scripts.End(); scriptRunIt < endIt; ++scriptRunIt )
94   {
95     const ScriptRun& run = *scriptRunIt;
96     if( startCharacterIndex < run.characterRun.characterIndex + run.characterRun.numberOfCharacters )
97     {
98       // Found.
99       break;
100     }
101   }
102
103   // Index to the the next one to be shaped. Is pointing the character after the last one it was shaped.
104   CharacterIndex previousIndex = 0u;
105
106   // The current font id and script used to shape the text.
107   FontId currentFontId = 0u;
108   Script currentScript = TextAbstraction::UNKNOWN;
109
110   // Reserve some space to allocate the glyphs and the glyph to character map.
111   // There is no way to know the number of glyphs before shaping the text.
112   // To avoid reallocations it's reserved space for a slightly biger number of glyphs than the number of characters.
113
114   const Length currentNumberOfGlyphs = glyphs.Count();
115   const Length numberOfGlyphsReserved = static_cast<Length>( numberOfCharacters * 1.3f );
116   glyphs.Resize( currentNumberOfGlyphs + numberOfGlyphsReserved );
117   glyphToCharacterMap.Resize( currentNumberOfGlyphs + numberOfGlyphsReserved );
118
119   // The actual number of glyphs.
120   Length totalNumberOfGlyphs = currentNumberOfGlyphs;
121   // The number of new glyphs.
122   Length numberOfNewGlyphs = 0u;
123
124   const Character* const textBuffer = text.Begin();
125   const LineBreakInfo* const lineBreakInfoBuffer = lineBreakInfo.Begin();
126   CharacterIndex* glyphToCharacterMapBuffer = glyphToCharacterMap.Begin();
127
128   Length glyphIndex = startGlyphIndex;
129
130   // Traverse the characters and shape the text.
131   const CharacterIndex lastCharacter = startCharacterIndex + numberOfCharacters;
132   for( previousIndex = startCharacterIndex; previousIndex < lastCharacter; )
133   {
134     // Get the font id and the script.
135     const FontRun& fontRun = *fontRunIt;
136     const ScriptRun& scriptRun = *scriptRunIt;
137
138     currentFontId = fontRun.fontId;
139     currentScript = scriptRun.script;
140     bool softwareItalic = fontRun.softwareItalic;
141     bool softwareBold = fontRun.softwareBold;
142
143     // Get the min index to the last character of both runs.
144     CharacterIndex currentIndex = min( fontRun.characterRun.characterIndex + fontRun.characterRun.numberOfCharacters,
145                                        scriptRun.characterRun.characterIndex + scriptRun.characterRun.numberOfCharacters );
146
147     // Check if there is a line must break.
148     bool mustBreak = false;
149
150     // Check if the current index is a new paragraph character.
151     // A new paragraph character is going to be shaped in order to not to mess the conversion tables.
152     // However, the metrics need to be changed in order to not to draw a square.
153     bool isNewParagraph = false;
154
155     for( CharacterIndex index = previousIndex; index < currentIndex; ++index )
156     {
157       mustBreak = TextAbstraction::LINE_MUST_BREAK == *( lineBreakInfoBuffer + index );
158       if( mustBreak )
159       {
160         isNewParagraph = TextAbstraction::IsNewParagraph( *( textBuffer + index ) );
161         currentIndex = index + 1u;
162         break;
163       }
164     }
165
166     // Shape the text for the current chunk.
167     const Length numberOfGlyphs = shaping.Shape( textBuffer + previousIndex,
168                                                  ( currentIndex - previousIndex ), // The number of characters to shape.
169                                                  currentFontId,
170                                                  currentScript );
171
172     // Retrieve the glyphs and the glyph to character conversion map.
173     Vector<GlyphInfo> tmpGlyphs;
174     Vector<CharacterIndex> tmpGlyphToCharacterMap;
175
176     GlyphInfo glyphInfo;
177     glyphInfo.softwareItalic = softwareItalic;
178     glyphInfo.softwareBold = softwareBold;
179
180     tmpGlyphs.Resize( numberOfGlyphs, glyphInfo );
181     tmpGlyphToCharacterMap.Resize( numberOfGlyphs );
182     shaping.GetGlyphs( tmpGlyphs.Begin(),
183                        tmpGlyphToCharacterMap.Begin() );
184
185     // Update the new indices of the glyph to character map.
186     if( 0u != totalNumberOfGlyphs )
187     {
188       for( Vector<CharacterIndex>::Iterator it = tmpGlyphToCharacterMap.Begin(),
189              endIt = tmpGlyphToCharacterMap.End();
190            it != endIt;
191            ++it )
192       {
193         *it += previousIndex;
194       }
195     }
196
197     totalNumberOfGlyphs += numberOfGlyphs;
198     numberOfNewGlyphs += numberOfGlyphs;
199
200     glyphs.Insert( glyphs.Begin() + glyphIndex, tmpGlyphs.Begin(), tmpGlyphs.End() );
201     glyphToCharacterMap.Insert( glyphToCharacterMap.Begin() + glyphIndex, tmpGlyphToCharacterMap.Begin(), tmpGlyphToCharacterMap.End() );
202     glyphIndex += numberOfGlyphs;
203
204     // Set the buffer pointers again.
205     glyphToCharacterMapBuffer = glyphToCharacterMap.Begin();
206
207     if( isNewParagraph )
208     {
209       // Add the index of the new paragraph glyph to a vector.
210       // Their metrics will be updated in a following step.
211       newParagraphGlyphs.PushBack( glyphIndex - 1u );
212     }
213
214     // Update the iterators to get the next font or script run.
215     if( currentIndex == fontRun.characterRun.characterIndex + fontRun.characterRun.numberOfCharacters )
216     {
217       ++fontRunIt;
218     }
219     if( currentIndex == scriptRun.characterRun.characterIndex + scriptRun.characterRun.numberOfCharacters )
220     {
221       ++scriptRunIt;
222     }
223
224     // Update the previous index.
225     previousIndex = currentIndex;
226   }
227
228   // Update indices.
229   for( Length index = startGlyphIndex + numberOfNewGlyphs; index < totalNumberOfGlyphs; ++index )
230   {
231     CharacterIndex& characterIndex = *( glyphToCharacterMapBuffer + index );
232     characterIndex += numberOfCharacters;
233   }
234
235   // Add the number of characters per glyph.
236   charactersPerGlyph.Reserve( totalNumberOfGlyphs );
237   Length* charactersPerGlyphBuffer = charactersPerGlyph.Begin();
238
239   const GlyphIndex lastGlyph = startGlyphIndex + numberOfNewGlyphs;
240   previousIndex = startCharacterIndex;
241   for( Length index = startGlyphIndex + 1u; index < lastGlyph; ++index )
242   {
243     const CharacterIndex characterIndex = *( glyphToCharacterMapBuffer + index );
244
245     charactersPerGlyph.Insert( charactersPerGlyphBuffer + index - 1u, characterIndex - previousIndex );
246
247     previousIndex = characterIndex;
248   }
249   charactersPerGlyph.Insert( charactersPerGlyphBuffer + lastGlyph - 1u, numberOfCharacters + startCharacterIndex - previousIndex );
250
251   // Resize the vectors to set the right number of items.
252   glyphs.Resize( totalNumberOfGlyphs );
253   glyphToCharacterMap.Resize( totalNumberOfGlyphs );
254 }
255
256 } // namespace Text
257
258 } // namespace Toolkit
259
260 } // namespace Dali