<< Chapter < Page
  Xna game studio     Page 2 / 8
Chapter >> Page >

General background information

The three pillars of OOP

An object-oriented programming language like C# supports encapsulation , inheritance , and polymorphism . In this module, you will learn how to take advantage of encapsulation.

Wanted, lots of sprites

Assume that you are writing a game program in which you need to have several dozen similar sprites on the screen at the same time. Creating and controllingthat many sprites without using encapsulation would require you to write a lot of program code.

Encapsulation to the rescue

However, by encapsulating the characteristics of a sprite into a class, which is a blueprint for an object, you can instantiate sprite objects just like cutting out cookies with a cookie cutter.

In this module, you will learn to define and use a very simple Sprite class. In future modules, you will learn how to modify the Sprite class to make it more sophisticated by making use of inheritance andpolymorphism in addition to encapsulation

Preview

The XNA project that I will explain in this module is named XNA0126Proj . This project demonstrates how to design and use a very simple version of a Sprite class. An object instantiated from the Sprite class has the following general characteristics:

  • It can be instantiated without an image.
  • It can be instantiated with an image.
  • It can have its image set.
  • It can have its position within the game window set.
  • It can cause itself to be drawn.

Demonstrate how to use the Sprite class

Methods are overridden in the standard XNA Game1 class that demonstrate the use of the Sprite class.

One Sprite object is instantiated in the overridden LoadContent method of the Game1 class. The object's reference is saved in a generic List object. Twenty-three more Sprite objects are instantiated in the overridden Update method while the game loop is running.

Instantiate Sprite objects on the move

A new Sprite object is instantiated in the Update method every 8th iteration of the game loop until twenty-four Sprite objects have been instantiated. The object's references are saved in the samegeneric List object mentioned above.

An image of a blue ball is stored in 12 of the objects and an image of a red ball is stored in the other 12 objects. The red and blue balls alternate and the Sprite objects are drawn in a diagonal line as shown in Figure 1 .

Figure 1 . Seven Sprite objects.

missing image

Seven Sprite objects

Figure 1 shows the game window after seven of the twenty-four Sprite objects have been instantiated and drawn in the game window.

Move to the right and down

The line of Sprite objects moves across the game window from upper left to lower right as the Sprite objects are being instantiated. They stop moving when they reach the bottom right corner of thegame window.

When the objects stop moving, the image in the topmost Sprite object is changed from a blue ball to a green ball as shown in Figure 2 .

Figure 2 . Twenty-four Sprite objects with a green one at the top.

missing image

Discussion and sample code

As usual, I will explain the program code in fragments. A complete listing of the class named Sprite is provided in Listing 14 and a complete listing of the class named Game1 is provided in Listing 15 .

Questions & Answers

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
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, Xna game studio. OpenStax CNX. Feb 28, 2014 Download for free at https://legacy.cnx.org/content/col11634/1.6
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Xna game studio' conversation and receive update notifications?

Ask