22 stable releases

1.7.0 Jan 8, 2024
1.6.0 Jan 7, 2024
1.5.13 Nov 23, 2021
1.5.2 Sep 29, 2021
0.1.0 Apr 12, 2019

#159 in Game dev

21 downloads per month
Used in 3 crates (2 directly)

MIT/Apache

165KB
3.5K SLoC

Emergent AI

Crates.ioDocs.rs

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:

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?

No runtime deps

Features