Bethesda: We Can't Make Dawnguard Work On the PS3
An anonymous reader sends this quote from Geek.com:
"PS3 gamers may now never get access to the content in Skyrim's Dawnguard DLC. That's the news coming out of Bethesda via their forums. Administrator and global community lead Gstaff posted an update on the state of PS3 DLC for the game, and it's not looking great. Gstaff explains that releasing sizeable DLC is a complex issue, and it seems like for the PS3 it might be just a bit too complex. No detail is given as to what the specific problem is, but Bethesda is preparing PS3 gamers for the reality that Dawnguard, and for that matter any other Skyrim DLC, may never reach the platform. I'd like to know what the exact problem is they can't overcome, but I'd also like to know if this is a failing on Bethesda's part or a shortcoming of the PS3 architecture. Maybe Sony should pay Bethesda a visit and see what's going on."
In other Skyrim news, a mod for the game that attempted to recreate J.R.R. Tolkien's Middle Earth, has received a Cease & Desist letter from Warner Bros, causing development to stop.
The rootkit takes up too much disk space on the drive.
One way to answer that question is to ask are any other companies having problems with large DLC on the PS3?
"I use a Mac because I'm just better than you are."
Woah woah woah! Didn't you get the memo? The desktop PC is dying! Everyone is going to be playing FPS' on their touchscreen tablets.
*Current gen* consoles are at their limit (well past them, actually, most games can't even come close to 720p @ 30fps these days, let alone 1080p @ 60fps), but there will inevitably be a pair of new consoles out next year that will reset the clock so that instead of working with a 10 year old PC equivalent the devs are only working with 2 year old PC equivalent.
The PC will always end up ahead in terms of raw power and flexibility but game devs like the stability of consoles and the low barrier to player entry that gives them a bigger target market.
Eventually, devs will move back to the PC
No, eventually MS/Sony/Nintendo will release a new generation of consoles. But do keep dreaming.
In terms of sales the PC is the largest and fastest growing game platform every single quarter.
"I zero-index my hamsters" - Willtor (147206)
Good programmers can make serious bugs, but good companies fix their products when they find them.
What unyielding deadline? These games have been out for years and they are still not fixed.
Oh noes, its hard, so we should be able to ripoff the customer with an unfinished product that we will not take a return on nor will we ever fix.
It's a strange architecture. Most modern machines are symmetric-multiprocessor (SMP). That means programming is very straightforward - all the processors share the same memory space and each processor can do any work you like, so you just have to worry about the normal threading issues (race conditions, deadlocks, etc.) but it's otherwise just standard multithreaded programming.
The PS3 is not SMP - it has one main processor with 256MB of non-video RAM (a big chunk of which is reserved for the OS) and a lot of smaller coprocessors that have very limited RAM (256K). If you can fit chunks of work nicely into 256K, then the thing screams. If you cannot, then you have to do most of the work on the main processor, in less memory than is available on the Xbox360. In other words, you've gone from 6 hardware threads on the Xbox to 2 on the PS3. The combination of less general-purpose processing power and less usable main memory is a really hard problem to solve.
Now, for a lot of games, the Cell is great. Fighting games, puzzle games, art games, ARPGs, JRPGs, platformers. Any time you can offload individual character animation or rendering to the SPEs, you win. The PS3 can animate and render a whole lot more mobs in a scene than the Xbox360 can. If you have a physics calculation like waves on water or swarm movement that is easily separatable into small chunks, the PS3 is also superior.
But think about an open-world game - especially one with the sort of wide-open spaces and anyone-can-go-anywhere gameplay of Skyrim. We did open-world games and we constantly had trouble because physics and AI could interact over a long distance. We broke the world up into cells and aggressively limited the range of some computations to avoid this problem, but still, a lot had to run on the main processor because once the size of a physics calculation or a pathfind exceeded 256K, you couldn't do it on the SPEs. And believe me, pathfinding data alone in an open-world game is always going to be larger than 256K! AI in modern games is expensive, and we know that Bethesda takes their AI very seriously.
Maintaining a large, persistent world also means keeping track of lots of stuff, and that means memory. On the PC, you have practically unlimited swap and tons of main RAM, so it's not an issue. On consoles you have limited RAM and swap space and fragmentation can kill you if you dead. To be honest, I'm surprised the game runs as well as it does on the Xbox360, but again, you have more memory there and they have the ability to "steal" RAM from graphics if they need it, whereas you can't on the PS3.
So while I wish Bethesda had overcome the technical hurdles and made the game workable on the PS3, I can hardly fault them for coming up short. It's just not a platform well-suited to the type of game Skyrim is.
Should developers move back to OpenGL, then the API is relatively fixed, and these particular issues all go away. What's more, 1 codebase for all platforms, and then consoles will essentially die, to be replaced by commodity small form factor PCs that will perform better, are most likely upgradable regarding CPU, and just all around better. Since DirectX seems to be slower than OpenGL, there's no argument for coding to that proprietary API anymore anyway, and perhaps we really can move to a single graphics API, which would improve things across the board even if you can't take advantage of that one little hack on a specific system to get that 401 fps vs 400....
The cesspool just got a check and balance.