Book Image

Integrate Lua with C++

By : Wenhuan Li
Book Image

Integrate Lua with C++

By: Wenhuan Li

Overview of this book

C++ is a popular choice in the developer community for building complex and large-scale performant applications and systems. Often a need arises to extend the system at runtime, without recompiling the whole C++ program. Using a scripting language like Lua can help achieve this goal efficiently. Integrate Lua to C++ is a comprehensive guide to integrating Lua to C++ and will enable you to achieve the goal of extending C++ programs at runtime. You’ll learn, in sequence, how to get and compile the Lua library, the Lua programming language, calling Lua code from C++, and calling C++ code from Lua. In each topic, you’ll practice with code examples, and learn the in-depth mechanisms for smooth working. Throughout the book, the latter examples build on the earlier ones while also acting as a standalone. You’ll learn to implement Lua executor and Lua binding generator, which you can use in your projects directly with further customizations. By the end of this book, you’ll have mastered integrating Lua into C++ and using Lua in your C++ project efficiently, gained the skills to extend your applications at runtime, and achieved dynamic and adaptable C++ development.
Table of Contents (18 chapters)
Free Chapter
1
Part 1 – Lua Basics
4
Part 2 – Calling Lua from C++
8
Part 3 – Calling C++ from Lua
12
Part 4 – Advanced Topics

To get the most out of this book

This book will build a Lua executor. Each chapter will focus on one area and add one feature group to the executor. The exercises at the end of the chapter, if provided, are a crucial part to prepare for the next chapter. For the more experienced readers among you, this is why some code might not get implemented optimally in the initial chapters. This will help you stay focused on the topics at hand.

This book assumes that you know C++ and are willing to learn about Lua. If you have no intention of being a Lua programmer, you only need to focus on the related Lua concepts rather than Lua coding.

Because this is not a dedicated book to teach either of the programming languages, when you see the usage of a certain API that you are not familiar with, you can get more information from a Lua or a C++ reference manual. You can enrich your learning journey by frequently bridging your knowledge gaps through online research.

Depending on your style of learning, you can either type all the examples yourself to be more hands-on or download the source code from GitHub, quickly skipping through the chapters and reverting to a specific chapter as needed when you start to implement your own project.

If you are using the digital version of this book, we advise you to type the code yourself or access the code from the book’s GitHub repository (a link is available in the next section). Doing so will help you avoid any potential errors related to the copying and pasting of code.