Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
L÷VE for Lua Game Programming
L÷VE for Lua Game Programming

L÷VE for Lua Game Programming: If you want to create 2D games for Windows, Linux, and OS X, this guide to the L?ñVE framework is a must. Written for hobbyists and professionals, it will help you leverage Lua for fast and easy game development.

Arrow left icon
Profile Icon AKINLAJA DAMILARE JOSHUA
Arrow right icon
$19.99 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7 (11 Ratings)
Paperback Sep 2013 106 pages 1st Edition
eBook
$13.98 $19.99
Paperback
$32.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon AKINLAJA DAMILARE JOSHUA
Arrow right icon
$19.99 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7 (11 Ratings)
Paperback Sep 2013 106 pages 1st Edition
eBook
$13.98 $19.99
Paperback
$32.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$13.98 $19.99
Paperback
$32.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

L÷VE for Lua Game Programming

Chapter 1. Getting Started with LÖVE

LÖVE is a fantastic framework that leverages the Lua scripting language for developing 2D games; it is open source, free to use, and licensed under zlib/libpng. You can learn more about Lua programming at www.lua.org.

In this chapter we'll go through the following:

  • All we need to get started with LÖVE

  • How to install LÖVE

  • How to run a LÖVE game

  • Choosing the editors

And a step further to understand the basic structure that makes a LÖVE game.

Downloading LÖVE


Before we build our game, we need a copy of LÖVE's engine running on our computer; a copy of the framework installed will help the computer to interpret the code we will be writing.

Direct your web browser to www.love2d.org, scroll to the download section of the site and choose the installer that is compatible with your computer.

It is advisable that we download an installer instead of the source codes, except for when we want to be geeky and build it ourselves.

For Windows users


When you are through with downloading the installer, run the setup and follow the instructions.

When your installation is complete, run the program; you should see a the window displaying a beautiful animation on the screen.

For Linux users


Linux users are required to download the .deb install file by clicking on build number of their operating system; users running Precise Pangolin Ubuntu OS should click on the 12.04 link. Run the install program and follow the instructions. If the LÖVE framework is fully installed, you can double-click on a .love file to run it.

For Mac users


Mac users should visit the LÖVE wiki (https://www.love2d.org/wiki/Getting_Started) page for instructions on how to install LÖVE and run a packaged game.

Choosing your editor

In choosing a suitable editor, you can use any text editor that supports the Lua programming language; we recommend Notepad++; it is free and has a clean and non-confusing GUI.

Running a LÖVE game

First of all, we assume we do not have any LÖVE game yet. OK, then let's just write a simple "Hello World!" program and run it with LÖVE. Open up a text editor and write the following Lua code:

--create a display

function love.draw()
--display a text on a 800 by 600 screen in the positions x= 400, and --y=300
   love.graphics.print('hello world!', 400, 300)

end

Now save this code as main.lua. Open a folder for your game project, put your main.lua file inside the folder, and compress the content of the folder. Change the .zip extension to .love. You'll notice a change in the icon of the compressed file; it changes to a LÖVE logo. Now that we've done all that, we can run our game. If you follow the instructions correctly, you should see a screen similar to the following screenshot:

If you do not compress the file properly, you will get the following blue screen displaying error information:

Note that it is the content of your game folder that should be compressed and not the folder itself, and make sure the main.lua file is at the top level.

Basic structure of LÖVE

There are three basic functions that make up a LÖVE game that are essential in most of the games you will be designing with LÖVE. For now, the following are the basics to make a small game:

  • love.load(): This preloads all the necessary assets we need to make our game.

  • love.update(dt): This is where we do most of our maths, where we deal with events; it is called before a frame is drawn. dt is the time it takes to draw a frame (in seconds).

  • love.draw(): This draws all that we want to display on the screen.

Examples

The basic structure of the game is done as you can see in the following code:

--load our assets
function love.load()
   --load all assets here
end




--update event
function love.update(dt)
--do the maths
end


--draw display
function love.draw()
--describe how you want/what to draw.
end

That's just it, well... maybe! So let's play with these chunks one more time.

Now let's edit main.lua to enable loading sample assets that we want to use within the game:

function love.load()

   local myfont = love.graphics.newFont(45)

   love.graphics.setFont(myfont)

   love.graphics.setColor(0,0,0,225)

   love.graphics.setBackgroundColor(255,153,0)
end


function love.update()



end

function love.draw()

   love.graphics.print('Hello World!', 200, 200)

end

Conf.lua

Before you go on and start coding your game, you need to give your video game some specs such as window width, window height, and window title. So set up a new file named conf.lua; inside it you can then create your game specs as shown in the following code snippet:

function love.conf(w)

w.screen.width = 1024 

w.screen.height = 768

w.screen.title = "Goofy's Adventure"

end

You can manipulate the figures and titles any way and also change that w to whatever variable you want.

The preceding code does the following:

  • Loads our font

  • Sets the font color

  • Sets the background color

  • Draws text on the screen

  • Configures the screen size

Basically we are using the love.graphics module; it can be used to draw (in the real sense) texts, images, and any drawable object in the scene. In the previous code snippets, we defined our fonts with the love.graphics.newFont(45) that formats our text by declaring the size of the font as 45. setFont() loads the font we defined as myfont, setColor() colors the text in the RGB format, and setBackgroundColor() sets the background.

Then we printed text using the love.graphics.print('text', x, y) function in the draw function with three parameters parsed in it: the text and the x and y coordinates. We are not going to do anything in the love.update() function yet, because we are not dealing with scene events.

So let's load our game as a .love file and see what it displays:

Summary


Now we can grab a mug of cappuccino with Ray-Bans on and smile; we have installed the LÖVE game engine, text editor, and Visual tile-level editor (Tiled). We have also got a quick look at the basic structure for writing our game in Lua and displayed "Hello World!" in a colored background window. Next we'll go through how to draw 2D objects, move objects, and animate character sprites.

Left arrow icon Right arrow icon

Key benefits

  • Discover the L?ñVE framework and build games easily and efficiently
  • Learn how to utilize the L?ñVE framework's tools to create a 2D game world
  • A step-by-step approach to learning game development

Description

L?ñVE is a game development framework for making 2D games using the Lua programming language. L?ñVE is totally free, and can be used in anything from friendly open-source hobby projects, to closed-source commercial ones. Using the Lua programming framework, one can use L?ñVE2D to make any sort of interesting games. L?ñVE for Lua Game Programming will quickly and efficiently guide you through how to develop a video game from idea to prototype. Even if you are new to game programming, with this book, you will soon be able to create as many game titles as you wish without stress. The L?ñVE framework is the quickest and easiest way to build fully-functional 2D video games. It leverages the Lua programming language, which is known to be one of the easiest game development languages to learn and use. With this book, you will master how to develop multi-platform games for Windows, Linux, and Mac OS X. After downloading and installing L?ñVE, you will learn by example how to draw 2D objects, animate characters using sprites, and how to create game physics and game world maps. L?ñVE for Lua Game Programming makes it easier and quicker for you to learn everything you need to know about game programming. If you're interested in game programming, then this book is exactly what you've been looking for.

Who is this book for?

L?ñVE for Lua Game Programming is for anyone who is interested in learning about desktop game development.

What you will learn

  • Create different environments to make your games more interesting
  • Add sound and music to your games
  • Apply game physics and real-time particle collisions
  • Animate game characters using sprites
  • Deploy your games to Windows, Linux, and Mac platforms

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Sep 25, 2013
Length: 106 pages
Edition : 1st
Language : English
ISBN-13 : 9781782161608
Category :
Languages :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Sep 25, 2013
Length: 106 pages
Edition : 1st
Language : English
ISBN-13 : 9781782161608
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 136.97
L÷VE for Lua Game Programming
$32.99
Learning game AI programming with Lua
$48.99
Lua Game Development Cookbook
$54.99
Total $ 136.97 Stars icon
Banner background image

Table of Contents

8 Chapters
Getting Started with LÖVE Chevron down icon Chevron up icon
LÖving Up! Chevron down icon Chevron up icon
Before You Build a Game Chevron down icon Chevron up icon
Making Your First Game Chevron down icon Chevron up icon
More About Making the Game Chevron down icon Chevron up icon
Meeting the Bad Guy! Chevron down icon Chevron up icon
Pickups and Head-Up Display and Sounds Chevron down icon Chevron up icon
Packaging and Distributing Your Game Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7
(11 Ratings)
5 star 9.1%
4 star 27.3%
3 star 18.2%
2 star 18.2%
1 star 27.3%
Filter icon Filter
Top Reviews

Filter reviews by




PAUL Lionel Mar 15, 2020
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book motivate the reader to explore the game development with a ease step by step point of view. I recommend this book for those who to learn 2d game development
Amazon Verified review Amazon
Mr Steve M Jarman Nov 21, 2013
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
LÖVE is a really fun technology that let's aspiring game developers make a quick start on getting their core skills up to scratch. This book turned out to be a surprisingly good introduction to both LÖVE and Lua, though I'd definitely recommend studying some additional Lua specific material.The author takes us through the process of building a really neat little platform game. It's fun, looks great (as far as textbook "sample projects" go), and contains all of the essential elements that should help a reader to move from this book directly into a project of their own.There's also some good (albiet short) sections on general game design principles. Nice to see this sort of "theory" information included.If you're new to game design and want to dive straight in at a level that's not going to have you tearing your hair out, then LÖVE could be just the right technology for you. This book is short, but in a way, that's exactly what you need - it will get you straight into the action and take you just far enough to show you what you're capable of.Overall - a really good read.
Amazon Verified review Amazon
KK Hoey Jan 22, 2014
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
This is a great beginner/advanced book if you want to start programming games using Lua. The book is great at taking you step by step and explaining the process. I think Lua is one of the best languages for beginners because of its great syntax. This book is great if you are an experienced programmer or have done no code before.
Amazon Verified review Amazon
ts71rarrarrar Dec 30, 2013
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
This is a great book for learning how to program in Lua and making a game at the same time. It won't take long at all to actually have something moving around your screen that resembles a working game. I thought it was well thought out and really easy to follow, ie. you don't have to be a rocket scientist to program! Starts off with the basics but doesn't dwell on things that won't help you make a cool game. I liked it.
Amazon Verified review Amazon
CPallini Dec 01, 2013
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
The title is unfortunate: do not to expect to master LÖVE or Lua reading it.However you will able to follow the development of a complete platform game (another title flawn: strategy games are not covered at all) using Lua and the LÖVE framework.If you need a quick kick start on LÖVE framework and can tolerate some minor pitfalls then consider buying it.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.