Tutorial #7 - Get Started with game programming using Allegro in C/C++ on Apple computers running iOS
About the tutorial
This tutorial is the first in the series that explain how to get start with game programming using Allegro in C/C++
This tutorial is for learners at level of University Year 2
Introduction
This post is about how to install Allegro 5 library, Cmake, and VS Code on Linux machine, ubuntu Linux
in particular, and to make and use VC Code as your IDE for the course.
Before moving forward, you are assumed to have good knowledge of Linux environment, are familiar with
using tools on terminal.
Install GCC
If don’t have gcc installed on your Ubuntu system yet, install gcc now by running the following command
on the terminal
sudo apt install gcc
Install Allegro 5 library
2 - Install Allegro 5 binary
Allegro 5 library binary for Ubuntu is distributed as a PPA package. To install a newest release of the
library, do the following on a terminal:
First get system update with sudo apt update
sudo apt update
then add the ppa package to the repository
sudo add-apt-repository ppa:allegro/5.2
now install the core library for Allegro game development
sudo apt install liballegro5-dev
You may also need to install the addons for image, True Font, audio, etc.
once all these above are done, you will have the header files, the libraries installed on your system.
install cmake
CMake is needed for your game project development. it can be installed by running the following command
on
terminal:
sudo apt install cmake
Install VS Code
VS Code is free open source code editor, and can be made to be IDE for different prorgramming languages. We
will be using VS Code for game programming using Allegro in C/C++. It can be installed by going to
code.visualstudio.com and download the .deb package onto your system, which will be a file with a name like
code*.deb, under ~/Downloads, and than run
the following command on your terminal
sudo apt install ~/Downloads/code*.deb
Test your IDE for game programming using Allegro in C/C++
Now you are ready to test and write your first program using Allegro 5 game library.
First, make a folder within your home, say testallegro, and then launch Visual Studio Code, and then
open the folder.
create a CPP file named main.cpp within the folder, and then copy the following code to the file
and save:
You now may be asked by VS Code to install C/C++ Runner extension to VS Code
You also need to CMake Tools by Microsoft, by clicking the extensions button on the left
side of VS Code Window, and then search for CMake, then click CMake Tools link to install
now in the command palette of VS Code (from menu View or Ctrl + Shift + P ), type CMake and
then choose CMake Quick Start, you will be asked to choose a C/C++ to use, and ask you to choose
a name for the project, say testhello, and choose if you want to build an executable or library.
Choose executable for our purpose.
CMake will automatically generate a CMakeLists.txt within your project folder. Please remember
that this is the master file CMake will need for a project, and the name must be exactly the
same.
now you need to add the following to the CMakeLists.txt
Note the list of allegro libraries should include at least allegro, others can be added as
needed.
While making the above changes to the CMakeLists.txt file, you may also check the source file
name within the add_executable() ,
and be sure it is the one you have created and want to use. If there are more than one
source files, you need to include them all in the list, separated by space, not a colon as
we usually see.
As soon as it is saved, CMake will generate a (new) Makefile under build subfolder of the
project folder.
Now open a terminal within VS Code, and then in the terminal, change working directory
to build, and to build the project by simply run the command
make on the terminal, it will generate an executable file, named
testhello if it is not changed in the
CMakeLists.txt, which is the first argument of the add_executable(…) statement
now you can run the program by running the following command on the terminal
./testhello
If you see a window launched with Hello World! In it, then congratulations! You have
succeeded. Congratulations!
References
1 - The official getting started with Allegro 5,
https://liballeg.org/a5docs/trunk/getting_started.html
2 - Allegro Vivace, a good tutorial on introduction to programming with Allegro 5,
https://github.com/liballeg/allegro_wiki/wiki/Allegro-Vivace
3 – install Allegro 5 on Ubuntu Linux,
https://github.com/liballeg/allegro_wiki/wiki/Install-Allegro-from-Ubuntu-PPAs
4 - How to port Allegro project into Allegro 5,
https://github.com/liballeg/allegro_wiki/wiki/Porting-Allegro-4-to-5
5 - Amit's game programming Information
http://www-cs-students.stanford.edu/~amitp/gameprog.html