Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 days ago
JSON representation
Ludum Dare 53 game jam entry
- Host: GitHub
- URL: https://github.com/rbaltrusch/unicast_network_sim
- Owner: rbaltrusch
- License: mit
- Created: 2023-04-29T10:54:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-26T09:16:19.000Z (7 months ago)
- Last Synced: 2024-10-29T21:55:32.154Z (about 2 months ago)
- Topics: game, game-development, game-jam, gamedev, ludum-dare, ludum-dare-53, networking, puzzle, puzzle-game, pygame, python, simulation
- Language: Python
- Homepage: https://richardbaltrusch.itch.io/unicast-network-simulator
- Size: 31.6 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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