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 three enemies; they will
7 occasionally hit you (and each other) on contact, but without
8 consequences (no hitpoints implemented yet). The map gets generated
9 randomly. There is only one save file (named "savefile"), and it gets
10 overwritten each new turn. To start over with a new world, delete it.
15 Dependencies: the ncurses library.
17 git clone https://github.com/plomlompom/plomrogue
26 F1 toggle keybinding editing window
31 LEFT scroll windows pad left
32 RIGHT scroll windows pad right
33 > cycle window selection forwards
34 < cycle window selection backwards
35 y shift window forwards
36 Y shift window backwards
37 * grow window horizontally
38 _ shrink window horizontally
39 + grow window vertically
40 - shrink window vertically
52 S save current keybindings
53 UP navigate selection upwards in keybinding editing window
54 DOWN navigate selection downwards in keybinding editing window
55 RETURN modify keybinding selected in keybinding editing window
60 Run "./roguelike -s" to watch a recording of the current game from the
61 beginning. Hit the "next turn / wait" key to increment turns. Keys to
62 manage windows, scroll on the map and quit the program are active; keys
63 to perform player actions are inactive. Append a number to the -s option
64 (like "-s100") to start the recording at the respective turn number.