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. You can move around a player and meet a random number enemies.
7 They move randomly and will only accidentally hit you. You have 5
8 hitpoints to lose before death, and so has each of them. The map gets
9 generated randomly, too. There is only one save file (named "savefile"),
10 and it gets overwritten each new turn. To start over with a new world,
16 Dependencies: the ncurses library.
18 git clone https://github.com/plomlompom/plomrogue
27 F1 toggle keybinding editing window
32 LEFT scroll windows pad left
33 RIGHT scroll windows pad right
34 > cycle window selection forwards
35 < cycle window selection backwards
36 y shift window forwards
37 Y shift window backwards
38 * grow window horizontally
39 _ shrink window horizontally
40 + grow window vertically
41 - shrink window vertically
53 S save current keybindings
54 UP navigate selection upwards in keybinding editing window
55 DOWN navigate selection downwards in keybinding editing window
56 RETURN modify keybinding selected in keybinding editing window
61 Run "./roguelike -s" to watch a recording of the current game from the
62 beginning. Hit the "next turn / wait" key to increment turns. Keys to
63 manage windows, scroll on the map and quit the program are active; keys
64 to perform player actions are inactive. Append a number to the -s option
65 (like "-s100") to start the recording at the respective turn number.