ScummVM API documentation
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 #ifndef PRINCE_FONT_H
22 #define PRINCE_FONT_H
23 
24 #include "graphics/font.h"
25 #include "graphics/surface.h"
26 
27 #include "common/str.h"
28 #include "common/rect.h"
29 
30 namespace Prince {
31 
32 class Font : public Graphics::Font {
33 public:
34  Font();
35  ~Font() override;
36 
37  bool loadStream(Common::SeekableReadStream &stream);
38 
39  int getFontHeight() const override;
40 
41  int getMaxCharWidth() const override;
42 
43  int getCharWidth(uint32 chr) const override;
44 
45  void drawChar(Graphics::Surface *dst, uint32 chr, int x, int y, uint32 color) const override;
46 
47  int getKerningOffset(uint32 left, uint32 right) const override { return -2; }
48 
49 private:
50  struct ChrData {
51  byte *_pixels;
52  byte _width;
53  byte _height;
54  };
55 
56  ChrData getChrData(byte chr) const;
57 
58  byte *_fontData;
59 };
60 
61 } // End of namespace Prince
62 
63 #endif
int getFontHeight() const override
Definition: font.h:82
Definition: surface.h:66
Definition: font.h:32
Definition: stream.h:745
int getKerningOffset(uint32 left, uint32 right) const override
Definition: font.h:47
Definition: animation.h:30
void drawChar(Graphics::Surface *dst, uint32 chr, int x, int y, uint32 color) const override
int getCharWidth(uint32 chr) const override
int getMaxCharWidth() const override