123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- /**
- * Copyright (c) 2006-2015 LOVE Development Team
- *
- * This software is provided 'as-is', without any express or implied
- * warranty. In no event will the authors be held liable for any damages
- * arising from the use of this software.
- *
- * Permission is granted to anyone to use this software for any purpose,
- * including commercial applications, and to alter it and redistribute it
- * freely, subject to the following restrictions:
- *
- * 1. The origin of this software must not be misrepresented; you must not
- * claim that you wrote the original software. If you use this software
- * in a product, an acknowledgment in the product documentation would be
- * appreciated but is not required.
- * 2. Altered source versions must be plainly marked as such, and must not be
- * misrepresented as being the original software.
- * 3. This notice may not be removed or altered from any source distribution.
- **/
- #include "wrap_Font.h"
- #include "Font.h"
- #include "freetype/Font.h"
- #include "wrap_GlyphData.h"
- #include "wrap_Rasterizer.h"
- #include "filesystem/wrap_Filesystem.h"
- namespace love
- {
- namespace font
- {
- #define instance() (Module::getInstance<Font>(Module::M_FONT))
- int w_newRasterizer(lua_State *L)
- {
- if (lua_isnoneornil(L, 2))
- {
- // Single number argument: use the default TrueType font.
- if (lua_type(L, 1) == LUA_TNUMBER)
- return w_newTrueTypeRasterizer(L);
- // Single argument of another type: call Font::newRasterizer.
- Rasterizer *t = nullptr;
- filesystem::FileData *d = filesystem::luax_getfiledata(L, 1);
- luax_catchexcept(L,
- [&]() { t = instance()->newRasterizer(d); },
- [&]() { d->release(); }
- );
- luax_pushtype(L, "Rasterizer", FONT_RASTERIZER_T, t);
- t->release();
- return 1;
- }
- else if (lua_type(L, 2) == LUA_TNUMBER)
- {
- // Second argument is a number: call newTrueTypeRasterizer.
- return w_newTrueTypeRasterizer(L);
- }
- else
- {
- // Otherwise call newBMFontRasterizer.
- return w_newBMFontRasterizer(L);
- }
- }
- int w_newTrueTypeRasterizer(lua_State *L)
- {
- Rasterizer *t = nullptr;
- if (lua_type(L, 1) == LUA_TNUMBER)
- {
- // First argument is a number: use the default TrueType font.
- int size = luaL_checkint(L, 1);
- luax_catchexcept(L, [&](){ t = instance()->newTrueTypeRasterizer(size); });
- }
- else
- {
- love::Data *d = nullptr;
- if (luax_istype(L, 1, DATA_T))
- d = luax_checkdata(L, 1);
- else
- d = filesystem::luax_getfiledata(L, 1);
- int size = luaL_optint(L, 2, 12);
- luax_catchexcept(L,
- [&]() { t = instance()->newTrueTypeRasterizer(d, size); },
- [&]() { d->release(); }
- );
- }
- luax_pushtype(L, "Rasterizer", FONT_RASTERIZER_T, t);
- t->release();
- return 1;
- }
- static void convimagedata(lua_State *L, int idx)
- {
- if (lua_isstring(L, idx) || luax_istype(L, idx, FILESYSTEM_FILE_T) || luax_istype(L, idx, FILESYSTEM_FILE_DATA_T))
- luax_convobj(L, idx, "image", "newImageData");
- }
- int w_newBMFontRasterizer(lua_State *L)
- {
- Rasterizer *t = nullptr;
- filesystem::FileData *d = filesystem::luax_getfiledata(L, 1);
- std::vector<image::ImageData *> images;
- if (lua_istable(L, 2))
- {
- for (int i = 1; i <= (int) lua_objlen(L, 2); i++)
- {
- lua_rawgeti(L, 2, i);
- convimagedata(L, -1);
- image::ImageData *id = luax_checktype<image::ImageData>(L, -1, "ImageData", IMAGE_IMAGE_DATA_T);
- images.push_back(id);
- id->retain();
- lua_pop(L, 1);
- }
- }
- else
- {
- for (int i = 2; i <= lua_gettop(L); i++)
- {
- convimagedata(L, i);
- image::ImageData *id = luax_checktype<image::ImageData>(L, i, "ImageData", IMAGE_IMAGE_DATA_T);
- images.push_back(id);
- id->retain();
- }
- }
- luax_catchexcept(L,
- [&]() { t = instance()->newBMFontRasterizer(d, images); },
- [&]() { d->release(); for (auto id : images) id->release(); }
- );
- luax_pushtype(L, "Rasterizer", FONT_RASTERIZER_T, t);
- t->release();
- return 1;
- }
- int w_newImageRasterizer(lua_State *L)
- {
- Rasterizer *t = nullptr;
- convimagedata(L, 1);
- image::ImageData *d = luax_checktype<image::ImageData>(L, 1, "ImageData", IMAGE_IMAGE_DATA_T);
- std::string glyphs = luax_checkstring(L, 2);
- luax_catchexcept(L, [&](){ t = instance()->newImageRasterizer(d, glyphs); });
- luax_pushtype(L, "Rasterizer", FONT_RASTERIZER_T, t);
- t->release();
- return 1;
- }
- int w_newGlyphData(lua_State *L)
- {
- Rasterizer *r = luax_checkrasterizer(L, 1);
- GlyphData *t = nullptr;
- // newGlyphData accepts a unicode character or a codepoint number.
- if (lua_type(L, 2) == LUA_TSTRING)
- {
- std::string glyph = luax_checkstring(L, 2);
- luax_catchexcept(L, [&](){ t = instance()->newGlyphData(r, glyph); });
- }
- else
- {
- uint32 g = (uint32) luaL_checknumber(L, 2);
- t = instance()->newGlyphData(r, g);
- }
- luax_pushtype(L, "GlyphData", FONT_GLYPH_DATA_T, t);
- t->release();
- return 1;
- }
- // List of functions to wrap.
- static const luaL_Reg functions[] =
- {
- { "newRasterizer", w_newRasterizer },
- { "newTrueTypeRasterizer", w_newTrueTypeRasterizer },
- { "newBMFontRasterizer", w_newBMFontRasterizer },
- { "newImageRasterizer", w_newImageRasterizer },
- { "newGlyphData", w_newGlyphData },
- { 0, 0 }
- };
- static const lua_CFunction types[] =
- {
- luaopen_glyphdata,
- luaopen_rasterizer,
- 0
- };
- extern "C" int luaopen_love_font(lua_State *L)
- {
- Font *instance = instance();
- if (instance == nullptr)
- {
- luax_catchexcept(L, [&](){ instance = new freetype::Font(); });
- }
- else
- instance->retain();
- WrappedModule w;
- w.module = instance;
- w.name = "font";
- w.flags = MODULE_T;
- w.functions = functions;
- w.types = types;
- return luax_register_module(L, w);
- }
- } // font
- } // love
|