Removed trash, updated readme.

v5stable
Ondřej Hruška 10 years ago
parent cbe9fcff08
commit 29b831259d
  1. 59
      README.md
  2. 8
      check
  3. 8
      pull
  4. 40
      send

@ -1,14 +1,16 @@
Rogue - dungeon crawler
=======================
# Rogue - dungeon crawler
Goals
-----
Alt-name: *Savage Rats: The Beer Hunt*
## Description
### Goals
- Simple retro-themed dungeon crawler
Features
--------
### Code Features
- Full OOP design
- Event driven
@ -19,8 +21,7 @@ Features
- Easily extensible base framework
Gameplay
--------------
### Game Features
- Real-time action
- Monsters with AI
@ -28,8 +29,44 @@ Gameplay
- Random floor generator
Used libraries
--------------
### Used libraries
- LWJGL (OpenGL & OpenAL support)
- SlickUtil (texture loader, audio system)
- SlickUtil (texture loader, audio system)
## BUILDING FROM SOURCE
1. Export a jar with the `mightypork.*` packages and the `res` folder into `./build/in/build.jar`
2. CD into `./build`
3. Run `make` to create a stand-alone executable jar in `./build/out/release.jar`
4. Use `make run` to execute it
## Usage
The game is controlled by mouse and keyboard.
### In-game controls
- *ARROWS* or *ASDW* - walking
- *E* - eat smallest food
- *Z* - Toggle map magnification (zoom)
- *M* - Toggle the minimap
- *I* - Toggle inventory screen (pauses the game)
- *SPACE*, *P*, *PAUSE* - pause / resume the game
- *Left button hold* - walk in the direction
- *Right click* - find path to the tile (works also on Minimap)
### Global controls
- *Ctrl+M* - Jump to main menu
- *Ctrl+Q* - Quit to DOS
- *F2* - Take a screenshot
- *F11* - Toggle fullscreen

@ -1,8 +0,0 @@
#!/bin/bash
echo
echo -e "\e[0;33m> git status\e[0m"
echo
git status
echo

@ -1,8 +0,0 @@
#!/bin/bash
echo
echo -e "\e[0;33m> git pull origin master\e[0m"
echo
git pull origin master
echo

40
send

@ -1,40 +0,0 @@
#!/bin/bash
. check
if [ -z "`git status --porcelain`" ]
then
echo -e "\e[0;31m Nothing to commit.\e[0m"
echo
exit
fi
echo -e "\e[0;32m Going to ADD all, COMMIT and PUSH.\e[0m"
echo -e "\e[0;32m Enter commit message (leave blank to abort).\e[0m"
echo
echo -n -e "\e[1;36m [msg]: \e[0m"
read msg
echo
if [ -z "$msg" ]
then
echo -e "\e[0;31m Aborted.\e[0m"
echo
exit
fi
echo -e "\e[0;33m> git add --all\e[0m"
echo
git add --all
echo
echo -e "\e[0;33m> git commit -m \"$msg\"\e[0m"
echo
git commit -m "$msg"
echo
echo -e "\e[0;33m> git push origin master\e[0m"
echo
git push origin master
echo
Loading…
Cancel
Save