Skip to main content

Validate move correctness for Xiangqi apps

Project description

# Xiangqi Checker

A simple module for checking the legality of xiangqi moves, derived from https://github.com/shaochuan/Xiangqi. Currently untested and experimental.

## Get it
`pip install xiangcheck`

## Use it

Currently uses a move notation that has no relation to the real game. Translation coming soon.

```python
import xiangcheck

checker = xiangcheck.Checker()

# can move a soldier forward?
checker.check_move((4,6),(4,5))
# True

# move that soldier forward
checker.make_move((4,6),(4,5))

# that old move is no longer valid
checker.check_move((4,6),(4,5))
# False
```

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

xiangcheck-0.1.2.tar.gz (4.1 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