aboutsummaryrefslogtreecommitdiff
path: root/hud/hud_views.c
blob: a669034a1b95948800ee61b0c8dddccf3b79b5d4 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

#include <hud_views.h>

#define LABEL(x, y, s, d) {\
    float p[2]={x,y};\
    render_text_scaled(rend, s, p, t, d);\
}

#define LABEL_F3(x, y, s, q, v, d) {\
    float p[2]={x,y}; char ss[64]; \
    if (lvl == 0) \
        sprintf(ss, "%s: (%."#q"f) %."#q"f %."#q"f", s, v[0], v[1], v[2]);\
    if (lvl == 1) \
        sprintf(ss, "%s: %."#q"f (%."#q"f) %."#q"f", s, v[0], v[1], v[2]);\
    if (lvl == 2) \
        sprintf(ss, "%s: %."#q"f %."#q"f (%."#q"f)", s, v[0], v[1], v[2]);\
    render_text_scaled(rend, ss, p, t, d);\
}

#define LABEL_I3(x, y, s, v, d) {\
    float p[2]={x,y}; char ss[64]; \
    if (lvl == 0) sprintf(ss, "%s: (%d) %d %d", s, v[0], v[1], v[2]);\
    if (lvl == 1) sprintf(ss, "%s: %d (%d) %d", s, v[0], v[1], v[2]);\
    if (lvl == 2) sprintf(ss, "%s: %d %d (%d)", s, v[0], v[1], v[2]);\
    render_text_scaled(rend, ss, p, t, 1);\
}


void render_view_comp (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, stats_comp *comp, int lvl) 
{
    float pad = 0;
    float h = 0;
    
    char arr[32][64];
    { 
        int n = stats_frame_sprintf(info, comp->base +lvl, arr); 
        for (int i=0; i<n; i++) { LABEL(px+pad, py+h, arr[i], 1); h += 15; }
    }
    { 
        int n = stats_frame_sprintf(info, comp->perc +lvl, arr); 
        for (int i=0; i<n; i++) { LABEL(px+pad, py+h, arr[i], 1); h += 15; }
    }
    { 
        int n = stats_weapon_sprintf(info, comp->base_weapon +lvl, arr);
        for (int i=0; i<n; i++) { LABEL(px+pad, py+h, arr[i], 1); h += 15; }
    }
    { 
        int n = stats_weapon_sprintf(info, comp->perc_weapon +lvl, arr);
        for (int i=0; i<n; i++) { LABEL(px+pad, py+h, arr[i], 1); h += 15; }
    }
}

void render_view_stats_unit (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, stats_unit *u) 
{
    float pad = 0;
    float h = 0;
    
    char arr[32][64];
    { 
        int n = stats_frame_sprintf(info, &u->frame, arr); 
        for (int i=0; i<n; i++) { LABEL(px+pad, py+h, arr[i], 1); h += 15; }
    }
    h += 10;
    for (int i=0; i<u->weaponlen; i++) { 
        LABEL(px+pad, py+h, "  WEAPON", 1); h += 15;
        int n = stats_weapon_sprintf(info, u->weapon +i, arr); 
        for (int i=0; i<n; i++) { LABEL(px+pad, py+h, arr[i], 1); h += 15; }
    }
}


void render_view_stats (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, info_unit *tm) 
{
    float h = 10;
    LABEL(px+10, py+h, "STATS", 2); h += 35;
    LABEL(px+10, py+h, tm->name, 1); h += 15;
    
    stats_unit base;
    stats_unit_compute(info, tm, &base);
    render_view_stats_unit(rend, t, px+10, py+h, info, &base);
}


void render_view_level (SDL_Renderer *rend, int px, int py, int lvl) {
    // position is of bottom right corner
    for (int i=0; i<MAXLEVEL; i++) {
        int sel = 0;
        if (lvl == i) {
            SDL_SetRenderDrawColor(rend, 240, 250, 240, 255);
            sel = 1;
        } else {
            SDL_SetRenderDrawColor(rend, 140, 140, 140, 255);
            sel = 0;
        }
        SDL_Rect rect = { 
            px-MAXLEVEL*9-1 + 9*i, 
            py-9-1-sel*2, 
            10, 
            10+sel*2 };
        SDL_RenderFillRect(rend, &rect);
        SDL_SetRenderDrawColor(rend, 0, 0, 0, 255);
        SDL_RenderDrawRect(rend, &rect);
    }
}


void render_view_chassis (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int chassis, int lvl, SDL_Texture *sprites) 
{
    if (chassis != -1) {
        info_chassis *ch = info->chassis+chassis;
        int h = 10;
        
        stats_comp *comp = info->stats[STATS_CHASSIS]+chassis;
        LABEL(px+10, py+h, comp->name, 2); h += 30;
        render_view_comp(rend, t, px+10, py+h, info, comp, lvl);

        info_unit u; int8_t *_; int __; int size[2];
        hud_map_sel(&u, info, 0, 0, &_, &__, size);
        size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        float pname[2] = { px+10, py+10 };
        render_text_scaled(rend, "select a chassis...", pname, t, 1);
    }
}

void render_view_battery (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int batt, int lvl) 
{
    if (batt != -1) {
        info_battery *battery = info->batteries+batt;
        int h = 10;
        
        stats_comp *comp = info->stats[STATS_BATTERY]+batt;
        LABEL(px+10, py+h, comp->name, 1); h += 30;
        render_view_comp(rend, t, px+10, py+h, info, comp, lvl);
        
        float size[2] = {145, 145}; size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        float pname[2] = { px+10, py+10 };
        render_text_scaled(rend, "select a battery...", pname, t, 1);
    }
}


void render_view_armor (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int armor, int lvl) 
{
    if (armor != -1) {
        info_armor *arm = info->armors+armor;
        int h = 10;
        
        stats_comp *comp = info->stats[STATS_ARMOR]+armor;
        LABEL(px+10, py+h, comp->name, 1); h += 20;
        
        float size[2] = { 150, 50 }; size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        float pname[2] = { px+10, py+10 };
        render_text_scaled(rend, "select an armor...", pname, t, 1);
    }
}

void render_view_armor_detail (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int armor, int lvl) 
{
    if (armor != -1) {
        info_armor *arm = info->armors+armor;
        int h = 10;
                
        stats_comp *comp = info->stats[STATS_ARMOR]+armor;
        LABEL(px+10, py+h, comp->name, 1); h += 30;
        render_view_comp(rend, t, px+10, py+h, info, comp, lvl);
        
        info_unit u; int8_t *_; int __; int size[2];
        hud_map_sel(&u, info, 2, 0, &_, &__, size);
        size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        render_view_weapon(rend, t, px, py, info, armor, lvl);
    }
}


void render_view_weapon (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int weapon, int lvl) 
{
    if (weapon != -1) {
        info_weapon *weap = info->weapons+weapon;
        int h = 10;

        stats_comp *comp = info->stats[STATS_WEAPONS]+weapon;
        LABEL(px+10, py+h, comp->name, 1); h += 30;
        render_view_comp(rend, t, px+10, py+h, info, comp, lvl);
        
        float size[2] = { 200, 110 }; size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        float pname[2] = { px+10, py+10 };
        render_text_scaled(rend, "select a weapon...", pname, t, 1);
    }
    
}

void render_view_weapon_detail (SDL_Renderer* rend, txtd *t, 
    int px, int py, infos *info, int weapon, int lvl)
{
    if (weapon != -1) {
        info_weapon *weap = info->weapons+weapon;
        int h = 10;

        stats_comp *comp = info->stats[STATS_WEAPONS]+weapon;
        LABEL(px+10, py+h, comp->name, 1); h += 30;
        render_view_comp(rend, t, px+10, py+h, info, comp, lvl);
        
        info_unit u; int8_t *_; int __; int size[2];
        hud_map_sel(&u, info, 3, 0, &_, &__, size);
        size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        render_view_weapon(rend, t, px, py, info, weapon, lvl);
    }
}


void render_view_aug (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int aug, int lvl) 
{
    if (aug != -1) {
        info_aug *augm = info->augs+aug;
        int h = 10;
        
        stats_comp *comp = info->stats[STATS_AUGS]+aug;
        LABEL(px+10, py+h, comp->name, 1); h += 20;
        
        float size[2] = { 150, 50 }; size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        float pname[2] = { px+10, py+10 };
        render_text_scaled(rend, "select an augment...", pname, t, 1);
    }
}

void render_view_aug_detail (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int aug, int lvl) 
{
    if (aug != -1) {
        info_aug *augm = info->augs+aug;
        int h = 10;
        
        stats_comp *comp = info->stats[STATS_AUGS]+aug;
        LABEL(px+10, py+h, comp->name, 1); h += 20;
        render_view_comp(rend, t, px+10, py+h, info, comp, lvl);
        
        info_unit u; int8_t *_; int __; int size[2];
        hud_map_sel(&u, info, 4, 0, &_, &__, size);
        size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        render_view_aug(rend, t, px, py, info, aug, lvl);
    }
}


void render_view_brain (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int brain, int lvl) 
{
    if (brain != -1) {
        float pname[2] = { px+10, py+10 };
        int h = 10;
        
        stats_comp *comp = info->stats[STATS_BRAIN]+brain;
        LABEL(px+10, py+h, comp->name, 1); h += 20;
        render_view_comp(rend, t, px+10, py+h, info, comp, lvl);
        
        float size[2] = { 145, 145 }; size[0] -= 5; size[1] -= 5;
        render_view_level(rend, px+size[0], py+size[1], lvl);
    } else {
        float pname[2] = { px+10, py+10 };
        render_text_scaled(rend, "select a controller...", pname, t, 1);
    }
}


void render_view_template (SDL_Renderer* rend, txtd *t, int px, int py, 
    infos *info, int temp, int lvl) 
{
    { button b = { "edit", 4, { px, py } };
    render_button(rend, t, &b); }
    float wedit = get_text_width("edit", t); 
    
    { button b = { "place", 4, { px+wedit+2*4+5, py } };
    render_button(rend, t, &b); }
    float wplace = get_text_width("place", t); 
    
    float pname[2] = { wplace+wedit+4*4+10+px, py+4 };
    char *sname = info->templates[temp].name;
    render_text_scaled(rend, sname, pname, t, 1);
}