2012-01-06 22:29:45 +00:00
|
|
|
/* ResidualVM - A 3D game interpreter
|
2008-06-13 14:57:47 +00:00
|
|
|
*
|
2012-01-06 22:29:45 +00:00
|
|
|
* ResidualVM is the legal property of its developers, whose names
|
2011-04-16 12:12:44 +00:00
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
2008-06-13 14:57:47 +00:00
|
|
|
* file distributed with this source distribution.
|
2006-04-02 14:20:45 +00:00
|
|
|
*
|
2012-12-19 22:15:43 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-04-05 16:18:42 +00:00
|
|
|
*
|
2012-12-19 22:15:43 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2006-04-02 14:20:45 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-12-19 22:15:43 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-04-05 16:18:42 +00:00
|
|
|
*
|
2012-12-19 22:15:43 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-04-02 14:20:45 +00:00
|
|
|
*
|
|
|
|
*/
|
2004-03-28 11:00:16 +00:00
|
|
|
|
2009-05-26 09:39:42 +00:00
|
|
|
#ifndef GRIM_FONT_H
|
|
|
|
#define GRIM_FONT_H
|
2004-03-28 11:00:16 +00:00
|
|
|
|
2011-09-07 21:08:59 +00:00
|
|
|
#include "engines/grim/pool.h"
|
2005-03-18 19:54:40 +00:00
|
|
|
|
2015-02-01 23:36:56 +00:00
|
|
|
#include "graphics/font.h"
|
|
|
|
|
2011-12-19 18:02:55 +00:00
|
|
|
namespace Common {
|
|
|
|
class SeekableReadStream;
|
|
|
|
}
|
|
|
|
|
2009-05-25 06:49:57 +00:00
|
|
|
namespace Grim {
|
|
|
|
|
2011-03-20 21:16:27 +00:00
|
|
|
class SaveGame;
|
|
|
|
|
2012-04-05 22:20:30 +00:00
|
|
|
class Font : public PoolObject<Font> {
|
2005-03-18 19:54:40 +00:00
|
|
|
public:
|
2011-03-20 22:58:36 +00:00
|
|
|
Font();
|
2005-03-18 19:54:40 +00:00
|
|
|
~Font();
|
2012-04-05 22:20:30 +00:00
|
|
|
|
|
|
|
static int32 getStaticTag() { return MKTAG('F', 'O', 'N', 'T'); }
|
|
|
|
|
2011-12-19 18:02:55 +00:00
|
|
|
void load(const Common::String &filename, Common::SeekableReadStream *data);
|
2005-03-18 19:54:40 +00:00
|
|
|
|
2015-02-01 23:36:56 +00:00
|
|
|
|
2011-05-22 04:02:20 +00:00
|
|
|
const Common::String &getFilename() const { return _filename; }
|
2015-02-01 23:36:56 +00:00
|
|
|
virtual int32 getKernedHeight() const { return _kernedHeight; }
|
|
|
|
virtual int32 getBaseOffsetY() const { return _baseOffsetY; }
|
|
|
|
virtual int32 getCharBitmapWidth(unsigned char c) const { return _charHeaders[getCharIndex(c)].bitmapWidth; }
|
|
|
|
virtual int32 getCharBitmapHeight(unsigned char c) const { return _charHeaders[getCharIndex(c)].bitmapHeight; }
|
|
|
|
virtual int32 getCharKernedWidth(unsigned char c) const { return _charHeaders[getCharIndex(c)].kernedWidth; }
|
|
|
|
virtual int32 getCharStartingCol(unsigned char c) const { return _charHeaders[getCharIndex(c)].startingCol; }
|
|
|
|
virtual int32 getCharStartingLine(unsigned char c) const { return _charHeaders[getCharIndex(c)].startingLine; }
|
|
|
|
virtual int32 getCharOffset(unsigned char c) const { return _charHeaders[getCharIndex(c)].offset; }
|
2011-05-23 23:19:47 +00:00
|
|
|
const byte *getCharData(unsigned char c) const { return _fontData + (_charHeaders[getCharIndex(c)].offset); }
|
2005-03-18 19:54:40 +00:00
|
|
|
|
2011-05-24 02:06:08 +00:00
|
|
|
const byte *getFontData() const { return _fontData; }
|
|
|
|
uint32 getDataSize() const { return _dataSize; }
|
|
|
|
|
2015-02-01 23:36:56 +00:00
|
|
|
virtual int getKernedStringLength(const Common::String &text) const;
|
|
|
|
virtual int getBitmapStringLength(const Common::String &text) const;
|
|
|
|
virtual int getStringHeight(const Common::String &text) const;
|
2011-05-23 03:43:28 +00:00
|
|
|
|
2012-05-06 01:08:47 +00:00
|
|
|
const void *getUserData() const { return _userData; }
|
2011-05-24 02:06:08 +00:00
|
|
|
void setUserData(void *data) { _userData = data; }
|
|
|
|
|
2011-09-07 21:08:59 +00:00
|
|
|
void saveState(SaveGame *state) const;
|
|
|
|
void restoreState(SaveGame *state);
|
|
|
|
|
2005-12-24 18:19:53 +00:00
|
|
|
static const uint8 emerFont[][13];
|
2011-05-24 02:06:08 +00:00
|
|
|
private:
|
2005-03-18 19:54:40 +00:00
|
|
|
|
2011-05-23 23:19:47 +00:00
|
|
|
uint16 getCharIndex(unsigned char c) const;
|
2005-03-18 19:54:40 +00:00
|
|
|
struct CharHeader {
|
2005-05-05 21:23:17 +00:00
|
|
|
int32 offset;
|
2014-07-31 01:35:38 +00:00
|
|
|
int8 kernedWidth;
|
2005-05-05 21:23:17 +00:00
|
|
|
int8 startingCol;
|
|
|
|
int8 startingLine;
|
2014-07-31 01:35:38 +00:00
|
|
|
int32 bitmapWidth;
|
|
|
|
int32 bitmapHeight;
|
2005-03-18 19:54:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32 _numChars;
|
|
|
|
uint32 _dataSize;
|
2014-07-31 01:35:38 +00:00
|
|
|
uint32 _kernedHeight, _baseOffsetY;
|
2005-03-18 19:54:40 +00:00
|
|
|
uint32 _firstChar, _lastChar;
|
|
|
|
uint16 *_charIndex;
|
|
|
|
CharHeader *_charHeaders;
|
|
|
|
byte *_fontData;
|
2009-06-22 17:34:26 +00:00
|
|
|
Common::String _filename;
|
2011-05-24 02:06:08 +00:00
|
|
|
void *_userData;
|
2004-03-28 11:00:16 +00:00
|
|
|
};
|
|
|
|
|
2020-10-07 17:50:27 +00:00
|
|
|
class FontTTF : public Font {
|
2015-02-01 23:36:56 +00:00
|
|
|
public:
|
|
|
|
void loadTTF(const Common::String &filename, Common::SeekableReadStream *data, int size);
|
|
|
|
|
|
|
|
int32 getKernedHeight() const override { return _font->getFontHeight(); }
|
|
|
|
int32 getBaseOffsetY() const override { return 0; }
|
|
|
|
int32 getCharKernedWidth(unsigned char c) const override { return _font->getCharWidth(c); }
|
|
|
|
|
|
|
|
int getKernedStringLength(const Common::String &text) const override { return _font->getStringWidth(text); }
|
|
|
|
|
|
|
|
Graphics::Font *_font;
|
|
|
|
};
|
|
|
|
|
2009-05-25 06:49:57 +00:00
|
|
|
} // end of namespace Grim
|
|
|
|
|
2004-03-28 11:00:16 +00:00
|
|
|
#endif
|