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
48 r reload window configuration
49 z toggle window configuration view
50 h toggle whether window height is saved as positive or negative
51 n toggle whether window width is saved as positive or negative
52 m save window configuration
58 s center map on player
65 K save current keybindings
66 UP navigate selection upwards in keybinding editing window
67 DOWN navigate selection downwards in keybinding editing window
68 RETURN modify keybinding selected in keybinding editing window
73 Run "./roguelike -s" to watch a recording of the current game from the
74 beginning. Hit the "next turn / wait" key to increment turns. Keys to
75 manage windows, scroll on the map and quit the program are active; keys
76 to perform player actions are inactive. Append a number to the -s option
77 (like "-s100") to start the recording at the respective turn number.