<< 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 defense mechanism
Chinaza Reply
what is defense mechanisms
Chinaza
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
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