summaryrefslogtreecommitdiff
path: root/src/font.h
blob: 802de9d8422553513651fa8dca5d987b0d335eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#ifndef FONT_H
#define FONT_H

#include <stdint.h>

class Font
{
public:
    class Point
    {
    public:
        int32_t x, y; 
    };

    class Glyph
    {
    public:
        Glyph() :
            pData( NULL )
        { }
        ~Glyph()
        { delete[] pData; }
        Point pBox;
        Point pOff;
        Point pDevOff;

        int iRowBytes;
        uint8_t *pData;
    };

public:
    Font( const char *sSrcFile );
    virtual ~Font();

    Glyph *get( char c ) { return pTable[(int32_t)c]; }

private:
    Point pDefBox;
    Point pDefOff;
    int32_t iTableTop;
    Glyph **pTable;

private: // Parser
    class Parser
    {
    public:
        Parser( const char *sSrcFile, Font &rFont );
        ~Parser();

        void parse();
        void getLine();
        void header();
        void properties();
        void characters();
        void character();

    private:
        Font &rFont;
        void *rawfh;
        char *sLine;
        bool bDone;
    };
};

#endif