tanliyon / gym-xiangqi

This repo sets up the environment to play Xiang Qi (chinese chess) following the OpenAI Gym framework.
GNU Lesser General Public License v3.0
32 stars 6 forks source link

Setup initial skeleton files for Xiangqi game implementation #7

Closed hojoungjang closed 3 years ago

hojoungjang commented 3 years ago

Description

In order to get started and implement the game side of our project, I have created a couple of files that will, on a high level, outline our implementation details. From here on, we plan to split the task to frontend and backend components. The current code runs a the PyGame module and renders a plain black window for testing and setup purposes.

Type of change

How has this been tested?

In the project root directory:

  1. pip install -e .
  2. run python gym_xiangqi/xiangqi_game.py

Not a great test but helps verify that the code is up and running successfully showing what is expected.

hojoungjang commented 3 years ago

Still working on some changes. I will let you guys know when I am done.