{"id":26573929,"url":"https://github.com/diversiam90815/chess-game","last_synced_at":"2025-03-23T01:21:43.741Z","repository":{"id":259282483,"uuid":"873698621","full_name":"Diversiam90815/Chess-Game","owner":"Diversiam90815","description":"A local chess game in C++/C#. Currently enhaced by a local network multiplayer.","archived":false,"fork":false,"pushed_at":"2025-03-22T18:18:40.000Z","size":9599,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-22T19:23:34.221Z","etag":null,"topics":["chess","chess-engine","chess-game","cmake","cpp20","csharp","headless","tcp","udp","winui3"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Diversiam90815.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-10-16T15:11:12.000Z","updated_at":"2025-03-16T16:35:53.000Z","dependencies_parsed_at":"2024-10-24T04:04:22.576Z","dependency_job_id":"18efefff-0dcd-4192-a0b1-a615fce166eb","html_url":"https://github.com/Diversiam90815/Chess-Game","commit_stats":null,"previous_names":["diversiam90815/chess-game"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Diversiam90815%2FChess-Game","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Diversiam90815%2FChess-Game/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Diversiam90815%2FChess-Game/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Diversiam90815%2FChess-Game/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Diversiam90815","download_url":"https://codeload.github.com/Diversiam90815/Chess-Game/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245042024,"owners_count":20551502,"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","chess-engine","chess-game","cmake","cpp20","csharp","headless","tcp","udp","winui3"],"created_at":"2025-03-23T01:21:43.023Z","updated_at":"2025-03-23T01:21:43.734Z","avatar_url":"https://github.com/Diversiam90815.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chess Game\n\n## Overview\n\nThis is a chess game developed in C++ and C# with the goal of creating a fully-featured chess application. The project is currently in development and aims to provide a seamless chess-playing experience with a modern user interface.\n\n- **Backend**: C++\n- **Frontend**:\n  - **Windows**: WinUI 3 / C#\n\n\n## Prerequisites\n\n- **C++ Compiler**: Compatible with C++20 or higher.\n- **CMake**: Version 3.15 or higher.\n- **Git**: For cloning the repository.\n- **.NET8**: For Windows App SDK / WinUi3\n- **Visual Studio 2022 or higher**: With C++ Desktop Development workload.\n- **Python**: Version 3.x (for running `build.py`).\n\n\n## Getting Started\n\n### Cloning the Repository\n\nClone the repository using the following command:\n\n```bash\ngit clone git@github.com:Diversiam90815/Chess-Game.git\n```\n\nKeep in mind that you also need to check out the submodules with this project. To do so, you can include `--recurse-submodules` within the clone command (with git version 2.13 or higher):\n\n```bash\ngit clone --recurse-submdules git@github.com:Diversiam90815/Chess-Game.git\n```\n\nor if you already cloned the repository call\n\n```bash\ngit submodule update --init --recursive\n```\n\n\n### Building the Project\n\nThe Chess Game project uses a `build.py` script to automate the build process.\n\n#### Build Instructions\n\n##### Prepare the Build Environment\n\nNavigate to the project directory and run:\n\n```bash\npython build.py -p\n```\n\nFor a **Debug** build, include the `--debug` or `-d` option:\n\n```bash\npython build.py -pd\n```\n\n##### Build the Project\n\nThe build preperation is included within the build process of the application. So, to build the project, you can directly call\n\nDebug build:\n\n```bash\npython build.py -bd\n```\n\nRelease build:\n\n```bash\npython build.py -b\n```\n\n\n##### Run the Application\n\nAfter building, the executable will be located in the `build/\u003cConfiguration\u003e` directory:\n\n- **Windows**: `build/Release/ChessGame.exe`\n\nReplace `\u003cConfiguration\u003e` with `Release` or `Debug` depending on your build configuration.\n\n\n#### Build Script Details (`build.py`)\n\nThe `build.py` script simplifies the build process:\n\n- **Options**:\n  - `--prepare` or `-p`: Generates build files using CMake.\n  - `--build` or `-b`: Compiles the project.\n  - `--debug` or `-d`: Sets the build configuration to Debug mode.\n\n\n### Known Issues\n\n- **Chesspieces may be appear in a weird order** : Depending on the window scaling set in the Windows preferences, the Chesspieces may be misaligned. This causes the chess pieces to appear in a weird order. Fix for this is currently in progress. A known workaround is to set the window scaling to 100%.\n\n\n## Future Plans\n\n- **Online Multiplayer**: Implement network capabilities for online play.\n\n\n## Contributing\n\nContributions are welcome! Please follow these steps:\n\n1. **Fork** the repository.\n\n2. **Create** a new branch for your feature or bugfix:\n\n   ```bash\n   git checkout -b feature/your-feature-name\n   ```\n\n3. **Commit** your changes with clear messages:\n\n   ```bash\n   git commit -m \"Add your feature\"\n   ```\n\n4. **Push** to your branch:\n\n   ```bash\n   git push origin feature/your-feature-name\n   ```\n\n5. **Submit** a pull request to the `main` branch of this repository.\n\nPlease ensure your code follows the project's coding standards and includes appropriate documentation.\n\n\n---\n\n*Note: This project is currently under development. Features and plans may change as development progresses.*\n\n---\n\nFeel free to explore the repository and contribute to the project. Stay tuned for updates!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiversiam90815%2Fchess-game","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiversiam90815%2Fchess-game","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiversiam90815%2Fchess-game/lists"}