vote up 14 vote down star
3

Hi !

I have taken an AI course , and the teacher asked us to implement a game that makes use of one of the AI algorithms . Here is where I need a bit of help

  • I don't know to what kind of games each algorithm is applied .
  • if you could just give an example of a game or game type and the algorithm it uses , I would appreciate it .

I don't need any coding help , I can manage that ( my language of choice is Java ) . I only need a little help on selecting an algorithm . I hope this question doesn't offend anyone !

Thanks !

flag

1  
nicely asked homework question! – Jeff Atwood Jan 8 at 23:33
An upvote from Jeff should be worth more! – jjnguy Jan 8 at 23:34
If your task is to implement a game using one of the AI algorithms from the course rather than any AI algorithm, then you could list the algorithms you were taught. – Pete Kirkham Jan 9 at 8:48

5 Answers

vote up 9 vote down check

In adjunct to Ben's answer, a good combo is alpha-beta pruning along with a game like connect 4. The heuristic for something like tic-tac-toe is too simple, and for chess, too complex. But connect 4 or a similiar "middle of the road" game can be an excellent place to see how the heuristic makes a big difference in both efficiency and quality, and it's also complex enough to even get some "niche" heuristics that can win some scenarios over other, generally better heuristics. The rules of connect 4 in particular are simple enough that it's very easy to come up with your own successful heuristics to see these things in action.

Another common AI to play with is A* for pathfinding, such as unit travel in an RTS or sandbox environment.

link|flag
+1 for mentioning A* – rmeador Jan 8 at 23:55
+1. Connect4 is ideal since there's at most 7 possible moves per lookahead - that makes it less necessary to do pruning if you have lots of memory and you're not trying to look ahead 42 levels. Still, you can implement pruning even for a few levels since the purpose is education, not an proper game. – paxdiablo Jan 9 at 0:53
vote up 1 vote down

As already mentioned A* is a great algorithm for pathfinding in games. Here is a tutorial (with source) on how this is implemented.

Good luck!

link|flag
vote up 1 vote down

You could try the N puzzle and the A* search algorithm using Manhattan distance as the heuristic function.

link|flag
vote up 0 vote down

Any game can use any AI algorithm, if you have a 2d game where "enemies" follow you, you can use fuzzy logic to make the trajectory. In the same way that you could use a net(of any kind) to make them "learn" the best way to follow you. (If they where plenty, you could use genetic algoritms to make them learn in generations)

So go, think of something fun and THEN ask where a decision could be improved with AI and have FUN(this is the most important part of it)

And you can check this book to get some ideas, my bet is your uni have it somewhere in the library

link|flag
vote up 3 vote down

Alpha-beta pruning is a good one for game trees in general, and turn-based games like chess and tic-tac-toe in particular.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.