1 / 14

Game Loop Overview

XNA Game Loop. Game Loop Overview. From: http :// rbwhitaker.wikidot.com/advanced-tutorials. The Game Loop. When building a game from scratch, one thing that you need in your game's architecture is something called the game loop .

rozene
Télécharger la présentation

Game Loop Overview

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. XNA Game Loop Game Loop Overview From: http://rbwhitaker.wikidot.com/advanced-tutorials

  2. The Game Loop • When building a game from scratch, one thing that you need in your game's architecture is something called the game loop. • The game loop is the driving force behind your game, and very few game architectures leave this out. • We'll take a look at the game loop in this tutorial, both in a general, high-level sense, as well as the game loop that XNA presents to you.

  3. A Generic Game Loop • The game loop is a simple architectural pattern for organizing your game code, splitting apart when different events should occur. • The primary feature of the game loop is a cycle of updating your game's state, drawing your game's state, and then waiting for a short amount of time until it is time to go again. • You can think of the game loop as the heartbeat of your game, continually pushing through the cycle at regular intervals, until the game ends.

  4. A Generic Game Loop • Like most design patterns, the game loop is a conceptual idea that is applicable in many situations; nearly every video game will have some implementation of a game loop. • At a high level, you can think of the game loop as breaking down your game into five stages: startup, update, draw, wait, and cleanup.

  5. Startup Stage • In the startup stage, your game will perform any one time setup that is required to get your game ready. • This may include things like loading content, preparing input devices, and initializing the game state. • This stage is only executed one time.

  6. Update Stage • Once the startup stage has completed, we jump into the heart of the game loop, which will be executed repeatedly, until the player quits the game. • This means that the update stage will be executed repeatedly, and fairly frequently. (In general, the game loop usually runs anywhere from 24 to 60 times per second.) • The goal of the update stage is to make sure that the game's state accurately reflects what it should be, given that some time has passed since the last update.

  7. Update Stage • If an object was in motion, we'll want to update it's position to reflect this, as time passes by. • Common tasks that are done during the update stage are: • Polling the input devices to get feedback from the user (including exiting the game). • Updating objects within the game. • Checking for, and responding to, collisions of objects. • Executing AI for enemies.

  8. Draw Stage • The next step of the game loop is the draw stage. In the draw stage, we handle anything we need to get things actually drawn to the screen. • For most modern games, much of this work is handled by the graphics card. We just need to tell it what things to draw and where. • It is important to keep drawing code separated from updating code. There are lots of reasons to do this, most of which is best saved for another tutorial. • The draw stage should not involve any changes to the actual game state, just the work required to turn it into pixels on the screen.

  9. Wait Stage • The final step of the loop is the wait stage. In the wait stage, the game will… well… wait for a little bit. • It is often desirable for the game loop to proceed at a regular and even pace, regardless of how long it takes to actually update and draw things. • Without this regulation, the game will update and draw as fast as it possibly can, which can be a problem, if the game will run noticeably faster (to the point of being broken and no fun).

  10. Wait Stage • Thus, the wait stage allows enough time to pass, such that we reach a pre-established regular interval before continuing on to the next update and draw. • I should mention that while we're talking about waiting here, this all happens so fast that the player will see it as a seamless and continuous flow through your game. • Nearly all game loop implementations, including the one XNA provides, give you a great deal of control over the wait stage, as well as providing you with information about how long it has been since the last update or draw stage, but that is beyond our scope.

  11. Game Loop Lag • One last thing that is of value here is a quick discussion of lag. Let's say you've set up your game to loop 30 times a second. That means each loop will take 33.3 milliseconds for each loop. What if your updating code takes 40 milliseconds to execute? That's longer than the time allowed for the whole loop. • For starters, the game will not be doing any waiting in the wait stage. The game loop will run as fast as it can, but it will not be fast enough. If this happens, the player will likely notice delays, which will show up as noticeable pauses in the game. • To the extent possible, you will want to manage your update and draw stages in a way that prevents doing or drawing too much. • I say that like it is easy to do, and should be second nature, but it's not. In nearly every game that you make, simple or complex, you'll eventually run into something that just kills your framerate.

  12. Cleanup Stage • Once an update detects that the player wants to quit the game, the game loop is terminated, and the cleanup stage is reached. • The cleanup stage is an opportunity to release file and memory resources no longer required, or to write out logging, if the game loop terminated abnormally. • It is worth mentioning that with XNA, you don't need to stress too much about cleaning things up as your game exits, because between the .NET Framework and XNA itself, this is mostly taken care of for you.

  13. XNA's Game Loop In Depth • The concept of a game loop is used for virtually every game, on virtually every platform. XNA provides an implementation of the game loop for you to use, so that you do not need to write one. • Nearly all of the following XNA game loop methods are overridable: • Startup Stage • Your game's constructor • Initialize method • LoadContent method • BeginRun method • Update Stage • Update method

  14. XNA's Game Loop In Depth • Draw Stage • BeginDraw method • Draw method • EndDraw method • Wait Stage • All things done in the wait stage happen behind the scenes. • No override-able methods are called. • Cleanup Stage • OnExiting method • EndRun method • Dispose method • UnloadContent method

More Related