<< Chapter < Page Chapter >> Page >
Learn how to install Slick2D in such a way that you can easily compile and execute Slick2D programs from the command line with no need for a high level IDE.

Table of contents

Preface

Turning the crank

As a professor of Computer Information Technology at Austin Community College, I teach courses in game programming using both C++ and C#/XNA. Ihave long had a concern that students enter my courses expecting to simply "turn the crank" on a game engine such as Dark GDK or XNA and have great games emerge from the other end of the process. Unfortunately, itisn't quite that easy.

Anatomy of a game engine

Given time limitations and other restrictions, it is not practical to teach those students much about the inner working of such game engines. Therefore, Ihave decided to publish a series of modules on the anatomy of a game engine that my students, (and other interested parties) can read to learn about those inner workings.

First in a collection

Therefore, this module is the first in a collection of modules designed to teach you about the anatomy of a typical game engine (sometimes called a game framework) .

The Slick2D library

I have chosen to concentrate on a free game library named Slick2D ,(which is written in Java) for several reasons including the following:

  • Java is the language with which I am the most comfortable. Hence, I can probably do a better job of explaining the anatomy of a game engine thatuses Slick2D than would be the case for a game engine written in C++, C#, Python, or some otherprogramming language.
  • Java has proven in recent years to be a commercially successful game programming language. For example, I cite the commercial game named Minecraft , written in Java, for which apparently millions of copies have been sold. Also, Java is used fordeveloping apps for Android.
  • Slick2D is free and the source code for Slick2D is readily available.
  • The overall structure of a basic Slick2D game engine is very similar to Dark GDK and XNA, andis probably similar to other game engines as well.
  • Java is platform independent.

Applicable to other environments as well

Although the modules in this collection will concentrate on the Java game library named Slick2D, theconcepts involved and the knowledge that you will gain is applicable to other game engines written in different programming languages.

Purpose

The purpose of this module is to get you started, including showing you how to download and install Slick2D, and how to compile and execute your firstSlick2D program. Future modules will start digging into and explaining the innerworkings of a basic Slick2D game engine.

What you should know

This series of modules is not intended for beginning programmers. As a minimum, you should already know about fundamental programming concepts such as if statements, for loops, while loops, method or function calls, parameter passing, etc. Ideally, you will havesome object-oriented programming knowledge in a modern programming language such as Java, C#, C++, or possibly Python or JavaScript.

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Anatomy of a game engine. OpenStax CNX. Feb 07, 2013 Download for free at https://legacy.cnx.org/content/col11489/1.13
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Anatomy of a game engine' conversation and receive update notifications?

Ask