Files
lovedos/src/love.c
2016-09-29 19:22:29 +01:00

68 lines
1.6 KiB
C

/**
* Copyright (c) 2016 rxi
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See LICENSE for details.
*/
#include "luaobj.h"
#define LOVE_VERSION "0.1.5"
int l_love_getVersion(lua_State *L) {
lua_pushstring(L, LOVE_VERSION);
return 1;
}
int luaopen_image(lua_State *L);
int luaopen_quad(lua_State *L);
int luaopen_font(lua_State *L);
int luaopen_system(lua_State *L);
int luaopen_filesystem(lua_State *L);
int luaopen_graphics(lua_State *L);
int luaopen_timer(lua_State *L);
int luaopen_keyboard(lua_State *L);
int luaopen_mouse(lua_State *L);
int luaopen_love(lua_State *L) {
int i;
/* Init classes -- all the built in classes are inited here as to create the
* metatables required by their constructors. Any new classes must also be
* registered here before they will work. */
int (*classes[])(lua_State *L) = {
luaopen_image,
luaopen_quad,
luaopen_font,
NULL,
};
for (i = 0; classes[i]; i++) {
classes[i](L);
lua_pop(L, 1);
}
/* Init love module */
luaL_Reg reg[] = {
{ "getVersion", l_love_getVersion },
{ 0, 0 },
};
luaL_newlib(L, reg);
/* Init submodules */
struct { char *name; int (*fn)(lua_State *L); } mods[] = {
{ "system", luaopen_system },
{ "filesystem", luaopen_filesystem },
{ "graphics", luaopen_graphics },
{ "timer", luaopen_timer },
{ "keyboard", luaopen_keyboard },
{ "mouse", luaopen_mouse },
{ 0 },
};
for (i = 0; mods[i].name; i++) {
mods[i].fn(L);
lua_setfield(L, -2, mods[i].name);
}
return 1;
}