aboutsummaryrefslogtreecommitdiff
path: root/messenger.c
blob: 45e872e1887c1bf6093af066443b3d0f79e9533d (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include "7w.h"

int io_getkey();
int io_printtext(int xorigin, int y, int width, char* text);
void io_printborder(int x, int y, int width);

#define MAXMESSAGE 100
static char message[MAXMESSAGE];

void printmessage(int x, int y, int width)
{
 if(message[0] == '\0') return;
 io_printborder(x, y++, width);
 y = io_printtext(x, y, width, message);
 io_printborder(x, y, width);
}

void postmessage(char* m)
{
 int i;
 for(i = 0; i < MAXMESSAGE && (message[i] = m[i]) != '\0'; i++);
}

void clearmessage()
{
 message[0] = '\0';
}

void posthelp()
{
 postmessage("    7 Wonders Help:\nKeys:\n Arrow keys move cursor\n Return - buys resource\n h - prints this message");
}

int postoptions(int x, int y)
{
 int width = 19;
 int yorig = y;
 int cursor = 0;
 char* a = "Buy Sell Wonder";
 char* b = " *";
 char* c = "     *";
 char* d = "           *";
 while(1) {
  y = yorig;
  io_printborder(x, y++, width);
  y = io_printtext(x, y, width, a);
  if(cursor == 0) y = io_printtext(x, y, width, b);
  if(cursor == 1) y = io_printtext(x, y, width, c);
  if(cursor == 2) y = io_printtext(x, y, width, d);
  io_printborder(x, y++, width);
  switch(io_getkey()) {
   case LEFT: cursor--;
    break;
   case RIGHT: cursor++;
    break;
   case ENTER: return cursor;
    break;
   default: break;
  }
  if(cursor < 0) cursor = 2;
  cursor = cursor%3;
 }
}
bgstack15