ZeroZero Game Engine  v0.0
A 3D game engine using Vulkan & Jolt
Public Member Functions | List of all members
Font Class Reference

Detailed Description

A font resource to render text in bitmaps. A font is a combination of a font file name and a size. Supports true type font files (cf https://github.com/nothings/stb/blob/master/stb_truetype.h). The font size is automatically scaled based on the resolution, from a base resolution of 1920x1080 (14 is 14 pixels height in this resolution)

Inheritance diagram for Font:
Resource Object

Public Member Functions

 Font (const string &path, uint32_t size)
 
void getSize (const string &text, float &width, float &height)
 
vector< uint32_t > renderToBitmap (const string &text, float &wwidth, float &hheight)
 
const auto & getFontName () const
 
auto getFontSize () const
 
- Public Member Functions inherited from Resource
auto getId () const
 
const auto & getName () const
 
string toString () const override
 
virtual shared_ptr< Resource > duplicate () const
 
- Public Member Functions inherited from Object
void connect (const Signal::signal &name, const Signal::Handler &handler)
 
void connect (const Signal::signal &name, const function< void ()> &handler)
 
void emit (const Signal::signal &name, void *params=nullptr)
 

Constructor & Destructor Documentation

Font ( const string &  path,
uint32_t  size 
)
explicit

Creates a font resource

Parameters
path: font file path, relative to the application working directory
size: height in pixels on a base resolution of 1920x1080

Member Function Documentation

const auto& getFontName ( ) const
nodiscardinline

Returns the font path. Useful to create another Font resource with a different size

auto getFontSize ( ) const
nodiscardinline

Returns the font height in pixels (NOT scaled size, but the size given to the Font constructor)

void getSize ( const string &  text,
float &  width,
float &  height 
)

Returns the size (in pixels) for a string.

vector<uint32_t> renderToBitmap ( const string &  text,
float &  wwidth,
float &  hheight 
)
nodiscard

Renders a string into an RGBA bitmap (stored in CPU memory). Glyphs are white with alpha channel mapped to the glyphs geometry

Parameters
text: text to render
wwidth: width of the resulting bitmap
hheight: height of the resulting bitmap
Returns
32 bits RGBA bitmap stored in CPU memory