Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Lua Quick Start Guide

You're reading from  Lua Quick Start Guide

Product type Book
Published in Jul 2018
Publisher Packt
ISBN-13 9781789343229
Pages 202 pages
Edition 1st Edition
Languages
Author (1):
Gabor Szauer Gabor Szauer
Profile icon Gabor Szauer

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 = 42
debug = 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 a cast<T> member function that will convert a given LuaRef value into whatever...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £13.99/month. Cancel anytime}