Popularity
3.5
Growing
Activity
0.0
Stable
7
2
1

Monthly Downloads: 14
Programming language: Haskell
License: MIT License
Tags: Game     Game Engine    
Latest version: v0.4.0

deterministic-game-engine alternatives and similar packages

Based on the "Game Engine" category.
Alternatively, view deterministic-game-engine alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of deterministic-game-engine or a related project?

Add another 'Game Engine' Package

README

Deterministic Game Engine

Build Status

Available on Hackage

Haskell library for creating simple deterministic games, such as tic-tac-toe. The engine requires a minimal set of actions related to the game, and then will run the game until a terminal state is reached.

Required action set when defining a game engine:

  • S0: The initial state (s)
  • Player(s): Specifies which player has the move in the state
  • Action(s): Returns a legal move in the state (a)
  • Result(s, a): The transition model, which determines the result of a move
  • Terminal-test(s): true if game is over, false otherwise
  • Utility(s, p): A utility function to determine the numeric value for a game that ends in a terminal state (s) for player (p).

Example

See the MockGame and associated spec for an example on how to build a simple game using the game engine.

Development

Install dependencies

$ cabal install

Run tests

$ cabal test