A LÖVE animation primer

User Libraries

That is how you can create an animation from scratch using LÖVE's built-in tools. But you could also use anim8 [4], a LÖVE library that takes the drudgery out of animating sprites and lets you have the different frames on a grid (as opposed to just on a line) and pick what frames to use in an animation.

Like anim8, there are many other libraries for LÖVE, that apart from making animation easy, cover physics, isometric 3D tiles, collision detection, and much more. Before putting yourself through the hassle of programming a whole super-framework from scratch, check that someone hasn't already done it for you [5] – unless you are doing so to learn the basics. (Also, for a brief word about the editor you use for programming, see the box "Ideal IDE.")

Ideal IDE

Although your regular, favorite text editor will do just fine, there is some merit in going with ZeroBrane Studio [6] (Figure 4). Not only is it an efficient little editor with all the bells and whistles you need for Lua programming (syntax highlighting, text completion, file management, etc.), it also comes with hooks to a bunch of the most popular Lua interpreters, including LÖVE and Moai, another framework for gaming development.

Go to Project | Lua Interpreter in the menu, pick LÖVE from the list, and you'll be able to run and debug your game directly from the IDE.

Figure 4: ZeroBrane Studio is probably the best IDE for programming in Lua.

LÖVE Platforms

Your LÖVE games can be ported to other platforms, including Windows, iOS, and Android (Figure 5), and the LÖVE wiki explains in detail how to do that [7]. However, you can test-run your program on Android before you go to all the trouble of compiling or pushing it through a toolchain to get a native APK.

Figure 5: Cubey McCubeFace goes walking on an Android phone.

On your computer, you have to create a file called conf.lua, like the one in Listing 9.

Listing 9

conf.lua

01 function love.conf(t)
02     t.version = "XX.X"
03 end

"XX.X" is the version of the LÖVE interpreter on your computer. You can find this out by running the LÖVE interpreter from the command line with love. The version of LÖVE is shown in the titlebar.

Put conf.lua in the same directory as your main.lua file, enter the directory and zip everything up with

zip -9 -r YourGame.love .

You can choose a different name from YourGame, of course, but your zipped file must have the extension .love.

On your phone, download the LÖVE interpreter for Android from Google Play [8] and then copy the .love file from your computer over to your Android device. You'll be able to run it with your newly installed LÖVE interpreter.

Conclusions

We have only touched on one of the many superficial tasks you will have to carry out when creating your own game. However, my hope is to tempt you to get your toes wet and to help you get your head round the most basic principles of programming with LÖVE. As a fan of old-school, casual gaming, I can't wait to see what you do with it.

Infos

  1. LÖVE game framework: https://love2d.org
  2. Lua programming language: https://www.lua.org/
  3. LÖVE wiki: https://love2d.org/wiki/Tutorial:Callback_Functions
  4. The anim8 library for LÖVE: https://love2d.org/forums/viewtopic.php?f=5&t=8281
  5. List of LÖVE libraries: https://www.love2d.org/wiki/Category:Libraries
  6. ZeroBrane Studio: https://studio.zerobrane.com/
  7. How to port your games to other platforms: https://love2d.org/wiki/Game_Distribution
  8. LÖVE interpreter for Android: https://play.google.com/store/apps/details?id=org.love2d.android

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Bang! Ding! Crash!

    To create an action-packed game with LÖVE, these are a few last things you should learn how to do – overlay fancy images to "physical" objects, detect collisions, and get input from the keyboard or mouse.

  • Gravity

    Video game animation is not simply a matter of making your characters move – you also have to consider the physics of the world in which they move.

  • Qt 4.6 and KDE 4.4

    Qt 4.6 passes a collection of new functionalities to KDE 4.4. We’ll show you the animation framework and KDE’s new multi-touch feature.

  • Blender 3D Animation

    Blender not only generates realistic single frames; it is also capable of capturing the natural movements of people and animals. We’ll introduce you to some of Blender’s animation features.

  • Animation with OpenToonz

    OpenToonz is a professional animation tool for comic and manga artists.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News