1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-27 16:39:29 +00:00

Added ctr.gfx.color lib; color.setDefault and color.getDefault working

This commit is contained in:
Reuh 2015-08-18 16:19:11 +02:00
parent 2584e46816
commit 3441dd266f
3 changed files with 53 additions and 2 deletions

33
source/color.c Normal file
View file

@ -0,0 +1,33 @@
#include <sf2d.h>
#include <lua.h>
#include <lauxlib.h>
u32 color_default = RGBA8(255, 255, 255, 255);
static int color_setDefault(lua_State *L) {
color_default = luaL_checkinteger(L, 1);
return 0;
}
static int color_getDefault(lua_State *L) {
lua_pushinteger(L, color_default);
return 1;
}
static const struct luaL_Reg color_lib[] = {
{ "setDefault", color_setDefault },
{ "getDefault", color_getDefault },
{ NULL, NULL }
};
int luaopen_color_lib(lua_State *L) {
luaL_newlib(L, color_lib);
return 1;
}
void load_color_lib(lua_State *L) {
luaL_requiref(L, "ctr.gfx.color", luaopen_color_lib, false);
}