Skip to main content
GameDev.net gamedev.net
🔒 Locked

Game AI been neglected because of graphics?

Started by Metahawk Mar 24, 2005 at 4:00 AM 54 replies 24k views
Original Post
Metahawk
Metahawk
Do you feel that game AI has been neglected because of aims to improve Graphics and realism? whats your opinion...
Steadtler
Steadtler
Yes totally. Its the next bing thing tough. Because graphics are almost photorealistics now, and that they dont add much to gameplay. See the number of people playing SNES games on emulators... So now developpers will have to focus on AI.

Graphics still sells the game, but AI is what makes it great or not.
John Reynolds
John Reynolds
I agree Physics has become an important part of certain genres of gaming. However, I don't think it has done so at the cost of AI. Every project I know of has dedicated AI programmers, and indeed more AI programmers than Physics, and if you look around at who is hiring it is clear how in-demand AI programmers currently are.

The Graphics vs Gameplay balancing-act has eased somewhat thanks the the GPU. Now the graphics has its own processor it freed up a lot of CPU time to Gameplay, Physics, AI, etc.
John ReynoldsCreative Asylum Ltdwww.creative-asylum.com
AlbertoT
AlbertoT
Well,maybe,there is an other reason, unfortunatly.
AI did not achieve the results that everybody was expecting.
uedauhes
uedauhes
Quote:
Original post by fup
IMO physics is going to be the next big thing. Us AI guys will have to wait a little bit longer...


I agree. It takes a lot more work to make a noticeable difference in AI compared with the difference that you can see from better physics.
jollyjeffers
jollyjeffers
Just look at HL2 for "physics candy". I honestly got bored of how many times they tried to show off the physics engine as a form of gameplay mechanism [rolleyes].

As others have said, it's going to be a while before AI takes center stage - but with the advent of these multi-processor/multi-core systems, and the inevitable switch to multi-programming, I reckon AI will get a chance at the big time.... [smile]. Fingers crossed the argument that processing resources are limited will become null and void.

If a couple (or more!) big name games take the time to put some truly powerful AI into things, the sort of stuff that gets people going [oh] at how damn impressive it is, then they'll raise the bar. Raise the bar and others will almost certainly follow...

Jack
<hr align="left" width="25%" />
Jack Hoxley <small>[</small><small> Forum FAQ | Revised FAQ |
uedauhes
uedauhes
I don't think its the processing power. I think its a lack of people who are knowledgeable about integrating the state of the art in AI in games. It takes a lot of processing power to create models. This is not a problem because you can do this during the development process where is is available and doesn't have to be done real-time.

Actually running models in game is not really that expensive. Some games like chess do require lots of processing power in game. That is because they are searching a known state space. The state space is not typically known in most modern games so these computationally intensive techniques are not applicable.

I would compare AI in most games more to AI for robots than for puzzle games. There are a set of percepts and a set of actions. The goal is to map a percept vector to an action at each decision point. This mapping is very expensive to develop, but very cheap to implement in game.

I think its more about deciding which AI algorithms are appropriate for various applications in games. A mob in a game could use many differnt AI paradigms:

- Stimulus Response
- Reinforcment Learning
- Emergent Swarm
- ANN
- GA
- Decision Tree
- Expert System
... etc

It really the knowledge about which methods are appropriate for individual application that is lacking.
BrianL
BrianL
Before discussing reasons for neglect, what deficiencies are you refering to?
tolleyc
tolleyc
I definitely think that AI has been neglected, but for reasons other than just graphics. It is true that with today's technology it is easier to create some nice eye candy, and with our fast paced marketing its a lot easier to show off a cool explosion or other graphical element than it is to showcase an AI system, but I think that AI is a fine art. If you make it too "smart" then the player will have a hard time competing against it and won't want to play. If you don't make it "smart" enough then the player will decide that it is stupid and not like it. You have to make it just right, or believable. You have to make it so natural that the player never even notices it. Thats a very hard thing to do.

As for physics, yea, physics are going to be big in the coming years.


Physics Processing Units
James Trotter
James Trotter
Forgive me for not having read the entire thread.

Quote:
Original post by Steadtler
Yes totally. Its the next bing thing tough. Because graphics are almost photorealistics now, and that they dont add much to gameplay. See the number of people playing SNES games on emulators... So now developpers will have to focus on AI.

Graphics are far from photorealistic. Real-time graphics in games, that is. AI is indeed an important part of a game, even though perhaps more subtle than graphics. What brings you to the conclusion that developers will now have to focus on AI? Even though alot of advancement has been made in the field of graphics in the recent years, it still remains a hot subject of research. It is hardly 'spent'.

Quote:

Graphics still sells the game, but AI is what makes it great or not.

In my opinion, this is an oxymoron.

Quote:
Original post by tolleyc
If you make it too "smart" then the player will have a hard time competing against it and won't want to play. If you don't make it "smart" enough then the player will decide that it is stupid and not like it.

The goal of AI is not necesarilly making the opponent of the player harder to defeat. That is up to the internal machinations of the game, (it's what the difficulty level is for).
Diodor
Diodor
The problem is AI programmers aren't designers too. Games will have great AI when the problems the AI is supposed to solve are designed to be solvable and are designed to make the AI look smart.
tolleyc
tolleyc
Diodor, James Trotter, and Anonymous Poster, your right. I had forgotten about things like chatting with the computer, which add an entirely new level of realism to a game, or just using the AI to control an ally or background pieces, like villagers. Also Diodor, I agree with you when you say that the problems need to be designed to be solved by the AI.
AlbertoT
AlbertoT
I think that graphics has nothing to do with AI
Some kind of games do not need a photorealistic graphics.
Also ,I do not agree that a too "smart " AI can frustate most of the game users ,as long as it is a "human" like AI (making errors, I mean)
In any case some "niches" of the market would , for sure, appreciate a top AI
The point is that not only commercial games do not use sophisticated AI techniques but even AI "experts" have never produced a game (maybe "Creatures") or at least fragments of game, as far as I know , using sophisticated AI techniques.
Even simple Demos included in AI game programming books are far away from being too "smart".
The conclusion is obviuos, in my opinion.

James Trotter
James Trotter
Quote:
Original post by Diodor
The problem is AI programmers aren't designers too. Games will have great AI when the problems the AI is supposed to solve are designed to be solvable and are designed to make the AI look smart.


Which problems are you referring to?

The current discussion seems rather diffuse, I must enquire of the original poster: What was your intention with this thread?

Truth to tell, I'm not much of an AI guy, (I've got that phat AI Game Programming Wisdom 2 on my bookshelf, but haven't had time to read it...), but this is an interesting discussion. How does it work in AI programming, compared to, for instance, graphics? Is there a kind of SIGGRAPH where AI gurus present their new brilliant algorithms?
Metahawk
Metahawk
Quote:
Original post by James Trotter
Quote:
Original post by Diodor
The problem is AI programmers aren't designers too. Games will have great AI when the problems the AI is supposed to solve are designed to be solvable and are designed to make the AI look smart.


Which problems are you referring to?

The current discussion seems rather diffuse, I must enquire of the original poster: What was your intention with this thread?

Truth to tell, I'm not much of an AI guy, (I've got that phat AI Game Programming Wisdom 2 on my bookshelf, but haven't had time to read it...), but this is an interesting discussion. How does it work in AI programming, compared to, for instance, graphics? Is there a kind of SIGGRAPH where AI gurus present their new brilliant algorithms?


I am writing a dissertation on games AI and am interested in frequent gamers opinions on the current state of game AI.
James Trotter
James Trotter
Quote:
Original post by Metahawk
I am writing a dissertation on games AI and am interested in frequent gamers opinions on the current state of game AI.


Very cool! Will I be able to read it when you're done?

I think that most people are in agreement here. Graphics have indeed seen amazing advancement in recent years. A lot of focus is on the graphical aspect of a game, more so than AI. So, yes, AI has been neglected in a lot of games.

I've played alot of RPG games, and the AI in that genre is mostly concerned with NPC interaction. I recall specifically two games which I played, the one being Morrowind, the other being Gothic 2. Morrowind had stunning graphics, and was enjoyable to play... for a little while. Gothic 2, at first, was disappointing when comparing the visuals with Morrowind. However, at length, Gothic 2 was much more enjoyable, (this is likely a matter of taste, though), and really served to will the suspension of disbelief. This was all because of the NPCs interacted in a much more believable way.
Let me give you a simple example: In Gothic 2, while walking around in the city, you would notice people mingling in groups, actually having conversations with each other. In morrowind, there is absolutely no interaction between NPCs, whatsoever. The environment in Gothic 2 is much more believable.

Does anyone else have any good examples?
Zodiak
Zodiak
Well, I just think that when one DOES create an awsome AI, the gaming industry will get that boost like with physics. What I mean, is if you haven't heard of a certain game, and then it comes out with average graphics etc. but with some awsome AI system, it will immediately be noticed... It's just a matter of making an excellent AI system, that's all. Because above all, people tend to admire AI the most when it's there. So the game will be a huge success, with millions of people going like 'Oh, Joe, check it out... Yesterday that had actually outsmarted me... it's so fun! I created a line of defence in the north, but that anticipated it and attacked me from the rear..." something like that. It's way way more fun to play with good AI than with graphics + physics because without AI they mean nothing
(unless we are talking about multiplayer).
I'd definetly say that a glass is half-empty!
James Trotter
James Trotter
Quote:
Original post by Zodiak
Well, I just think that when one DOES create an awsome AI, the gaming industry will get that boost like with physics. What I mean, is if you haven't heard of a certain game, and then it comes out with average graphics etc. but with some awsome AI system, it will immediately be noticed... It's just a matter of making an excellent AI system, that's all. Because above all, people tend to admire AI the most when it's there. So the game will be a huge success, with millions of people going like 'Oh, Joe, check it out... Yesterday that had actually outsmarted me... it's so fun! I created a line of defence in the north, but that anticipated it and attacked me from the rear..." something like that.

Well, this is debatable. I get the shit kicked out of me if I play against anything other than an 'easy' computer opponent in Warcraft 3. Does that mean the game has good AI? I think RTS games generally are not the games which are in need of improvement in their AI.

Quote:

(unless we are talking about multiplayer).


That's a very good point. I can't imagine that a lot of MMORPGs, for instance, would require the same kind of AI as would a single player game. I suppose the other players make up for it, and give you all the 'intelligence' you need.
AlbertoT
AlbertoT
"Well, I just think that when one DOES create an awsome AI, the gaming industry will get that boost like with physics "

I definitly agree with you, in my opinion A.I. is, better ,should be more important than phisics.
The point is,it it just a matter a good will ?

"I created a line of defence in the north, but that anticipated it and attacked me from the rear..." something like that."

Cool, but is possible to do something like that?
If you can not distinguish a real opponent from a virtual one you have passed the Turing test.
Do not forget that no machines passed the Turing test, yet

Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.