Murthy10 / pyschieber

pyschieber is a playground for popular Swiss Schieber Jass game, it provides an API to the game as well as a CLI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

pyschieber

Pyschieber is an implementation of the well known Swiss Schieber Jass game.

As OpenAI Gym provides APIs for several popular games to learn your algorithms master these games. Pyschieber aims to offer an API in the same manner.

Usage

To install pyschieber, simply:

pip install pyschieber

pyschieber officially supports Python 3.4, 3.5, 3.6, 3.7, 3.5-dev, 3.6-dev, 3.7-dev, nightly and PyPy3.

CLI 💻

Beside of the API, pyschieber provides a CLI client to play the funny Scheiber Jass game. Currently your opponent will be a bot choosing a random card.

After the pip installation you could run the pyschieber command on the console to play a game:

$ pyschieber
Tournament starts, the goal are 1500 points.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Round 1 starts.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Hand cards: 

0 : <BELL:Koennig>
1 : <ACORN:9>
2 : <ROSE:9>
3 : <ACORN:Ober>
4 : <ROSE:Banner>
5 : <SHIELD:8>
6 : <ACORN:Ass>
7 : <ROSE:Ass>
8 : <ROSE:Under>


Trumpf:
0 : Trumpf.OBE_ABE
1 : Trumpf.UNDE_UFE
2 : Trumpf.ROSE
3 : Trumpf.BELL
4 : Trumpf.ACORN
5 : Trumpf.SHIELD
6 : Trumpf.SCHIEBEN

Geschoben: False

Please chose the trumpf by the number from 0 to 6: 

Jass Challenge

The usage of a CLI to play Schieber Jass could be boring. Therefore pyschieber provides a wrapper for your bots to play on the Zühlke Jass Server.

The ServerPlayer takes a pyschieber conform player An example how to launch is provide under Server Launcher.

For further information have a look at:

API 📋

The idea of pyschieber is to extend the game with your own implemented player. Henc schieber provides entry points to fulfill this requirement.

Environemnt introduction

To get a first feeling for the pyschieber playground let's have a look at a runable example.

  1. The first thing you have to do, is to instantiate a new Tournament.
from pyschieber.tournament import Tournament  

tournament = Tournament(point_limit=1500)
  1. Add the players to your tournament. In our example we use the erratic RandomPlayers Tick, Trick, Track and the GreedyPlayer Dagobert.
from pyschieber.player.random_player import RandomPlayer
from pyschieber.player.greedy_player.greedy_player import GreedyPlayer


players = [RandomPlayer(name='Tick'), RandomPlayer(name='Trick'), 
           RandomPlayer(name='Track'), GreedyPlayer(name='Dagobert')]

[tournament.register_player(player) for player in players]
  1. Now we are ready to play, let the games begin!
tournament.play()

Build your own Player 🏃

As you might have noticed we registered two different types of players on our tournament. Thus the idea is to implement your own Player to beat Trick, Trick and Track.

Basically the Player has to provide the methods:

  • set_card(card)
    • called by the dealer to get your cards at the start of every round
  • choose_trumpf(geschoben)
    • called when it's your turn to choose a trumpf, this has to be a generator and is recalled until the chosen trumpf is allowed
  • choose_card(state)
    • called when it's your turn to choose a card, this has to be a generator and is recalled until the chosen card is allowed

Additionally there is the stich_over(state) method, that is called after all players had chosen their cards.

The easiest way to implement your own player is to inherit from the BasePlayer class (due to the fact that Python uses duck typing it is not absolutely necessary), which provieds some basic functionality like store your cards.

To get more familiar with this concept let's have a look at the already mentioned Random Player.

import random

from pyschieber.player.base_player import BasePlayer
from pyschieber.trumpf import Trumpf


class RandomPlayer(BasePlayer):
    def choose_trumpf(self, geschoben):
        return move(choices=list(Trumpf))

    def choose_card(self):
        return move(choices=self.cards)


def move(choices):
    allowed = False
    while not allowed:
        choice = random.choice(choices)
        allowed = yield choice
        if allowed:
            yield None

What's going on here?

The Random Player is pretty naive and he simply chooses randomly a card or a trumpf from the list of choices. If the turn is not allowed he randomly chooses a new one until the rules of Schieber are satisfied.

Other player examples are the GreedyPlayer or the CliPlayer.

Now you should be ready to get your hands dirty to implement your own player and beat the random players Tick, Trick and Track! 🏆

Enhancements

  • Add Wiesen to the game
  • Beautify the CLI :trollface:
  • Provide a simple network player

About

pyschieber is a playground for popular Swiss Schieber Jass game, it provides an API to the game as well as a CLI

License:MIT License


Languages

Language:Python 100.0%