AI Algorithms

Started by
0 comments, last by Palidine 18 years, 1 month ago
Hi, I have worked with minimax algorithm. Just the way minmax is tied to strategy games of perfect information (2 player) , i would like to know if there are any other algorithms tied to game genres. for example , some games use A* for path-finding. The article here : http://ai.eecs.umich.edu/people/laird/papers/book-chapter.htm Speaks about diffrent roles of AI with respect to game genres,but it doesn't touch upon algorithms involved. Could some one just point me in the right direction say for example algorithms for racing , rpg , strategy etc(if any). Out of curiosity , is minimax applied in any other feild apart from game playing. Thanks.
"I think there is a world market for maybe five computers." -- Thomas Watson, Chairman of IBM, 1943
Advertisement
most game AI is just simple state machines.
Black & White used some NN stuff for their pig pet creature things
A* is commonly used for pathfinding in every game i've worked on.

But, yea, mostly just state machines or simple heuristical behavior stuff (i.e. if this then do this, etc)

Game AI is generally algorithmically simple.

-me

This topic is closed to new replies.

Advertisement