Como os gráficos evoluem tanto no mesmo hardware do console?


33

É apenas uma questão de otimização de código?

Os desenvolvedores de jogos planejam começar pequenos em um novo hardware, para ter espaço para evoluir enquanto criam uma série desse jogo?

Os avanços em computação gráfica são comuns o suficiente para acontecer durante a vida útil do console?

Respostas:


36

Is that only a matter of code optimization?

There is indeed an optimization part in this. The more programmers get used to a console hardware, the more they learn how to squeeze graphical quality into it.

Mas está longe de ser o único motivo:

  • Os primeiros títulos de console são desenvolvidos com o desenvolvimento de hardware e SDKs, por isso é difícil tirar o máximo proveito de uma plataforma quando ainda não está estabilizada.
  • Não apenas os programadores precisam se adaptar às restrições de uma nova plataforma: é o mesmo para os artistas. Quanto mais maduro um mecanismo fica, mais artistas podem se adaptar a ele e refinar suas habilidades. A existência de ativos anteriores que podem ser repetidos também é algo a considerar.
  • Em geral, as pessoas são cada vez mais experientes, não apenas artistas, não apenas programadores, mas todos. E o tamanho das equipes cresce, pelo menos no mercado de AAA. Colocar pessoas mais experientes em uma produção, se bem gerenciadas, leva a mais qualidade.

Os desenvolvedores de jogos planejam começar pequenos em um novo hardware, para ter espaço para evoluir enquanto criam uma série desse jogo?

That's an interesting question. I don't think game developers intentionally leave space for evolution when working on a new console. To me this is only incidental. But I stand to be corrected, maybe some big studios do this strategically after all, I'd be curious to see any evidence of that (testimony, anybody?).

Are computer graphics breakthroughs common enough to happen in a console lifetime?

Yes. At least regularly.


2
SSAO and deferred shading are both old algorithms -- it just happened it was discovered they are possible in real-time recently. SSAO (2007) is a real-time implementation of a 10-year old algorithm (precomputed AO), deferred shading was originally published by Deering in 1988
bobobobo

2
That's right. Those were adapted to real-time during the last console generation; it doesn't mean the concept was new, as Kylotan explains in his answer.
Laurent Couvidou

3
I think an important part of the optimisation component is that the hardware is more or less guaranteed to stay the same for many years. This allows for developers to come up with highly targeted optimisations, and perhaps even more importantly, to make this time invested worthwhile. For an interesting and similar evolution of code, consider C64 or Amiga demos written decades after the original hardware came out; many of them would have been inconceivable in the 80s and 90s.
Daniel B

13

Do game developers plan to start small on a new hardware, to have space to evolve while creating a series of that game?

They most certainly do not!

When I first joined the games industry, I asked a producer from [giant publisher you've definitely heard of] this very question. He told me that every console game his company developed used 100% of the platform's available resources. While this was probably not the literal truth, it's close enough.

If anything, console games spend most of their development using closer to 120-150% of the platform resources. The last few months of development are spent frantically trying to crunch everything down to "only" 100% before the ship date. If subsequent titles need more CPU cycles / RAM / disk space / etc., the developers first have to figure out how to optimize their current technology -- find more efficient algorithms, use better data compression, etc. Thus, rapid evolution by necessity!

It makes perfect sense, actually; what competitive advantage would there be in explicitly not trying to reach the full potential of the hardware, given your current knowledge of the system? Would you trust your competitors to show the same restraint?


Great answer. I'd still be curious if some particular gameplay genres have different targets though - where 60fps is absolutely essential to the core gameplay, and they just prefer to get that looking as nice as they can.
Katana314

10

Since Consoles pretty much have one specification. And not like PC where you have tons of different variations. Developers can optimize their games better. But this doesn't mean it will do space magic in the long run. It will reach a cap. ( currently the 360/Ps3 have 512 mb in total, which to many developers seems to be an annoyance)

Consoles are fairly outdated after 6 months. PCs always grow faster in hardware specs. But games on PC never really get optimized for one hardware set. They have to keep in mind that there are also people with lower specs ( hence the video and other options ). But since developers working on console games can optimize in the longrun they can do neat tricks with the hardware.

PS3/360 games look fairly good in this time of their life cycles. But just imagine if a developer focused on one specified powerbeast of a pc.

In the beginning of a new consoles life developers need to adapt to the hardware. You can't just slap code from one platform to the other. That is why you don't see the games we have now in the beginning of the life cycle. The production pipeline grows overtime. It's not something you can get right the first time. A lot of optimizations need to be made and it just costs time. When you see better features in a sequel it's because the development of the technology was growing during the first game.

Real breakthroughs usually happen with new hardware. But developers can be creative at times that allows them to do things on limited hardware.


What exactly changes when we have only one spec to develop for? The code changes? Or just the compiler options?
rodorgas

1
Code mostly stays the same but optimization comes down to using the features of the hardware.
Sidar

Thank you for answering. If you'd like to elaborate, I'm interested on a example of optimization using features of the hardware.
rodorgas

1
Well the most common one, even though is usually done trough some abstraction is SIMD.
Sidar

9

New hardware generally just offers the ability to do more than before. Most graphical improvements come from new techniques, new optimisations, and better art.

It's worth knowing that the 'new' techniques that get used are rarely new - they are typically 20 year old techniques that previously were too slow for real-time rendering. These typically get translated into real-time code many years later when a programmer finds a way to do it efficiently with the hardware of the day.


3
Case in point: deferred shading
bobobobo

3
If you want to know what next years computer graphics will be capable of, look at Hollywood CGI from a decade(?) ago.
Dan Neely

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.