home · contact · privacy
Updated README on default keybindings.
[plomrogue] / README
1 plomrogue
2 =========
3
4 plomlompom tries to build his own roguelike. Currently, it doesn't do
5 much interesting, apart from managing some ncurses windows in a bizarre
6 fashion.
7
8 You can move around a player and meet a number of different enemies.
9 They move randomly and will only accidentally hit you. You have 5
10 hitpoints to lose before death; they have either 1, 3 or 9. Your score
11 grows by killing enemies, to the amount of hitpoints each killed enemy
12 started with.
13
14 The map get generated randomly, too.
15
16 There is only one save file (named "savefile"), and it gets overwritten
17 each new turn. To start over with a new world, delete it.
18
19 Install/run
20 -----------
21
22 Dependencies: the ncurses library.
23
24 git clone https://github.com/plomlompom/plomrogue
25 cd plomrogue
26 make
27 ./roguelike
28
29 Default keybindings
30 -------------------
31
32 Q       quit
33 F1      toggle keybinding editing window
34 F2      toggle map window
35 F3      toggle info window
36 F4      toggle log window
37
38 LEFT    scroll windows pad left
39 RIGHT   scroll windows pad right
40 >       cycle window selection forwards
41 <       cycle window selection backwards
42 y       shift window forwards
43 Y       shift window backwards
44 *       grow window horizontally
45 _       shrink window horizontally
46 +       grow window vertically
47 -       shrink window vertically
48
49 w       scroll map up
50 x       scroll map down
51 a       scroll map left
52 d       scroll map right
53 s       center map on player
54 W       move player up
55 X       move player down
56 A       move player left
57 D       move player right
58 S       next turn / wait
59
60 K       save current keybindings
61 UP      navigate selection upwards in keybinding editing window
62 DOWN    navigate selection downwards in keybinding editing window
63 RETURN  modify keybinding selected in keybinding editing window
64
65 Replay game recording
66 ---------------------
67
68 Run "./roguelike -s" to watch a recording of the current game from the
69 beginning. Hit the "next turn / wait" key to increment turns. Keys to
70 manage windows, scroll on the map and quit the program are active; keys
71 to perform player actions are inactive. Append a number to the -s option
72 (like "-s100") to start the recording at the respective turn number.