Temptationx / ofxLua

(maintained) a lua scripting interface & bindings for openFrameworks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ofxLua

a Lua instance addon

Copyright (c) Dan Wilcox 2011-2017

BSD Simplified License.

For information on usage and redistribution, and for a DISCLAIMER OF ALL WARRANTIES, see the file, "LICENSE.txt," in this distribution.

See https://github.com/danomatika/ofxLua and the Openframeworks Forum post for documentation

If you want to use Lua + openFrameworks without building your own app, check out loaf: danomatika.com/code/loaf.

Description

ofxLua is an Open Frameworks addon for running a Lua embedded scripting interpreter within an OpenFrameworks application. Using the SWIG (Simple Wrapper and Interface Generator) tool, C++ functions and classes can be bound to the Lua api allowing them to be called within a Lua script. This is useful in separating the upper level logic from the lower level application and is utilized in numerous video games and applications.

In addition, ofxLua provides bindings for the OpenFrameworks API.

Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.

SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. It is used to generate the C++ bindings which wrap the OpenFrameworks API for Lua.

(Optional) LuaJIT is a Just-In-Time Compiler (JIT) for the Lua programming language. It implements the Lua API but is optimized for performance over the standard Lua distribution. It is recommended to use LuaJIT when speed is a concern and it is enabled on embedded Linux in addon_config.mk for this reason.

OpenFrameworks is a cross platform open source toolkit for creative coding in C++

Why not Javascript?

Those coming from a Javascript background may ask "Why Lua? Why not Javascript? I like Javascript!"

Lua has a long history of use as a embedded scripting language and, as such, is both smaller & much easier to embed on pretty much every platform. The compiled language adds less than 500kb to your app binary versus many Mbs for Javascript or Python. Speed-wise, the base Lua interpreter is oftentimes faster than either language due to it's simplicity and using LuaJIT may add a speed increase of many orders of magnitude. As an embedded language, Lua makes it relatively easy to bind C/C++ functions & objects to it's scripting environment.

For these reasons, Lua has been used for game development for many years:

Those coming from an embedded computing or game development background are probably familiar with Lua while those coming from a design and/or web development are used to Javascript. In many ways, both languages share a number of similarities and the rest is due to simple syntax or design differences. When it comes down to it, no one language or environment is better than another, they just have different focuses and design backgrounds. Do not dismiss Lua because you are unfamiliar with it as not every nail needs the same hammer.

Lua is not scary, trust me :)

See:

Build Requirements

To use ofxLua, first you need to download and install OpenFrameworks. The examples are developed against the latest release version of OpenFrameworks on http://openframeworks.cc/download.

OF github repository

Currently, ofxLua is being developed on Mac OSX and has been tested on OSX, iOS, & Linux. Windows and Android should work but have not been tested.

Installation and Build

Place ofxLua within a folder in the apps folder of the OF dir tree:

openframeworks/addons/ofxLua

The easiest way to do this is via cloning with git:

cd openframeworks/addons/
git clone git://github.com/danomatika/ofxLua.git

You'll need to checkout the swig-openframeworks submodule as well using:

git submodule init
git submodule update

Which version to use?

The master branch of ofxLua will work with the current stable version of OpenFrameworks and can be considered relatively stable.

Previous versions are tagged using Semantic Versioning with the updates to newer versions of OpenFrameworks and Lua noted in the changelog, CHANGES.txt. You can select the tag in the Github "Current Branch" menu or clone and check it out using git.

If you want to use ofxLua with a previous version of OpenFrameworks, checkout the corresponding version tag after cloning:

git clone git://github.com/danomatika/ofxLua.git
cd ofxLua
git checkout 1.1.0

Dependencies

For embedded Linux (arm, Raspberry Pi, etc), LuaJIT is used for better performance. Make sure you have the luajit-5.1 development package installed.

Running the Example Projects

The example projects are in the luaExample & luaExampleIOS folders.

Project files for the examples are not included so you will need to generate the project files for your operating system and development environment using the OF ProjectGenerator which is included with the OpenFrameworks distribution.

To (re)generate project files for an existing project:

  • click the "Import" button in the ProjectGenerator
  • navigate the to base folder for the project ie. "luaExample"
  • click the "Update" button

If everything went Ok, you should now be able to open the generated project and build/run the example.

OSX

Open the Xcode project, select the "luaExample Debug" scheme, and hit "Run".

Linux

Open the Code::Blocks .cbp and hit F9 to build. Optionally, you can build the example with the Makefile.

To build and run it on the terminal:

make
make run

How to Create a New ofxLua Project

ProjectGenerator

Simply select ofxLua from the available addons in the ProjectGenerator before generating a new project.

Manual Method

To develop your own project based on ofxLua, simply copy an example project and rename it. You probably want to put it in your apps folder, for example, after copying:

openFrameworks/addons/ofxLua/example/ => openFrameworks/apps/myApps/example/

It must be 3 levels down in the openframeworks folder structure.

Then after renaming:

openFrameworks/apps/myApps/myLuaProject/

On Mac, rename the project in Xcode (do not rename the .xcodeproj file in Finder!): Long click on the project name in the project tree.

Adding ofxLua to an Existing Project

ProjectGenerator

Select ofxLua and other addons used by your project from the available addons in the ProjectGenerator, select the parent folder of your project, and set the exact name of the existing project in the text box. This will overwrite the existing project files with new ones that now include ofxLua.

Note: you will lose any custom settings you've added manually to your project.

Manual Method

If you want to add ofxLua to another project, you need to make sure you add the following src files:

openFrameworks/addons/ofxLua/src/ofxLua.h
openFrameworks/addons/ofxLua/src/ofxLua.cpp
openFrameworks/addons/ofxLua/src/ofxLuaFileWriter.h
openFrameworks/addons/ofxLua/src/ofxLuaFileWriter.cpp

and optionally

openFrameworks/addons/ofxLua/src/bindings/ofxLuaBindings.h
openFrameworks/addons/ofxLua/src/bindings/YOURPLATFORM/ofxLuaBindings.cpp

You also need to add the Lua library files in the libs directory:

openFrameworks/addons/ofxLua/libs/lua

For Xcode:

  • right click and create a new group "ofxLua"
  • drag ofxLua/src into "ofxLua"
  • drag ofxLua/libs into "ofxLua"
  • remove bindings files that do not match your platform aka remove src/bindings/desktop for iOS

On older Mac OSXs (pre 10.8), a header file which is included with the OS contains some macros which conflict with several lua macros. They can be renamed by setting this CFLAG:

-D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0

OF API Bindings

SWIG generated bindings for the OF API can be found in src/bindings. Currently it covers most of the api while leaving out base classes. More specific documentation may come at a future date, but for now check the example scripts on usage.

Basic documentation:

There is a main "of" module and functions, classes, constants, & enums are renamed:

  • function: ofBackground -> of.background
  • class: ofColor -> of.Color
  • constant: OF_LOG_VERBOSE -> of.LOG_VERBOSE
  • enum: ofShader::POSITION_ATTRIBUTE -> of.Shader.POSITION_ATTRIBUTE
  • begin & end: these are lua keywords, so functions with this name are renamed in the following classes:
    • ofFbo: beginFbo() & endFbo()
    • ofCamera: beginCamera() & endCamera()
    • ofMaterial: beginMaterial() & endMaterial()
    • ofShader: beginShader() & endShader()

Base classes, deprecations, variable arguments (...), ofThread, ofPtr, ofMutex, & ofScopedLock are ignored for now.

Functions that return a std::vector return a wrapped std::vector in Lua. As with Lua tables, indexes start at 1.

Math & String

The basic string and math functions are provided by built-in Lua libraries:

Other standard Lua libraries are: table, io, and os.

Comparing Key Values

OF uses integers for the key event values so comparisons can be made using character literals in C++:

if(key == 'f') {
    ofToggleFullscreen();
}
else if(key == OF_KEY_UP) {
    ofLog() << "up pressed";
}

Lua does not have character literals so 'f' is treated as a string. In order to do the same comparison, convert 'f' to a number using the string library string.byte function:

if key == string.byte("f") then
    of.toggleFullscreen()
elseif key == of.KEY_UP then
    print("up pressed")
end

Working with Class Instances

Calling class member functions requires using a : character -> image:draw(20, 100, 100, 100)

Calling class member variables requires using a . character -> print(image.width)

Mixing up : and . is probably the most common pitfall when coming from C++ to Lua:

-- create instance of a class
image = of.Image()
    
-- this will cause an error
image.load("helloworld.jpg") -- using . to call member function

-- this will work
image:load("helloworld.jpg") -- use a : instead

-- access class instance properties with a .
print("Image size: "..image.width.."x"..image.height)

Details

To see the detailed differences with the OF C++ API run the following:

grep DIFF swig/openFrameworks.i

To see work to be done on the bindings run:

grep TODO swig/openFrameworks.i

Classes

Simple Lua class support is provided by the class() function from the Lua Users wiki:

-- class declaration
MyClass = class()

-- constructor & attributes
function MyClass:__init(x, y)
   self.x = x
   self.y = y
   self.radius = 4
end

-- class function
function MyClass:draw()
    of.drawEllipse(self.x, self.y, self.radius, self.radius)
end

-- create instance & access attribute
myclass = MyClass(10, 10)
myclass.x = 100

-- calling a class function, note use of : for instance function instead of .
myclass:draw()

This implementation allows for inheritance and usage is as follows:

-- inherit first class and add an attribute
OtherClass = class(MyClass)
function OtherClass:__init(x, y, z)
    MyClass.__init(self, x, y) -- call super constructor
	self.z = z
end

-- create instance of derived class & access attributes
otherclass = OtherClass(10, 10, 5)
otherclass.x = 100
otherclass.z = 100

-- calling a class function, note use of : for instance function instead of .
otherclass:draw()

Making Your Own Bindings

SWIG Interface

Create a SWIG interface file (*.i) with includes headers for the functions and classes which you want to bind. You then run SWIG with this file to generate the *.cpp wrapper.

It could be as simple as the following:.

MyCode.h, your custom code:

#pragma once

#include "ofMain.h"

float myFunction(float aNumber) {
    return aNumber+1;
}

class MyCoolClass {
	public:
		
		MyCoolClass() {
		    myFloat = 0;
			myInt = 0;
			aString = "hello world";
		}
		MyCoolClass(float aNumber) {
		    myFloat = aNumber;
			myInt = (int) aNumber;
			aString = "foo bar";
		}
		
		// member function
		void doSomething() {
			ofLog() << "did something: " << aString;
		}
		
		// getter/setter
		void setInt(int newInt) {myInt = newInt;}
		int getInt() {return myInt;}
		
		// member variable, read/write
		string aString;

	protected:

        // some protected member variables, won't be wrapped
	    float myFloat;
		int myInt;
};

MyBindings.i, your custom SWIG interface file:

%module my
%{
    // include any needed headers here
	#include "MyCode.h"
%}

// include support for some common C++ STL types you might be using,
// see http://swig.org/Doc3.0/Library.html#Library_stl_cpp_library
%include <stl.i>
%include <std_string.i>
%include <std_vector.i>
%include <std_map.i>

// if you're using "string" instead of "std::string" (like the openFrameworks source code),
// you'll need this so swig will know that a "string" can be considered a "std::string"
typedef std::string string;

// include custom code you want to be wrapped,
// note the '%' instead of '#' as '%include' is a SWIG
// command to wrap code in the given header
%include "MyCode.h"

That's it, swig will handle the rest! Of course this is a simple example but there are lots more options for specific bindings settings such as generating properties from getters & setters, etc.

Generate .cpp Wrapper

Now call SWIG to generate your .cpp wrapper:

swig -c++ -lua -fcompact -fvirtual -I../../../libs/openFrameworks MyBindings.i

Make sure to add search paths to headers used by your code (aka the "-I" line in the command above).

If all went well, SWIG will have generated the MyBindings_wrap.cxx C++ file. Put this into your project's source directory and build it with your project.

Opening Your Lua Library

You will need to open your new Lua library provided by the SWIG-generated .cpp file in order to use it in your lua state.

SWIG creates a "luaopen" C function using your module name which, in this case, will be "luaopen_my". This function needs to be defined in C++ in order to be used, so add it to the top of the .cpp file where you initialize your ofxLua object:

// declare the module bindings
extern "C" {
    int luaopen_my(lua_State* L);
}

Then call this function after initing ofxLua:

lua.init(true);
luaopen_my(lua); // open bindings

Using Your Lua Library

If everything is working, you should be able to call your bindings in Lua using your new "my" module:

aNumber = my.myFunction(3.45)

-- class
coolClass = my.MyCoolClass() -- constructor
coolClass = my.MyCoolClass(1.23) -- constructor with float

-- note: use ':' not '.' to call class instance member functions
coolClass:doSomething()

-- call the setter function
coolClass:setInt(4)

-- properties are accessed with a '.'
coolClass.aString = "hello world"

See the SWIG interface file in swig and the SWIG and Lua documentation for more information. SWIG will handle most general cases for you, but there are plenty of details to get into if you want greater customization.

If you end up having lots of custom code to bind, it's recommended to create multiple SWIG interface files which are included into a single *.i using the %include command. Do not create separate files with the same module name, only set the module in the main file as SWIG is designed for 1 module per main interface.

Do not open issues or bug reports if the problem is in writing your own bindings as this is all handled by SWIG. Be sure to search online for similar errors with "swig" as part of your search. More likely than not, it's an issue with your bindings and not with ofxLua.

Debugging Symbols and Syntax

When writing bindings, it's often helpful to see what C++ symbols (classes, functions, etc) are being bound to Lua by SWIG. You have SWIG generate a list of language symbols it sees while processing using the -debug-lsymbols option. It's often helpful to pipe this into a file:

swig -c++ -lua -fcompact -fvirtual -I../../../libs/openFrameworks -debug-lsymbols MyBindings.i > my_symbols.txt

This file can also be used as the basis for generating a list of keywords for autocompletion. For instance, the scripts/lua_syntax.py script parses the SWIG symbol output format into a simple list of all available symbols in lua module. The following creates a text file listing the global symbols as well as per class symbols found in the "my" module from the my_symbol.txt file generated by SWIG:

ofxLua/scripts/lua_syntax.py my my_symbols.txt

This generates a my_syntax.txt which is easier to use than the base SWIG output.

Lua require

Lua's require command will import scripts but doesn't know about the OF data path, so it will fail when using a relative path since the working directory for an OF app is the executable directory by default:

YourApp/bin/data/scriptA.lua
YourApp/bin/data/scriptB.lua

scriptA.lua:

require "scriptB"

require will fail since the current working directory is not YourApp/bin/data.

The easiest fix for this is to change the current working directory of the app to the directory of the script which is calling require. Setting the changeDir argument to true when calling ofxLua::doScript() will change the directory for you:

lua.doScript("scriptA.lua"); // doesn't change path, require will fail

lua.doScript("scriptA.lua", true); // changes path to script's parent dir, require should work

This will not effect the OF data path.

Developing

You can help develop ofxLua on GitHub: https://github.com/danomatika/ofxLua

Create an account, clone or fork the repo, then request a push/merge.

If you find any bugs or suggestions please log them to GitHub as well.

Known Issues

ld: -pie error on iOS

If you get the following error after generating an iOS app:

ld: -pie can only be used when targeting iOS 4.2 or later

change the deployment target in your project settings under the General Tab to something higher than 4.2, say 7.0.

About

(maintained) a lua scripting interface & bindings for openFrameworks

License:Other


Languages

Language:C++ 93.5%Language:C 6.0%Language:Lua 0.4%Language:Objective-C++ 0.0%Language:Makefile 0.0%Language:Python 0.0%Language:Shell 0.0%