ScummVM API documentation
cft_font.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef HARVESTER_CFT_FONT_H
23 #define HARVESTER_CFT_FONT_H
24 
25 #include "graphics/font.h"
26 #include "harvester/text.h"
27 
28 namespace Harvester {
29 
31 public:
32  explicit HarvesterCftFont(const CftFontResource &resource);
33 
34  bool isValid() const { return _maxCharWidth > 0 && _fontHeight > 0 && _drawHeight > 0; }
35 
36  int getFontHeight() const override { return _fontHeight; }
37  Common::String getFontName() const override { return _resource.name; }
38  int getMaxCharWidth() const override { return _maxCharWidth; }
39  int getCharWidth(uint32 chr) const override;
40  void drawChar(Graphics::Surface *dst, uint32 chr, int x, int y, uint32 color) const override;
41 
42 private:
43  struct GlyphSlice {
44  int x = 0;
45  int width = 0;
46  bool valid = false;
47  };
48 
49  const GlyphSlice *findGlyph(uint32 chr) const;
50 
51  const CftFontResource &_resource;
52  GlyphSlice _glyphs[256];
53  int _fontHeight = 0;
54  int _drawHeight = 0;
55  int _spaceWidth = 0;
56  int _maxCharWidth = 0;
57 };
58 
59 } // End of namespace Harvester
60 
61 #endif // HARVESTER_CFT_FONT_H
Definition: str.h:59
Definition: art.h:31
Definition: font.h:83
Definition: surface.h:67
Common::String getFontName() const override
Definition: cft_font.h:37
int getMaxCharWidth() const override
Definition: cft_font.h:38
void drawChar(Graphics::Surface *dst, uint32 chr, int x, int y, uint32 color) const override
int getCharWidth(uint32 chr) const override
Definition: text.h:38
int getFontHeight() const override
Definition: cft_font.h:36
Definition: cft_font.h:30