Difference between revisions of "Roguelike Intelligence"

From RogueBasin
Jump to navigation Jump to search
(A sum up to ease browsing Dillinger articles)
 
m (internal links)
 
(One intermediate revision by one other user not shown)
Line 28: Line 28:
== Overview ==
== Overview ==


* [http://roguebasin.roguelikedevelopment.org/index.php?title=Roguelike_Intelligence_-_Stateless_AIs Roguelike Intelligence, part 1 - Stateless AI's]
* [[Roguelike Intelligence - Stateless AIs]]
* [http://roguebasin.roguelikedevelopment.org/index.php?title=Roguelike_Intelligence_-_Intrinsic_Information_and_State_Machine_AIs Roguelike Intelligence, part 2A - Intrinsic Information and State Machine AIs]
* [[Roguelike Intelligence - Intrinsic Information and State Machine AIs]]
* [http://roguebasin.roguelikedevelopment.org/index.php?title=Roguelike_Intelligence_-_Displaced_Actions Roguelike Intelligence, part 2B - Displaced Actions]
* [[Roguelike Intelligence - Displaced Actions]]
* [http://roguebasin.roguelikedevelopment.org/index.php?title=Roguelike_Intelligence_-_Genetic_Algorithms_and_Evolving_State_Machine_AIs Roguelike Intelligence, part 3A - Genetic Algorithms and Evolving State Machine AIs]
* [[Roguelike Intelligence - Genetic Algorithms and 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]
* [[Roguelike Integlligence - Evolving State Machine AIs]]


'''David Dillinger'''
'''Ray Dillinger'''
[[Category:Articles]][[Category:AI]]
[[Category:Articles]][[Category:AI]]

Latest revision as of 12:02, 30 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.

  1. Stateless AI
  2. State Machine AI
  3. "Evolving" stateless AI's or state machine AI's
  4. Modeling the player
  5. Minimaxing in application to roguelike domains
  6. Neural Networks and training them with backprop
  7. "Evolving" neural networks.
  8. Recurrent Neural Networks (NN's with memory).

Overview

Ray Dillinger