Skip to content

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

License

Notifications You must be signed in to change notification settings

JoelNiklaus/schieber

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

schieber

Schieber 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. Schieber aims to offer an API in the same manner.

Usage

To install schieber, simply:

pip install schieber

schieber 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, schieber 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 schieber command on the console to play a game:

$ schieber
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 schieber provides a wrapper for your bots to play on the Zühlke Jass Server.

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

For further information have a look at:

API 📋

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

Environment introduction

To get a first feeling for the schieber 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 schieber.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 schieber.player.random_player import RandomPlayer
from schieber.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 schieber.player.base_player import BasePlayer
from schieber.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
  • Implement Matschbonus!

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • Shell 0.1%