{"id":946,"date":"2007-02-22T12:00:23","date_gmt":"2007-02-22T17:00:23","guid":{"rendered":"http:\/\/www.shamusyoung.com\/twentysidedtale\/?p=946"},"modified":"2008-09-17T09:18:31","modified_gmt":"2008-09-17T14:18:31","slug":"graphics-hardware-is-killing-pc-games","status":"publish","type":"post","link":"https:\/\/www.shamusyoung.com\/twentysidedtale\/?p=946","title":{"rendered":"Graphics Hardware is Killing PC Games"},"content":{"rendered":"<p>&#8220;No you fools! You&#8217;ll destroy us all!&#8221;<\/p>\n<p>That was my reaction to <a href=\"http:\/\/arstechnica.com\/news.ars\/post\/20070208-8800.html\">this story at ars technica<\/a> (<a href=\"http:\/\/www.haibane.info\/\">via<\/a>) which talks about new &#8220;external&#8221; graphics cards.  The idea is that users can buy lots of them and stack them high and wide and set up fancy cooling schemes that would not be practical within the confines of the average computer case.  I can only conclude that this is some sort of sick scheme to eliminate PC gaming forever. <\/p>\n<p><table width='256'  cellpadding='0' cellspacing='0' border='0' align='right'><tr><td><a href='http:\/\/www.google.com\/custom?q=geforce+8800&#038;cof=AH%3Acenter%3BAWFID%3A0d3b1caaa37fbd94%3B'><img src='https:\/\/www.shamusyoung.com\/twentysidedtale\/images\/gf8800.jpg' class='insetimage' width='256' alt='People made a big deal about the PS3 &#8220;sticker shock&#8221;.  You know, because the complete game system, including controllers and the blu-ray transmorg-matrix, cost $600.' title='People made a big deal about the PS3 &#8220;sticker shock&#8221;.  You know, because the complete game system, including controllers and the blu-ray transmorg-matrix, cost $600.'\/><\/a><\/td><\/tr><tr><td class='insetcaption'>People made a big deal about the PS3 &#8220;sticker shock&#8221;.  You know, because the complete game system, including controllers and the blu-ray transmorg-matrix, cost $600.<\/td><\/tr><\/table>Don&#8217;t get me wrong, I like getting fancy new hardware, as budget allows. This would be a nice development if this were something just for framerate junkies, but the way things work right now is that expensive new technology ends up appearing on the side of PC games under the words <strong>Minimum System Requirements<\/strong> about three weeks after it gets invented.  ATI could come up with a graphics card that costs $10,000 and needs to be continually submersed in liquid nitrogen, and idiot developers would build their next-gen engine on top of it.  Advances like this are things that hardcore gamers should be doing to <em>get ahead<\/em>, not things that average gamers should be doing just to <em>keep up<\/em>.  Sadly, I&#8217;m sure that&#8217;s where this is going. The only thing more horrifying than seeing a PC game which requires a $500 graphics card is one that requires <em>several<\/em> of them.<\/p>\n<p>And even if you do pour all that money into your PC, odds are <a href=\"http:\/\/www.penny-arcade.com\/comic\/2001\/06\/08\">the games will suck<\/a> anyway, and run like a sick turtle. On an uphill grade.  Against the wind. While, like, pulling some heavy stuff or something.  You know: <em>Slow<\/em>.<\/p>\n<p><!--more--><\/p>\n<div class=\"dmnotes\">You&#8217;re a coder, working on developing a game for the PC.  NVIDIA hands you one of their latest cards, which can do some new rendering feature. Let&#8217;s call this new feature &#8220;bling-mapping&#8221;. The NVIDIA SDK comes with a demo showing off what bling-mapping looks like and how it works.  It&#8217;s pretty sweet. We HAVE to put this in our upcoming game!<\/p>\n<p>You know in eighteen months &#8220;everyone&#8221; will have one of these cards. So you add bling-mapping to your graphics engine.  Sadly, this is not as easy as dropping it into place and walking away.  <\/p>\n<p>Sure, it makes polygons look nicer, but it makes them take longer to render.  Is it worth it for little polygons in the distance? Where is the point at which the feature is just slowing things down and not adding to the game visually? A meter from the camera? Ten meters? A hundred? You need to figure this out.  Oh, and this distance  probably varies based on resolution, so at 800&#215;600 the cutoff is N meters but at 1024&#215;768 the cutoff is (maybe) N*2 meters.  You&#8217;ll need to work out how this scale works so you know how far away a polygon needs to be before you can safely disable bling-mapping for it.<\/p>\n<p>Looking at the complex calculations that are needed to &#8220;bling&#8221; a polygon, are there any approximations or shortcuts that will be (say) twice as fast but look nearly the same?  Perhaps there is a shortcut that will make all bling-mapped objects render faster, but it causes very ugly distortions and artifacts up close. Perhaps there is another, different optimization that only works well at a distance, and perhaps these two optimizations can&#8217;t be combined.  Figuring out how to use them properly, and when to use one and when to use the other, is no small task.  <\/p>\n<p>What about transparent polygons?  Perhaps bling-mapping looks fantastic, but for textures with transparent areas (like grass, or leaves) the effect is ten times slower to render?  Is there a way around this?  Maybe you should disable bling for these parts of the scene?  Or is there some way your artists could build these items that will mitigate this problem?<\/p>\n<p>What happens when you go to put a decal on the polygon?  (A decal is another texture slapped over the surface, usually things like adding scorch marks or blood splats to walls, or cracks and bullet holes to a plane of glass.)  Maybe bling-mapping and decals don&#8217;t look very nice together, or they cause really heavy slowdowns.<\/p>\n<p>The variables are endless.  There are many aspects to the scene that need to be considered.  I&#8217;ve barely scratched the surface, really.  This work will take months.<\/p>\n<p>All done?  Got all those tradeoffs worked out? Think you can render the scene with bling-mapping enabled and not waste too many GPU cycles?  Great. Now go do it all again.  ATI has a card that does the same thing, only slightly differently.  It doesn&#8217;t have the problems with transparent textures like NVIDIA, but it ends up being really, really ugly with polygons which have certain shadow effects applied. So you&#8217;ll need to find some way around that.<\/p>\n<p>Done? Great.  By the way, NVIDIA just came out with a new card.  It speeds up bling-mapping by 50% in certain cases, but only if you do this other optimization over here which is incompatible with other optimizations that you&#8217;ve already put into place and calibrated.<\/p>\n<p>Our game should be ready to ship by now.  Aren&#8217;t you done yet?  You were only working on one feature.<\/p>\n<p>Obviously old cards won&#8217;t support bling-mapping.  But since it is now an intergral part of our render path, we must write an entirely different path that does all of the rendering without the aid of bling-mapping. Ah, screw it.  We&#8217;ll just drop support for old cards.  We&#8217;re already four months past our intended release date.<\/p><\/div>\n<p><table width='309'  cellpadding='0' cellspacing='0' border='0' align='left'><tr><td><img src='https:\/\/www.shamusyoung.com\/twentysidedtale\/images\/video_nonsense.jpg' class='insetimage' width='309' alt='This is what the &#8220;Advanced Video Options&#8221; dialog looks like to a casual user. Similar to the mysterious devices in Myst, the user has no way of knowing what the controls will do without experimenting with them. Some sliders will do nothing.  Some will make the game look like crap but do nothing for framerate.  Some will cripple performance for little or no visual benefit.  These controls are there because there are so many graphics cards and so many configurations and screen resolutions that nobody has time to wrap their head around it all.  They have to depend on the end user to come in and experiment with the controls until it works right.' title='This is what the &#8220;Advanced Video Options&#8221; dialog looks like to a casual user. Similar to the mysterious devices in Myst, the user has no way of knowing what the controls will do without experimenting with them. Some sliders will do nothing.  Some will make the game look like crap but do nothing for framerate.  Some will cripple performance for little or no visual benefit.  These controls are there because there are so many graphics cards and so many configurations and screen resolutions that nobody has time to wrap their head around it all.  They have to depend on the end user to come in and experiment with the controls until it works right.'\/><\/td><\/tr><tr><td class='insetcaption'>This is what the &#8220;Advanced Video Options&#8221; dialog looks like to a casual user. Similar to the mysterious devices in Myst, the user has no way of knowing what the controls will do without experimenting with them. Some sliders will do nothing.  Some will make the game look like crap but do nothing for framerate.  Some will cripple performance for little or no visual benefit.  These controls are there because there are so many graphics cards and so many configurations and screen resolutions that nobody has time to wrap their head around it all.  They have to depend on the end user to come in and experiment with the controls until it works right.<\/td><\/tr><\/table>Picture the early Playstation titles, and compare them to the Playstation titles that came out near the end of the console&#8217;s lifespan.  The latter ran smoother and looked far better, even though they ran on the <em>exact same<\/em> hardware.  This is what you get when coders can have a fixed configuration to deal with:  They get good at using it.  <\/p>\n<p>What I outlined above isn&#8217;t really how things work. It would be great if a coder was free to work and optimize a particular feature for endless weeks or months, but this just isn&#8217;t practical.  The coder has other work to do, and the rest of the team will need him to stop mucking with the engine so they can finish the rest of the game. The result of this is that by the time coders have come to grips with bling-mapping and have it working right, it will be phased out in favor of some other new feature that comes along.  We&#8217;re re-inventing the wheel every eighteen months, and for the most part this means that all of our games are built on top of first-generation engines or even rough prototypes.  These graphics cards are getting faster and faster, but I&#8217;m confident that much of the additional speed is being consumed by sub-optimal code.  As just one example, check <a href=\"http:\/\/nwn2forums.bioware.com\/forums\/viewtopic.html?topic=524108&#038;forum=116&#038;sp=15\">this thread<\/a>, where dozens of users with dual-core machines, 2GB of RAM, and one or more high-end graphics cards, all gather to complain about slow framerates.  Let&#8217;s put this in perspective: If these guys had saved the money they had put into their PC&#8217;s, they would have enough cash to buy a PS3 three times over.  Or they could buy <em>seven<\/em> Wiis. And yet they are <em>still<\/em> having stability, framerate, or esoteric driver issues.<\/p>\n<p>Yes, bling-mapping is great.  It makes the player say &#8220;wow&#8221;.  But then they get over it and play the game.  They will notice that it is choppy, buggy, has annoying visual glitches, or requires them to muck around with driver and DirectX versions.<\/p>\n<p>It used to be consoles were for the &#8220;serious gamers&#8221;.  They were the ones that shelled out the big bucks for a special computer that just played games, while those of us of more humble means made do with using our PCs, which weren&#8217;t as specialized but which we already owned.  Now we&#8217;ve reached the point where PC games are less numerous, more buggy, and require more expensive hardware.  All of this and the games run slower, too.<\/p>\n<p>In the games store, PC games have been relegated to a small shelf at the back, like the porno rack at the bookstore.  <em>Yeah, we hate to waste shelf space on that stuff, but there are always a few freaks that like to come in and buy that sort of thing.<\/em>  Of the meager assortment of games they <em>do<\/em> bother to carry, a handful are probably venerable oldies like Starcraft, Diablo II, and their respective expansion packs.<\/p>\n<p>This is a sad state of affairs.  Somewhere in this ridiculous pageant the whole point is lost:  Games are supposed to be fun. The main chunk of the blame falls on PC game developers, who insist on riding the bleeding edge instead of hanging back technology-wise and focusing on making something worth playing.  Wasn&#8217;t that the whole point?<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8220;No you fools! You&#8217;ll destroy us all!&#8221; That was my reaction to this story at ars technica (via) which talks about new &#8220;external&#8221; graphics cards. The idea is that users can buy lots of them and stack them high and wide and set up fancy cooling schemes that would not be practical within the confines [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[120],"tags":[523],"class_list":["post-946","post","type-post","status-publish","format-standard","hentry","category-videogames","tag-game-design"],"_links":{"self":[{"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=\/wp\/v2\/posts\/946","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=946"}],"version-history":[{"count":0,"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=\/wp\/v2\/posts\/946\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=946"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=946"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.shamusyoung.com\/twentysidedtale\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=946"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}