annotate colors.c @ 1:ff5e05767bd3 ALPHA

Empty changelog
author darius
date Sat, 06 Dec 1997 05:41:28 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
1 /* $Id: colors.c,v 1.1.1.1 1997/12/06 05:41:28 darius Exp $ */
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
2
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
3 /* colors.c
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
4 *
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
5 * Kevin P. Smith 6/11/89
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
6 */
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
7 #include "copyright2.h"
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
8 #include <stdio.h>
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
9 #include <string.h>
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
10 #include "Wlib.h"
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
11 #include "defs.h"
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
12 #include "struct.h"
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
13 #include "data.h"
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
14 #include "proto.h"
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
15
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
16 void
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
17 getColorDefs()
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
18 {
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
19 borderColor = W_Grey;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
20 backColor = W_Black;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
21 foreColor = W_White;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
22 textColor = W_White;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
23 shipCol[0] = W_Grey;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
24 shipCol[1] = W_Yellow;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
25 shipCol[2] = W_Red;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
26 shipCol[3] = W_Green;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
27 shipCol[4] = W_Cyan;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
28 shipCol[5] = W_Grey;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
29 warningColor = W_Red;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
30 unColor = W_Grey;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
31 rColor = W_Red;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
32 yColor = W_Yellow;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
33 gColor = W_Green;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
34 myColor = W_White;
ff5e05767bd3 Empty changelog
darius
parents:
diff changeset
35 }