1 | /* |
---|
2 | * ttyvaders Textmode shoot'em up |
---|
3 | * Copyright (c) 2002 Sam Hocevar <sam@zoy.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * $Id: overlay.c 147 2003-11-10 23:38:50Z sam $ |
---|
7 | * |
---|
8 | * This program is free software; you can redistribute it and/or modify |
---|
9 | * it under the terms of the GNU General Public License as published by |
---|
10 | * the Free Software Foundation; either version 2 of the License, or |
---|
11 | * (at your option) any later version. |
---|
12 | * |
---|
13 | * This program is distributed in the hope that it will be useful, |
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
16 | * GNU General Public License for more details. |
---|
17 | * |
---|
18 | * You should have received a copy of the GNU General Public License |
---|
19 | * along with this program; if not, write to the Free Software |
---|
20 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
21 | */ |
---|
22 | |
---|
23 | #include "config.h" |
---|
24 | |
---|
25 | #include <stdlib.h> |
---|
26 | |
---|
27 | #include "common.h" |
---|
28 | |
---|
29 | void draw_status(game *g) |
---|
30 | { |
---|
31 | static char dots30[] = "------------------------------"; |
---|
32 | static char dashes30[] = "=============================="; |
---|
33 | |
---|
34 | /* Draw life jauge */ |
---|
35 | ee_color(EE_GRAY); |
---|
36 | ee_putstr(4, 1, dots30); |
---|
37 | |
---|
38 | if(g->p->life > MAX_LIFE * 7 / 10) |
---|
39 | { |
---|
40 | ee_color(EE_GREEN); |
---|
41 | } |
---|
42 | else if(g->p->life > MAX_LIFE * 3 / 10) |
---|
43 | { |
---|
44 | ee_color(EE_YELLOW); |
---|
45 | } |
---|
46 | else |
---|
47 | { |
---|
48 | ee_color(EE_RED); |
---|
49 | } |
---|
50 | |
---|
51 | ee_putstr(4, 1, dashes30 + (MAX_LIFE - g->p->life) * 30 / MAX_LIFE); |
---|
52 | |
---|
53 | ee_color(EE_WHITE); |
---|
54 | ee_putstr(1, 1, "L |"); |
---|
55 | ee_putstr(34, 1, "|"); |
---|
56 | |
---|
57 | /* Draw weapon jauge */ |
---|
58 | ee_color(EE_GRAY); |
---|
59 | ee_putstr(42, 1, dots30 + 10); |
---|
60 | |
---|
61 | if(g->p->special > MAX_SPECIAL * 9 / 10) |
---|
62 | { |
---|
63 | ee_color(EE_WHITE); |
---|
64 | } |
---|
65 | else if(g->p->special > MAX_SPECIAL * 3 / 10) |
---|
66 | { |
---|
67 | ee_color(EE_CYAN); |
---|
68 | } |
---|
69 | else |
---|
70 | { |
---|
71 | ee_color(EE_BLUE); |
---|
72 | } |
---|
73 | |
---|
74 | ee_putstr(42, 1, dashes30 + 10 |
---|
75 | + (MAX_SPECIAL - g->p->special) * 20 / MAX_SPECIAL); |
---|
76 | |
---|
77 | ee_color(EE_WHITE); |
---|
78 | ee_putstr(39, 1, "S |"); |
---|
79 | ee_putstr(62, 1, "|"); |
---|
80 | } |
---|
81 | |
---|