POV-Ray : Newsgroups : povray.off-topic : Batman: Arkham Asylum (no spoilers) Server Time
5 Sep 2024 01:24:29 EDT (-0400)
  Batman: Arkham Asylum (no spoilers) (Message 4 to 13 of 13)  
<<< Previous 3 Messages Goto Initial 10 Messages
From: nemesis
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 5 Nov 2009 19:35:00
Message: <web.4af36e84c96ee0177c88d19c0@news.povray.org>
Warp <war### [at] tagpovrayorg> wrote:
> The problem with licensed games in general, and games based on comic books
> in particular, is that in average they tend to range from mediocre to really
> horrible pieces of crap (Superman 64 being probably the quintessential
> example).

yes, indeed.

>   This game is indeed different. The developers made many things just right:
> Rather than going with the typical "anything with the name 'Batman' in it
> will sell" mentality, they actually hired a professional Batman comics writer
> to create the story, as well as hiring several voice actors from the DC
> animated universe. In other words, rather than doing yet another half-assed
> attempt at a game based on a comic book, they went and hired some veteran
> professionals of the source material.

Keep in mind the videogame industry matured a lot since Superman 64.  Sony and
Microsoft are developing home consoles themselves and the industry is just plain
much larger and richer to be able to be a bit more professional and not only
hire renowned voice actors, but also movie stars and writers.  Spielberg itself
has devised quite a few games himself (though not at all with the same success
as his movies).


Post a reply to this message

From: Darren New
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 5 Nov 2009 19:58:20
Message: <4af374ac$1@news.povray.org>
Warp wrote:
> Darren New <dne### [at] sanrrcom> wrote:
>> Even Yahtzee likes it.
> 
>>
http://www.escapistmagazine.com/videos/view/zero-punctuation/926-Batman-Arkham-Asylum
> 
>   Note that that review contains quite many spoilers. 


Sorry. I didn't think to mention that. My bad. Thanks, Warp.

I guess I'm just used to assuming everything has spoilers unless it's marked 
otherwise. :-)

-- 
   Darren New, San Diego CA, USA (PST)
   I ordered stamps from Zazzle that read "Place Stamp Here".


Post a reply to this message

From: SharkD
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 5 Nov 2009 22:09:08
Message: <4af39354$1@news.povray.org>
Did you play the game on the PC or Xbox? What is the PC version's 
control scheme like?

Mike


Post a reply to this message

From: Stefan Viljoen
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 6 Nov 2009 01:42:29
Message: <4af3c554@news.povray.org>
Warp wrote:

>   The developers also did things right technically. This game goes to show
> that you *can* still make a game using completely state-of-art graphics
> while not requiring a 64-bit dual-core monster computer with the latest
> graphics hardware. Even an older single-core computer with a relatively
> recent but cheap graphics card (in my case a 3.4GHz P4 with a Radeon HD
> 3850) was enough to get pretty decent framerates with most graphical
> settings set to maximum (the game's own benchmark clocked an average of
> about 40 frames per second on my computer, which to my standards is more
> than enough).
 
Hmm I've often wondered how much control the game developer has over that,
even on the PC. (On consoles I'm guessing you're even more "locked in" to a
set of tools...)

I. e. he is sitting atop a dense set of layers that consists, as far as I
know of

- A game engine graphics API inside
- Whatever game engine he's using to code the game inside
- Windows inside of which is
- the Nvidia / ATI 3D driver which has got
- its own internal function core and layers which
- eventually gets to hardware for rendering which eventually goes to
- some kind of framebuffer which
- gets displayed.

What I'm getting at is how much of a game's graphical performance CAN be
optimized by somebody who's already behind several dozen libraries? There's
probably only -so- many ways to do something, and only such and such a new
optimized version of those libraries.

Is this type of good performance down to a good core developer, or just the
toolkit / library set he happened to pick for the project?

Since most games these days seem to run with at least two threads on two
cores (erm... one for keeping the graphics pipeline fed with data, one for
logic?) can it maybe be that the logic thread is the bottleneck, and this
is where a good developer can improve performance?
-- 
Stefan Viljoen


Post a reply to this message

From: Warp
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 6 Nov 2009 16:41:11
Message: <4af497f7@news.povray.org>
SharkD <mik### [at] gmailcom> wrote:
> Did you play the game on the PC or Xbox? What is the PC version's 
> control scheme like?

  On the PC (if you can deduce that from the hardware specs I posted).

  I don't know about the mouse/keyboard controls because I used a
Rumblepad 2 gamepad to play the game, so it's basically the same as
with the xbox.

  (The game expects an xbox360 gamepad, and those are, probably intentionally,
configured a bit differently than regular Windows gamepads. Some buttons have
a different mapping, and the y axis of the left thumbstick is reversed.
However, there exists an emulation dll which you simply copy to the folder
of the game executable and which remaps the regular Windows gamepad controls
to the xbox360 gamepad equivalents, and the game is fooled into thinking you
have an xbox360 gamepad, and it works perfectly.)

-- 
                                                          - Warp


Post a reply to this message

From: Warp
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 6 Nov 2009 16:58:12
Message: <4af49bf4@news.povray.org>
Stefan Viljoen <spa### [at] polardcom> wrote:
> Hmm I've often wondered how much control the game developer has over that,
> even on the PC. (On consoles I'm guessing you're even more "locked in" to a
> set of tools...)

  The things that most affect the rendering speed of a game is the amount
of visual effects and details.

  Game developers, graphic artists and level designers always have to make
compromises between visual quality and performance. In an optimal world
every model would consist of millions of triangles, every texture, bump map
and light map would have a humongous resolution, every pixel would be
post-processed with the most advanced shaders which give the best visual
quality, every single piece of geometry would exhibit subpixel-detailed
fully dynamic soft shadows, all reflections would depict the entire reflected
scene in full quality, and the game would render the entire world in full
detail regardless of distance.

  Of course if you do that, you will have to start counting seconds per
frame instead of frames per second.

  So the vast majority of performance optimization happens at the design
and modeling stage: How much can polygon models be reduced without them
starting to look crappy? How much can texture resolutions be reduced?
Can complex shaders be replaced with simpler and faster ones, but which
give virtually the same result? In general, can complicated visual effects
be replaced with simpler and faster ones without noticeable degradation in
visual quality?

  The graphics engine (which in the vast majority of cases, including this
one, means Unreal Engine 3) is also at a key position for performance. While
most developers probably won't be touching the engine itself, the engine
probably has a huge bunch of control knobs that the developers can fine-tune
to reach an optimal compromise between visual quality and speed.

  Of course non-rendering issues can also affect performance, most
importantly the physics engine. You probably don't want to have a couple
million of tiny physics objects in your field of view at the same time,
unless you want to again start counting seconds per frame, so levels need
to be designed so that you don't end up in such situations.

-- 
                                                          - Warp


Post a reply to this message

From: SharkD
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 6 Nov 2009 18:36:58
Message: <4af4b31a$1@news.povray.org>
On 11/6/2009 4:41 PM, Warp wrote:
> (The game expects an xbox360 gamepad, and those are, probably intentionally,
> configured a bit differently than regular Windows gamepads.

Is that kind of like how WMA Pro is supported on the Zune, but not on 
"Plays For Sure" devices?

Mike


Post a reply to this message

From: Darren New
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 14 Nov 2009 19:27:07
Message: <4aff4adb@news.povray.org>
The developers say "We really wanted Batman to face the worst night of his 
life."    Uh, no, I'd say the worst night of his life probably remains the 
night that convinced him to become The Batman, yes? :-)

-- 
   Darren New, San Diego CA, USA (PST)
   I ordered stamps from Zazzle that read "Place Stamp Here".


Post a reply to this message

From: Warp
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 14 Nov 2009 19:39:37
Message: <4aff4dc9@news.povray.org>
Darren New <dne### [at] sanrrcom> wrote:
> The developers say "We really wanted Batman to face the worst night of his 
> life."    Uh, no, I'd say the worst night of his life probably remains the 
> night that convinced him to become The Batman, yes? :-)

  Wouldn't that be Bruce Wayne's worst night of his life, not Batman's?
Batman didn't even exist back then.

-- 
                                                          - Warp


Post a reply to this message

From: Darren New
Subject: Re: Batman: Arkham Asylum (no spoilers)
Date: 14 Nov 2009 21:12:28
Message: <4aff638c@news.povray.org>
Warp wrote:
>   Wouldn't that be Bruce Wayne's worst night of his life, not Batman's?
> Batman didn't even exist back then.

That's a fair cop.

-- 
   Darren New, San Diego CA, USA (PST)
   I ordered stamps from Zazzle that read "Place Stamp Here".


Post a reply to this message

<<< Previous 3 Messages Goto Initial 10 Messages

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.