Zillions of Games

From Chessprogramming wiki
Revision as of 13:17, 17 May 2019 by GerdIsenberg (talk | contribs)
Jump to: navigation, search

Home * Engines * Zillions of Games

Zillions of Games 2.0 Start Screen [1]

Zillions of Games,
a commercial general game playing Windows program developed by Jeff Mallett and Mark Lefler to play abstract strategy board games with perfect information and up to 32 players, first released in 1998. Zillions of Games 2, released in 2003, comes with 100 new features, able to enforce maximal capturing rules as used in some versions of Checkers, and is packed with 350 board games, puzzles, and variants [2], including chess and 60 chess variants. Zillions further supports randomness in games through a special, computer-controlled "random player" that chooses its moves randomly, which allows to simulate dice games.

Zillions Rules Language

The game rules are specified by the Zillons rules language, persistant in ASCII readable Zillion rules files with the extension zrf [3], based on Lisp like S-expressions:

(game
  (title "...") 
  (players ...) ; up to 32
  (turn-order ... )
  (board .... )
  (piece ... ; up to 32
    (moves ...)
  ) 
  (board-setup ...)
  (draw-condition ...)
  (win-condition ...)
 )
)
(game ...)

Besides defining how pieces move, Zillions can define how pieces may be dropped. All piece and board graphics referred in the rule files, are required in Windows BMP format.

Selected Games

See also

Publications

Forum Posts

External Links

References