Przeglądaj źródła

font: add support for \n

undefined
Jean-Yves Lamoureux Sam Hocevar <sam@hocevar.net> 11 lat temu
rodzic
commit
6cce28dd93
1 zmienionych plików z 8 dodań i 2 usunięć
  1. +8
    -2
      src/font.cpp

+ 8
- 2
src/font.cpp Wyświetl plik

@@ -69,13 +69,19 @@ char const *Font::GetName()

void Font::Print(vec3 pos, char const *str, vec2 scale)
{
int origin_x = pos.x;
while (*str)
{
uint32_t ch = (uint8_t)*str++;

if (ch != ' ')
if(ch == '\n')
{
pos.x = origin_x;
pos.y-=data->size.y * scale.y;
continue;
}else if (ch != ' '){
g_scene->AddTile(data->tileset, ch & 255, pos, 0, scale);

}
pos.x += data->size.x * scale.x;
}
}


Ładowanie…
Anuluj
Zapisz