Professional XNA Programming
Home > Computing and Information Technology > Digital Lifestyle and online world: consumer and user guides > Computer games / online games: strategy guides > Professional XNA Programming: Building Games for Xbox 360 and Windows with XNA Game Studio 2.0
24%
Professional XNA Programming: Building Games for Xbox 360 and Windows with XNA Game Studio 2.0

Professional XNA Programming: Building Games for Xbox 360 and Windows with XNA Game Studio 2.0


     0     
5
4
3
2
1



Out of Stock


Notify me when this book is in stock
X
About the Book

This improved and updated edition of the bestseller will get you up and running quickly with building games for Xbox 360 and the Windows platform. Professional game developer and Microsoft MVP Benjamin Nitschke begins by explaining how to install the free XNA Game Studio 2.0 and then goes on to share essential advice for using it in a productive way. Before you know it, each successive chapter will have you developing small games that increase in difficulty. By using the chapters as building blocks, you'll evolve from 2D programming to 3D, and you'll ultimately create a full-blown graphics engine that can be used for more advanced game projects. Plus, you'll get an inside look at six fully functional games, including the popular Racing Game and the new Dungeon Quest. What you will learn from this book Tips for adding music and sound with XACT Techniques for creating unique visual effects through Shaders Ways to access keyboard, mouse, and Xbox controllers with XInput How to write your own XNA graphics engine and create a game engine How to manage content in XNA Myriad ways of fine-tuning, debugging, and troubleshooting How to make sure games run on the Xbox 360 Ways to generate landscapes and tracks How to take advantage of XNA's new networking APIs Who this book is for This book is for anyone who wants to create games on the Xbox 360 and Windows platforms. Experience with C# or a similar .NET language is necessary, but previous game programming is not required. Wrox Professional guides are planned and written by working programmers to meet the real-world needs of programmers, developers, and IT professionals. Focused and relevant, they address the issues technology professionals face every day. They provide examples, practical solutions, and expert education in new technologies, all designed to help programmers do a better job.

Table of Contents:
Acknowledgments. Introduction. Part I: XNA Framework Basics. Chapter 1: Introducing XNA. Introduction to the XNA Framework. XNA Game Studio Express. Application Model. Content Pipeline. Get the Free XNA Game Studio Express. Requirements. Installing. What About Visual Studio 2005 Professional? Configuring Your Xbox 360. Getting Started. Your First Project. F5 and Go. Changing the Code. Notes about XNA. Important Links. Is C# Good for Game Development? Getting Used to the Content Pipeline. Differences with MDX. Additional Tools and Tips. Changes in XNA 2.0. Troubleshooting. Summary. Chapter 2: Creating Your First Game: Pong. Game Ideas. Write Down Your Ideas! Agile Methodology. Solving Initial Difficulties. Creating Some Textures. Let's Write Pong. Sprites. Unit Testing in Games. Adding the Ball and Paddles. Handling Player Input. Collision Testing. Adding Sound. How This Looks on the Xbox 360. Challenge: Improve the Pong Game. Troubleshooting. Summary. Chapter 3: Helper Classes. Managing the Content Pipeline. Supported File Formats. Advantages and Disadvantages. Handling Content Directories. Importing and Accessing Content. Logging Error Messages. Unit Testing in XNA. NUnit and TestDriven.Net. Starting Unit Tests. Golden Rules. RandomHelper Class. Generate Random Vectors. StringHelper Class. Extracting Filenames. Writing Lists. Other Helpers. SpriteHelper Class. EnumHelper Class. ColorHelper Class. The Breakout Game. Unit Testing in Breakout. Breakout Levels. The Game Loop. Drawing Breakout. Collision Testing Challenge: Improve the Breakout Game. Summary. Chapter 4: Game Components. The Game Class. Game Component. More Helper Classe. TextureFont Class. Input Class. Sound Class. Tetris, Tetris, Tetris! Rendering the Background. Handling the Grid. Block Types. Gravity. Handling Input. Testing. Challenge: Create the NextBlock Game Component. Summary. Part II: Basic Graphics Engine. Chapter 5: Writing Your Own XNA Graphics Engine. What Should Your Engine Be Able to Do? The Engine Unit Test. 3D Models. Rendering of Textures. Line Rendering. 3D Programming. Model Unit Test. Testing Other Models. Plugging in More Game Components. Simple Camera Class. ScreenshotCapturer Class. Making Sure Games Run on the Xbox 360. Downloading the XNA Game Launcher. Xbox 360 Setup and Deploying Games. Console Debugging and Tools. Challenge: Write a Game Component. Summary. Chapter 6: Shader Management. Shader Overview. History. Shaders Everywhere in XNA. Example Games. Step-by-Step Shader Tutorial. FX Composer. FX File Layout. Parameters. Vertex Input Format. Vertex Shader. Pixel Shader. Importing the Shader into Your Engine. Compiling Shaders. Using Parameters. Vertex Formats. Rendering with Shaders. Testing the Shader. Challenge. Summary. Chapter 7: Realism Through Normal Mapping. Adding Detail to Objects. Problems. Asteroids! Wrong Game or What? So How Do Shaders Work? Vertex Shaders and Matrices. Pixel Shader and Optimizations. ShaderEffect Class. TangentVertex Format. Normal Mapping Unit Test. Adding Tangent Data with a Custom Processor. Final Asteroid Unit Test. More Shaders. Offset Mapping. Glass Shader. Reflection and Water. Challenge: Add Parallax Mapping. Summary. Chapter 8: Post-Screen Shaders and the Rocket Commander Game. Handling Post-Screen Shaders. Pre-Screen Sky Cube Mapping. Writing a Simple Post-Screen Shader. Improvements. Implementing Post-Screen Shaders. RenderToTexture Class. PostScreenDarkenBorder Class. Unit Test Result. More Post-Screen Shaders. Motion Blur. Color Correction. Menu Effects. Rocket Commander Game. Performance in XNA. Moving from MDX to XNA. Using Threads to Improve Performance. Result and Screenshots. Challenge: Write an Edge Detection Shader. Summary. Part III: Improving Your Game Engine. Chapter 9: Adding Sound with XACT. No DirectSound. Handling .wav Files. Using XACT. Creating Projects. Creating Your Wave Bank. Compressing Music Data. Sound Banks. Cue Variables. Other Effects. Changes in XNA 2.0. Sound Class. Rocket Motor Sound. Whoosh, What Was That? Menu Sounds. Challenge: Create Your XACT Project. Summary. Chapter 10: Player Input and the User Interface. Input Class. The Update Method in the Input Class. Mouse Rectangles. Entering Text in XNA. Game Screens. Help Screen. In-Game User Interface. Tips. Cameras. Space Camera. Challenge: Write a Free Camera Class. Summary. Chapter 11: Creating XNA Shooter. Putting It All Together. Sounds. User Interface. Textures. 3D Models. Animated Textures. Billboards. Landscape Rendering. Base Texture and Normal Map. Height Map. Adding Objects. XNA Shooter Game. Game Logic. 3D Effects. Unit Class. Projectile Class. Item Class. Final Screenshot. Challenge: Write a Game with Your Engine. Summary. Part IV: Writing a Racing Game. Chapter 12: Generating Landscapes and Tracks. Game Comparisons. Gran Tourismo. Need for Speed. Trackmania. XNA Racing Game. Landscape Rendering. Textures. Rendering. Optimizing Tips. Tracks. Unit Testing to the Rescue. Interpolating Splines. More Complex Tracks. Importing the Track Data. Generating Vertices from the Track Data. Final Result. Challenge: Create a New Unit Test Track. Summary. Chapter 13: Physics. Newton's Laws of Motion. Keep It Simple. Gravitation. Physics Engines. Ageia PhysX. Havok. ODE. Other. Implementing Physics. Handling Loopings. Spring Physics. Collision Detection. PhysicsAsteroidManager. Car Collision. Challenge: Figure Out the Road Collision. Summary. Chapter 14: Fine-Tuning and "Modding" the Racing Game. Game Concept. Game Idea. Additional Features. Game Screens. Splash Screen. Main Menu. Game Screen. Highscores. Final Unit Testing and Tweaking. Tweaking the Track. Shadow Mapping. Final Testing on Windows. Final Testing on the Xbox 360. Additional Ideas. More Cars. Online Highscore List. More Shaders and Effects. More Game Modes. Multiplayer Mode. Challenge: Write Your Own Mod! Example Game: Speedy Racer. Summary. Part V: Writing Multiplayer Games. Chapter 15: Multiplayer and Xbox Live. What's New in XNA 2.0. Overview About Networking in XNA 2.0. TCP Versus UDP. Firewalls and Punching Through NATs. Network Architecture. Sending UDP Data. Connecting Two Players. Network Messages. Server Game List. Writing a Chat Application. Game Screens. Handling Chat Messages. The Final Chat Application. Challenge: Write a Multiplayer Application. Summary. Chapter 16: Role-Playing Games. Types of Role-Playing Games. "Hack and Slash" Role-Playing Games. Massively Multiplayer Role-Playing Games. Designing Dungeon Quest. Ideas. Scenario. Story. Characters. Enemies. Weapons and Items. Abilities and Spells. Abilities. Spells. Leveling System. Challenge: Improve the Leveling System. Summary. Chapter 17: Dungeon Quest. Creating the Engine. Changes to the Graphic Engine. Using Collada Model Files. Handling Many Point Lights. Adding AI. Path-Finding. Alert-System via Cries. Multiplayer Support. Network Messages. Xbox LIVE Support. The Dungeon Quest Editor. Summary. Appendix A: Resources. Index.

About the Author :
Benjamin Nitschke is the founder, lead programmer, and game designer at exDream entertainment. He is 26 years old, and lives in Hannover, Germany. He became a DirectX MVP of Microsoft in 2006 for his outstanding work in the DirectX community, especially with the free game Rocket Commander. He started young - at the age of 9 he bought his first computer, a C64. He did not have many games, but he was very eager to type in commands on the C64, and from that to writing the first applications and games in Basic was not a big step. A few years later, he finally got a PC (386) and started some small game projects (Tetris clones, shoot-em-up games, and so on). exDream entertainment was founded 10 years ago, and it released a couple of smaller games before the first RTS game, Arena Wars, was created. Arena Wars was the first commercial .NET game ever and was released in 2004, where it received more than 20 awards worldwide, especially for the great multiplayer modes. Recently, Benjamin has developed a couple of free open source games such as Rocket Commander and the XNA Racing Game Starter Kit, along with many game modifications. These games feature many video tutorials and a good documentation and code style to help beginners create their first video games. The video tutorials have been viewed more than 100,000 times and the games were downloaded and played even more often than that.


Best Sellers


Product Details
  • ISBN-13: 9780470261286
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: Wrox Press
  • Edition: Revised edition
  • Language: English
  • Spine Width: 33 mm
  • Weight: 892 gr
  • ISBN-10: 0470261285
  • Publisher Date: 01 Mar 2008
  • Binding: Paperback
  • Height: 230 mm
  • Returnable: N
  • Sub Title: Building Games for Xbox 360 and Windows with XNA Game Studio 2.0
  • Width: 188 mm


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Professional XNA Programming: Building Games for Xbox 360 and Windows with XNA Game Studio 2.0
John Wiley & Sons Inc -
Professional XNA Programming: Building Games for Xbox 360 and Windows with XNA Game Studio 2.0
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Professional XNA Programming: Building Games for Xbox 360 and Windows with XNA Game Studio 2.0

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!