home · contact · privacy
7b4693c7f38d6ac7084ac95cf41313621206aa36
[plomrogue] / src / client / map.c
1 /* src/client/map.c */
2
3 #include "map.h"
4 #include <stdint.h> /* uint8_t */
5 #include "windows.h" /* struct Win, center_offset(), get_win_by_id() */
6 #include "world.h" /* for global world */
7
8
9
10 extern void map_scroll(char d)
11 {
12     world.focus_each_turn = 0;
13     struct Win * win = get_win_by_id('m');
14     uint16_t offset;
15     if (('8' == d || '2' == d) && world.map.length > win->frame_size.y)
16     {
17         offset = center_offset(win->center.y,
18                                world.map.length, win->frame_size.y);
19         win->center.y = offset + (win->frame_size.y / 2);
20         if ('2' == d && win->center.y < world.map.length - 1)
21         {
22             win->center.y++;
23             return;
24         }
25         win->center.y = win->center.y - ('8' == d && win->center.y > 0);
26     }
27     else if (('4' == d || '6' == d) && (world.map.length*2) > win->frame_size.x)
28     {
29         offset = center_offset(win->center.x,
30                                world.map.length*2, win->frame_size.x);
31         win->center.x = offset + (win->frame_size.x / 2);
32         if ('6' == d && win->center.x < (world.map.length * 2) - 1)
33         {
34             win->center.x++;
35             return;
36         }
37         win->center.x = win->center.x - ('4' == d && win->center.x > 0);
38     }
39 }
40
41
42
43 extern void map_center()
44 {
45     struct Win * win_map = get_win_by_id('m');
46     win_map->center.y = world.player_pos.y;
47     win_map->center.x = world.player_pos.x * 2 + (world.player_pos.y % 2);
48 }
49
50
51
52 extern void toggle_autofocus()
53 {
54     world.focus_each_turn = world.focus_each_turn ? 0 : 1;
55 }