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 number of different
7 enemies. They move randomly and will only accidentally hit you. You have
8 5 hitpoints to lose before death; they have either 1, 3 or 9. The map
9 get generated randomly, too. There is only one save file (named
10 "savefile"), and it gets overwritten each new turn. To start over with
11 a new world, delete it.
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
47 s center map on player
54 S save current keybindings
55 UP navigate selection upwards in keybinding editing window
56 DOWN navigate selection downwards in keybinding editing window
57 RETURN modify keybinding selected in keybinding editing window
62 Run "./roguelike -s" to watch a recording of the current game from the
63 beginning. Hit the "next turn / wait" key to increment turns. Keys to
64 manage windows, scroll on the map and quit the program are active; keys
65 to perform player actions are inactive. Append a number to the -s option
66 (like "-s100") to start the recording at the respective turn number.