<< Chapter < Page Chapter >> Page >

The statement in Listing 7 , which calls the Update method of the superclass, is always required in the overridden version. Thiscode is placed in the overridden Update method in the skeleton code that is generated by Visual C# (see Listing 1 ) when you create a new Windows Game project.

Using the Debug class

One of the must useful debugging tools for relatively simple programs is the ability to get information displayed while the program is running. First I willintroduce you to the Microsoft Support website titled How to trace and debug in Visual C# . You will find a great deal of useful information there.

Next [link] I will introduce you to the Debug class, which "Provides a set of methods and properties that help debug your code." There are some very useful tools there also.

Finally, I will show you some examples of using methods from the Debug class.

Namespace considerations

The Debug class is in the System.Diagnostics namespace. Therefore, you will either need to include that namespace in your"using" list or qualify every reference to the Debug class with the name of the namespace. I chose to include the namespace in my "using" listfor this example.

Overridden LoadContent method

Listing 8 shows my overridden LoadContent method. Only the code near the end of the method is different from the version of the LoadContent method that I explained in the earlier module titled Xna0118-The XNA Framework and the Game Class .

Listing 8 . Overridden LoadContent method.

protected override void LoadContent() { //Create a new SpriteBatch, which can be used to// draw textures. spriteBatch = new SpriteBatch(GraphicsDevice);//Load the image myTexture = Content.Load<Texture2D>( "gorightarrow");//Debug code for illustration purposes. Debug.WriteLine(myTexture.Width);Debug.WriteLine(myTexture.Height); Debug.WriteLine(Window.ClientBounds.Width);Debug.WriteLine(Window.ClientBounds.Height); Debug.WriteLine(IsFixedTimeStep);Debug.WriteLine(TargetElapsedTime); }//end LoadContent

Overloaded WriteLine methods

The Debug class provides overloaded versions of the WriteLine method, which can be used to display information in the lower-left corner of the Visual C# IDE. These are static methods so they canbe called simply by joining the name of the class to the name of the method as shown in Listing 8 .

Execute once only

I elected to put the code to illustrate this capability in the LoadContent method so that it would execute once and only once. Had I put it in either the Update method or the Draw method, it would have tried to execute during every iteration of the game loopwhich would not be satisfactory.

If you need to display information from inside the game loop, you will probably also need to use a counter with some logic to cause the information tobe displayed only every nth iteration.

The output

The output from each of the six WriteLine statements in Listing 8 (plus some other stuff) is shown in Figure 2 . As you can see, the sprite referred to by myTexture is 143 pixels wide and 107 pixels high. The game window is 800 pixels wide and 480 pixels high. As I mentioned earlier, the value of the IsFixedTimeStep property is True, and the value of the TargetElapsedTime property is 0.0166667 seconds.

Questions & Answers

what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
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
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