Difference between revisions of "Roguelike Intelligence"
(A sum up to ease browsing Dillinger articles) |
m |
||
Line 34: | Line 34: | ||
* [http://roguebasin.roguelikedevelopment.org/index.php?title=Roguelike_Integlligence_-_Evolving_State_Machine_AIs Roguelike Intelligence, part 3B - Evolving State Machine AIs] | * [http://roguebasin.roguelikedevelopment.org/index.php?title=Roguelike_Integlligence_-_Evolving_State_Machine_AIs Roguelike Intelligence, part 3B - Evolving State Machine AIs] | ||
''' | '''Ray Dillinger''' | ||
[[Category:Articles]][[Category:AI]] | [[Category:Articles]][[Category:AI]] |
Revision as of 23:19, 29 September 2010
Roguelike Game AI overview
Since I'm an AI engineer, and since I'm unemployed right now, and since I'm interested in roguelike games, I thought I'd write a series of articles on game AI for roguelikes as a contribution to the community.
Some of these techniques (Stateless AI's and State Machines in particular) are properly "pseudointelligence" rather than "artificial intelligence", because they don't involve any actual learning. But "AI" is how game designers refer to the decision-making code for their artificial antagonists, regardless of its actual status, so I'm going to use it.
The ground I plan to cover here includes roughly these articles; I may add an article or two to this or change the order of articles depending on what people are interested in reading.
- Stateless AI
- State Machine AI
- "Evolving" stateless AI's or state machine AI's
- Modeling the player
- Minimaxing in application to roguelike domains
- Neural Networks and training them with backprop
- "Evolving" neural networks.
- Recurrent Neural Networks (NN's with memory).
Overview
- Roguelike Intelligence, part 1 - Stateless AI's
- Roguelike Intelligence, part 2A - Intrinsic Information and State Machine AIs
- Roguelike Intelligence, part 2B - Displaced Actions
- Roguelike Intelligence, part 3A - Genetic Algorithms and Evolving State Machine AIs
- Roguelike Intelligence, part 3B - Evolving State Machine AIs
Ray Dillinger