home · contact · privacy
Server/py: Some more mem map handling fixes …
[plomrogue] / src / client / map.h
index bd919d85fd3d2aa707f4b61f128a4b914747a697..8a3675084d1df838debf93145be2c0e5dbcba7ab 100644 (file)
 #ifndef MAP_H_CLIENT
 #define MAP_H_CLIENT
 
+#include <stdint.h> /* uint8_t */
 
 
-/* Try changing map window's focus into direction "d" (north = "N" etc.). Unset
- * world.focus_each_turn.
- */
-extern void map_scroll(char d);
+/* Toggle world.look (moving look cursor instead of player over map). */
+extern void toggle_lookmode();
 
-/* Center map window on player (even if it is non-visible). */
-extern void map_center();
+/* Read "command" as look cursor move command, act on it.*/
+extern uint8_t lookmode_nav(char * command);
 
-/* Toggle world.focus_each_turn (auto-centering of map on player each turn). */
-extern void toggle_autofocus();
+/* Send THINGS_HERE query message to server.*/
+extern void query_mapcell();