]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/vehicles/vehicles.qc
New cvar g_vehicle_raptor_cannon_locktarget, if 1 lets the raptors cannon lock onto...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / vehicles / vehicles.qc
1 #define spider_rocket_icon "gfx/vehicles/rocket_ico.tga"
2 #define spider_rocket_targ "gfx/vehicles/target.tga"
3 //#define SPIDER_CROSS "textures/spiderbot/cross.tga"
4 #define SPIDER_CROSS "gfx/vehicles/sbot-xhair.tga"
5 #define SPIDER_CROSS2 "gfx/vehicles/sbot-xhair2.tga"
6
7 #define spider_h "gfx/vehicles/hud_bg.tga"
8 #define spider_b "gfx/vehicles/sbot.tga"
9 #define spider_r "gfx/vehicles/sbot_rpods.tga"
10 #define spider_g "gfx/vehicles/sbot_mguns.tga"
11 #define spider_s "gfx/vehicles/shiled.tga"
12 #define spider_a1 "gfx/vehicles/sb_rocket.tga"
13 #define spider_a2 "gfx/vehicles/sb_bullets.tga"
14
15 #define raptor_h  "gfx/vehicles/hud_bg.tga"
16 #define raptor_s  "gfx/vehicles/shiled.tga"
17
18 #define raptor_b  "gfx/vehicles/raptor.tga"
19 #define raptor_g1 "gfx/vehicles/raptor_guns.tga"
20 #define raptor_g2 "gfx/vehicles/raptor_bombs.tga"
21 #define raptor_d  "gfx/vehicles/dropcross.tga"
22 #define raptor_c  "gfx/vehicles/raptor_cross.tga"
23
24 entity dropmark;
25 vector lastpos;
26
27
28 void CSQC_WAKIZASHI_HUD();
29 void CSQC_SPIDER_HUD();
30 void CSQC_RAPTOR_HUD();
31
32 entity AuxiliaryXhair;
33 void AuxiliaryXhair_Draw2D()
34 {
35     vector loc, psize;
36
37     psize = 0.5 * drawgetimagesize(SPIDER_CROSS2);
38     loc = project_3d_to_2d(self.origin) - 0.5 * psize;
39     if not (loc_z < 0 || loc_x < 0 || loc_y < 0 || loc_x > vid_conwidth || loc_y > vid_conheight)
40     {
41         loc_z = 0;
42         psize_z = 0;
43         drawpic(loc, SPIDER_CROSS2, psize, self.colormod, 1, DRAWFLAG_ADDITIVE);
44     }
45
46     if(time - self.cnt > 0.1)
47         remove(self);
48 }
49
50 void Ent_AuxiliaryXhair(float isNew)
51 {
52         //entity AuxiliaryXhair;
53
54     if(isNew)
55     {
56         if(AuxiliaryXhair)
57             remove(AuxiliaryXhair);
58
59         AuxiliaryXhair = spawn();
60                 AuxiliaryXhair.draw2d = AuxiliaryXhair_Draw2D;
61         setmodel(AuxiliaryXhair, "null");
62                 setsize(AuxiliaryXhair, '0 0 -1', '0 0 -1');
63
64     }
65
66         AuxiliaryXhair.origin_x = ReadCoord();
67         AuxiliaryXhair.origin_y = ReadCoord();
68         AuxiliaryXhair.origin_z = ReadCoord();
69
70         AuxiliaryXhair.colormod_x = ReadByte() / 255;
71         AuxiliaryXhair.colormod_y = ReadByte() / 255;
72         AuxiliaryXhair.colormod_z = ReadByte() / 255;
73
74     AuxiliaryXhair.drawmask = MASK_NORMAL;
75
76     AuxiliaryXhair.cnt = time;
77     //AuxiliaryXhair.solid = SOLID_NOT;
78 }
79
80 void Vehicles_Precache()
81 {
82         //precache_model("models/ax_shell.mdl");
83         //precache_sound("weapons/brass1.wav");
84 }
85
86
87 void CSQC_SPIDER_HUD()
88 {
89         float rockets, reload, heat, hp, shield;
90         vector picsize, hudloc;
91
92     // Fetch health & ammo stats
93     hp      = bound(0,getstatf(STAT_VEHICLESTAT_HEALTH), 1);
94         shield  = bound(0,getstatf(STAT_VEHICLESTAT_SHIELD), 1);
95         heat    = min(getstatf(STAT_VEHICLESTAT_RELOAD1), 2);
96         rockets =     getstati(STAT_VEHICLESTAT_AMMO2);
97         reload  = min(getstatf(STAT_VEHICLESTAT_RELOAD2), 1);
98
99
100     hudloc_y = 4;
101     hudloc_x = 4;
102     drawfill('130 28 0', ('115 0 0' * hp) + '0 10 0', hp * '0 1 0' + (1 - hp) * '1 0 0', 0.5, DRAWFLAG_NORMAL);
103     picsize = drawgetimagesize(spider_h) * 0.5;
104     drawpic(hudloc, spider_h, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
105
106     picsize = drawgetimagesize(spider_a2) * 0.5;
107     drawpic(hudloc + '120 96  0', spider_a2, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
108
109     drawstring(hudloc + '145 19  0', strcat(ftos(rint(hp * 100)), "%"),'15 15 0','0 1 0', 1, DRAWFLAG_NORMAL);
110     drawstring(hudloc + '175 34  0', strcat(ftos(rint(shield * 100)), "%"),'15 15 0','0 0 1', 1, DRAWFLAG_NORMAL);
111     drawstring(hudloc + '136 102  0', strcat(ftos(100 - rint(heat * 100)), "%"),'14 14 0','1 1 0', 1, DRAWFLAG_NORMAL);
112
113     picsize = drawgetimagesize(spider_a1) * 0.85;
114     if(rockets == 9)
115     {
116         drawpic(hudloc + '132 54  0', spider_a1, picsize, '-1 -1 -1', 1, DRAWFLAG_NORMAL);
117         drawstring(hudloc + '179 69 0', strcat(ftos(rint(reload * 100)), "%"),'14 14 0','1 1 0', 1, DRAWFLAG_NORMAL);
118     }
119     else
120     {
121         drawpic(hudloc + '132 54  0', spider_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
122         drawstring(hudloc + '179 69  0', strcat(ftos(9 - rockets), "/8"),'14 14 0','1 1 0', 1, DRAWFLAG_NORMAL);
123     }
124
125     picsize = drawgetimagesize(spider_b) * 0.5;
126     hudloc_y = 10.5;
127     hudloc_x = 10.5;
128
129     drawpic(hudloc, spider_s, picsize, '1 1 1', shield, DRAWFLAG_NORMAL);
130     drawpic(hudloc, spider_b, picsize, '0 1 0' * hp + '1 0 0' * (1 - hp), 1, DRAWFLAG_NORMAL);
131     drawpic(hudloc, spider_r, picsize, '1 1 1' * reload + '1 0 0' * (1 - reload), 1, DRAWFLAG_NORMAL);
132     drawpic(hudloc, spider_g, picsize, '1 1 1' * (1 - heat) + '1 0 0' *  heat, 1, DRAWFLAG_NORMAL);
133
134
135         if (scoreboard_showscores)
136         {
137                 HUD_DrawScoreboard();
138                 HUD_DrawCenterPrint();
139     }
140     else
141     {
142
143         /*
144         float movedt, vel;
145         movedt = time - self.move_time;
146         self.move_time = time;
147         vel = (view_origin - lastpos) * (1 / movedt);
148         lastpos  = view_origin;
149         dprint("vel: ", ftos(vel), "  angles: ", vtos(self.angles), "\n");
150         */
151
152         /*
153         dprint("aim1: ", vtos(aim1), "  aim2: ", vtos(aim2), "\n");
154         aim2_x *= -1;
155         makevectors(aim2);
156         te_lightning1(self, view_origin, view_origin + v_forward * MAX_SHOT_DISTANCE);
157         traceline(view_origin, view_origin + v_forward * MAX_SHOT_DISTANCE, MOVE_WORLDONLY, self);
158         aim2 = trace_endpos;
159
160
161         aim1 = aim1 + view_origin;
162
163         // Draw the crosshairs
164         aim1 = project_3d_to_2d(aim1);
165         aim2 = project_3d_to_2d(aim2);
166
167         picsize = 0.5 * drawgetimagesize(SPIDER_CROSS2);
168         aim2 = aim2 - 0.5 * picsize;
169         aim2_z = 0;
170         picsize_z = 0;
171         drawpic(aim2, SPIDER_CROSS2, picsize, '0 1 1', 1, DRAWFLAG_ADDITIVE);
172
173         picsize = 0.5 * drawgetimagesize(SPIDER_CROSS2);
174         aim1 = aim1 - 0.5 * picsize;
175         aim1_z = 0;
176         picsize_z = 0;
177         drawpic(aim1, SPIDER_CROSS2, picsize, '1 0 0', 1, DRAWFLAG_ADDITIVE);
178
179         */
180         picsize = drawgetimagesize(SPIDER_CROSS);
181         picsize_x *= autocvar_cl_vehicle_spiderbot_cross_size;
182         picsize_y *= autocvar_cl_vehicle_spiderbot_cross_size;
183
184         drawpic('0.5 0 0' * (vid_conwidth - picsize_x) + '0 0.5 0' * (vid_conheight - picsize_y), SPIDER_CROSS, picsize, '1 1 1', autocvar_cl_vehicle_spiderbot_cross_alpha, DRAWFLAG_ADDITIVE);
185     }
186 }
187
188
189 void CSQC_RAPTOR_HUD()
190 {
191         if(autocvar_r_letterbox)
192         return;
193
194         float reload, hp, shield, energy;
195         vector picsize, hudloc, vel;
196         float movedt;
197     vector where;
198
199
200     if(!dropmark)
201     {
202         dropmark = spawn();
203         dropmark.owner = self;
204     }
205
206         movedt = time - dropmark.move_time;
207         if(movedt)
208         {
209         dropmark.move_time = time;
210         vel = (view_origin - lastpos) * (1 / movedt);
211         lastpos  = view_origin;
212     }
213
214     // Fetch health & ammo stats
215     hp      = bound(0,getstatf(STAT_VEHICLESTAT_HEALTH), 1);
216         shield  = bound(0,getstatf(STAT_VEHICLESTAT_SHIELD), 1);
217         reload  = min(getstatf(STAT_VEHICLESTAT_RELOAD1), 1);
218         energy  = min(getstatf(STAT_VEHICLESTAT_ENERGY),  1);
219
220     // Draw the crosshairs
221     picsize = drawgetimagesize(raptor_c);
222     picsize_x *= 0.2;
223     picsize_y *= 0.2;
224     drawpic('0.5 0 0' * (vid_conwidth - picsize_x) + '0 0.5 0' * (vid_conheight - picsize_y), raptor_c, picsize, '1 0 0' + '0 1 1' * energy, 0.5, DRAWFLAG_ADDITIVE);
225
226     hudloc_y = 4;
227     hudloc_x = 4;
228
229     picsize = drawgetimagesize(raptor_h) * 0.5;
230     drawpic(hudloc, raptor_h, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
231
232     picsize = drawgetimagesize(spider_a2) * 0.5;
233     drawpic(hudloc + '120 96  0', spider_a2, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
234
235     drawstring(hudloc + '145 19  0', strcat(ftos(rint(hp * 100)), "%"),'15 15 0','0 1 0', 1, DRAWFLAG_NORMAL);
236     drawstring(hudloc + '175 34  0', strcat(ftos(rint(shield * 100)), "%"),'15 15 0','0 0 1', 1, DRAWFLAG_NORMAL);
237     drawstring(hudloc + '136 102 0', strcat(ftos(rint(energy * 100)), "%"),'15 15 0','0.5 0.5 1', 1, DRAWFLAG_NORMAL);
238
239
240     picsize = drawgetimagesize(spider_a1) * 0.85;
241     if(reload == 1)
242     {
243         drawpic(hudloc + '132 54  0', spider_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
244         drawstring(hudloc + '179 69  0', strcat(ftos(rint(reload * 100)), "%"),'14 14 0','0 1 0', 0.5, DRAWFLAG_NORMAL);
245     }
246     else
247     {
248         drawpic(hudloc + '132 54  0', spider_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
249         drawstring(hudloc + '179 69  0', strcat(ftos(rint(reload * 100)), "%"),'14 14 0','0 0 1', 1, DRAWFLAG_NORMAL);
250     }
251
252     picsize = drawgetimagesize(raptor_b) * 0.5;
253     hudloc_y = 10.5;
254     hudloc_x = 10.5;
255
256     drawpic(hudloc, raptor_s, picsize, '1 1 1', shield, DRAWFLAG_NORMAL);
257     drawpic(hudloc, raptor_b, picsize, '0 1 0' * hp + '1 0 0' * (1 - hp), 1, DRAWFLAG_NORMAL);
258     drawpic(hudloc, raptor_g1, picsize, '1 1 1' * energy + '1 0 0' * (1 - energy), 1, DRAWFLAG_NORMAL);
259     drawpic(hudloc, raptor_g2, picsize, '1 1 1' * reload + '1 0 0' *  (1 - reload), 1, DRAWFLAG_NORMAL);
260
261     if(reload == 1)
262     {
263         where = dropmark.origin;
264         setorigin(dropmark, view_origin);
265         dropmark.velocity = vel;
266         tracetoss(dropmark, self);
267
268         // Blend old with new predicted impact to smooth out jumpyness
269         where = project_3d_to_2d(trace_endpos * 0.5 + where * 0.5);
270
271         setorigin(dropmark, trace_endpos);
272         picsize = drawgetimagesize(raptor_d) * 0.2;
273
274         if not (where_z < 0 || where_x < 0 || where_y < 0 || where_x > vid_conwidth || where_y > vid_conheight)
275         {
276             where_x -= picsize_x * 0.5;
277             where_y -= picsize_y * 0.5;
278             where_z = 0;
279             drawpic(where, raptor_d, picsize, '0 2 0', 1, DRAWFLAG_ADDITIVE);
280         }
281         dropmark.cnt = time + 5;
282     }
283     else
284     {
285         if(dropmark.cnt > time)
286         {
287             where = project_3d_to_2d(dropmark.origin);
288             picsize = drawgetimagesize(raptor_d) * 0.25;
289
290             if not (where_z < 0 || where_x < 0 || where_y < 0 || where_x > vid_conwidth || where_y > vid_conheight)
291             {
292                 where_x -= picsize_x * 0.5;
293                 where_y -= picsize_y * 0.5;
294                 where_z = 0;
295                 drawpic(where, raptor_d, picsize, '2 0 0', 1, DRAWFLAG_ADDITIVE);
296             }
297         }
298     }
299
300         if (scoreboard_showscores)
301         {
302                 HUD_DrawScoreboard();
303                 HUD_DrawCenterPrint();
304         }
305
306 }
307
308 #define waki_h "gfx/vehicles/hud_bg.tga"
309 #define waki_b "gfx/vehicles/waki.tga"
310 #define waki_e "gfx/vehicles/waki_e.tga"
311 #define waki_g "gfx/vehicles/waki_guns.tga"
312 #define waki_r "gfx/vehicles/waki_rockets.tga"
313 #define waki_s "gfx/vehicles/shiled.tga"
314
315 #define waki_a1 "gfx/vehicles/sb_rocket.tga"
316 #define waki_a2 "gfx/vehicles/sb_cells.tga"
317
318 void CSQC_WAKIZASHI_HUD()
319 {
320         // 0--1 floats. 1 = 100%, 0.6 = 50%.
321         float health, shield, energy, rockets;
322         vector picsize, hudloc;
323
324     picsize = drawgetimagesize(SPIDER_CROSS);
325     picsize_x *= autocvar_cl_vehicle_spiderbot_cross_size;
326     picsize_y *= autocvar_cl_vehicle_spiderbot_cross_size;
327     drawpic('0.5 0 0' * (vid_conwidth - picsize_x) + '0 0.5 0' * (vid_conheight - picsize_y), SPIDER_CROSS, picsize, '1 1 1', autocvar_cl_vehicle_spiderbot_cross_alpha, DRAWFLAG_NORMAL);
328
329 /*
330 const float STAT_VEHICLESTAT_HEALTH  = 60;
331 const float STAT_VEHICLESTAT_SHIELD  = 61;
332 const float STAT_VEHICLESTAT_ENERGY  = 62;
333 const float STAT_VEHICLESTAT_AMMO1   = 63;
334 const float STAT_VEHICLESTAT_RELAOD1 = 64;
335 const float STAT_VEHICLESTAT_AMMO2   = 65;
336 const float STAT_VEHICLESTAT_RELOAD2 = 66;
337 */
338     health  = min(getstatf(STAT_VEHICLESTAT_HEALTH),  1);
339         shield  = min(getstatf(STAT_VEHICLESTAT_SHIELD),  1);
340         energy  = min(getstatf(STAT_VEHICLESTAT_ENERGY),  1);
341         rockets = bound(0,getstatf(STAT_VEHICLESTAT_RELOAD1), 1);
342
343     hudloc_y =  4;
344     hudloc_x = 4;
345
346     picsize = drawgetimagesize(waki_h) * 0.5;
347     drawpic(hudloc, waki_h, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
348
349     picsize = drawgetimagesize(waki_a2) * 0.7;
350     drawpic(hudloc + '116 92  0', waki_a2, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
351
352
353     drawstring(hudloc + '145 19  0', strcat(ftos(rint(health * 100)), "%"),'15 15 0','0 1 0', 1, DRAWFLAG_NORMAL);
354     drawstring(hudloc + '175 34  0', strcat(ftos(rint(shield * 100)), "%"),'15 15 0','0 0 1', 1, DRAWFLAG_NORMAL);
355
356     drawstring(hudloc + '136 102  0', strcat(ftos(rint(energy * 100)), "%"),'14 14 0','1 1 1', 1, DRAWFLAG_NORMAL);
357
358     picsize = drawgetimagesize(waki_a1) * 0.75;
359     if(rockets == 1)
360     {
361         drawpic(hudloc + '140 55  0', waki_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
362         drawpic(hudloc + '144 59  0', waki_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
363     }
364     else
365     {
366         drawpic(hudloc + '140 55  0', waki_a1, picsize, '-1 -1 -1', 1, DRAWFLAG_NORMAL);
367         drawpic(hudloc + '144 59  0', waki_a1, picsize, '-1 -1 -1', 1, DRAWFLAG_NORMAL);
368         drawstring(hudloc + '165 69 0', strcat(ftos(rint(rockets * 100)), "%"),'14 14 0','1 1 0', 1, DRAWFLAG_NORMAL);
369     }
370
371     picsize = drawgetimagesize(waki_b) * 0.5;
372     hudloc_y = 10.5;
373     hudloc_x = 10.5;
374
375     drawpic(hudloc, waki_s, picsize, '1 1 1', shield, DRAWFLAG_NORMAL);
376     drawpic(hudloc, waki_b, picsize, '0 1 0' * health + '1 0 0' * (1 - health), 1, DRAWFLAG_NORMAL);
377     drawpic(hudloc, waki_r, picsize, '1 1 1' * rockets + '1 0 0' * (1 - rockets), 1, DRAWFLAG_NORMAL);
378     drawpic(hudloc, waki_e, picsize, '1 1 1' * energy + '1 0 0' *  (1 - energy), 1, DRAWFLAG_NORMAL);
379
380
381
382         /*
383         p = '0.5 0 0' * (vid_conwidth - (rkt_size * 8));
384         p = p + '0 1 0' * vid_conheight - '0 32 0';
385
386         // Draw health bar
387         p_y += 8;
388         drawfill(p, '256 0 0' * health + '0 8 0' , '0 0.7 0', 0.75, DRAWFLAG_NORMAL);
389         p_x += 256 * health;
390         drawfill(p, '256 0 0' * (1 - health) + '0 8 0' , '0 0 0', 0.75, DRAWFLAG_NORMAL);
391
392         // Draw shiled bar
393         p_x -= 256 * health;
394         p_y += 4;
395         drawfill(p, '256 0 0' * shield + '0 4 0' , '0.25 0.25 1', 0.5, DRAWFLAG_NORMAL);
396
397         // Draw energy
398         //p_x -= 256 * health;
399         p_y -= 8;
400         drawfill(p, '256 0 0' * energy + '0 4 0' , '1 1 1', 0.75, DRAWFLAG_NORMAL);
401
402         // Draw rockets bar
403         p_y += 12;
404         drawfill(p, '256 0 0' * rockets + '0 4 0' , '1 0 0', 0.75, DRAWFLAG_NORMAL);
405         */
406
407
408
409
410         if (scoreboard_showscores)
411         {
412                 HUD_DrawScoreboard();
413                 HUD_DrawCenterPrint();
414         }
415
416 }