Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/graphics/text_engine/font.h @ 5367

Last change on this file since 5367 was 5367, checked in by bensch, 19 years ago

orxonox/trunk: font do no more handle any displayLists of Glyphs

File size: 3.3 KB
Line 
1/*!
2 * @file font.h
3 * brief Definition of the FONT-loading class
4 *
5 * !! IMPORTANT !! When using ttf fonts clear the license issues prior to
6 * adding them to orxonox. This is really important, because we do not want
7 * to offend anyone.
8 */
9
10#ifndef _FONT_H
11#define _FONT_H
12
13#include "base_object.h"
14
15#include "glincl.h"
16
17
18#ifdef HAVE_SDL_TTF_H
19#include <SDL_ttf.h>
20#else
21#include <SDL/SDL_ttf.h>
22#endif
23
24/* some default values */
25#define FONT_NUM_COLORS              256                        //!< number of colors.
26
27#define FONT_HIGHEST_KNOWN_CHAR      128                        //!< The highest character known to the textEngine.
28
29// FORWARD DECLARATION
30
31//! A struct for handling glyphs
32/**
33 * a Glyph is one letter of a certain font
34 */
35struct Glyph
36{
37  // Glyph-specific (size and so on)
38  Uint16   character;         //!< The character
39  int      minX;              //!< The minimum distance from the origin in X
40  int      maxX;              //!< The maximum distance from the origin in X
41  int      minY;              //!< The minimum distance from the origin in Y
42  int      maxY;              //!< The maximum distance from the origin in Y
43  int      width;             //!< The width of the Glyph
44  int      height;            //!< The height of the Glyph
45  int      bearingX;          //!< How much is right of the Origin
46  int      bearingY;          //!< How much is above the Origin
47  int      advance;           //!< How big a Glyph would be in monospace-mode
48
49  GLfloat texCoord[4];        //!< Texture coordinates: 0:left, 1:right, 2: top, 3: bottom.
50};
51
52
53//! A class to handle a Font of a certain ttf-File/image-file, Size.
54class Font : public BaseObject
55{
56  friend class Text;
57
58  public:
59    Font(const char* fontFile,
60         unsigned int fontSize);
61    Font(const char* imageFile);
62    Font(char** xpmArray);
63    virtual ~Font();
64
65    void init();
66
67  // font
68    bool loadFont(const char* fontFile);
69    bool loadFontFromSDL_Surface(SDL_Surface* surface);
70
71    void setSize(unsigned int fontSize);
72    void setStyle(const char* renderStyle);
73
74    /** @returns a Pointer to the Array of Glyphs */
75    inline Glyph** getGlyphArray() const { return this->glyphArray; };
76    /** @returns the texture to the fast-texture */
77    inline GLuint getFastTextureID() const { return this->fastTextureID; };
78    /** @returns the default Font */
79    inline static Font* getDefaultFont() { return Font::defaultFont; };
80
81    void createAsciiImage(const char* fileName);
82    static void initDefaultFont();
83    static void removeDefaultFont();
84
85  private:
86    int getMaxHeight();
87    int getMaxAscent();
88    int getMaxDescent();
89    Glyph* getGlyphMetrics(Uint16 character);
90
91    GLuint createFastTexture();
92
93    void initGlyphs(Uint16 from, Uint16 count);
94    int findOptimalFastTextureSize();
95
96    void debug();
97
98  private:
99    static Font*  defaultFont;         //!< a default font, that is used, if other fonts were unable to be loaded.
100    // information about the Font
101    TTF_Font*     font;                //!< The font we use for this.
102    unsigned int  fontSize;            //!< The size of the font in pixels. each Font has one size.
103    int           renderStyle;         //!< The Renderstyle
104
105    Glyph**       glyphArray;          //!< An Array of all the Glyphs stored in the Array of Glyphs.
106    GLuint        fastTextureID;       //!< The fast textureID.
107};
108
109#endif /* _FONT_H */
Note: See TracBrowser for help on using the repository browser.