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
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
14 The map get generated randomly, too.
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.
22 Dependencies: the ncurses library.
24 git clone https://github.com/plomlompom/plomrogue
33 F1 toggle keybinding editing window
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
53 s center map on player
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
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.