2020-11-28 21:16:20 +08:00
|
|
|
#ifndef ZM_FONT_H
|
|
|
|
#define ZM_FONT_H
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
struct ZMFONT_BH{
|
|
|
|
uint16_t charHeight; // Height of every character
|
|
|
|
uint16_t charWidth; // Width of every character
|
|
|
|
uint32_t numberofCodePoints; // number of codepoints max 255 for now
|
|
|
|
uint32_t idx; // idx in data where data for the bitmap starts
|
|
|
|
uint32_t pad; // padding to round of the size
|
|
|
|
};
|
2016-04-04 22:11:48 +08:00
|
|
|
|
2020-11-28 21:16:20 +08:00
|
|
|
struct ZMFONT {
|
|
|
|
char MAGIC[6]; //ZMFNT\0
|
|
|
|
char pad[2];
|
|
|
|
ZMFONT_BH header[4];
|
|
|
|
uint64_t *data;
|
|
|
|
};
|
2016-04-04 22:11:48 +08:00
|
|
|
|
2020-11-28 21:16:20 +08:00
|
|
|
class ZmFont {
|
|
|
|
public:
|
|
|
|
int ReadFontFile( const std::string &loc );
|
|
|
|
ZMFONT *GetFont(){ return font; }
|
|
|
|
uint64_t *GetBitmapDataForSize( const unsigned int size, uint16_t &charWidth, uint16_t &charHeight );
|
2020-11-28 22:14:45 +08:00
|
|
|
void FreeData();
|
2003-03-26 20:03:37 +08:00
|
|
|
|
2020-11-28 21:16:20 +08:00
|
|
|
private:
|
|
|
|
size_t datasize = 0;
|
|
|
|
ZMFONT *font = nullptr;
|
2003-03-26 20:03:37 +08:00
|
|
|
};
|
2020-11-28 21:16:20 +08:00
|
|
|
|
|
|
|
#endif
|