This is 'Barbarian -- The Ultimate Warrior' game clone written in Python and PyGame. It's in progress. In fact, it has two scenes only:
- Some kind of battle with stupid AI. barbarian.battle.demo.webm (~180Kb)
- An animation viewer. barbarian.anim-viewer.demo.webm (~600Kb)
After clone the project you needs to install some pre-requisites:
-
At first you need Python3 interpreter (3.5 or better?).
-
There is psutil used in this project and it may require python3-devel package installed on Linux systems;
-
The PyGame framework and psutil can be installed with pip and requirements.txt file:
pip install -r requirements.txt
In project directory you can start battle scene:
python3 src/main.py
Or animation viewer scene:
python3 srs/main.py -v
-d
-- debug options shows FPS, CPU and memory usage info.
There are keys to control the left barbarian used in battle scene:
6
-- left7
-- right8
-- up9
-- down0
-- fireESC
-- close window and exit
- Art. Thanks very much to Jicehel for 2D sprites. If you want use this art in other projects please ask Jicehel first.
- Font. "PressStart2P". Thanks very much to CodeMan38 for a fonts. Also see SIL OPEN FONT LICENSE Version 1.1
- Source code are provided under MIT licence.