Skip to content
Snippets Groups Projects
Commit 57dc674a authored by Tomas Vybiral's avatar Tomas Vybiral
Browse files

updated README.md

parent d48887c3
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,30 @@ Extra:
* libasan (for memory debugging) - must be turned on in `cmake/Sanitizers.cmake`
* cppcheck - must be turned on in `cmake/StaticAnalyzers.cmake`
 
## Controlls
Moving shooter:
* `W` - move up
* `S` - move down
Changing shooting angle:
* `A` - move up (increase angle)
* `D` - move down (decrease angle)
Changing shooting force:
* `E` - increase shooting force
* `Q` - decrease force
Shooting controlls:
* `Space` - shoot
* `1` - switch to single projectile shooting mode
* `2` - switch to multiple projectile shooting mode
Other:
* `R` - reset last saved state
* `F1` - enable debug mode
* `F2` - save current state (must be in debug mode)
## Compilation
 
First you need to generate Makefile using cmake.
......@@ -54,6 +78,19 @@ make doxygen-docs
 
Documentation is then generated into `build/html` folder.
 
Please reed documentation to make sure all cryteria were fullfilled.
### Tests
 
TODO
\ No newline at end of file
To compile tests:
```
make tests
```
To run tests:
```
cd bin
./tests
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment