emergent

Toolset for producing emergent gameplay for games written in Rust

OTHER License

Downloads
14.8K
Stars
80
Committers
1

Emergent AI

Toolset for producing emergent gameplay for games written in Rust

About

Emergent AI library is a set of modular building blocks to use for building smart agents, events and anything you want. The goal of this library is to generalize most well-known modern AI techniques into smaller units that when put together can produce smart behaviors of agents and game world itself.

When we focused on turning parts of modern AI systems into building blocks, we end up with these decision makers:

  • Machinery - Finite State Machine (or simply network of states connected by
    conditions to met for jumps to happen).
  • Reasoner - Utility AI agent (that scores each state and selects one with
    the highest score).
  • Planner - Goal Oriented Action Planning agent (finds the best path through
    all possible actions for goal selected by another decision maker assigned into
    this planner).
  • Sequencer - Goes through states (ones that are possible to run) in a sequence.
  • Selector - Selects only one state from list of possible states to run.
  • Parallelizer - Runs all states (that are possible to run) at the same time.

This modularity gives more power to the user, it allows user to build hierarchies of different decision makers to build the exact behavior user wants without putting limits on what is achievable!

Read more about all the concepts in the documentation

https://docs.rs/emergent

Read about developing your own AI systems in the book

https://psichix.github.io/emergent/

Media

Utility AI:

Roadmap

  • Create a small demo project to showcase the usage of this library.
  • Write a book describing how AI works in details and how to develop AI for games.
  • Research adding support for evolution-based neural networks?