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.
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.
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
- LÖVE game framework: https://love2d.org
- Lua programming language: https://www.lua.org/
- LÖVE wiki: https://love2d.org/wiki/Tutorial:Callback_Functions
- The anim8 library for LÖVE: https://love2d.org/forums/viewtopic.php?f=5&t=8281
- List of LÖVE libraries: https://www.love2d.org/wiki/Category:Libraries
- ZeroBrane Studio: https://studio.zerobrane.com/
- How to port your games to other platforms: https://love2d.org/wiki/Game_Distribution
- LÖVE interpreter for Android: https://play.google.com/store/apps/details?id=org.love2d.android
« Previous 1 2 3
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
SparkyLinux 6.6 Now Available for Installation
The Debian-based SparkyLinux has a new point release that retools the live USB desktop creator and other changes that give it shiny new-ness.
-
SparkyLinux 6.6 Now Available for Installation
The Debian-based SparkyLinux has a new point release that retools the live USB desktop creator and other changes that give it shiny new-ness.
-
Escuelas Linux 8.0 Now Available
Just in time for its 25th anniversary, the developers of Escuelas Linux have released the latest version.
-
LibreOffice 7.5 Loaded with New Features and Improvements
The favorite office suite of the Linux community has a new release that includes some visual refreshing and new features across all modules.
-
The Next Major Release of Elementary OS Has Arrived
It's been over a year since the developers of elementary OS released version 6.1 (Jólnir) but they've finally made their latest release (Horus) available with a renewed focus on the user.
-
KDE Plasma 5.27 Beta Is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.