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 will occasionally hit you on contact, but without consequence to
8 you: The player has no hitpoints so far. Enemies have 5 hitpoints at
9 start and disappear if their hitpoints reach 0. The map gets generated
10 randomly, too. There is only one save file (named "savefile"), and it
11 gets overwritten each new turn. To start over with a new world, delete
17 Dependencies: the ncurses library.
19 git clone https://github.com/plomlompom/plomrogue
28 F1 toggle keybinding editing window
33 LEFT scroll windows pad left
34 RIGHT scroll windows pad right
35 > cycle window selection forwards
36 < cycle window selection backwards
37 y shift window forwards
38 Y shift window backwards
39 * grow window horizontally
40 _ shrink window horizontally
41 + grow window vertically
42 - shrink window vertically
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.