implement all remaining function bindings
This commit is contained in:
parent
f0d581223f
commit
fde4843a75
|
@ -265,6 +265,38 @@ static int lucg_drawPixel( lua_State *L )
|
|||
return 0;
|
||||
}
|
||||
|
||||
// Lua: ucg.drawRBox( self, x, y, w, h, r )
|
||||
static int lucg_drawRBox( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
ucg_int_t args[5];
|
||||
lucg_get_int_args( L, 2, 5, args );
|
||||
|
||||
ucg_DrawRBox( LUCG, args[0], args[1], args[2], args[3], args[4] );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Lua: ucg.drawRFrame( self, x, y, w, h, r )
|
||||
static int lucg_drawRFrame( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
ucg_int_t args[5];
|
||||
lucg_get_int_args( L, 2, 5, args );
|
||||
|
||||
ucg_DrawRFrame( LUCG, args[0], args[1], args[2], args[3], args[4] );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Lua: width = ucg.drawString( self, x, y, dir, str )
|
||||
static int lucg_drawString( lua_State *L )
|
||||
{
|
||||
|
@ -285,6 +317,22 @@ static int lucg_drawString( lua_State *L )
|
|||
return 1;
|
||||
}
|
||||
|
||||
// Lua: ucg.drawTetragon( self, x0, y0, x1, y1, x2, y2, x3, y3 )
|
||||
static int lucg_drawTetragon( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
ucg_int_t args[8];
|
||||
lucg_get_int_args( L, 2, 8, args );
|
||||
|
||||
ucg_DrawTetragon( LUCG, args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7] );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Lua: ucg.drawTriangle( self, x0, y0, x1, y1, x2, y2 )
|
||||
static int lucg_drawTriangle( lua_State *L )
|
||||
{
|
||||
|
@ -317,6 +365,32 @@ static int lucg_drawVLine( lua_State *L )
|
|||
return 0;
|
||||
}
|
||||
|
||||
// Lua: height = ucg.getFontAscent( self )
|
||||
static int lucg_getFontAscent( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
lua_pushinteger( L, ucg_GetFontAscent( LUCG ) );
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Lua: height = ucg.getFontDescent( self )
|
||||
static int lucg_getFontDescent( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
lua_pushinteger( L, ucg_GetFontDescent( LUCG ) );
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Lua: height = ucg.getHeight( self )
|
||||
static int lucg_getHeight( lua_State *L )
|
||||
{
|
||||
|
@ -330,6 +404,23 @@ static int lucg_getHeight( lua_State *L )
|
|||
return 1;
|
||||
}
|
||||
|
||||
// Lua: width = ucg.getStrWidth( self )
|
||||
static int lucg_getStrWidth( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
const char *s = luaL_checkstring( L, (1+3) + 1 );
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
lua_pushinteger( L, ucg_GetStrWidth( LUCG, s ) );
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Lua: width = ucg.getWidth( self )
|
||||
static int lucg_getWidth( lua_State *L )
|
||||
{
|
||||
|
@ -440,6 +531,58 @@ static int lucg_setFontMode( lua_State *L )
|
|||
return 0;
|
||||
}
|
||||
|
||||
// Lua: ucg.setFontPosBaseline( self )
|
||||
static int lucg_setFontPosBaseline( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
ucg_SetFontPosBaseline( LUCG );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Lua: ucg.setFontPosBottom( self )
|
||||
static int lucg_setFontPosBottom( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
ucg_SetFontPosBottom( LUCG );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Lua: ucg.setFontPosCenter( self )
|
||||
static int lucg_setFontPosCenter( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
ucg_SetFontPosCenter( LUCG );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Lua: ucg.setFontPosTop( self )
|
||||
static int lucg_setFontPosTop( lua_State *L )
|
||||
{
|
||||
lucg_userdata_t *lud;
|
||||
|
||||
if ((lud = get_lud( L )) == NULL)
|
||||
return 0;
|
||||
|
||||
ucg_SetFontPosTop( LUCG );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Lua: ucg.setMaxClipRange( self )
|
||||
static int lucg_setMaxClipRange( lua_State *L )
|
||||
{
|
||||
|
@ -742,16 +885,26 @@ static const LUA_REG_TYPE lucg_display_map[] =
|
|||
{ LSTRKEY( "drawHLine" ), LFUNCVAL( lucg_drawHLine ) },
|
||||
{ LSTRKEY( "drawLine" ), LFUNCVAL( lucg_drawLine ) },
|
||||
{ LSTRKEY( "drawPixel" ), LFUNCVAL( lucg_drawPixel ) },
|
||||
{ LSTRKEY( "drawRBox" ), LFUNCVAL( lucg_drawRBox ) },
|
||||
{ LSTRKEY( "drawRFrame" ), LFUNCVAL( lucg_drawRFrame ) },
|
||||
{ LSTRKEY( "drawString" ), LFUNCVAL( lucg_drawString ) },
|
||||
{ LSTRKEY( "drawTetragon" ), LFUNCVAL( lucg_drawTetragon ) },
|
||||
{ LSTRKEY( "drawTriangle" ), LFUNCVAL( lucg_drawTriangle ) },
|
||||
{ LSTRKEY( "drawVLine" ), LFUNCVAL( lucg_drawVLine ) },
|
||||
{ LSTRKEY( "getFontAscent" ), LFUNCVAL( lucg_getFontAscent ) },
|
||||
{ LSTRKEY( "getFontDescent" ), LFUNCVAL( lucg_getFontDescent ) },
|
||||
{ LSTRKEY( "getHeight" ), LFUNCVAL( lucg_getHeight ) },
|
||||
{ LSTRKEY( "getStrWidth" ), LFUNCVAL( lucg_getStrWidth ) },
|
||||
{ LSTRKEY( "getWidth" ), LFUNCVAL( lucg_getWidth ) },
|
||||
{ LSTRKEY( "print" ), LFUNCVAL( lucg_print ) },
|
||||
{ LSTRKEY( "setClipRange" ), LFUNCVAL( lucg_setClipRange ) },
|
||||
{ LSTRKEY( "setColor" ), LFUNCVAL( lucg_setColor ) },
|
||||
{ LSTRKEY( "setFont" ), LFUNCVAL( lucg_setFont ) },
|
||||
{ LSTRKEY( "setFontMode" ), LFUNCVAL( lucg_setFontMode ) },
|
||||
{ LSTRKEY( "setFontPosBaseline" ), LFUNCVAL( lucg_setFontPosBaseline ) },
|
||||
{ LSTRKEY( "setFontPosBottom" ), LFUNCVAL( lucg_setFontPosBottom ) },
|
||||
{ LSTRKEY( "setFontPosCenter" ), LFUNCVAL( lucg_setFontPosCenter ) },
|
||||
{ LSTRKEY( "setFontPosTop" ), LFUNCVAL( lucg_setFontPosTop ) },
|
||||
{ LSTRKEY( "setMaxClipRange" ), LFUNCVAL( lucg_setMaxClipRange ) },
|
||||
{ LSTRKEY( "setPrintDir" ), LFUNCVAL( lucg_setPrintDir ) },
|
||||
{ LSTRKEY( "setPrintPos" ), LFUNCVAL( lucg_setPrintPos ) },
|
||||
|
|
Loading…
Reference in New Issue