home · contact · privacy
Moved lots of stuff into new library actors.
[plomrogue] / src / draw_wins.c
1 #include <stdlib.h>
2 #include <stdint.h>
3 #include <ncurses.h>
4 #include <string.h>
5 #include "windows.h"
6 #include "draw_wins.h"
7 #include "roguelike.h"
8 #include "keybindings.h"
9 #include "actors.h"
10
11 void draw_with_linebreaks (struct Win * win, char * text, uint16_t start_y) {
12 // Write text into window content space. Start on row start_y. Fill unused rows with whitespace.
13   uint16_t x, y;
14   char toggle;
15   char fin = 0;
16   int16_t z = -1;
17   for (y = start_y; y < win->frame.size.y; y++) {
18     if (0 == fin)
19       toggle = 0;
20     for (x = 0; x < win->frame.size.x; x++) {
21        if (0 == toggle) {
22          z++;
23          if ('\n' == text[z]) {
24            toggle = 1;
25            continue; }
26          else
27            mvwaddch(win->frame.curses_win, y, x, text[z]);
28          if ('\n' == text[z+1]) {
29            z++;
30            toggle = 1; }
31          else if (0 == text[z+1]) {
32             toggle = 1;
33             fin = 1; } } } } }
34
35 void draw_text_from_bottom (struct Win * win, char * text) {
36 // Draw text from end/bottom to the top.
37   char toggle = 0;
38   uint16_t x, y, offset;
39   int16_t z = -1;
40   for (y = 0; 0 == toggle; y++)                           // Determine number of lines text would have in
41     for (x = 0; x < win->frame.size.x; x++) {             // a window of available width, but infinite height.
42       z++;
43       if ('\n' == text[z])            // Treat \n and \0 as control characters for incrementing y and stopping
44         break;                        // the loop. Make sure they don't count as cell space themselves.
45       if ('\n' == text[z+1]) {
46         z++;
47         break; }
48       else if (0 == text[z+1]) {
49         toggle = 1;
50         break; } }
51   z = -1;
52   uint16_t start_y = 0;
53   if (y < win->frame.size.y)       // Depending on what is bigger, determine start point in window or in text.
54     start_y = win->frame.size.y - y;
55   else if (y > win->frame.size.y) {
56     offset = y - win->frame.size.y;
57     for (y = 0; y < offset; y++)
58       for (x = 0; x < win->frame.size.x; x++) {
59         z++;
60         if ('\n' == text[z])
61           break;
62         if ('\n' == text[z+1]) {
63           z++;
64           break; } }
65     text = text + (sizeof(char) * (z + 1)); }
66   draw_with_linebreaks(win, text, start_y); }
67
68 void draw_log_win (struct Win * win) {
69 // Draw log text from world struct in win->data from bottom to top.
70   struct World * world = (struct World *) win->data;
71   draw_text_from_bottom(win, world->log); }
72
73 void draw_map_win (struct Win * win) {
74 // Draw map determined by win->data Map struct into window. Respect offset.
75   struct World * world = (struct World *) win->data;
76   struct Map * map = world->map;
77   struct Player * player = world->player;
78   struct Monster * monster;
79   char * cells = map->cells;
80   uint16_t width_map_av  = map->size.x  - map->offset.x;
81   uint16_t height_map_av = map->size.y - map->offset.y;
82   uint16_t x, y, z;
83   for (y = 0; y < win->frame.size.y; y++) {
84     z = map->offset.x + (map->offset.y + y) * (map->size.x);
85     for (x = 0; x < win->frame.size.x; x++) {
86       if (y < height_map_av && x < width_map_av) {
87           mvwaddch(win->frame.curses_win, y, x, cells[z]);
88         z++; } } }
89   if (   player->pos.y >= map->offset.y && player->pos.y < map->offset.y + win->frame.size.y
90       && player->pos.x >= map->offset.x && player->pos.x < map->offset.x + win->frame.size.x)
91     mvwaddch(win->frame.curses_win, player->pos.y - map->offset.y, player->pos.x - map->offset.x, '@');
92   for (monster = world->monster; monster != 0; monster = monster->next)
93     if (   monster->pos.y >= map->offset.y && monster->pos.y < map->offset.y + win->frame.size.y
94         && monster->pos.x >= map->offset.x && monster->pos.x < map->offset.x + win->frame.size.x)
95       mvwaddch(win->frame.curses_win, monster->pos.y - map->offset.y, monster->pos.x - map->offset.x, monster->name); }
96
97 void draw_info_win (struct Win * win) {
98 // Draw info window by appending win->data integer value to "Turn: " display.
99   struct World * world = (struct World *) win->data;
100   uint16_t count = world->turn;
101   char text[100];
102   snprintf(text, 100, "Turn: %d", count);
103   draw_with_linebreaks(win, text, 0); }
104
105 void draw_keys_win (struct Win * win) {
106 // Draw keybindings window.
107   struct World * world = (struct World *) win->data;
108   uint16_t offset = 0, y, x;
109   if (world->keyswindata->max >= win->frame.size.y) {
110     if (world->keyswindata->select > win->frame.size.y / 2) {
111       if (world->keyswindata->select < (world->keyswindata->max - (win->frame.size.y / 2)))
112         offset = world->keyswindata->select - (win->frame.size.y / 2);
113       else
114         offset = world->keyswindata->max - win->frame.size.y + 1; } }
115   uint8_t keydescwidth = 9 + 1; // max length assured by get_keyname() + \0
116   char * keydesc = malloc(keydescwidth), * keyname;
117   attr_t attri;
118   for (y = 0; y <= world->keyswindata->max && y < win->frame.size.y; y++) {
119     if (0 == y && offset > 0) {
120       draw_scroll_hint(&win->frame, y, offset + 1, '^');
121       continue; }
122     else if (win->frame.size.y == y + 1 && 0 < world->keyswindata->max - (win->frame.size.y + offset - 1)) {
123       draw_scroll_hint(&win->frame, y, world->keyswindata->max - (offset + win->frame.size.y) + 2, 'v');
124       continue; }
125     attri = 0;
126     if (y == world->keyswindata->select - offset) {
127       attri = A_REVERSE;
128       if (1 == world->keyswindata->edit)
129         attri = attri | A_BLINK; }
130     keyname = get_keyname(world->keybindings[y + offset].key);
131     snprintf(keydesc, keydescwidth, "%-9s", keyname);
132     free(keyname);
133     for (x = 0; x < win->frame.size.x; x++)
134       if (x < strlen(keydesc))
135         mvwaddch(win->frame.curses_win, y, x, keydesc[x] | attri);
136       else if (strlen(keydesc) < x && x < strlen(world->keybindings[y + offset].name) + strlen(keydesc) + 1)
137         mvwaddch(win->frame.curses_win, y, x,
138                  world->keybindings[y + offset].name[x - strlen(keydesc) - 1] | attri);
139       else
140         mvwaddch(win->frame.curses_win, y, x, ' ' | attri); }
141   free(keydesc); }