Skip to main content

A general library for the board game khet

Project description

https://travis-ci.org/TheWiseLion/pykhet.svg?branch=master

Introduction

The Khet board game logic and structures implemented in python. Also exposes adversarial search based algorithms.

from pykhet.components.types import TeamColor
from pykhet.games.game_types import ClassicGame
import random
from pykhet.solvers.minmax import MinmaxSolver

# Create a game with classic piece placement
game = ClassicGame()

# Get all valid silver moves
silver_moves = game.get_available_moves(TeamColor.silver)

# Randomly Play One
game.apply_move(random.choice(silver_moves))

# Finish the turn by applying the laser
game.apply_laser(TeamColor.silver)

# Use adversarial search to pick a move
solver = MinmaxSolver()
move = solver.get_move(game, TeamColor.red)
game.apply_move(move)
game.apply_laser(TeamColor.red)

Board Layout

The khet board and piece layout is represented below:

https://raw.githubusercontent.com/TheWiseLion/pykhet/master/docs/board-khet.png

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pykhet-0.11.tar.gz (1.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page