New Lua examples - Mark Gossage patch #1295168
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7471 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
39119b2d07
commit
ef13b64b7e
12 changed files with 309 additions and 0 deletions
19
SWIG/Examples/lua/constants/Makefile
Normal file
19
SWIG/Examples/lua/constants/Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
TOP = ../..
|
||||
SWIG = $(TOP)/../swig
|
||||
CXXSRCS =
|
||||
TARGET = example
|
||||
INTERFACE = example.i
|
||||
LIBS =
|
||||
|
||||
all::
|
||||
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
|
||||
TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' lua
|
||||
|
||||
static::
|
||||
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
|
||||
TARGET='mylua' INTERFACE='$(INTERFACE)' lua_static
|
||||
|
||||
clean::
|
||||
$(MAKE) -f $(TOP)/Makefile lua_clean
|
||||
|
||||
check: all
|
||||
27
SWIG/Examples/lua/constants/example.i
Normal file
27
SWIG/Examples/lua/constants/example.i
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* File : example.i */
|
||||
%module example
|
||||
|
||||
/* A few preprocessor macros */
|
||||
|
||||
#define ICONST 42
|
||||
#define FCONST 2.1828
|
||||
#define CCONST 'x'
|
||||
#define CCONST2 '\n'
|
||||
#define SCONST "Hello World"
|
||||
#define SCONST2 "\"Hello World\""
|
||||
|
||||
/* This should work just fine */
|
||||
#define EXPR ICONST + 3*(FCONST)
|
||||
|
||||
/* This shouldn't do anything */
|
||||
#define EXTERN extern
|
||||
|
||||
/* Neither should this (BAR isn't defined) */
|
||||
#define FOO (ICONST + BAR)
|
||||
|
||||
/* The following directives also produce constants */
|
||||
|
||||
%constant int iconst = 37;
|
||||
%constant double fconst = 3.14;
|
||||
|
||||
|
||||
35
SWIG/Examples/lua/constants/runme.lua
Normal file
35
SWIG/Examples/lua/constants/runme.lua
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
-- file: example.lua
|
||||
|
||||
---- importing ----
|
||||
if string.sub(_VERSION,1,7)=='Lua 5.0' then
|
||||
-- lua5.0 doesnt have a nice way to do this
|
||||
lib=loadlib('example.dll','Example_Init') or loadlib('example.so','Example_Init')
|
||||
assert(lib)()
|
||||
else
|
||||
-- lua 5.1 does
|
||||
require('example')
|
||||
end
|
||||
|
||||
print("ICONST = "..example.ICONST.." (should be 42)")
|
||||
print("FCONST = "..example.FCONST.." (should be 2.1828)")
|
||||
print("CCONST = "..example.CCONST.." (should be 'x')")
|
||||
print("CCONST2 = "..example.CCONST2.." (this should be on a new line)")
|
||||
print("SCONST = "..example.SCONST.." (should be 'Hello World')")
|
||||
print("SCONST2 = "..example.SCONST2.." (should be '\"Hello World\"')")
|
||||
print("EXPR = "..example.EXPR.." (should be 48.5484)")
|
||||
print("iconst = "..example.iconst.." (should be 37)")
|
||||
print("fconst = "..example.fconst.." (should be 3.14)")
|
||||
|
||||
-- helper to check that a fn failed
|
||||
function checkfail(fn)
|
||||
if pcall(fn)==true then
|
||||
print("that shouldn't happen, it worked")
|
||||
else
|
||||
print("function failed as expected")
|
||||
end
|
||||
end
|
||||
|
||||
-- these should fail
|
||||
-- example.EXTERN is a nil value, so concatentatin will make it fail
|
||||
checkfail(function() print("EXTERN = "..example.EXTERN) end)
|
||||
checkfail(function() print("FOO = "..example.FOO) end)
|
||||
Loading…
Add table
Add a link
Reference in a new issue