<< Chapter < Page Chapter >> Page >
Learn how and why you should extend the BasicGame class instead of implementing the Game interface directly. Learn about the behavior of the constructors for the AppGameContainer class. Learn about the behavior of the setup and getDelta methods that are called by the start method of the AppGameContainer class.

Table of contents

Preface

This module is one in a collection of modules designed to teach you about the anatomy of a game engine.

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 different game engines written in different programming languages as well.

Viewing tip

I recommend that you open another copy of this module in a separate browser window and use the following links to easily find and view the listings while you are reading about them.

Listings

  • Listing 1 . The main method.
  • Listing 2 . The start method of the AppGameContainer class.
  • Listing 3 . Constructor for the AppGameContainer class that takes a single parameter.
  • Listing 4 . Constructor for the AppGameContainer class that takes four parameters.
  • Listing 5 . The getDelta method of the GameContainer class.
  • Listing 6 . Source code for Slick0120a.java

Preview

The main purpose of this module is to analyze the behavior of the Slick2D game engine when you start aSlick2D game running.

What you have learned

In previous modules, you learned how to download Slick2D and how to install Slick2D in such a way that you can easily compile and execute Slick2D programs fromthe command line with no need for a high level IDE such as Eclipse or NetBeans.

You also learned what we often mean when we speak of a "game engine" and how that terminology relates to a "software framework."

You learned how to write a minimal Java application in conjunction with a set of Slick2D jar files to create your own Slick2D game engine. Using that program asan example, you learned about the overall structure of the Slick2D game engine.

You learned that game engines are typically service provider programs and you learned about a common set of services that is provided by mostgame engines.

You learned about the two cooperating objects that form the heart of the Slick2D game engine.

  • An object instantiated from a subclass of the Slick2D class named GameContainer .
  • An object instantiated from a class that implements the Slick2D interface named Game .

And last but not least, you learned about the five abstract methods declared in the interface named Game :

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