Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

LuaRef

Lua Bridge is not just a one-way street, after all, it is a bridge. To read Lua values in C, Lua Bridge provides the LuaRef class. A LuaRef variable can hold any value that a Lua variable can. The getGlobal(lua_State*, const char*) function will return any global Lua variable as a LuaRef value. Consider the following Lua code:

foo = "Hello, world"bar = 42debug = function()    print (foo .. " & " .. bar)end

These variables can be retrieved in C or C++ by using the getGlobal function. A LuaRef object can even be called as a function, if it is assigned to one. The following code demonstrates this:

LuaRef foo = getGlobal(L, "foo");LuaRef bar = getGlobal(L, "bar");LuaRef debug = getGlobal(L, "debug");bar = 57;debug();

LuaRef variables have ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content