Slashdot Mirror


NVidia Recommended Graphics Card For Doom 3

Griffon4 writes "Nvidia announced today that they have been branded the recommended graphics card for id's forthcoming PC FPS Doom 3. Now I'm wondering: Recall a little over a year ago that Carmack said the Nvidia card at the time was just a slight bit more worthy than the ATI? Jump forward to today - are we getting a real recommendation based on id's own experience or just seeing the end result of a financial deal that benefits both?" Other possible factors (apart from NVidia simply being the better graphics card for Doom 3) include the alleged origination of some Doom 3 Alpha version leaks, unlikely to endear ATI to id, and, of course, ATI already having a major bundle deal in place with a certain other FPS.

26 of 81 comments (clear)

  1. Look At Origin by Babbster · · Score: 5, Insightful

    Considering this is coming from Nvidia, this is clearly, purely, a financial deal between Nvidia and Id. This isn't a .plan file from Carmack or even an interview with the same, which might be more interesting from a technical point of view. This is a cobranding, most likely decided upon in light of ATI's association with Valve and Half-Life 2.

    1. Re:Look At Origin by thumperward · · Score: 5, Insightful

      Or maybe, just maybe, the fact that OpenGL support on ATi cards has been historically rubbish hasn't endeared id to them?

      I'd imagine Nvidia are keener to push this, given that it's a direct advert for their products. id gain nothing from doing press releases for nVidia, except maybe the ire of those poor, poor Radeon users convinced that they've won the Gaming Wars (whatever those were).

      - Chris

    2. Re:Look At Origin by Babbster · · Score: 3, Insightful

      Then again, when Id demoed Doom 3 the first time, they used ATI (9700 cards, as I recall) to do it, so they can't hate ATI that much.

    3. Re:Look At Origin by kaellinn18 · · Score: 3, Funny

      those poor, poor Radeon users convinced that they've won the Gaming Wars (whatever those were).

      Aye, son, and we did win the Gaming Wars! Why I remember the legendary battle of ought two. ATI was flounderin' and NVidia had just unleashed the GeForce4 which was poundin' away at her flanks and closin' round her backside. All seemed lost. Then, out of nowhere, ATI unveiled the fury that was the Radeon 9700 Pro! NVidia was caught completely unawares, and was forced to retreat to fight another day. Those were the days, lad. Those were the days.

      --

      --------
      This isn't the sig you're looking for. Move along.
    4. Re:Look At Origin by nelsonal · · Score: 2, Insightful

      Not the war, but it was an important battle. The GeForce 2 and 3 had much better driver support than anything ATi offered, especially for the then new Windows 2000. However N'Vidia first started having problems slightly before they were announced as the video providers for the XBox, they missed a targeted tape out for the NV31 or NV35 (future GeForce 4), and ATi took the lead with better products and driver support they they had had in several years. The war isn't over until one of the two is out of business. We'll see how ATi manages with Microsoft breathing down their necks, but it might be easier now that gamers don't expect product refreshes every 6 months.

      --
      Degaussing scares the bad magnetism out of the monitor and fills it with good karma.
  2. Re:Screw Carmack by Stubtify · · Score: 3, Insightful

    I believe this is what he has done, as it says "recommended" graphics card. More likely than not this is just business, ie. "here's X million dollars, recommend our graphics card." To write directly for a single graphics card platform would be crippling/pissing off your audience.

  3. Re:Screw Carmack by Anonymous Coward · · Score: 2, Interesting

    Thank GOD Carmack is still pushing OGL. DirectX is still a kludgey hack. Why build for a closed platform (DirectX)? There is still PLENTY of life in OGL and 2.0 should be SCHWEEEETTTT!

    W00T Carmack!

  4. Re:Screw Carmack by DigiShaman · · Score: 2, Informative

    Oh come on! Just how is DirectX a kludgey hack? I've played the same game in both OpenGL and DirectX (Unreal 2003 or Unreal2...I forgot which one) and they flawlessly. In fact, I can't tell which one is better.

    But if your going to program a game in an API, why not DirectX? It handles Video, Audio, and input. OpenGL is nice, but it only does video (that I know of).

    --
    Life is not for the lazy.
  5. Corperate Sponsorship At Work by DeadboltX · · Score: 4, Funny

    This is just a marketing ploy. nvidia says hey I'll scratch your back if you scratch mine. Since ATI recently struck a deal valve they prolly don't have as much resources available to offer and so nvidia easily made a better offer to id. I really doubt it will make a noticable difference whether you are running a 9800 pro or a 5800, and the only thing we have to look forward to is another spiffy nvidia intro where a flaming skull flys a few circles around the nvidia logo before getting shot up and exploding.

  6. Re:Screw Carmack by asteinberg · · Score: 5, Insightful
    I've played the same game in both OpenGL and DirectX (Unreal 2003 or Unreal2...I forgot which one) and they flawlessly. [sic] In fact, I can't tell which one is better.

    You can't tell the difference because for that particular game, they are used in essentially identical ways. I would assume that if the Unreal series is going to bother supporting both APIs, they simply added a layer of abstraction to their graphics code, coded the engine using that abstraction, and then created implementations of the abstraction for both OpenGL and Direct3D that look exactly the same by design.

    This, however, implies nothing about the quality of either API, it merely suggests that the developers coded to the greatest common subset of both APIs. Of course, it does seem that this subset is good enough to make a nice-looking game, which seems to suggest that it doesn't really matter from an end-user perspective which API the developer chooses. Therefore...

    But if your going to program a game in an API, why not DirectX? It handles Video, Audio, and input. OpenGL is nice, but it only does video (that I know of).

    This is totally irrelevant - we just saw that Direct3d and OpenGL are equally capable so why choose the one that limits you to a single platform? The fact that DirectX handles other things is totally irrelevant - you can use OpenGL alongside the other components of DirectX without a problem (and this is in fact what Carmack has done in the past). You can also just use other libraries for other aspects - for example, SDL works just great. While certainly not of the scope of these commercial games, I found that SDL+OpenGL was more than adequate for my own game, and I got the bonus of being able to make Linux, Mac, and even Windows versions with only about 2 total lines of code changed (had to switch where the #include's pointed for each platform, though a more clever build environment probably could've handled that). Offhand, about the only thing we couldn't do with SDL + OpenGL that DirectX provides is the network coding/matchmaking stuff from DirectPlay, but AFAIK most commercial games don't use this anyway.

    --
    The first ever Ultimate Frisbee video game: here (now
  7. Re:Screw Carmack by Yokaze · · Score: 3, Interesting

    > I've played the same game in both OpenGL and DirectX (Unreal 2003 or Unreal2...I forgot which one) and they flawlessly. In fact, I can't tell which one is better.
    > But if your going to program a game in an API, why not DirectX?

    On that matter, I'd quote some post, which maybe has some relevance to your question:

    >> Why build for a closed platform (DirectX)?

    id Software is not only producing games of the Quake and Doom-series on various platforms, which are not very demanding on the input devices, and usually only have a minimum of video. They also sell the graphics engine to other companies. IRC, that is actually the main income of the company.
    So, why should a company which makes its money mainly from graphics engines restrict oneself to one platform? Its not like they can't use DirectX for video, audio, and input anymore when they use OpenGL for graphics.
    Especially, when they have experts on that API and at the time when Quake emerged, DirectX 3D was nothing more than a hack.

    --
    "Between strong and weak, between rich and poor [...], it is freedom which oppresses and the law which sets free"
  8. Why refer to theinquirer.net... by z01d · · Score: 5, Informative
    1. Re:Why refer to theinquirer.net... by illuvata · · Score: 2, Insightful

      because that post has nothing to do with which graphics card is better for doom3

  9. Re:Screw Carmack by z01d · · Score: 4, Informative


    about the only thing we couldn't do with SDL + OpenGL that DirectX provides is the network coding/matchmaking stuff from DirectPlay

    Here comes the SDL_net

    (Not to the parent poster): In case you are curious, there're plenty userful and commercial-quality libs out there, such as SDL_image, SDL_mixer, SDL_ttf...They just rock, some of them had been used in commercial titles (remember Lokigames?)...forget about DirectX, and screw MS.

  10. Re:Screw Carmack by oskillator · · Score: 4, Informative
    Why couldn't Carmack just code the think in DirectX.

    He could have, but he likes the OpenGL API more, as he documented in his plan file in 1996. This also addresses your question later in the thread as to how DirectX is a kludgey hack; in 1996 at least, the interface was really nasty. It has probably improved since.

    There's also the portability issue. If he coded it using DirectX, that locks the code to Microsoft platforms. No easy Mac, Linux, or console ports aside from the xbox.

  11. Re:Screw Carmack by FlashBuster3000 · · Score: 2, Insightful

    Yeah, plus the Fact that I can play DommIII under Linux, you insensitive clod! (at least I hope so)

    And for sound, etc.. There are other API's that do the same stuff. OpenAL for example.

    So, why using DirectX, when there are such good other API's ;-)

  12. Well, the Alpha by MImeKillEr · · Score: 2, Interesting

    ..ran fine on my Verto GF4 (64MB) once I back-leveled the drivers. Since everyone was saying that the Alpha wasn't stream-lined and that the final would be, I'm betting that my GF4 will still work.

    Sorry nVidia - I love your cards but I'm not upgrading just so I can play DooM III on an 'approved' video card.

    --
    Cruising the internet on my TI-99/4A @ a whopping 300 baud!
  13. endorsement sucks by Anonymous Coward · · Score: 3, Interesting

    NVIDIA is pleased to announce that id Software recommends the GeForce FX family of graphics processing units for DOOM 3.

    This means nothing, it could even be simply that the box system requirements says "GeForce FX or better" under the recomended sub-heading.

    Anyway, I hate this crap with games manufacturers officially "reccomending" hardware or deliberately coding a game to be more efficient with one brand over another. I despise seeing the Nvidia logo on game intros and thought a lot less of Valve when they endorsed ATi. I'll be thinking id has come a long way down in the world if they start endorsing nvidia, not that it would make sense since who wants to buy a game engine that is deliberately coded to run better on one specific brand's hardware.

    Its just such a cheap shitty way to try and make people buy your product. Cant beat the competition by making a better product? Frightened your competitor just does everything better than you? Screw being competitive and trying to offer something better for your customers, pay off developers to make the competition crapper instead!

    Developers should be ashamed of themselves, theyre supposed to be about making something as good as possible for any customer, not only if theyre using hardware from whoever theyve shacked up with.

  14. Re:Screw Carmack by eXtro · · Score: 3, Interesting

    DirectX is Microsoft proprietary and Carmack has always stated that proprietary isn't a good thing. It's easier to port a game if it's built from the ground up for portability. I don't know what he's developing on now but in the past he hasn't always even done initial development on Windows.

  15. XBOX Version by vasqzr · · Score: 3, Interesting


    iD has always said the XBOX version will be equal to the PC version (even at half the cpu/gfx capability) and released simultaneously.

    Maybe this has something to do with it, due to the XBOX having an NVIDIA GPU and not an ATI.

  16. Just advertising by tprime · · Score: 2, Insightful

    This is just another advertising ploy on nvidia's part along the same thread that Gatorade is the official sports drink of the NFL. NVIDIA hasn't had great press lately (console wise) and needed some fresh good press.

    --
    http://www.tomandemily.com
  17. Does it REALLY help both companies? by Lust · · Score: 3, Interesting

    I just bought a new ATI card. When I read that nVidia is the better choice for Doom 3, I wonder "Hrm, maybe I should just stick with HalfLife 2 and skip Doom altogether." No way am I forking out for a new videocard again...might as well buy a console and sit by the TV. In reality, the differences between cards may be small, but there is a two-edged sword with these company claims.

    1. Re:Does it REALLY help both companies? by aliens · · Score: 3, Insightful

      I'm not quite sure, but you realize that ATI's cards will run Doom3 just fine and Nvidia will run HL2 just fine.

      This is all a lot of posturing, no way a major studio would hurt sales by making a game perform so much better on one video card as to make the other unplayable.

      And judging by the fact that people have written very very nice wrappers for nvidia only demos (dawn) so that they run even better on ATI hardware doesn't make me worry too much.

      Although I reccomend not getting a new video card until the next generation NV40/R420 come out.

      --
      -- taking over the world, we are.
  18. No mystery here by voice+of+unreason · · Score: 2, Interesting

    Look, there really doesn't have to be any kind of secret deal going on. Carmack said that he preferred ATI last year. A lot of work and changes could have been made in a year's time. For one thing, a year ago most of the optimizations probably had not been made. So, NVidia might really have the best card for the job.

  19. Re:Screw Carmack by El_Ge_Ex · · Score: 2, Interesting

    ...his plan file in 1996.

    You are basing your argument on comments he made EIGHT YEARS AGO!

    Apparently there are people here that don't realize that Q2 and Q3 could use either OGL or DirectX in the Windows version.

  20. Cmon people.. by activesynapsis · · Score: 2, Informative
    Just because they endorse a card doesn't mean that Doom III won't work with an ATI card, or HL2 won't work with an NVIDIA card, or it will work less. It seems like people are already planning on not picking up a game they would otherwise have rushed out to buy because of endorsements. Do you need to buy a GeForceFX to play Doom 3? No. Does NVIDIA get money if you buy Doom 3? Probably not.

    On another note... I actually tried the Doom 3 leak on my GeForce FX 5900 Ultra. A small blurb about it is on my website here.