Cpp11 initializers: last src root changeset (#6022)
[oweals/minetest.git] / src / irrlicht_changes / CGUITTFont.h
1 /*
2    CGUITTFont FreeType class for Irrlicht
3    Copyright (c) 2009-2010 John Norman
4    Copyright (c) 2016 NathanaĆ«l Courant
5
6    This software is provided 'as-is', without any express or implied
7    warranty. In no event will the authors be held liable for any
8    damages arising from the use of this software.
9
10    Permission is granted to anyone to use this software for any
11    purpose, including commercial applications, and to alter it and
12    redistribute it freely, subject to the following restrictions:
13
14    1. The origin of this software must not be misrepresented; you
15       must not claim that you wrote the original software. If you use
16       this software in a product, an acknowledgment in the product
17       documentation would be appreciated but is not required.
18
19    2. Altered source versions must be plainly marked as such, and
20       must not be misrepresented as being the original software.
21
22    3. This notice may not be removed or altered from any source
23       distribution.
24
25    The original version of this class can be located at:
26    http://irrlicht.suckerfreegames.com/
27
28    John Norman
29    john@suckerfreegames.com
30 */
31
32 #ifndef __C_GUI_TTFONT_H_INCLUDED__
33 #define __C_GUI_TTFONT_H_INCLUDED__
34
35 #include <irrlicht.h>
36 #include <ft2build.h>
37 #include <vector>
38 #include "irrUString.h"
39 #include "util/enriched_string.h"
40 #include FT_FREETYPE_H
41
42 namespace irr
43 {
44 namespace gui
45 {
46         struct SGUITTFace;
47         class CGUITTFont;
48
49         //! Class to assist in deleting glyphs.
50         class CGUITTAssistDelete
51         {
52                 public:
53                         template <class T, typename TAlloc>
54                         static void Delete(core::array<T, TAlloc>& a)
55                         {
56                                 TAlloc allocator;
57                                 allocator.deallocate(a.pointer());
58                         }
59         };
60
61         //! Structure representing a single TrueType glyph.
62         struct SGUITTGlyph
63         {
64                 //! Constructor.
65                 SGUITTGlyph() : isLoaded(false), glyph_page(0), surface(0), parent(0) {}
66
67                 //! Destructor.
68                 ~SGUITTGlyph() { unload(); }
69
70                 //! Preload the glyph.
71                 //!     The preload process occurs when the program tries to cache the glyph from FT_Library.
72                 //! However, it simply defines the SGUITTGlyph's properties and will only create the page
73                 //! textures if necessary.  The actual creation of the textures should only occur right
74                 //! before the batch draw call.
75                 void preload(u32 char_index, FT_Face face, video::IVideoDriver* driver, u32 font_size, const FT_Int32 loadFlags);
76
77                 //! Unloads the glyph.
78                 void unload();
79
80                 //! Creates the IImage object from the FT_Bitmap.
81                 video::IImage* createGlyphImage(const FT_Bitmap& bits, video::IVideoDriver* driver) const;
82
83                 //! If true, the glyph has been loaded.
84                 bool isLoaded;
85
86                 //! The page the glyph is on.
87                 u32 glyph_page;
88
89                 //! The source rectangle for the glyph.
90                 core::recti source_rect;
91
92                 //! The offset of glyph when drawn.
93                 core::vector2di offset;
94
95                 //! Glyph advance information.
96                 FT_Vector advance;
97
98                 //! This is just the temporary image holder.  After this glyph is paged,
99                 //! it will be dropped.
100                 mutable video::IImage* surface;
101
102                 //! The pointer pointing to the parent (CGUITTFont)
103                 CGUITTFont* parent;
104         };
105
106         //! Holds a sheet of glyphs.
107         class CGUITTGlyphPage
108         {
109                 public:
110                         CGUITTGlyphPage(video::IVideoDriver* Driver, const io::path& texture_name) :texture(0), available_slots(0), used_slots(0), dirty(false), driver(Driver), name(texture_name) {}
111                         ~CGUITTGlyphPage()
112                         {
113                                 if (texture)
114                                 {
115                                         if (driver)
116                                                 driver->removeTexture(texture);
117                                         else texture->drop();
118                                 }
119                         }
120
121                         //! Create the actual page texture,
122                         bool createPageTexture(const u8& pixel_mode, const core::dimension2du& texture_size)
123                         {
124                                 if( texture )
125                                         return false;
126
127                                 bool flgmip = driver->getTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS);
128                                 driver->setTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS, false);
129 #if IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR > 8
130                                 bool flgcpy = driver->getTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY);
131                                 driver->setTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY, true);
132 #endif
133
134                                 // Set the texture color format.
135                                 switch (pixel_mode)
136                                 {
137                                         case FT_PIXEL_MODE_MONO:
138                                                 texture = driver->addTexture(texture_size, name, video::ECF_A1R5G5B5);
139                                                 break;
140                                         case FT_PIXEL_MODE_GRAY:
141                                         default:
142                                                 texture = driver->addTexture(texture_size, name, video::ECF_A8R8G8B8);
143                                                 break;
144                                 }
145
146                                 // Restore our texture creation flags.
147                                 driver->setTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS, flgmip);
148 #if IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR > 8
149                                 driver->setTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY, flgcpy);
150 #endif
151                                 return texture ? true : false;
152                         }
153
154                         //! Add the glyph to a list of glyphs to be paged.
155                         //! This collection will be cleared after updateTexture is called.
156                         void pushGlyphToBePaged(const SGUITTGlyph* glyph)
157                         {
158                                 glyph_to_be_paged.push_back(glyph);
159                         }
160
161                         //! Updates the texture atlas with new glyphs.
162                         void updateTexture()
163                         {
164                                 if (!dirty) return;
165
166                                 void* ptr = texture->lock();
167                                 video::ECOLOR_FORMAT format = texture->getColorFormat();
168                                 core::dimension2du size = texture->getOriginalSize();
169                                 video::IImage* pageholder = driver->createImageFromData(format, size, ptr, true, false);
170
171                                 for (u32 i = 0; i < glyph_to_be_paged.size(); ++i)
172                                 {
173                                         const SGUITTGlyph* glyph = glyph_to_be_paged[i];
174                                         if (glyph && glyph->isLoaded)
175                                         {
176                                                 if (glyph->surface)
177                                                 {
178                                                         glyph->surface->copyTo(pageholder, glyph->source_rect.UpperLeftCorner);
179                                                         glyph->surface->drop();
180                                                         glyph->surface = 0;
181                                                 }
182                                                 else
183                                                 {
184                                                         ; // TODO: add error message?
185                                                         //currently, if we failed to create the image, just ignore this operation.
186                                                 }
187                                         }
188                                 }
189
190                                 pageholder->drop();
191                                 texture->unlock();
192                                 glyph_to_be_paged.clear();
193                                 dirty = false;
194                         }
195
196                         video::ITexture* texture;
197                         u32 available_slots;
198                         u32 used_slots;
199                         bool dirty;
200
201                         core::array<core::vector2di> render_positions;
202                         core::array<core::recti> render_source_rects;
203
204                 private:
205                         core::array<const SGUITTGlyph*> glyph_to_be_paged;
206                         video::IVideoDriver* driver;
207                         io::path name;
208         };
209
210         //! Class representing a TrueType font.
211         class CGUITTFont : public IGUIFont
212         {
213                 public:
214                         //! Creates a new TrueType font and returns a pointer to it.  The pointer must be drop()'ed when finished.
215                         //! \param env The IGUIEnvironment the font loads out of.
216                         //! \param filename The filename of the font.
217                         //! \param size The size of the font glyphs in pixels.  Since this is the size of the individual glyphs, the true height of the font may change depending on the characters used.
218                         //! \param antialias set the use_monochrome (opposite to antialias) flag
219                         //! \param transparency set the use_transparency flag
220                         //! \return Returns a pointer to a CGUITTFont.  Will return 0 if the font failed to load.
221                         static CGUITTFont* createTTFont(IGUIEnvironment *env, const io::path& filename, const u32 size, const bool antialias = true, const bool transparency = true, const u32 shadow = 0, const u32 shadow_alpha = 255);
222                         static CGUITTFont* createTTFont(IrrlichtDevice *device, const io::path& filename, const u32 size, const bool antialias = true, const bool transparency = true);
223                         static CGUITTFont* create(IGUIEnvironment *env, const io::path& filename, const u32 size, const bool antialias = true, const bool transparency = true);
224                         static CGUITTFont* create(IrrlichtDevice *device, const io::path& filename, const u32 size, const bool antialias = true, const bool transparency = true);
225
226                         //! Destructor
227                         virtual ~CGUITTFont();
228
229                         //! Sets the amount of glyphs to batch load.
230                         virtual void setBatchLoadSize(u32 batch_size) { batch_load_size = batch_size; }
231
232                         //! Sets the maximum texture size for a page of glyphs.
233                         virtual void setMaxPageTextureSize(const core::dimension2du& texture_size) { max_page_texture_size = texture_size; }
234
235                         //! Get the font size.
236                         virtual u32 getFontSize() const { return size; }
237
238                         //! Check the font's transparency.
239                         virtual bool isTransparent() const { return use_transparency; }
240
241                         //! Check if the font auto-hinting is enabled.
242                         //! Auto-hinting is FreeType's built-in font hinting engine.
243                         virtual bool useAutoHinting() const { return use_auto_hinting; }
244
245                         //! Check if the font hinting is enabled.
246                         virtual bool useHinting()        const { return use_hinting; }
247
248                         //! Check if the font is being loaded as a monochrome font.
249                         //! The font can either be a 256 color grayscale font, or a 2 color monochrome font.
250                         virtual bool useMonochrome()  const { return use_monochrome; }
251
252                         //! Tells the font to allow transparency when rendering.
253                         //! Default: true.
254                         //! \param flag If true, the font draws using transparency.
255                         virtual void setTransparency(const bool flag);
256
257                         //! Tells the font to use monochrome rendering.
258                         //! Default: false.
259                         //! \param flag If true, the font draws using a monochrome image.  If false, the font uses a grayscale image.
260                         virtual void setMonochrome(const bool flag);
261
262                         //! Enables or disables font hinting.
263                         //! Default: Hinting and auto-hinting true.
264                         //! \param enable If false, font hinting is turned off. If true, font hinting is turned on.
265                         //! \param enable_auto_hinting If true, FreeType uses its own auto-hinting algorithm.  If false, it tries to use the algorithm specified by the font.
266                         virtual void setFontHinting(const bool enable, const bool enable_auto_hinting = true);
267
268                         //! Draws some text and clips it to the specified rectangle if wanted.
269                         virtual void draw(const core::stringw& text, const core::rect<s32>& position,
270                                 video::SColor color, bool hcenter=false, bool vcenter=false,
271                                 const core::rect<s32>* clip=0);
272
273                         virtual void draw(const EnrichedString& text, const core::rect<s32>& position,
274                                 video::SColor color, bool hcenter=false, bool vcenter=false,
275                                 const core::rect<s32>* clip=0);
276
277                         //! Returns the dimension of a character produced by this font.
278                         virtual core::dimension2d<u32> getCharDimension(const wchar_t ch) const;
279
280                         //! Returns the dimension of a text string.
281                         virtual core::dimension2d<u32> getDimension(const wchar_t* text) const;
282                         virtual core::dimension2d<u32> getDimension(const core::ustring& text) const;
283
284                         //! Calculates the index of the character in the text which is on a specific position.
285                         virtual s32 getCharacterFromPos(const wchar_t* text, s32 pixel_x) const;
286                         virtual s32 getCharacterFromPos(const core::ustring& text, s32 pixel_x) const;
287
288                         //! Sets global kerning width for the font.
289                         virtual void setKerningWidth(s32 kerning);
290
291                         //! Sets global kerning height for the font.
292                         virtual void setKerningHeight(s32 kerning);
293
294                         //! Gets kerning values (distance between letters) for the font. If no parameters are provided,
295                         virtual s32 getKerningWidth(const wchar_t* thisLetter=0, const wchar_t* previousLetter=0) const;
296                         virtual s32 getKerningWidth(const uchar32_t thisLetter=0, const uchar32_t previousLetter=0) const;
297
298                         //! Returns the distance between letters
299                         virtual s32 getKerningHeight() const;
300
301                         //! Define which characters should not be drawn by the font.
302                         virtual void setInvisibleCharacters(const wchar_t *s);
303                         virtual void setInvisibleCharacters(const core::ustring& s);
304
305                         //! Get the last glyph page if there's still available slots.
306                         //! If not, it will return zero.
307                         CGUITTGlyphPage* getLastGlyphPage() const;
308
309                         //! Create a new glyph page texture.
310                         //! \param pixel_mode the pixel mode defined by FT_Pixel_Mode
311                         //should be better typed. fix later.
312                         CGUITTGlyphPage* createGlyphPage(const u8& pixel_mode);
313
314                         //! Get the last glyph page's index.
315                         u32 getLastGlyphPageIndex() const { return Glyph_Pages.size() - 1; }
316
317                         //! Create corresponding character's software image copy from the font,
318                         //! so you can use this data just like any ordinary video::IImage.
319                         //! \param ch The character you need
320                         virtual video::IImage* createTextureFromChar(const uchar32_t& ch);
321
322                         //! This function is for debugging mostly. If the page doesn't exist it returns zero.
323                         //! \param page_index Simply return the texture handle of a given page index.
324                         virtual video::ITexture* getPageTextureByIndex(const u32& page_index) const;
325
326                         //! Add a list of scene nodes generated by putting font textures on the 3D planes.
327                         virtual core::array<scene::ISceneNode*> addTextSceneNode
328                                 (const wchar_t* text, scene::ISceneManager* smgr, scene::ISceneNode* parent = 0,
329                                  const video::SColor& color = video::SColor(255, 0, 0, 0), bool center = false );
330
331                 protected:
332                         bool use_monochrome;
333                         bool use_transparency;
334                         bool use_hinting;
335                         bool use_auto_hinting;
336                         u32 size;
337                         u32 batch_load_size;
338                         core::dimension2du max_page_texture_size;
339
340                 private:
341                         // Manages the FreeType library.
342                         static FT_Library c_library;
343                         static core::map<io::path, SGUITTFace*> c_faces;
344                         static bool c_libraryLoaded;
345                         static scene::IMesh* shared_plane_ptr_;
346                         static scene::SMesh  shared_plane_;
347
348                         CGUITTFont(IGUIEnvironment *env);
349                         bool load(const io::path& filename, const u32 size, const bool antialias, const bool transparency);
350                         void reset_images();
351                         void update_glyph_pages() const;
352                         void update_load_flags()
353                         {
354                                 // Set up our loading flags.
355                                 load_flags = FT_LOAD_DEFAULT | FT_LOAD_RENDER;
356                                 if (!useHinting()) load_flags |= FT_LOAD_NO_HINTING;
357                                 if (!useAutoHinting()) load_flags |= FT_LOAD_NO_AUTOHINT;
358                                 if (useMonochrome()) load_flags |= FT_LOAD_MONOCHROME | FT_LOAD_TARGET_MONO | FT_RENDER_MODE_MONO;
359                                 else load_flags |= FT_LOAD_TARGET_NORMAL;
360                         }
361                         u32 getWidthFromCharacter(wchar_t c) const;
362                         u32 getWidthFromCharacter(uchar32_t c) const;
363                         u32 getHeightFromCharacter(wchar_t c) const;
364                         u32 getHeightFromCharacter(uchar32_t c) const;
365                         u32 getGlyphIndexByChar(wchar_t c) const;
366                         u32 getGlyphIndexByChar(uchar32_t c) const;
367                         core::vector2di getKerning(const wchar_t thisLetter, const wchar_t previousLetter) const;
368                         core::vector2di getKerning(const uchar32_t thisLetter, const uchar32_t previousLetter) const;
369                         core::dimension2d<u32> getDimensionUntilEndOfLine(const wchar_t* p) const;
370
371                         void createSharedPlane();
372
373                         irr::IrrlichtDevice* Device;
374                         gui::IGUIEnvironment* Environment;
375                         video::IVideoDriver* Driver;
376                         io::path filename;
377                         FT_Face tt_face;
378                         FT_Size_Metrics font_metrics;
379                         FT_Int32 load_flags;
380
381                         mutable core::array<CGUITTGlyphPage*> Glyph_Pages;
382                         mutable core::array<SGUITTGlyph> Glyphs;
383
384                         s32 GlobalKerningWidth;
385                         s32 GlobalKerningHeight;
386                         core::ustring Invisible;
387                         u32 shadow_offset;
388                         u32 shadow_alpha;
389         };
390
391 } // end namespace gui
392 } // end namespace irr
393
394 #endif // __C_GUI_TTFONT_H_INCLUDED__