2015-01-29 23:47:13 +01:00
|
|
|
// Module for U8glib
|
|
|
|
|
|
|
|
//#include "lua.h"
|
|
|
|
#include "lualib.h"
|
|
|
|
#include "lauxlib.h"
|
|
|
|
#include "platform.h"
|
|
|
|
#include "auxmods.h"
|
|
|
|
#include "lrotable.h"
|
|
|
|
|
2015-01-31 01:21:51 +01:00
|
|
|
//#include "c_string.h"
|
|
|
|
//#include "c_stdlib.h"
|
2015-01-29 23:47:13 +01:00
|
|
|
|
2015-01-31 01:21:51 +01:00
|
|
|
#include "u8g.h"
|
2015-01-29 23:47:13 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
typedef u8g_t lu8g_userdata_t;
|
2015-01-29 23:47:13 +01:00
|
|
|
|
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Font look-up array
|
2015-02-04 00:08:39 +01:00
|
|
|
static const u8g_fntpgm_uint8_t *font_array[] =
|
2015-01-31 23:08:06 +01:00
|
|
|
{
|
2015-02-04 00:08:39 +01:00
|
|
|
#undef U8G_FONT_TABLE_ENTRY
|
|
|
|
#define U8G_FONT_TABLE_ENTRY(font) u8g_ ## font ,
|
|
|
|
U8G_FONT_TABLE
|
|
|
|
NULL
|
2015-01-31 23:08:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-02-04 00:08:39 +01:00
|
|
|
// function to read 4-byte aligned from program memory AKA irom0
|
|
|
|
u8g_pgm_uint8_t u8g_pgm_read(const u8g_pgm_uint8_t *adr)
|
|
|
|
{
|
|
|
|
uint32_t iadr = (uint32_t)adr;
|
|
|
|
// set up pointer to 4-byte aligned memory location
|
|
|
|
uint32_t *ptr = (uint32_t *)(iadr & ~0x3);
|
|
|
|
|
|
|
|
// read 4-byte aligned
|
|
|
|
uint32_t pgm_data = *ptr;
|
|
|
|
|
|
|
|
// return the correct byte within the retrieved 32bit word
|
|
|
|
return pgm_data >> ((iadr % 4) * 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
// helper function: retrieve and check userdata argument
|
2015-02-01 00:50:14 +01:00
|
|
|
static lu8g_userdata_t *get_lud( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud = (lu8g_userdata_t *)luaL_checkudata(L, 1, "u8g.display");
|
|
|
|
luaL_argcheck(L, lud, 1, "u8g.display expected");
|
|
|
|
return lud;
|
|
|
|
}
|
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
// helper function: retrieve given number of integer arguments
|
|
|
|
static void lu8g_get_int_args( lua_State *L, uint8_t stack, uint8_t num, u8g_uint_t *args)
|
|
|
|
{
|
|
|
|
while (num-- > 0)
|
|
|
|
{
|
|
|
|
*args++ = luaL_checkinteger( L, stack++ );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
|
2015-02-08 21:41:02 +01:00
|
|
|
// Lua: u8g.begin( self )
|
|
|
|
static int lu8g_begin( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_Begin( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Lua: u8g.setFont( self, font )
|
|
|
|
static int lu8g_setFont( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-02-04 00:08:39 +01:00
|
|
|
lua_Integer fontnr = luaL_checkinteger( L, 2 );
|
|
|
|
if ((fontnr >= 0) && (fontnr < (sizeof( font_array ) / sizeof( u8g_fntpgm_uint8_t ))))
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_SetFont( lud, font_array[fontnr] );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-08 21:21:26 +01:00
|
|
|
// Lua: u8g.setFontRefHeightAll( self )
|
|
|
|
static int lu8g_setFontRefHeightAll( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetFontRefHeightAll( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Lua: u8g.setFontRefHeightExtendedText( self )
|
|
|
|
static int lu8g_setFontRefHeightExtendedText( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_SetFontRefHeightExtendedText( lud );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-08 21:21:26 +01:00
|
|
|
// Lua: u8g.setFontRefHeightText( self )
|
|
|
|
static int lu8g_setFontRefHeightText( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetFontRefHeightText( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.setDefaultBackgroundColor( self )
|
|
|
|
static int lu8g_setDefaultBackgroundColor( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetDefaultBackgroundColor( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Lua: u8g.setDefaultForegroundColor( self )
|
|
|
|
static int lu8g_setDefaultForegroundColor( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_SetDefaultForegroundColor( lud );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-08 21:21:26 +01:00
|
|
|
// Lua: u8g.setFontPosBaseline( self )
|
|
|
|
static int lu8g_setFontPosBaseline( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetFontPosBaseline( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.setFontPosBottom( self )
|
|
|
|
static int lu8g_setFontPosBottom( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetFontPosBottom( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.setFontPosCenter( self )
|
|
|
|
static int lu8g_setFontPosCenter( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetFontPosCenter( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Lua: u8g.setFontPosTop( self )
|
|
|
|
static int lu8g_setFontPosTop( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_SetFontPosTop( lud );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-08 21:21:26 +01:00
|
|
|
// Lua: int = u8g.getFontAscent( self )
|
|
|
|
static int lu8g_getFontAscent( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
lua_pushinteger( L, u8g_GetFontAscent( lud ) );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: int = u8g.getFontDescent( self )
|
|
|
|
static int lu8g_getFontDescent( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
lua_pushinteger( L, u8g_GetFontDescent( lud ) );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: int = u8g.getFontLineSpacing( self )
|
|
|
|
static int lu8g_getFontLineSpacing( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
lua_pushinteger( L, u8g_GetFontLineSpacing( lud ) );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: int = u8g.getMode( self )
|
|
|
|
static int lu8g_getMode( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
lua_pushinteger( L, u8g_GetMode( lud ) );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.setColorIndex( self, color )
|
|
|
|
static int lu8g_setColorIndex( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetColorIndex( lud, luaL_checkinteger( L, 2 ) );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: int = u8g.getColorIndex( self )
|
|
|
|
static int lu8g_getColorIndex( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
lua_pushinteger( L, u8g_GetColorIndex( lud ) );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
static int lu8g_generic_drawStr( lua_State *L, uint8_t rot )
|
2015-01-31 23:08:06 +01:00
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[2];
|
|
|
|
lu8g_get_int_args( L, 2, 2, args );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
const char *s = luaL_checkstring( L, (1+2) + 1 );
|
2015-01-31 23:08:06 +01:00
|
|
|
if (s == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
switch (rot)
|
|
|
|
{
|
|
|
|
case 1:
|
2015-02-04 23:57:13 +01:00
|
|
|
lua_pushinteger( L, u8g_DrawStr90( lud, args[0], args[1], s ) );
|
2015-02-01 00:50:14 +01:00
|
|
|
break;
|
|
|
|
case 2:
|
2015-02-04 23:57:13 +01:00
|
|
|
lua_pushinteger( L, u8g_DrawStr180( lud, args[0], args[1], s ) );
|
2015-02-01 00:50:14 +01:00
|
|
|
break;
|
|
|
|
case 3:
|
2015-02-04 23:57:13 +01:00
|
|
|
lua_pushinteger( L, u8g_DrawStr270( lud, args[0], args[1], s ) );
|
2015-02-01 00:50:14 +01:00
|
|
|
break;
|
|
|
|
default:
|
2015-02-04 23:57:13 +01:00
|
|
|
lua_pushinteger( L, u8g_DrawStr( lud, args[0], args[1], s ) );
|
2015-02-01 00:50:14 +01:00
|
|
|
break;
|
|
|
|
}
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
|
|
|
|
// Lua: pix_len = u8g.drawStr( self, x, y, string )
|
|
|
|
static int lu8g_drawStr( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
return lu8g_generic_drawStr( L, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: pix_len = u8g.drawStr90( self, x, y, string )
|
|
|
|
static int lu8g_drawStr90( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
return lu8g_generic_drawStr( L, 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: pix_len = u8g.drawStr180( self, x, y, string )
|
|
|
|
static int lu8g_drawStr180( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
return lu8g_generic_drawStr( L, 2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: pix_len = u8g.drawStr270( self, x, y, string )
|
|
|
|
static int lu8g_drawStr270( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
return lu8g_generic_drawStr( L, 3 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawLine( self, x1, y1, x2, y2 )
|
|
|
|
static int lu8g_drawLine( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[4];
|
|
|
|
lu8g_get_int_args( L, 2, 4, args );
|
2015-02-01 00:50:14 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_DrawLine( lud, args[0], args[1], args[2], args[3] );
|
2015-02-01 00:50:14 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawTriangle( self, x0, y0, x1, y1, x2, y2 )
|
|
|
|
static int lu8g_drawTriangle( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[6];
|
|
|
|
lu8g_get_int_args( L, 2, 6, args );
|
2015-02-01 00:50:14 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_DrawTriangle( lud, args[0], args[1], args[2], args[3], args[4], args[5] );
|
2015-02-01 00:50:14 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Lua: u8g.drawBox( self, x, y, width, height )
|
|
|
|
static int lu8g_drawBox( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[4];
|
|
|
|
lu8g_get_int_args( L, 2, 4, args );
|
2015-02-01 00:50:14 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_DrawBox( lud, args[0], args[1], args[2], args[3] );
|
2015-02-01 00:50:14 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawRBox( self, x, y, width, height, radius )
|
|
|
|
static int lu8g_drawRBox( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
2015-01-29 23:47:13 +01:00
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[5];
|
|
|
|
lu8g_get_int_args( L, 2, 5, args );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_DrawRBox( lud, args[0], args[1], args[2], args[3], args[4] );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawFrame( self, x, y, width, height )
|
|
|
|
static int lu8g_drawFrame( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[4];
|
|
|
|
lu8g_get_int_args( L, 2, 4, args );
|
2015-02-01 00:50:14 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_DrawFrame( lud, args[0], args[1], args[2], args[3] );
|
2015-02-01 00:50:14 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawRFrame( self, x, y, width, height, radius )
|
|
|
|
static int lu8g_drawRFrame( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[5];
|
|
|
|
lu8g_get_int_args( L, 2, 5, args );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_DrawRFrame( lud, args[0], args[1], args[2], args[3], args[4] );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawDisc( self, x0, y0, rad, opt = U8G_DRAW_ALL )
|
|
|
|
static int lu8g_drawDisc( lua_State *L )
|
2015-01-29 23:47:13 +01:00
|
|
|
{
|
2015-01-31 23:08:06 +01:00
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
2015-01-29 23:47:13 +01:00
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[3];
|
|
|
|
lu8g_get_int_args( L, 2, 3, args );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t opt = luaL_optinteger( L, (1+3) + 1, U8G_DRAW_ALL );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_DrawDisc( lud, args[0], args[1], args[2], opt );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
2015-01-29 23:47:13 +01:00
|
|
|
}
|
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Lua: u8g.drawCircle( self, x0, y0, rad, opt = U8G_DRAW_ALL )
|
|
|
|
static int lu8g_drawCircle( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t args[3];
|
|
|
|
lu8g_get_int_args( L, 2, 3, args );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-02-03 00:29:11 +01:00
|
|
|
u8g_uint_t opt = luaL_optinteger( L, (1+3) + 1, U8G_DRAW_ALL );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_DrawCircle( lud, args[0], args[1], args[2], opt );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-08 21:21:26 +01:00
|
|
|
// Lua: u8g.drawEllipse( self, x0, y0, rx, ry, opt = U8G_DRAW_ALL )
|
|
|
|
static int lu8g_drawEllipse( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_uint_t args[4];
|
|
|
|
lu8g_get_int_args( L, 2, 4, args );
|
|
|
|
|
|
|
|
u8g_uint_t opt = luaL_optinteger( L, (1+4) + 1, U8G_DRAW_ALL );
|
|
|
|
|
|
|
|
u8g_DrawEllipse( lud, args[0], args[1], args[2], args[3], opt );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawFilledEllipse( self, x0, y0, rx, ry, opt = U8G_DRAW_ALL )
|
|
|
|
static int lu8g_drawFilledEllipse( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_uint_t args[4];
|
|
|
|
lu8g_get_int_args( L, 2, 4, args );
|
|
|
|
|
|
|
|
u8g_uint_t opt = luaL_optinteger( L, (1+4) + 1, U8G_DRAW_ALL );
|
|
|
|
|
|
|
|
u8g_DrawFilledEllipse( lud, args[0], args[1], args[2], args[3], opt );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawPixel( self, x, y )
|
|
|
|
static int lu8g_drawPixel( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_uint_t args[2];
|
|
|
|
lu8g_get_int_args( L, 2, 2, args );
|
|
|
|
|
|
|
|
u8g_DrawPixel( lud, args[0], args[1] );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawHLine( self, x, y, width )
|
|
|
|
static int lu8g_drawHLine( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_uint_t args[3];
|
|
|
|
lu8g_get_int_args( L, 2, 3, args );
|
|
|
|
|
|
|
|
u8g_DrawHLine( lud, args[0], args[1], args[2] );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.drawVLine( self, x, y, width )
|
|
|
|
static int lu8g_drawVLine( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_uint_t args[3];
|
|
|
|
lu8g_get_int_args( L, 2, 3, args );
|
|
|
|
|
|
|
|
u8g_DrawVLine( lud, args[0], args[1], args[2] );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-08 17:17:04 +01:00
|
|
|
// Lua: u8g.setScale2x2( self )
|
|
|
|
static int lu8g_setScale2x2( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetScale2x2( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.undoScale( self )
|
|
|
|
static int lu8g_undoScale( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_UndoScale( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Lua: u8g.firstPage( self )
|
|
|
|
static int lu8g_firstPage( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_FirstPage( lud );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: bool = u8g.nextPage( self )
|
|
|
|
static int lu8g_nextPage( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
2015-02-01 00:50:14 +01:00
|
|
|
if ((lud = get_lud( L )) == NULL)
|
2015-01-31 23:08:06 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
lua_pushboolean( L, u8g_NextPage( lud ) );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2015-01-31 01:21:51 +01:00
|
|
|
|
2015-02-08 17:59:09 +01:00
|
|
|
// Lua: u8g.sleepOn( self )
|
|
|
|
static int lu8g_sleepOn( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SleepOn( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.sleepOff( self )
|
|
|
|
static int lu8g_sleepOff( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SleepOff( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.setRot90( self )
|
|
|
|
static int lu8g_setRot90( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetRot90( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.setRot180( self )
|
|
|
|
static int lu8g_setRot180( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetRot180( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.setRot270( self )
|
|
|
|
static int lu8g_setRot270( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_SetRot270( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: u8g.undoRotation( self )
|
|
|
|
static int lu8g_undoRotation( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8g_UndoRotation( lud );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: width = u8g.getWidth( self )
|
|
|
|
static int lu8g_getWidth( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
lua_pushinteger( L, u8g_GetWidth( lud ) );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lua: height = u8g.getHeight( self )
|
|
|
|
static int lu8g_getHeight( lua_State *L )
|
|
|
|
{
|
|
|
|
lu8g_userdata_t *lud;
|
|
|
|
|
|
|
|
if ((lud = get_lud( L )) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
lua_pushinteger( L, u8g_GetHeight( lud ) );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-01-31 01:21:51 +01:00
|
|
|
// ------------------------------------------------------------
|
|
|
|
// comm functions
|
|
|
|
//
|
|
|
|
#define I2C_CMD_MODE 0x000
|
|
|
|
#define I2C_DATA_MODE 0x040
|
|
|
|
|
|
|
|
#define ESP_I2C_ID 0
|
|
|
|
|
|
|
|
|
|
|
|
static uint8_t do_i2c_start(uint8_t id, uint8_t sla)
|
|
|
|
{
|
|
|
|
platform_i2c_send_start( id );
|
|
|
|
|
|
|
|
// ignore return value -> tolerate missing ACK
|
|
|
|
platform_i2c_send_address( id, sla, PLATFORM_I2C_DIRECTION_TRANSMITTER );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint8_t u8g_com_esp8266_ssd_start_sequence(u8g_t *u8g)
|
|
|
|
{
|
|
|
|
/* are we requested to set the a0 state? */
|
|
|
|
if ( u8g->pin_list[U8G_PI_SET_A0] == 0 )
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* setup bus, might be a repeated start */
|
2015-02-04 23:57:13 +01:00
|
|
|
if ( do_i2c_start( ESP_I2C_ID, u8g->i2c_addr ) == 0 )
|
2015-01-31 01:21:51 +01:00
|
|
|
return 0;
|
|
|
|
if ( u8g->pin_list[U8G_PI_A0_STATE] == 0 )
|
|
|
|
{
|
|
|
|
// ignore return value -> tolerate missing ACK
|
2015-01-31 23:08:06 +01:00
|
|
|
if ( platform_i2c_send_byte( ESP_I2C_ID, I2C_CMD_MODE ) == 0 )
|
|
|
|
; //return 0;
|
2015-01-31 01:21:51 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
platform_i2c_send_byte( ESP_I2C_ID, I2C_DATA_MODE );
|
|
|
|
}
|
|
|
|
|
|
|
|
u8g->pin_list[U8G_PI_SET_A0] = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t u8g_com_esp8266_ssd_i2c_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr)
|
|
|
|
{
|
|
|
|
switch(msg)
|
|
|
|
{
|
|
|
|
case U8G_COM_MSG_INIT:
|
|
|
|
// we assume that the i2c bus was already initialized
|
|
|
|
//u8g_i2c_init(u8g->pin_list[U8G_PI_I2C_OPTION]);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case U8G_COM_MSG_STOP:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case U8G_COM_MSG_RESET:
|
|
|
|
/* Currently disabled, but it could be enable. Previous restrictions have been removed */
|
|
|
|
/* u8g_com_arduino_digital_write(u8g, U8G_PI_RESET, arg_val); */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case U8G_COM_MSG_CHIP_SELECT:
|
|
|
|
u8g->pin_list[U8G_PI_A0_STATE] = 0;
|
|
|
|
u8g->pin_list[U8G_PI_SET_A0] = 1; /* force a0 to set again, also forces start condition */
|
|
|
|
if ( arg_val == 0 )
|
|
|
|
{
|
|
|
|
/* disable chip, send stop condition */
|
|
|
|
platform_i2c_send_stop( ESP_I2C_ID );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* enable, do nothing: any byte writing will trigger the i2c start */
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case U8G_COM_MSG_WRITE_BYTE:
|
|
|
|
//u8g->pin_list[U8G_PI_SET_A0] = 1;
|
|
|
|
if ( u8g_com_esp8266_ssd_start_sequence(u8g) == 0 )
|
|
|
|
return platform_i2c_stop( ESP_I2C_ID ), 0;
|
2015-01-31 23:08:06 +01:00
|
|
|
// ignore return value -> tolerate missing ACK
|
2015-01-31 01:21:51 +01:00
|
|
|
if ( platform_i2c_send_byte( ESP_I2C_ID, arg_val) == 0 )
|
2015-01-31 23:08:06 +01:00
|
|
|
; //return platform_i2c_send_stop( ESP_I2C_ID ), 0;
|
2015-01-31 01:21:51 +01:00
|
|
|
// platform_i2c_send_stop( ESP_I2C_ID );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case U8G_COM_MSG_WRITE_SEQ:
|
|
|
|
//u8g->pin_list[U8G_PI_SET_A0] = 1;
|
|
|
|
if ( u8g_com_esp8266_ssd_start_sequence(u8g) == 0 )
|
|
|
|
return platform_i2c_send_stop( ESP_I2C_ID ), 0;
|
|
|
|
{
|
|
|
|
register uint8_t *ptr = arg_ptr;
|
|
|
|
while( arg_val > 0 )
|
|
|
|
{
|
|
|
|
// ignore return value -> tolerate missing ACK
|
|
|
|
if ( platform_i2c_send_byte( ESP_I2C_ID, *ptr++) == 0 )
|
|
|
|
; //return platform_i2c_send_stop( ESP_I2C_ID ), 0;
|
|
|
|
arg_val--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// platform_i2c_send_stop( ESP_I2C_ID );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case U8G_COM_MSG_WRITE_SEQ_P:
|
|
|
|
//u8g->pin_list[U8G_PI_SET_A0] = 1;
|
|
|
|
if ( u8g_com_esp8266_ssd_start_sequence(u8g) == 0 )
|
|
|
|
return platform_i2c_send_stop( ESP_I2C_ID ), 0;
|
|
|
|
{
|
|
|
|
register uint8_t *ptr = arg_ptr;
|
|
|
|
while( arg_val > 0 )
|
|
|
|
{
|
|
|
|
// ignore return value -> tolerate missing ACK
|
|
|
|
if ( platform_i2c_send_byte( ESP_I2C_ID, u8g_pgm_read(ptr) ) == 0 )
|
|
|
|
; //return 0;
|
|
|
|
ptr++;
|
|
|
|
arg_val--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// platform_i2c_send_stop( ESP_I2C_ID );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case U8G_COM_MSG_ADDRESS: /* define cmd (arg_val = 0) or data mode (arg_val = 1) */
|
|
|
|
u8g->pin_list[U8G_PI_A0_STATE] = arg_val;
|
|
|
|
u8g->pin_list[U8G_PI_SET_A0] = 1; /* force a0 to set again */
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// device constructors
|
|
|
|
|
|
|
|
// Lua: speed = u8g.ssd1306_128x64_i2c( i2c_addr )
|
|
|
|
static int lu8g_ssd1306_128x64_i2c( lua_State *L )
|
|
|
|
{
|
|
|
|
unsigned addr = luaL_checkinteger( L, 1 );
|
|
|
|
|
|
|
|
if (addr == 0)
|
|
|
|
return luaL_error( L, "i2c address required" );
|
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
lu8g_userdata_t *lud = (lu8g_userdata_t *) lua_newuserdata( L, sizeof( lu8g_userdata_t ) );
|
2015-01-31 01:21:51 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
lud->i2c_addr = (uint8_t)addr;
|
2015-01-31 01:21:51 +01:00
|
|
|
|
2015-02-04 23:57:13 +01:00
|
|
|
u8g_InitI2C( lud, &u8g_dev_ssd1306_128x64_i2c, U8G_I2C_OPT_NONE);
|
2015-01-31 01:21:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
// set its metatable
|
|
|
|
luaL_getmetatable(L, "u8g.display");
|
|
|
|
lua_setmetatable(L, -2);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 23:47:13 +01:00
|
|
|
// Module function map
|
|
|
|
#define MIN_OPT_LEVEL 2
|
|
|
|
#include "lrodefs.h"
|
|
|
|
|
2015-01-31 01:21:51 +01:00
|
|
|
static const LUA_REG_TYPE lu8g_display_map[] =
|
2015-01-29 23:47:13 +01:00
|
|
|
{
|
2015-02-08 21:41:02 +01:00
|
|
|
{ LSTRKEY( "begin" ), LFUNCVAL( lu8g_begin ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "setFont" ), LFUNCVAL( lu8g_setFont ) },
|
2015-02-08 21:21:26 +01:00
|
|
|
{ LSTRKEY( "setFontRefHeightAll" ), LFUNCVAL( lu8g_setFontRefHeightAll ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "setFontRefHeightExtendedText" ), LFUNCVAL( lu8g_setFontRefHeightExtendedText ) },
|
2015-02-08 21:21:26 +01:00
|
|
|
{ LSTRKEY( "setFontRefHeightText" ), LFUNCVAL( lu8g_setFontRefHeightText ) },
|
|
|
|
{ LSTRKEY( "setDefaultBackgroundColor" ), LFUNCVAL( lu8g_setDefaultBackgroundColor ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "setDefaultForegroundColor" ), LFUNCVAL( lu8g_setDefaultForegroundColor ) },
|
2015-02-08 21:21:26 +01:00
|
|
|
{ LSTRKEY( "setFontPosBaseline" ), LFUNCVAL( lu8g_setFontPosBaseline ) },
|
|
|
|
{ LSTRKEY( "setFontPosBottom" ), LFUNCVAL( lu8g_setFontPosBottom ) },
|
|
|
|
{ LSTRKEY( "setFontPosCenter" ), LFUNCVAL( lu8g_setFontPosCenter ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "setFontPosTop" ), LFUNCVAL( lu8g_setFontPosTop ) },
|
2015-02-08 21:21:26 +01:00
|
|
|
{ LSTRKEY( "getFontAscent" ), LFUNCVAL( lu8g_getFontAscent ) },
|
|
|
|
{ LSTRKEY( "getFontDescent" ), LFUNCVAL( lu8g_getFontDescent ) },
|
|
|
|
{ LSTRKEY( "getFontLineSpacing" ), LFUNCVAL( lu8g_getFontLineSpacing ) },
|
|
|
|
{ LSTRKEY( "getMode" ), LFUNCVAL( lu8g_getMode ) },
|
|
|
|
{ LSTRKEY( "setColorIndex" ), LFUNCVAL( lu8g_setColorIndex ) },
|
|
|
|
{ LSTRKEY( "getColorIndex" ), LFUNCVAL( lu8g_getColorIndex ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "drawStr" ), LFUNCVAL( lu8g_drawStr ) },
|
2015-02-01 00:50:14 +01:00
|
|
|
{ LSTRKEY( "drawStr90" ), LFUNCVAL( lu8g_drawStr90 ) },
|
|
|
|
{ LSTRKEY( "drawStr180" ), LFUNCVAL( lu8g_drawStr180 ) },
|
|
|
|
{ LSTRKEY( "drawStr270" ), LFUNCVAL( lu8g_drawStr270 ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "drawBox" ), LFUNCVAL( lu8g_drawBox ) },
|
2015-02-01 00:50:14 +01:00
|
|
|
{ LSTRKEY( "drawLine" ), LFUNCVAL( lu8g_drawLine ) },
|
|
|
|
{ LSTRKEY( "drawTriangle" ), LFUNCVAL( lu8g_drawTriangle ) },
|
|
|
|
{ LSTRKEY( "drawRBox" ), LFUNCVAL( lu8g_drawRBox ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "drawFrame" ), LFUNCVAL( lu8g_drawFrame ) },
|
2015-02-01 00:50:14 +01:00
|
|
|
{ LSTRKEY( "drawRFrame" ), LFUNCVAL( lu8g_drawRFrame ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "drawDisc" ), LFUNCVAL( lu8g_drawDisc ) },
|
|
|
|
{ LSTRKEY( "drawCircle" ), LFUNCVAL( lu8g_drawCircle ) },
|
2015-02-08 21:21:26 +01:00
|
|
|
{ LSTRKEY( "drawEllipse" ), LFUNCVAL( lu8g_drawEllipse ) },
|
|
|
|
{ LSTRKEY( "drawFilledEllipse" ), LFUNCVAL( lu8g_drawFilledEllipse ) },
|
|
|
|
{ LSTRKEY( "drawPixel" ), LFUNCVAL( lu8g_drawPixel ) },
|
|
|
|
{ LSTRKEY( "drawHLine" ), LFUNCVAL( lu8g_drawHLine ) },
|
|
|
|
{ LSTRKEY( "drawVLine" ), LFUNCVAL( lu8g_drawVLine ) },
|
2015-02-08 17:17:04 +01:00
|
|
|
{ LSTRKEY( "setScale2x2" ), LFUNCVAL( lu8g_setScale2x2 ) },
|
|
|
|
{ LSTRKEY( "undoScale" ), LFUNCVAL( lu8g_undoScale ) },
|
2015-01-31 23:08:06 +01:00
|
|
|
{ LSTRKEY( "firstPage" ), LFUNCVAL( lu8g_firstPage ) },
|
|
|
|
{ LSTRKEY( "nextPage" ), LFUNCVAL( lu8g_nextPage ) },
|
2015-02-08 17:59:09 +01:00
|
|
|
{ LSTRKEY( "sleepOn" ), LFUNCVAL( lu8g_sleepOn ) },
|
|
|
|
{ LSTRKEY( "sleepOff" ), LFUNCVAL( lu8g_sleepOff ) },
|
|
|
|
{ LSTRKEY( "setRot90" ), LFUNCVAL( lu8g_setRot90 ) },
|
|
|
|
{ LSTRKEY( "setRot180" ), LFUNCVAL( lu8g_setRot180 ) },
|
|
|
|
{ LSTRKEY( "setRot270" ), LFUNCVAL( lu8g_setRot270 ) },
|
|
|
|
{ LSTRKEY( "undoRotation" ), LFUNCVAL( lu8g_undoRotation ) },
|
|
|
|
{ LSTRKEY( "getWidth" ), LFUNCVAL( lu8g_getWidth ) },
|
|
|
|
{ LSTRKEY( "getHeight" ), LFUNCVAL( lu8g_getHeight ) },
|
2015-01-29 23:47:13 +01:00
|
|
|
#if LUA_OPTIMIZE_MEMORY > 0
|
2015-01-31 01:21:51 +01:00
|
|
|
{ LSTRKEY( "__index" ), LROVAL ( lu8g_display_map ) },
|
2015-01-29 23:47:13 +01:00
|
|
|
#endif
|
|
|
|
{ LNILKEY, LNILVAL }
|
|
|
|
};
|
|
|
|
|
2015-01-31 01:21:51 +01:00
|
|
|
const LUA_REG_TYPE lu8g_map[] =
|
2015-01-29 23:47:13 +01:00
|
|
|
{
|
2015-01-31 01:21:51 +01:00
|
|
|
{ LSTRKEY( "ssd1306_128x64_i2c" ), LFUNCVAL ( lu8g_ssd1306_128x64_i2c ) },
|
2015-01-29 23:47:13 +01:00
|
|
|
#if LUA_OPTIMIZE_MEMORY > 0
|
2015-02-04 00:08:39 +01:00
|
|
|
|
|
|
|
// Register fonts
|
|
|
|
#undef U8G_FONT_TABLE_ENTRY
|
|
|
|
#define U8G_FONT_TABLE_ENTRY(font) { LSTRKEY( #font ), LNUMVAL( __COUNTER__ ) },
|
|
|
|
U8G_FONT_TABLE
|
|
|
|
|
2015-02-08 21:21:26 +01:00
|
|
|
// Options for circle/ ellipse drwing
|
|
|
|
{ LSTRKEY( "DRAW_UPPER_RIGHT" ), LNUMVAL( U8G_DRAW_UPPER_RIGHT ) },
|
|
|
|
{ LSTRKEY( "DRAW_UPPER_LEFT" ), LNUMVAL( U8G_DRAW_UPPER_LEFT ) },
|
|
|
|
{ LSTRKEY( "DRAW_LOWER_RIGHT" ), LNUMVAL( U8G_DRAW_LOWER_RIGHT ) },
|
|
|
|
{ LSTRKEY( "DRAW_LOWER_LEFT" ), LNUMVAL( U8G_DRAW_LOWER_LEFT ) },
|
|
|
|
{ LSTRKEY( "DRAW_ALL" ), LNUMVAL( U8G_DRAW_ALL ) },
|
|
|
|
|
|
|
|
// Display modes
|
|
|
|
{ LSTRKEY( "MODE_BW" ), LNUMVAL( U8G_MODE_BW ) },
|
|
|
|
{ LSTRKEY( "MODE_GRAY2BIT" ), LNUMVAL( U8G_MODE_GRAY2BIT ) },
|
|
|
|
|
2015-01-31 01:21:51 +01:00
|
|
|
{ LSTRKEY( "__metatable" ), LROVAL( lu8g_map ) },
|
2015-01-29 23:47:13 +01:00
|
|
|
#endif
|
|
|
|
{ LNILKEY, LNILVAL }
|
|
|
|
};
|
|
|
|
|
|
|
|
LUALIB_API int ICACHE_FLASH_ATTR luaopen_u8g( lua_State *L )
|
|
|
|
{
|
|
|
|
#if LUA_OPTIMIZE_MEMORY > 0
|
2015-01-31 01:21:51 +01:00
|
|
|
luaL_rometatable(L, "u8g.display", (void *)lu8g_display_map); // create metatable
|
2015-01-29 23:47:13 +01:00
|
|
|
return 0;
|
|
|
|
#else // #if LUA_OPTIMIZE_MEMORY > 0
|
|
|
|
int n;
|
2015-01-31 01:21:51 +01:00
|
|
|
luaL_register( L, AUXLIB_U8G, lu8g_map );
|
2015-01-29 23:47:13 +01:00
|
|
|
|
|
|
|
// Set it as its own metatable
|
|
|
|
lua_pushvalue( L, -1 );
|
|
|
|
lua_setmetatable( L, -2 );
|
|
|
|
|
|
|
|
// Module constants
|
2015-02-04 00:08:39 +01:00
|
|
|
|
2015-01-31 23:08:06 +01:00
|
|
|
// Register fonts
|
2015-02-04 00:08:39 +01:00
|
|
|
#undef U8G_FONT_TABLE_ENTRY
|
|
|
|
#define U8G_FONT_TABLE_ENTRY(font) MOD_REG_NUMBER( L, #font, __COUNTER__ );
|
|
|
|
U8G_FONT_TABLE
|
2015-01-29 23:47:13 +01:00
|
|
|
|
2015-02-08 21:21:26 +01:00
|
|
|
// Options for circle/ ellipse drawing
|
|
|
|
MOD_REG_NUMBER( L, "DRAW_UPPER_RIGHT", U8G_DRAW_UPPER_RIGHT );
|
|
|
|
MOD_REG_NUMBER( L, "DRAW_UPPER_LEFT", U8G_DRAW_UPPER_RIGHT );
|
|
|
|
MOD_REG_NUMBER( L, "DRAW_LOWER_RIGHT", U8G_DRAW_UPPER_RIGHT );
|
|
|
|
MOD_REG_NUMBER( L, "DRAW_LOWER_LEFT", U8G_DRAW_UPPER_RIGHT );
|
|
|
|
|
|
|
|
// Display modes
|
|
|
|
MOD_REG_NUMBER( L, "MODE_BW", U8G_MODE_BW );
|
|
|
|
MOD_REG_NUMBER( L, "MODE_GRAY2BIT", U8G_MODE_BW );
|
|
|
|
|
2015-01-29 23:47:13 +01:00
|
|
|
// create metatable
|
|
|
|
luaL_newmetatable(L, "u8g.display");
|
|
|
|
// metatable.__index = metatable
|
|
|
|
lua_pushliteral(L, "__index");
|
|
|
|
lua_pushvalue(L,-2);
|
|
|
|
lua_rawset(L,-3);
|
|
|
|
// Setup the methods inside metatable
|
|
|
|
luaL_register( L, NULL, u8g_display_map );
|
2015-01-31 23:08:06 +01:00
|
|
|
|
2015-01-29 23:47:13 +01:00
|
|
|
return 1;
|
|
|
|
#endif // #if LUA_OPTIMIZE_MEMORY > 0
|
|
|
|
}
|