<< Chapter < Page Chapter >> Page >

Random values

Note that several of the properties of each Sprite01 objects is initialized with random values.

The use of the nextFloat method of the object of the Random class may be new to you. If so, this method simply returns a random value between 0.0f and 1.0f each time it is called.

The conditional operator

If the use of the conditional operator involving the ? character and the : character is new to you, you will probably need to do some online researchin order to understand the use of this operator.

Otherwise, the code in Listing 4 is straightforward and shouldn't require an explanation beyond the embedded comments.

Listing 4 signals the end of the init method.

The update method

The update method is shown in its entirety in Listing 5 .

Listing 5 . The update method.
public void update(GameContainer gc, int delta) throws SlickException{//Do the following for every sprite in the array for(int cnt = 0;cnt<sprites.length;cnt++){ //Ask each sprite to move.sprites[cnt].move();//Ask each sprite to bounce off the edge if // necessary.sprites[cnt].edgeBounce(backgroundWidth,backgroundHeight); }//end for loop}//end update

Move and bounce

Listing 5 uses a for loop to access each of the sprite objects, asking each object to move and to bounce off the edge of the game window if necessary.

Listing 5 could hardly be simpler. That is because the necessary complexity has been encapsulated in each object of the Sprite01 class.

The move method of the Sprite01 class

Listing 6 shows the move method from the class named Sprite01 .

Listing 6 . The move method of the Sprite01 class.
public void move(){ X += xDirection*xStep;Y += yDirection*yStep; }//end move

The code in Listing 6 is also simple. However, in this case, the simplicity is somewhat deceiving. The apparent simplicityderives from the fact that the four required property values are routinely maintained by the object and are readily available to the two statements inthe move method when needed.

The edgeBounce method of the Sprite01 class

The edgeBounce method of the Sprite01 class is shown in Listing 7 . It is not simple.

Listing 7 . The edgeBounce method of the Sprite01 class.
public void edgeBounce(float winWidth,float winHeight){ //Test for a collision with one of the edges and// cause to sprite to bounce off the edge if a // collision has occurred.if(X + width*scale>= winWidth){ //A collision has occurred.xDirection = -1.0f;//reverse direction //Set the position to the right edge less the// width of the sprite. X = winWidth - width*scale;}//end if//Continue testing for collisions with the edges // and take appropriate action.if(X<= 0){ xDirection = 1.0f;X = 0; }//end ifif(Y + height*scale>= winHeight){ yDirection = -1.0f;Y = winHeight - height*scale; }//end ifif(Y<= 0){ yDirection = 1.0f;Y = 0; }//end if}//end edgeBounce

Code that you have seen before

Listing 7 contains essentially the same code that was written into the update method of the earlier module mentioned above . In this case, however, all of the complexity has been encapsulated into the Sprite01 class and replaced by a single call to the edgeBounce method in the update method of the program named Slick0200 . Thus, the program's update method is now much simpler.

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza Reply
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