{"id":24985791,"url":"https://github.com/himmat12/chess_board_game","last_synced_at":"2025-09-07T02:43:05.569Z","repository":{"id":237826818,"uuid":"784298954","full_name":"himmat12/chess_board_game","owner":"himmat12","description":"This project is a simple implementation of chess in Scala. It provides a basic chess board, pieces, and rules to play the game.","archived":false,"fork":false,"pushed_at":"2024-06-15T17:09:17.000Z","size":647,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-04T10:58:46.654Z","etag":null,"topics":["chess-cli","chess-engine","chess-game","chess-programming","scala3"],"latest_commit_sha":null,"homepage":"","language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/himmat12.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-09T15:20:11.000Z","updated_at":"2024-09-04T08:44:48.000Z","dependencies_parsed_at":"2024-05-23T04:40:40.294Z","dependency_job_id":null,"html_url":"https://github.com/himmat12/chess_board_game","commit_stats":null,"previous_names":["himmat12/chess_board_game"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/himmat12%2Fchess_board_game","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/himmat12%2Fchess_board_game/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/himmat12%2Fchess_board_game/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/himmat12%2Fchess_board_game/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/himmat12","download_url":"https://codeload.github.com/himmat12/chess_board_game/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246174533,"owners_count":20735413,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chess-cli","chess-engine","chess-game","chess-programming","scala3"],"created_at":"2025-02-04T10:58:59.372Z","updated_at":"2025-03-29T10:46:17.558Z","avatar_url":"https://github.com/himmat12.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Scala Chess Board Game (still in development)\r\n\r\n![00](https://github.com/himmat12/chess_board_game/assets/48753714/61640f7c-8905-4b47-ada1-0558ec52a66f)\r\n\r\nWelcome to my Scala-based chess board game project!\r\n\r\nThis project is a simple implementation of chess in Scala. It provides a basic chess board, pieces, and rules to play the game.\r\n\r\n## Features\r\n\r\n- **Chess Board**: A standard 8x8 chess board.\r\n- **Pieces**: Implementation of all standard chess pieces - King, Queen, Rook, Bishop, Knight, and Pawn.\r\n- **Movement**: Valid movement logic for all pieces according to standard chess rules.\r\n- **Check and Checkmate Detection**: Detection of check and checkmate conditions during gameplay.\r\n- **Simple Text-based Interface**: The game is played via a simple text-based interface in the terminal.\r\n\r\n## Requirements\r\n\r\n- **Scala 3.3.1 SDK**: This project is built using Scala programming language with Scala 3.3.1 SDK.\r\n- **IntelliJ**: The project was developed using IntelliJ IDE.\r\n- **JUnit 4**: JUnit 4 library is used for unit testing in this project.\r\n\r\n## Getting Started\r\n\r\n1. **Clone the Repository**: Clone this repository to your local machine.\r\n   ```bash\r\n   https://github.com/himmat12/chess_board_game.git\r\n   ```\r\n2. **Build the Project**: Navigate to the project directory and use SBT to build the project.\r\n   ```bash\r\n   cd chess_board_game\r\n   sbt compile\r\n   ```\r\n3. **Run the Game**: Once the project is compiled successfully, you can run the game.\r\n   ```bash\r\n   sbt run\r\n   ```\r\n   ### Or, walkthrough this documentation to setup scala in intellij\r\n   [Getting Started | Scala Documentation](https://docs.scala-lang.org/getting-started/index.html)\r\n\r\n## How to Play\r\n\r\n- **Game Setup**: The game starts with a standard chess board setup with pieces placed in their initial positions.\r\n- **Move Input**: To make a move, enter the chess piece value and then destination position of the piece you want to move. For example, move \"wp5\" white pawn to \"f3\" from its initial position \"f2\".\r\n- **Game Progression**: The game alternates between players, allowing each player to make a move until checkmate or stalemate is reached.\r\n- **Check and Checkmate**: The game will notify players if a king is in check or if a checkmate has occurred (checkmate and stalemate are still in development).\r\n\r\n## Contributing\r\n\r\nContributions are welcome! If you'd like to contribute to this project, please fork the repository and submit a pull request with your changes.\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\r\n\r\n## Acknowledgements\r\n\r\n- This project was inspired by the love for chess and the desire to learn Scala.\r\n- Special thanks to the Scala community and Chess programming community for providing valuable resources and support.\r\n\r\n\r\n## Game screenshots\r\n![000](https://github.com/himmat12/chess_board_game/assets/48753714/19cc776f-3638-49c2-af77-8a6286e05844)\r\n![001](https://github.com/himmat12/chess_board_game/assets/48753714/491c9f3c-90a6-46c4-af9c-045e740886bf)\r\n![002](https://github.com/himmat12/chess_board_game/assets/48753714/13e5e2a3-2ff9-49aa-a95d-cef31e6e3970)\r\n![003](https://github.com/himmat12/chess_board_game/assets/48753714/29f1e314-69b4-429b-ae33-c6f92826895e)\r\n![004](https://github.com/himmat12/chess_board_game/assets/48753714/3ec1a779-ecaf-4031-9a42-1505c8650e60)\r\n![005](https://github.com/himmat12/chess_board_game/assets/48753714/4bb4d9e7-35ba-4797-9bca-b45868046162)\r\n\r\n---\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhimmat12%2Fchess_board_game","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhimmat12%2Fchess_board_game","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhimmat12%2Fchess_board_game/lists"}