Skip to content

Releases: UMDLARS/CYLGame

Changed CYLGame Pipeline

18 Feb 17:15
Compare
Choose a tag to compare

CYLGame pipeline now looks like:

  • game.init_board
  • for each bot in room players += game.create_new_player
  • game.start_game (This is the added part)
  • while game.is_running
    • if playback: game.get_frame
    • for each player: player.run_turn
    • game.do_turn
  • game.get_score

Alpha support for Multi-Player Competitions

05 Feb 17:09
Compare
Choose a tag to compare

The release adds minimal support for running a Multi-Player Competition.
Look for more features in a future release

v1.3.5

05 Feb 04:03
Compare
Choose a tag to compare

Adds initial Python 3 support

Alpha adding Non-Grid and Multi-Player games

29 Jan 19:12
Compare
Choose a tag to compare

In this release, Brandon's changes have been merged in. Meaning non-grid based game now work somewhat.
Also now multi-player game are playable although lacking many needed features, for example scoring.