AI testing framework

Posted by Jon on Stack Overflow See other posts from Stack Overflow or by Jon
Published on 2009-09-05T12:22:30Z Indexed on 2010/05/22 23:30 UTC
Read the original article Hit count: 244

I am looking at developing an AI player for a simple game I have created in C#. I will be creating a population of the bots and evolving them over generations.

What I was wondering is there any frameworks out there that could be good for this sort of testing / development. Ideally I would like something that I could plug any / some type of games into and say, OK so have a population of X run it over Y generations and chart the results for me.

I was having a think about how I would create something that would do this for me and allow me to reuse this later for different AI projects and all I could think of was to have some sort of core code and some interface contracts that the game and AI would use so that the server can script it.

What are your thoughts, does anyone have any practical experience of this sort of thing?

© Stack Overflow or respective owner

Related posts about c#

Related posts about testing