aboutsummaryrefslogtreecommitdiff
path: root/view.c
blob: 874d43fb32c02c6d601d1dc1809db6d3fba6a643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "7w.h"

int print_wonder(int x, int y, int player, int cursor);
int print_wondersmall(int x, int y, int player, int selected, int dir);
void io_printcard(int x, int y, int era, int card);
void io_printhand(int x, int y, int player, int cursor);
void io_clearscreen();
int data_numplayers();
void io_printhand(int x, int y, int player, int cursor);

void view_printwonders(int focus, int cursor, int player)
{
int num = data_numplayers();
 int x, y, i, dir;
 x = y = 0;
 for(i = 0; i < num; i++) {
  int p = (player+i)%num;
  dir = 0;
  if(i == 1) dir = 1;
  if(i == num-1) dir = 2;
  if(focus == p)
   print_wonder(34, 0, p, cursor);
  y = print_wondersmall(x, y, p, focus == p, dir);
 }
}

void view_refresh(int focus, int cursor, int player)
{
 io_clearscreen();
 if(focus == data_numplayers()) {
  view_printwonders(player, -1, player);
  io_printhand(61, 0, player, cursor);
 } else {
  view_printwonders(focus, cursor, player);
  io_printhand(61, 0, player, -1);
 }
}
bgstack15