https://github.com/fwcd/socha-client-rust-2023
Template game client for the Software Challenge 2023 ("Hey, Danke für den Fisch!")
https://github.com/fwcd/socha-client-rust-2023
penguins-game rust software-challenge software-challenge-germany
Last synced: about 1 year ago
JSON representation
Template game client for the Software Challenge 2023 ("Hey, Danke für den Fisch!")
- Host: GitHub
- URL: https://github.com/fwcd/socha-client-rust-2023
- Owner: fwcd
- License: mit
- Created: 2022-08-12T17:58:49.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-15T01:35:58.000Z (almost 4 years ago)
- Last Synced: 2025-02-10T10:44:38.819Z (over 1 year ago)
- Topics: penguins-game, rust, software-challenge, software-challenge-germany
- Language: Rust
- Homepage:
- Size: 104 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Software Challenge 2023 Rust Client
[](https://github.com/fwcd/socha-client-rust-2023/actions/workflows/build.yml)
A template client for the [Software Challenge 2023](https://www.software-challenge.de) (Hey, Danke für den Fisch!) written in Rust.
The client implements the XML protocol for communication with the game server, the game structures and a very simple logic that picks moves at random.
## Building
To build the client into a statically linked executable, run
```bash
cargo build --release
```
## Running
First make sure to have the game server for "Hey, Danke für den Fisch!" running (you can [download a copy from GitHub here](https://github.com/software-challenge/backend/releases/tag/23.0.1)).
To start an instance of the client, you can now run
```bash
cargo run --release
```
> Note that you will need another client (either a second instance of this one or another one) to play.