X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FFont.cpp;h=42772b2612088275307447d5cd5c91443cedc5c4;hb=350055a7ff27c74882aff8a4d6af2014782f830b;hp=94d451ae7a9f7d272cc706599c9ce4b5b774849d;hpb=9648fd7d258ae1a2baccb8dd5b6f7a9491e55803;p=l2e.git diff --git a/src/graphics/Font.cpp b/src/graphics/Font.cpp index 94d451a..42772b2 100644 --- a/src/graphics/Font.cpp +++ b/src/graphics/Font.cpp @@ -21,6 +21,35 @@ using std::pow; namespace graphics { +int Font::StringWidth(const char *s) const { + int width(0), col(0); + for (int i(0); s[i]; ++i) { + if (s[i] == '\n') { + if (width < col) { + width = col; + } + col = 0; + } else { + ++col; + } + } + return (width < col ? col : width) * CharWidth(); +} + +int Font::StringHeight(const char *s) const { + if (*s == '\0') { + return 0; + } + int height(1); + for (; *s; ++s) { + if (*s == '\n') { + ++height; + } + } + return height * CharHeight(); +} + + void Font::DrawChar(char c, SDL_Surface *dest, const Vector &position) const { if (!sprite) return;