|
1 |
| -This is a Chess AI currently in development. **It is written completely on Python, so it will be slower** than other AIs out there. Your contribution is fully welcome. |
| 1 | +<div align="center"> |
| 2 | + |
| 3 | +# Chess AI in Python |
| 4 | + |
| 5 | +   |
| 6 | + |
| 7 | +</div> |
| 8 | + |
| 9 | +## Description |
| 10 | + |
| 11 | +This is a Chess AI currently at the end of development. **It is written completely on Python, so it will be slower** than other AIs out in the market, but algorithms have been optimised wherever necessary and possible. It uses the [`Pygame`](pygame.org) library to provide the GUI and the media controls. FEN notations are supported upto castling, and future support is in development. |
| 12 | + |
| 13 | +## How to install |
| 14 | + |
| 15 | +[Clone the repository](https://github.com/git-guides/git-clone) in your favorable location on your local machine. The following command does the magic for you: |
| 16 | + |
| 17 | +``` |
| 18 | +git clone https://github.com/a2ys/chess-ai.git |
| 19 | +``` |
| 20 | + |
| 21 | +Even though the program uses a single library, `Pygame`, going by the [Python conventions](https://docs.python.org/3/tutorial/venv.html#:~:text=A%20common%20convention%20is%20to%20put%20this%20list%20in%20a%20requirements.txt%20file) is always recommended. So in the main program directory, run the following command: |
| 22 | + |
| 23 | +``` |
| 24 | +python -m pip install -r requirements.txt |
| 25 | +``` |
| 26 | +This command will install the required libraries for you. |
| 27 | + |
| 28 | +Now you just have to run the `main.py` file, and enjoy the program. The following command does the magic for you: |
| 29 | + |
| 30 | +``` |
| 31 | +python main.py |
| 32 | +``` |
| 33 | + |
| 34 | +## Libraries in use |
| 35 | + |
| 36 | +The program currently uses only one library, `Pygame`. |
| 37 | +Pygame provides the necessary working GUI for the program, and connects it to the logic of the program. It also facilitates easy rendering of the images, as well as timely production of appropriate sounds. |
| 38 | + |
| 39 | +## Minimum system requirements |
| 40 | + |
| 41 | +- OS: Any operating system with Python 3.x and the required libraries installed. |
| 42 | +- Processor: Any **dual-core** processor. |
| 43 | + |
| 44 | + > The program makes an extensive use of your machine's processing power, so it is recommended to use a **quad-core** processor, for a seamless experience, even though the minimum requirement is **dual-core**. |
| 45 | +- RAM: At least 2GB or above, DDR3 or above |
| 46 | + |
| 47 | + > The program extensively uses hashing and rapid storage and access of information from the machine's primary memory, so it is recommended to have a **DDR4** memory to have a hassle-free experience. |
| 48 | +- Permanent storage: Any storage type (SSD recommended) |
| 49 | + |
| 50 | +## Contributing |
| 51 | + |
| 52 | +If you are willing to add functionality to the program, you should [fork the repository](https://docs.github.com/en/get-started/quickstart/fork-a-repo) and make your desired changes. Then you should [create a pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) to allow to merge your changes in the main branch. |
| 53 | + |
| 54 | +Alternatively, if you find a bug/issue in the program, you can [create an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/about-issues), and wait for it to be fixed. |
| 55 | + |
| 56 | +Your contributions are wholeheartedly welcome. |
| 57 | + |
| 58 | +## License |
| 59 | + |
| 60 | +The project abides by the GNU GPL Version 3, which can be found [here](https://github.com/a2ys/chess-ai/blob/master/LICENSE.md). |
| 61 | + |
| 62 | +In short: |
| 63 | + |
| 64 | +It is a copyleft license, meaning that anyone who distributes software under this license must also provide the source code and make it available to others under the same license terms. The license also includes specific provisions to protect users from patents held by licensors, and is compatible with many other free software licenses. Additionally, the GPL Version 3 includes provisions to prevent "tivoization," which is the use of digital rights management to restrict the use of GPL-licensed software on certain hardware. The license also includes provisions for termination in the event of a violation of its terms, and for ensuring that any downstream recipients are also bound by the same terms. |
| 65 | + |
| 66 | +The summary above was generated by [ChatGPT](https://chat.openai.com), so it is be prone to errors; you should always refer to the original document for a wider perspective. |
0 commit comments