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

Creating Lua variables from C

Communicating with Lua is one way. In addition to reading Lua variables from C, you can also create Lua variables from C. The process for doing so is simple: you push a value onto the stack, then tell the Lua runtime to assign that value to a variable by name.

To create a variable, use the lua_setglobal (lua_State*, const char*) function. This function returns nothing. Its first argument is the Lua state to work on, the second argument is the name of the global variable to assign. This function will pop the top value off the stack and assign it to the name of the variable specified.

Let's take the example from the last section and reverse it. This time, the variables for class, attack, and defense are going to be created in C and printed out in Lua. The C code will push all values onto the stack, then use lua_setglobal to assign them to variables...

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 $15.99/month. Cancel anytime}