NasNas
An intuitive and beginner friendly 2D game framework for C++
Public Member Functions | List of all members
ns::BitmapFont Class Reference

A font that can be created from a texture. More...

#include <BitmapFont.hpp>

Public Member Functions

void loadFromTexture (const sf::Texture &texture, const sf::Vector2u &glyph_size, unsigned advance)
 Creates a BitmapFont from a Texture. More...
 
auto getTexture () const -> const sf::Texture *
 Get BitmapFont texture. More...
 
auto getGlyphSize () const -> const sf::Vector2u &
 Get BitmapFont glyph size. More...
 
void setCharacters (const std::wstring &characters)
 
void setCharactersAdvance (const std::map< std::wstring, unsigned > &advances)
 
auto getGlyph (wchar_t character) const -> const BitmapGlyph &
 Get the BitmapGlyph data of a given character. More...
 
auto computeStringSize (const std::wstring &string) const -> sf::Vector2f
 

Detailed Description

A font that can be created from a texture.

Definition at line 25 of file BitmapFont.hpp.

Member Function Documentation

◆ getGlyph()

auto ns::BitmapFont::getGlyph ( wchar_t  character) const -> const BitmapGlyph &

Get the BitmapGlyph data of a given character.

Parameters
characterA character of the font.
Returns
BitmapGlyph data of the character

◆ getGlyphSize()

auto ns::BitmapFont::getGlyphSize ( ) const -> const sf::Vector2u &

Get BitmapFont glyph size.

Returns
Glyph size

◆ getTexture()

auto ns::BitmapFont::getTexture ( ) const -> const sf::Texture *

Get BitmapFont texture.

Returns
Const pointer to the Texture

◆ loadFromTexture()

void ns::BitmapFont::loadFromTexture ( const sf::Texture &  texture,
const sf::Vector2u &  glyph_size,
unsigned  advance 
)

Creates a BitmapFont from a Texture.

Parameters
textureFont texture
glyph_sizeGlyphs size in pixels

The documentation for this class was generated from the following file: