prime/include/Kyoto/Text/CFontImageDef.hpp

32 lines
782 B
C++
Raw Normal View History

#ifndef _CFONTIMAGEDEF
#define _CFONTIMAGEDEF
#include <Kyoto/Graphics/CTexture.hpp>
#include <Kyoto/Math/CVector2f.hpp>
#include <Kyoto/TToken.hpp>
#include <rstl/vector.hpp>
class CTexture;
class CVector2f;
class CFontImageDef {
public:
CFontImageDef(const TToken< CTexture >& texture, const CVector2f& cropFactor);
CFontImageDef(const rstl::vector< TToken< CTexture > >& texture, float fps,
const CVector2f& cropFactor);
2022-10-01 19:00:38 +00:00
bool IsLoaded() const;
2022-10-01 19:00:38 +00:00
// inline short GetWidth() { }
int GetHeight() {
TToken< CTexture > tex = mTextures[0];
return tex.GetT()->GetHeight() * mCropFactor.GetY();
}
int CalculateBaseline();
private:
float mFPS;
rstl::vector< TToken< CTexture > > mTextures;
CVector2f mCropFactor;
};
#endif // _CFONTIMAGEDEF