Getting Started
Project Overview
Warning
Coming soon.
Installation
Check the installation guide.
Games
To check the games available in the library, please check the Games available section.
Play a game
There is an specific arena that allows to play any game in a terminal interface. In order to do so follow this instructions with the game desired:
# Change Hanoi for the name of the game to play
from IArena.arena.PlayableGame import PlayableGame
from IArena.games.Hanoi import HanoiRules, HanoiMovement, HanoiPosition
# Create the game and play it
rules = HanoiRules()
game = PlayableGame(rules)
score = game.play()
Build a player
In order to build a new player, IPlayer must be implemented.
Check the Players section for more information.
Games
To check the games available in the library, please check the Games available section.
Add a new game
Warning
Coming soon.
Tutorial
To get a more detailed tutorial, check the Wordle Tutorial section.