home · contact · privacy
Fixed off-by-one error encountered while changing default key for 'reload_wins' command.
[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 r       reload window configuration
49
50 w       scroll map up
51 x       scroll map down
52 a       scroll map left
53 d       scroll map right
54 s       center map on player
55 W       move player up
56 X       move player down
57 A       move player left
58 D       move player right
59 S       next turn / wait
60
61 K       save current keybindings
62 UP      navigate selection upwards in keybinding editing window
63 DOWN    navigate selection downwards in keybinding editing window
64 RETURN  modify keybinding selected in keybinding editing window
65
66 Replay game recording
67 ---------------------
68
69 Run "./roguelike -s" to watch a recording of the current game from the
70 beginning. Hit the "next turn / wait" key to increment turns. Keys to
71 manage windows, scroll on the map and quit the program are active; keys
72 to perform player actions are inactive. Append a number to the -s option
73 (like "-s100") to start the recording at the respective turn number.