Slashdot Mirror


A Look At the Tech Behind Burnout Paradise

Eurogamer sat down with Richard Parr and Alex Fry of Criterion Games about the evolution of the technology behind Burnout Paradise , and how they engineered a complex, open world across multiple platforms. "Criterion's method of exacting the most performance from the new architecture isn't so much about threading as such, it's all about parallelization. Rather than lump different game aspects onto different threads (where massive latencies can build as each processor waits for the other to finish its work), game code is highly optimized to make use of what processors are available at any given moment on whatever target hardware, and by choosing the all-important balance points, the experience is like-for-like on all platforms. High-level management code that is unique to each platform then processes the game code according to the hardware that is available." The first part of their Q&A session has also been posted.

4 of 44 comments (clear)

  1. Meh by ubrkl · · Score: 4, Insightful

    This is more like an ad for their new DLC. TFA is very light on technical details.

  2. Re:buzzword overload by Edgewize · · Score: 5, Insightful

    The interview (as opposed to the article) is at least a little more interesting.

    There is nothing fancy here but he is trying to explain about the distinction between between running five tasks at once (a classic "threading" model), and splitting one task into five work units.

    Many common threading models in video-game engines do not reduce latency; eg, "render thread", "audio thread", etc. You get a big win from doing two or three threads, but after that your physics takes an entire frame, or your rendering takes an entire frame, and you bottleneck. No matter how many more CPU cores you throw at it, those fixed number of threads are not getting any faster.

    Nine women can't deliver a baby in one month, etc etc.

    Hardly groundbreaking, but still a nice achievement given the state of most video game engines out there today. Burnout Paradise runs at 60hz with very low latency between input and screen. That's worth some kudos.

  3. Re:thats all nice and good.... by elrous0 · · Score: 4, Funny

    i dunno what it actually means except from what little was stated above but anyway.

    It means they've found a way to affect a paradigm shift by developing synergy and fostering a team environment.

    --
    SJW: Someone who has run out of real oppression, and has to fake it.
  4. Re:If only they'd mastered some OLDER technology by Edgewize · · Score: 4, Interesting

    The lack of splitscreen is, sadly, a design tradeoff for having a huge open world where you can drive anywhere.

    In most level-based games, like past Burnouts, the whole level is loaded ahead of time. Splitscreen just means having more players in the same amount of space. Every new player in splitscreen comes with a small, fixed overhead cost. The whole level has already been put into memory so there is nothing extra to be loaded.

    But in an open-world game like Burnout Paradise, the players could be anywhere. The world is too big to fit into memory, so the game loads as much as possible and then intelligently loads "ahead" of where the player is, so that the world appears to be seemless.

    But splitscreen players could be in totally different places on the map, driving at full speed in opposite directions. So the game would have to load twice as much data in the same amount of time. The second player doubles the cost of everything - twice as much memory, twice as much disk bandwidth to load ahead of each player, etc.

    There are hardware limitations about how fast textures can be loaded from disk, how much memory is available, etc. Splitscreen is very hard for open-world games. It can be done, but it would take significant resources - making it work would probably tie up their best programmers for months.

    Game development is all about allocating your resources as best you can. Ultimately someone decided that it was acceptable to drop split-screen in favor of making sure that the single-player and online experiences were as good as possible, and getting the game out the door on time.

    The removal of split-screen still stings, of course :( But maybe you can understand why it's missing.