Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rbaltrusch/unicast_network_sim

Ludum Dare 53 game jam entry
https://github.com/rbaltrusch/unicast_network_sim

game game-development game-jam gamedev ludum-dare ludum-dare-53 networking puzzle puzzle-game pygame python simulation

Last synced: about 22 hours ago
JSON representation

Ludum Dare 53 game jam entry

Awesome Lists containing this project

README

        

# Unicast Network Simulator

This is my entry for the Ludum Dare 53 game jam, completed as an entry for the 48h category "The Compo".

![Gif of gameplay](src/media/gameplay.gif)

## Links

[game on itch.io](https://richardbaltrusch.itch.io/unicast-network-simulator)

[ludum dare 53 entry](https://ldjam.com/events/ludum-dare/53/$361412)

## Run from source

Install dependencies:

```
python -m pip install pygame==2.1.3
```

Then run the main file:

```
cd src
python main.py
```

## Pyinstaller build

Install pygame and pyinstaller:

```
python -m pip install pygame==2.1.3
python -m pip install pyinstaller==5.10.1
```

Run pyinstaller (v) command:
```
pyinstaller -n unicast_network_sim src/main.py --collect-submodules src -y --add-binary=src/media;media --add-data=LICENSE;. --add-data=README.md;. --add-data=config.json;.
```

## Python

Built using Python 3.8+

## License

MIT License