Metadata-Version: 2.1
Name: backgammon
Version: 1.1.0
Summary: Backgammon engine for the Backgammon Network.
Home-page: https://github.com/softwerks/backgammon
Author: Softwerks
Author-email: info@softwerks.com
License: UNKNOWN
Description: backgammon
        ==========
        
        .. image:: https://github.com/softwerks/backgammon/actions/workflows/ci.yml/badge.svg
        
        Installation
        ------------
        
        .. code-block:: bash
        
            $ pip install backgammon
        
        Getting Started
        ---------------
        
        .. code-block:: pycon
        
            >>> import backgammon
            >>> b = backgammon.Backgammon("4OvgATDgc+QBUA", "cInpAAAAAAAA")
            >>> print(b)
                             Position ID: 4OvgATDgc+QBUA
                             Match ID   : cInpAAAAAAAA
             +13-14-15-16-17-18------19-20-21-22-23-24-+
             | X           O  O |   | O              X |
             | X           O    |   | O                |
             | X           O    |   | O                |
             | X                |   | O                |
             |                  |   | O                |
            v|                  |BAR|                  |
             |                  |   | X                |
             | O                |   | X                |
             | O           X    |   | X                |
             | O           X    |   | X              O |
             | O  X        X    | X | X              O |
             +12-11-10--9--8--7-------6--5--4--3--2--1-+
        
            >>> for play in b.generate_plays():
            ...    print(play.moves)
            ...    print(play.position)
            ...
            (Move(pips=3, source=None, destination=21), Move(pips=2, source=5, destination=3))
            Position(board_points=(-2, 0, 0, 1, 0, 4, 0, 3, 0, 0, 1, -4, 4, 0, 0, 0, -3, -1, -5, 0, 0, 1, 0, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=2, source=None, destination=22), Move(pips=3, source=12, destination=9))
            Position(board_points=(-2, 0, 0, 0, 0, 5, 0, 3, 0, 1, 1, -4, 3, 0, 0, 0, -3, -1, -5, 0, 0, 0, 1, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=2, source=None, destination=22), Move(pips=3, source=5, destination=2))
            Position(board_points=(-2, 0, 1, 0, 0, 4, 0, 3, 0, 0, 1, -4, 4, 0, 0, 0, -3, -1, -5, 0, 0, 0, 1, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=3, source=None, destination=21), Move(pips=2, source=23, destination=21))
            Position(board_points=(-2, 0, 0, 0, 0, 5, 0, 3, 0, 0, 1, -4, 4, 0, 0, 0, -3, -1, -5, 0, 0, 2, 0, 0), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=2, source=None, destination=22), Move(pips=3, source=10, destination=7))
            Position(board_points=(-2, 0, 0, 0, 0, 5, 0, 4, 0, 0, 0, -4, 4, 0, 0, 0, -3, -1, -5, 0, 0, 0, 1, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=3, source=None, destination=21), Move(pips=2, source=21, destination=19))
            Position(board_points=(-2, 0, 0, 0, 0, 5, 0, 3, 0, 0, 1, -4, 4, 0, 0, 0, -3, -1, -5, 1, 0, 0, 0, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=3, source=None, destination=21), Move(pips=2, source=10, destination=8))
            Position(board_points=(-2, 0, 0, 0, 0, 5, 0, 3, 1, 0, 0, -4, 4, 0, 0, 0, -3, -1, -5, 0, 0, 1, 0, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=2, source=None, destination=22), Move(pips=3, source=23, destination=20))
            Position(board_points=(-2, 0, 0, 0, 0, 5, 0, 3, 0, 0, 1, -4, 4, 0, 0, 0, -3, -1, -5, 0, 1, 0, 1, 0), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=2, source=None, destination=22), Move(pips=3, source=7, destination=4))
            Position(board_points=(-2, 0, 0, 0, 1, 5, 0, 2, 0, 0, 1, -4, 4, 0, 0, 0, -3, -1, -5, 0, 0, 0, 1, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=3, source=None, destination=21), Move(pips=2, source=7, destination=5))
            Position(board_points=(-2, 0, 0, 0, 0, 6, 0, 2, 0, 0, 1, -4, 4, 0, 0, 0, -3, -1, -5, 0, 0, 1, 0, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
            (Move(pips=3, source=None, destination=21), Move(pips=2, source=12, destination=10))
            Position(board_points=(-2, 0, 0, 0, 0, 5, 0, 3, 0, 0, 2, -4, 3, 0, 0, 0, -3, -1, -5, 0, 0, 1, 0, 1), player_bar=0, player_off=0, opponent_bar=0, opponent_off=0)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
