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 "material.h" |
---|
14 | |
---|
15 | #include "font_data.h" |
---|
16 | |
---|
17 | |
---|
18 | //! A class to handle a Font of a certain ttf-File/image-file, Size. |
---|
19 | class Font : public Material |
---|
20 | { |
---|
21 | |
---|
22 | public: |
---|
23 | Font(); |
---|
24 | Font(const std::string& fontFile, unsigned int renderSize); |
---|
25 | Font(const std::string& imageFile); |
---|
26 | Font(char** xpmArray); |
---|
27 | Font(const Font& font); |
---|
28 | virtual ~Font(); |
---|
29 | |
---|
30 | Font& operator=(const Font& font); |
---|
31 | /** @brief compare two fonts @param font the comparator, @returns true if they match */ |
---|
32 | bool operator==(const Font& font) const { return this->data == font.data; }; |
---|
33 | |
---|
34 | /// LOADING new Fonts |
---|
35 | bool loadFontFromTTF(const std::string& fontFile, unsigned int renderSize); |
---|
36 | bool loadFontFromSDL_Surface(SDL_Surface* surface); |
---|
37 | |
---|
38 | void setStyle(const std::string& renderStyle); |
---|
39 | |
---|
40 | /** @returns a Pointer to the Array of Glyphs */ |
---|
41 | inline Glyph** getGlyphArray() const { return this->data->getGlyphArray(); }; |
---|
42 | |
---|
43 | inline int getMaxHeight() const { return data->getMaxHeight(); }; |
---|
44 | inline int getMaxAscent() const { return data->getMaxAscent(); }; |
---|
45 | inline int getMaxDescent() const { return data->getMaxDescent(); }; |
---|
46 | |
---|
47 | |
---|
48 | static void createAsciiImage(const std::string& ttfFile, const std::string& fileName, unsigned int size); |
---|
49 | |
---|
50 | void debug() const; |
---|
51 | |
---|
52 | private: |
---|
53 | void init(); |
---|
54 | static void initDefaultFont(); |
---|
55 | |
---|
56 | void setTexture(const TextureDataPointer& texDataPointer); |
---|
57 | |
---|
58 | private: |
---|
59 | FontDataPointer data; //!< A Data-Pointer to a Font. |
---|
60 | |
---|
61 | static FontDataPointer defaultFontData; //!< a default font, that is used, if other fonts were unable to be loaded. |
---|
62 | }; |
---|
63 | |
---|
64 | #endif /* _FONT_H */ |
---|