Beginning Lua Programming
Buy Rights Online Buy Rights

Rights Contact Login For More Details

More About This Title Beginning Lua Programming

English

This book is for students and professionals who are intrigued by the prospect of learning and using a powerful language that provides a rich infrastructure for creating programs. No programming knowledge is necessary to benefit from this book except for the section on Lua bindings, which requires some familiarity with the C programming language. A certain comfort level with command-line operations, text editing, and directory structures is assumed.

You need surprisingly little in the way of computer resources to learn and use Lua. This book focuses on Windows and Unix-like (including Linux) systems, but any operating system that supports a command shell should be suitable. You'll need a text editor to prepare and save Lua scripts.

If you choose to extend Lua with libraries written in a programming language like C, you'll need a suitable software development kit. Many of these kits are freely available on the Internet but, unlike Lua, they can consume prodigious amounts of disk space and memory.

English

Between his first programs submitted to a Burroughs 5500 on Hollerith punch cards and his latest programs tapped into a Palm Pilot, Kurt Jung has been the principal programmer on various projects ranging from airline yield management to state machine–driven workflow.

Aaron Brown began programming in elementary school on a Commodore 64. He plays various musical instruments and speaks Esperanto.

English

Acknowledgments.

Introduction.

Chapter1: Getting Situated.

Choosing How to Install Lua.

Finding Your System’s Shell.

Dealing with Tarballs and Zip Files.

Compiling Lua.

Binary Packages.

Additional Tools.

Chapter2: First Steps.

Numbers and Arithmetic Operations: Basic Interpreter Usage.

Interpreter Know-How.

Numerical Gotchas.

Variables and Assignment.

Strings.

Relational Operators and Boolean Values.

The nil Value.

Boolean Operators.

The Concatenation, Length, and Modulo Operators.

Automatic Conversion of Operands.

Precedence and Associativity.

Variables and Values.

Comments.

Expressions and Statements.

Compound Statements.

Chapter3: Extending Lua with Functions.

Return Values.

Chunks as Functions.

Variable Scope.

Understanding Side Effects.

Functions Calling Functions.

Functions as Values.

Whitespace, Semicolons, and Function Calls.

Upvalues and Closures.

Chapter4: Working with Tables.

Tables Introduced.

A Shorter Way to Write Some Keys.

Altering a Table’s Contents.

Tables as Arrays.

Array Length.

Looping through Tables.

Tables of Functions.

Functions with Variable Numbers of Arguments.

Keyword Arguments.

Different but the Same.

Building Other Data Structures from Tables.

Custom-Made Loops.

Global Variable Environments.

Chapter5: Using Strings.

Basic String Conversion Functions

String Length.

Converting Between Characters and Character Codes.

Formatting Strings and Numbers with string.format.

Input/Output.

Pattern-Matching.

Chapter6: Handling and Avoiding Errors.

Kinds of Errors.

Handling Errors.

Locating Errors.

Chapter7: Using Modules.

Interfaces and Implementations.

The require Function.

Where to Put Modules.

Preserving a Module’s Interface.

Module Bookkeeping.

Bytecode.

Namespaces.

The module Function.

C Modules.

Chapter8: Extending Lua’s Behavior with Metamethods.

Using Concatenation and Arithmetical Operators on Tables.

Relational Metamethods.

Indexing and Call Metamethods.

Non-Tables with Metamethods.

Non-Syntactical Metamethods.

Metamethod Applicability.

Chapter9: Handling Events Naturally with Coroutines.

Coroutines and Program Control.

Managing Concurrent Tasks.

Retaining State.

Handling Events Simply.

Chapter10: Looking Under the Hood.

Bytecode and luac.

Garbage Collection.

The Implementation of Tables and Strings.

The Debug Library.

Chapter11: Exploring Lua’s Libraries.

Core Library.

Coroutine Library.

Package Library.

String Library.

Table Library.

Math Library.

Input/Output Library.

Operating System Library.

Debugging Library.

Chapter12: Using Community Libraries.

Library Overview.

How Lua Interacts with Libraries.

The pack Binary Structuring Library.

The cURL File Transfer Library.

The gd Graphics Library.

The SQLite Database Library.

Chapter13: Interfacing Lua with Other Languages.

How C Programs Use Lua.

Communicating Between Lua and C.

Calling Lua from C.

Working with Userdata.

Indexing Values in C.

Retaining Values in C.

Layering Your Extension Library.

Chapter14: Managing Information with Databases.

Some Basic Relational Database Concepts.

SQL, LuaSQL, and MySQL.

Chapter15: Programming for the Web.

A Web Server Primer.

Dynamic Web Content.

Executing CGI Scripts.

Installing a Web Server.

Testing Your Web Server with Static Content.

Serving Dynamic Web Content.

Interactive CGI Applications.

The Kepler Project.

Chapter16: Connecting to a Larger World.

Installing LuaSocket.

Network Overview.

Using LuaSocket for Network Communication.

Handling Multiple Persistent Connections.

The Application Protocols.

Networking with Lua and Streams.

Chapter17: Programming Games with Lua.

Understanding Why and When to Use Lua.

Simple 2-D Action Game Using SDL.

Chapter18: Carrying Lua with You.

Getting Started with Plua.

Exploring Plua’s Features.

Plua on the Mothership.

Programming with Plua.

Chapter19: Fitting into the Lua Community.

The Lua Web Site.

The Lua Reference Manual.

Framing Questions.

The Lua Mailing List.

The Lua Chat Room.

Forums.

The Lua Wiki.

LuaForge.

Annual Workshops.

Appendix A: Answers.

Index.

loading