vote up 2 vote down star
3

I am searching for an open source AI engine implemented in C/C++, ActionScript or Java with no success. Do you know any open source implementation?

Update: Thanks for answers! I had no idea how vast the AI field is. I am working on a sample application. I want to add intelligent behavior over a physics engine. I need some sort ai engine designed for games.

flag

50% accept rate
AI is a wast domain of computer science. Which part of it are you interested in? – Burkhard Jul 5 at 18:04

4 Answers

vote up 8 vote down check

"AI engine" can mean an awful lot of different things. What kind of "AI" are you looking for?

Here is a list of some machine learning software. Many of them are open source (the linked page shows the licenses).

link|flag
Excellent list! Thanks! – Andrei Savu Jul 5 at 20:31
I look over the following project on sourceforge: sourceforge.net/projects/robocode , sourceforge.net/projects/markiv , sourceforge.net/projects/uvsim , sourceforge.net/projects/simspark . Thanks for answering. – Andrei Savu Jul 5 at 20:52
vote up 2 vote down

You should specify an AI category, anyway this is my favorite link: AI on the Web.

link|flag
vote up 5 vote down

I assume you are looking for Game AI and not Artificial Intelligence in general.

As far as I know, there is no such thing as AI engine. You have to be more specific. Do you need pathfinding? Do you need FSM? Goal-Oriented?

Other engines include RTS specific engines (OpenRTS is an open source one), first person shooters (new FPS games have their own API such as F.E.A.R.).

The most general purpose engine I can think of is Alive! the AI sandbox designed by AIGameDev.com

link|flag
I like Alive! Nice project. Has many of the features I need. – Andrei Savu Jul 5 at 20:28
vote up 4 vote down

Artificial intelligence is a pretty big field. I'm not sure that there's one "engine" that encompasses all of AI. Do you mean a Rete rules engine? Try Drools. Do you mean a neural network approach? Support vector machines? Active or passive learning? There's no one approach.

I really like what I see in "Programming Collective Intelligence". A nice variety of techniques, written in Python.

link|flag

Your Answer

Get an OpenID
or

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