<< Chapter < Page Chapter >> Page >

What you have learned

In the previous module, you learned how to use the following methods of the Input class to get user input:

  • isKeyDown
  • isMouseButtonDown
  • getMouseX
  • getMouseY

What you will learn

In this module, you will learn how to use objects of the SpriteSheet class and the Animation class to perform simple sprite sheet animation. In the next module, you will learn how to performmore complex animation.

General background information

The SpriteSheet class

Sprite sheets are individual sprites (or images) combined into a single image as shown in Figure 1 . Slick2D provides the SpriteSheet class that makes it relatively easy for you to access each of the sub-images of the sheet as separate imagesin your program.

The SpriteSheet class assumes that all the images are evenly spaced. It splits the source image into an even grid of cells and allows you to access the image in each cell as a separate image.

(Slick2D also provides the capability to work with packed sprite sheets with fewer restrictions on the organization of the sprite sheet.)

The Animation class

A series of images

Since well before the first Disney movies, animations have been created by displaying a series of images one after theother.

Each image (or frame) is typically displayed for the same amount of time, but that is not always the case, as will be demonstrated by the program in thenext module.

Slick2D provides a class named Animation that does most of the heavy lifting in the display of an animation.

Create, populate, and configure the object

There are several different ways to create, populate, and configure an Animation object containing a series of images, with the same or different display durations for the images.

Displaying the images

By default, calling one of several overloaded draw methods on the Animation object causes it to display the sequence of images and to start over when the last image has been displayed. However, that behaviorcan be overridden in order to provide more customized behavior.

(It is actually more complicated that that, as you will see later in the discussion of the render method.)

Animations can be stopped, started and restarted (returning to the first frame of the animation) . The capabilities of the Animation class go far beyond those illustrated in this module and the next.

Discussion and sample code

The class named Slick0180

Will discuss in fragments

A complete listing of the program named Slick0180 is provided in Listing 8 . I will break the program down and discuss it in fragments.

Listing 1 shows the beginning of the class named Slick0180 down through the main method.

Listing 1 . Beginning of the class named Slick0180.
public class Slick0180 extends BasicGame{ Image spriteSheetImage = null;float spriteSheetWidth; float spriteSheetHeight;int spritesPerRow = 5; int spritesPerColumn = 2;int targetDelta = 16;//msec int duration = 200;//time to display each spritelong totalTime = 0;//accumulate total time for display SpriteSheet spriteSheet;Animation animation; int spriteWidth;int spriteHeight; float spriteX = 0;//sprite drawing locationfloat spriteY = 0; //----------------------------------------------------//public Slick0180(){ //Call to superclass constructor is required.super("Slick0180, Baldwin."); }//end constructor//----------------------------------------------------// public static void main(String[]args) throws SlickException{AppGameContainer app = new AppGameContainer( new Slick0180(),450,120,false);app.start();//this statement is required }//end main

Questions & Answers

I'm interested in biological psychology and cognitive psychology
Tanya Reply
what does preconceived mean
sammie Reply
physiological Psychology
Nwosu Reply
How can I develope my cognitive domain
Amanyire Reply
why is communication effective
Dakolo Reply
Communication is effective because it allows individuals to share ideas, thoughts, and information with others.
effective communication can lead to improved outcomes in various settings, including personal relationships, business environments, and educational settings. By communicating effectively, individuals can negotiate effectively, solve problems collaboratively, and work towards common goals.
it starts up serve and return practice/assessments.it helps find voice talking therapy also assessments through relaxed conversation.
miss
Every time someone flushes a toilet in the apartment building, the person begins to jumb back automatically after hearing the flush, before the water temperature changes. Identify the types of learning, if it is classical conditioning identify the NS, UCS, CS and CR. If it is operant conditioning, identify the type of consequence positive reinforcement, negative reinforcement or punishment
Wekolamo Reply
please i need answer
Wekolamo
because it helps many people around the world to understand how to interact with other people and understand them well, for example at work (job).
Manix Reply
Agreed 👍 There are many parts of our brains and behaviors, we really need to get to know. Blessings for everyone and happy Sunday!
ARC
A child is a member of community not society elucidate ?
JESSY Reply
Isn't practices worldwide, be it psychology, be it science. isn't much just a false belief of control over something the mind cannot truly comprehend?
Simon Reply
compare and contrast skinner's perspective on personality development on freud
namakula Reply
Skinner skipped the whole unconscious phenomenon and rather emphasized on classical conditioning
war
explain how nature and nurture affect the development and later the productivity of an individual.
Amesalu Reply
nature is an hereditary factor while nurture is an environmental factor which constitute an individual personality. so if an individual's parent has a deviant behavior and was also brought up in an deviant environment, observation of the behavior and the inborn trait we make the individual deviant.
Samuel
I am taking this course because I am hoping that I could somehow learn more about my chosen field of interest and due to the fact that being a PsyD really ignites my passion as an individual the more I hope to learn about developing and literally explore the complexity of my critical thinking skills
Zyryn Reply
good👍
Jonathan
and having a good philosophy of the world is like a sandwich and a peanut butter 👍
Jonathan
generally amnesi how long yrs memory loss
Kelu Reply
interpersonal relationships
Abdulfatai Reply
What would be the best educational aid(s) for gifted kids/savants?
Heidi Reply
treat them normal, if they want help then give them. that will make everyone happy
Saurabh
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

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