1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
#include "font.h"
#include "graphics/software/FontManager.h"
namespace scripting {
namespace api {
//**********HANDLE: Font
font_h::font_h(int fontIndex):
_fontIndex(fontIndex)
{}
font_h::font_h()
: _fontIndex(-1)
{}
font::FSFont* font_h::Get() const
{
if (!isValid())
return nullptr;
return font::FontManager::getFont(_fontIndex);
}
int font_h::GetIndex() const
{
if (!isValid())
return -1;
return _fontIndex;
}
bool font_h::isValid() const {
return font::FontManager::isFontNumberValid(_fontIndex);
}
ADE_OBJ(l_Font, font_h, "font", "font handle");
ADE_FUNC(__tostring, l_Font, nullptr, "Name of font", "string", "Font filename, or an empty string if the handle is invalid")
{
font_h* fh = nullptr;
if (!ade_get_args(L, "o", l_Font.GetPtr(&fh)))
return ade_set_error(L, "s", "");
if (fh != nullptr && !fh->isValid())
return ade_set_error(L, "s", "");
return ade_set_args(L, "s", fh->Get()->getName().c_str());
}
ADE_FUNC(__eq, l_Font, "font, font", "Checks if the two fonts are equal", "boolean", "true if equal, false otherwise")
{
font_h *fh1, *fh2;
if (!ade_get_args(L, "oo", l_Font.GetPtr(&fh1), l_Font.GetPtr(&fh2)))
return ade_set_error(L, "b", false);
if (!fh1->isValid() || !fh2->isValid())
return ade_set_error(L, "b", false);
return ade_set_args(L, "b", fh1->Get()->getName() == fh2->Get()->getName());
}
ADE_VIRTVAR(Filename, l_Font, "string", "Name of font (including extension)<br><b>Important:</b>This variable is deprecated. Use <i>Name</i> instead.", "string", nullptr)
{
font_h* fh = nullptr;
const char* newname = nullptr;
if (!ade_get_args(L, "o|s", l_Font.GetPtr(&fh), &newname))
return ade_set_error(L, "s", "");
if (fh != nullptr && !fh->isValid())
return ade_set_error(L, "s", "");
if (ADE_SETTING_VAR)
{
fh->Get()->setName(newname);
}
return ade_set_args(L, "s", fh->Get()->getName().c_str());
}
ADE_VIRTVAR(Name, l_Font, "string", "Name of font (including extension)", "string", nullptr)
{
font_h* fh = nullptr;
const char* newname = nullptr;
if (!ade_get_args(L, "o|s", l_Font.GetPtr(&fh), &newname))
return ade_set_error(L, "s", "");
if (fh != nullptr && !fh->isValid())
return ade_set_error(L, "s", "");
if (ADE_SETTING_VAR)
{
fh->Get()->setName(newname);
}
return ade_set_args(L, "s", fh->Get()->getName().c_str());
}
ADE_VIRTVAR(FamilyName, l_Font, "string", "Family Name of font. Bitmap fonts always return 'Volition Font'.", "string", nullptr)
{
font_h *fh = nullptr;
const char* newname = nullptr;
if (!ade_get_args(L, "o|s", l_Font.GetPtr(&fh), &newname))
return ade_set_error(L, "s", "");
if (fh != nullptr && !fh->isValid())
return ade_set_error(L, "s", "");
if (ADE_SETTING_VAR)
{
LuaError(L, "Setting font family name is not supported!");
}
return ade_set_args(L, "s", fh->Get()->getFamilyName().c_str());
}
ADE_VIRTVAR(Height, l_Font, "number", "Height of font (in pixels)", "number", "Font height, or 0 if the handle is invalid")
{
font_h* fh = nullptr;
int newheight = -1;
if (!ade_get_args(L, "o|i", l_Font.GetPtr(&fh), &newheight))
return ade_set_error(L, "i", 0);
if (fh != nullptr && !fh->isValid())
return ade_set_error(L, "i", 0);
if (ADE_SETTING_VAR && newheight > 0)
{
LuaError(L, "Height setting isn't available anymore!");
}
return ade_set_args(L, "f", fh->Get()->getHeight());
}
ADE_VIRTVAR(TopOffset, l_Font, "number", "The offset this font has from the baseline of textdrawing downwards. (in pixels)", "number", "Font top offset, or 0 if the handle is invalid")
{
font_h* fh = nullptr;
float newOffset = -1;
if (!ade_get_args(L, "o|f", l_Font.GetPtr(&fh), &newOffset))
return ade_set_error(L, "f", 0.0f);
if (fh != nullptr && !fh->isValid())
return ade_set_error(L, "f", 0.0f);
if (ADE_SETTING_VAR && newOffset > 0)
{
fh->Get()->setTopOffset(newOffset);
}
return ade_set_args(L, "f", fh->Get()->getTopOffset());
}
ADE_VIRTVAR(BottomOffset, l_Font, "number", "The space (in pixels) this font skips downwards after drawing a line of text", "number", "Font bottom offset, or 0 if the handle is invalid")
{
font_h* fh = nullptr;
float newOffset = -1;
if (!ade_get_args(L, "o|f", l_Font.GetPtr(&fh), &newOffset))
return ade_set_error(L, "f", 0.0f);
if (fh != nullptr && !fh->isValid())
return ade_set_error(L, "f", 0.0f);
if (ADE_SETTING_VAR && newOffset > 0)
{
fh->Get()->setBottomOffset(newOffset);
}
return ade_set_args(L, "f", fh->Get()->getBottomOffset());
}
ADE_FUNC(hasAutoSize, l_Font, nullptr, "True if FSO will auto size this font, false or nil if not", "boolean", "Detects whether the font has Auto Size activated")
{
font_h* fh = nullptr;
if (!ade_get_args(L, "o", l_Font.GetPtr(&fh)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", fh != nullptr && fh->Get()->getAutoScaleBehavior());
}
ADE_FUNC(hasCanScale, l_Font, nullptr, "True if this font is allowed to scale based on user settings, false or nil if not", "boolean", "Detects whether the font can scale")
{
font_h* fh = nullptr;
if (!ade_get_args(L, "o", l_Font.GetPtr(&fh)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", fh != nullptr && fh->Get()->getScaleBehavior());
}
ADE_FUNC(isValid, l_Font, nullptr, "True if valid, false or nil if not", "boolean", "Detects whether handle is valid")
{
font_h *fh = nullptr;
if (!ade_get_args(L, "o", l_Font.GetPtr(&fh)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", fh != nullptr && fh->isValid());
}
}
} // namespace scripting
|