mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
86 lines
2.9 KiB
C++
86 lines
2.9 KiB
C++
/* Copyright (c) 2002-2012 Croteam Ltd.
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of version 2 of the GNU General Public License as published by
|
|
the Free Software Foundation
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
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. */
|
|
|
|
#ifndef SE_INCL_FONT_H
|
|
#define SE_INCL_FONT_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <Engine/Base/FileName.h>
|
|
#include <Engine/Base/Serial.h>
|
|
|
|
|
|
// some default fonts
|
|
ENGINE_API extern CFontData *_pfdDisplayFont;
|
|
ENGINE_API extern CFontData *_pfdConsoleFont;
|
|
|
|
|
|
/*
|
|
* font letter description
|
|
*/
|
|
class ENGINE_API CFontCharData {
|
|
public:
|
|
PIX fcd_pixXOffset, fcd_pixYOffset; // offset of letter inside tex file (in pixels)
|
|
PIX fcd_pixStart, fcd_pixEnd; // position and size adjustment for current letter
|
|
// constructor
|
|
CFontCharData(void);
|
|
// simple stream functions
|
|
void Read_t( CTStream *inFile);
|
|
void Write_t( CTStream *outFile);
|
|
};
|
|
|
|
|
|
/*
|
|
* font description
|
|
*/
|
|
class ENGINE_API CFontData : public CSerial {
|
|
// implementation
|
|
public:
|
|
PIX fd_pixCharSpacing, fd_pixLineSpacing; // intra character and intra line spacing
|
|
PIX fd_pixCharWidth, fd_pixCharHeight; // maximum character width and height
|
|
BOOL fd_bFixedWidth; // treated as of fixed width
|
|
|
|
CTFileName fd_fnTexture;
|
|
class CFontCharData fd_fcdFontCharData[256];
|
|
class CTextureData *fd_ptdTextureData;
|
|
|
|
// interface
|
|
public:
|
|
CFontData();
|
|
~CFontData();
|
|
inline PIX GetWidth(void) const { return fd_pixCharWidth; };
|
|
inline PIX GetHeight(void) const { return fd_pixCharHeight; };
|
|
inline PIX GetCharSpacing(void) const { return fd_pixCharSpacing; };
|
|
inline PIX GetLineSpacing(void) const { return fd_pixLineSpacing; };
|
|
inline BOOL IsFixedWidth(void) const { return fd_bFixedWidth; };
|
|
inline void SetCharSpacing( PIX pixSpacing) { fd_pixCharSpacing = pixSpacing; };
|
|
inline void SetLineSpacing( PIX pixSpacing) { fd_pixLineSpacing = pixSpacing; };
|
|
inline void SetFixedWidth(void) { fd_bFixedWidth = TRUE; };
|
|
inline void SetVariableWidth(void) { fd_bFixedWidth = FALSE; };
|
|
inline void SetSpaceWidth( FLOAT fWidthRatio) { // relative to char cell width (1/2 is default)
|
|
fd_fcdFontCharData[(int)' '].fcd_pixEnd = (PIX)(fd_pixCharWidth*fWidthRatio); }
|
|
|
|
void Read_t( CTStream *inFile); // throw char *
|
|
void Write_t( CTStream *outFile); // throw char *
|
|
void Make_t( const CTFileName &fnTexture, PIX pixCharWidth, PIX pixCharHeight,
|
|
CTFileName &fnOrderFile, BOOL bUseAlpha);
|
|
void Clear();
|
|
};
|
|
|
|
|
|
#endif /* include-once check. */
|
|
|