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 
22 #ifndef MUTATIONOFJB_FONT_H
23 #define MUTATIONOFJB_FONT_H
24 
25 #include "common/scummsys.h"
26 #include "common/hashmap.h"
27 #include "common/path.h"
28 #include "graphics/font.h"
29 #include "graphics/managed_surface.h"
30 #include "graphics/surface.h"
31 
32 namespace Common {
33 class String;
34 }
35 
36 namespace MutationOfJB {
37 
38 class Font : public Graphics::Font {
39  friend class FontBlitOperation;
40 public:
41  Font(const Common::Path &fileName, int horizSpacing, int lineHeight);
42 
43  int getFontHeight() const override;
44  int getMaxCharWidth() const override;
45  int getCharWidth(uint32 chr) const override;
46  int getKerningOffset(uint32 left, uint32 right) const override;
47  void drawChar(Graphics::Surface *dst, uint32 chr, int x, int y, uint32 color) const override;
48 
49 protected:
50  virtual uint8 transformColor(uint8 baseColor, uint8 glyphColor) const;
51 
52 private:
53  bool load(const Common::Path &fileName);
54 
55  int _horizSpacing;
56  int _lineHeight;
57  int _maxCharWidth;
59  GlyphMap _glyphs;
60 };
61 
62 class SystemFont : public Font {
63 public:
64  SystemFont();
65 };
66 
67 class SpeechFont : public Font {
68 public:
69  SpeechFont();
70 
71 protected:
72  uint8 transformColor(uint8 baseColor, uint8 glyphColor) const override;
73 };
74 
75 }
76 
77 #endif
Definition: font.h:38
Definition: font.h:82
Definition: surface.h:67
Definition: font.h:62
Definition: font.h:67
Definition: path.h:52
Definition: animationdecoder.h:36
Definition: algorithm.h:29