]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/View.qc
Merge branch 'master' into fruitiex/fruitbalance
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / View.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 rkt_size 32
5 #define rld_size_x 256
6 #define rld_size_y 16
7
8 void CSQC_WAKIZASHI_HUD();
9
10 entity porto;
11 vector polyline[16];
12 float trace_dphitcontents;
13 float trace_networkentity;
14 float Q3SURFACEFLAG_SLICK = 2; // low friction surface
15 float DPCONTENTS_SOLID = 1; // blocks player movement
16 float DPCONTENTS_BODY = 32; // blocks player movement
17 float DPCONTENTS_CORPSE = 64; // blocks player movement
18 float DPCONTENTS_PLAYERCLIP = 256; // blocks player movement
19 void Porto_Draw()
20 {
21         vector p, dir, ang, q, nextdir;
22         float idx, portal_number, portal1_idx;
23
24         if(activeweapon != WEP_PORTO || spectatee_status || gametype == GAME_NEXBALL)
25                 return;
26         if(intermission == 1)
27                 return;
28         if(intermission == 2)
29                 return;
30         if (getstati(STAT_HEALTH) <= 0)
31                 return;
32
33         dir = view_forward;
34
35         if(angles_held_status)
36         {
37                 makevectors(angles_held);
38                 dir = v_forward;
39         }
40
41         p = view_origin;
42
43         polyline[0] = p;
44         idx = 1;
45         portal_number = 0;
46         nextdir = dir;
47
48         for(;;)
49         {
50                 dir = nextdir;
51                 traceline(p, p + 65536 * dir, TRUE, porto);
52                 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
53                         return;
54                 nextdir = dir - 2 * (dir * trace_plane_normal) * trace_plane_normal; // mirror dir at trace_plane_normal
55                 p = trace_endpos;
56                 polyline[idx] = p;
57                 ++idx;
58                 if(idx >= 16)
59                         return;
60                 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_SLICK || trace_dphitcontents & DPCONTENTS_PLAYERCLIP)
61                         continue;
62                 ++portal_number;
63                 ang = vectoangles2(trace_plane_normal, dir);
64                 ang_x = -ang_x;
65                 makevectors(ang);
66                 if(!CheckWireframeBox(porto, p - 48 * v_right - 48 * v_up + 16 * v_forward, 96 * v_right, 96 * v_up, 96 * v_forward))
67                         return;
68                 if(portal_number == 1)
69                         portal1_idx = idx;
70                 if(portal_number >= 2)
71                         break;
72         }
73
74         while(idx >= 2)
75         {
76                 p = polyline[idx-2];
77                 q = polyline[idx-1];
78                 if(idx == 2)
79                         p = p - view_up * 16;
80                 if(idx-1 >= portal1_idx)
81                 {
82                         Draw_CylindricLine(p, q, 4, "", 1, 0, '0 0 1', 0.5, DRAWFLAG_NORMAL);
83                 }
84                 else
85                 {
86                         Draw_CylindricLine(p, q, 4, "", 1, 0, '1 0 0', 0.5, DRAWFLAG_NORMAL);
87                 }
88                 --idx;
89         }
90 }
91
92 /**
93  * Checks whether the server initiated a map restart (stat_game_starttime changed)
94  *
95  * TODO: Use a better solution where a common shared entitiy is used that contains
96  * timelimit, fraglimit and game_starttime! Requires engine changes (remove STAT_TIMELIMIT
97  * and STAT_FRAGLIMIT to be auto-sent)
98  */
99 void CheckForGamestartChange() {
100         float startTime;
101         startTime = getstatf(STAT_GAMESTARTTIME);
102         if (previous_game_starttime != startTime) {
103                 if ((time + 5.0) < startTime) {
104                         //if connecting to server while restart was active don't always play prepareforbattle
105                         sound(self, CHAN_VOICE, strcat("announcer/", cvar_string("cl_announcer"), "/prepareforbattle.wav"), VOL_BASEVOICE, ATTN_NONE);
106                 }
107                 if (time < startTime) {
108                         restartAnnouncer = spawn();
109                         restartAnnouncer.think = restartAnnouncer_Think;
110                         restartAnnouncer.nextthink = startTime - floor(startTime - time); //synchronize nextthink to startTime
111                 }
112         }
113         previous_game_starttime = startTime;
114 }
115
116 void Porto_Init()
117 {
118         porto = spawn();
119         porto.classname = "porto";
120         porto.draw = Porto_Draw;
121         porto.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP;
122 }
123
124 float drawtime;
125 float avgspeed;
126 vector GetCurrentFov(float fov)
127 {
128         float zoomsensitivity, zoomspeed, zoomfactor, zoomdir, velocityzoom;
129
130         zoomsensitivity = cvar("cl_zoomsensitivity");
131         zoomfactor = cvar("cl_zoomfactor");
132         if(zoomfactor < 1 || zoomfactor > 16)
133                 zoomfactor = 2.5;
134         zoomspeed = cvar("cl_zoomspeed");
135         if(zoomspeed >= 0)
136                 if(zoomspeed < 0.5 || zoomspeed > 16)
137                         zoomspeed = 3.5;
138
139         zoomdir = button_zoom;
140         if(getstati(STAT_ACTIVEWEAPON) == WEP_NEX) // do NOT use switchweapon here
141                 zoomdir += button_attack2;
142         if(spectatee_status > 0 || isdemo())
143         {
144                 if(spectatorbutton_zoom)
145                         zoomdir = 0 + !zoomdir;
146                 // do not even THINK about removing this 0
147                 // _I_ know what I am doing
148                 // fteqcc does not
149         }
150
151         if(zoomdir)
152                 zoomin_effect = 0;
153
154         if(zoomin_effect || camera_active)
155         {
156                 current_viewzoom = min(1, current_viewzoom + drawframetime);
157         }
158         else
159         {
160                 if(zoomspeed < 0) // instant zoom
161                 {
162                         if(zoomdir)
163                                 current_viewzoom = 1 / zoomfactor;
164                         else
165                                 current_viewzoom = 1;
166                 }
167                 else
168                 {
169                         if(zoomdir)
170                                 current_viewzoom = 1 / bound(1, 1 / current_viewzoom + drawframetime * zoomspeed * (zoomfactor - 1), zoomfactor);
171                         else
172                                 current_viewzoom = bound(1 / zoomfactor, current_viewzoom + drawframetime * zoomspeed * (1 - 1 / zoomfactor), 1);
173                 }
174         }
175
176         if(almost_equals(current_viewzoom, 1))
177                 current_zoomfraction = 0;
178         else if(almost_equals(current_viewzoom, 1/zoomfactor))
179                 current_zoomfraction = 1;
180         else
181                 current_zoomfraction = (current_viewzoom - 1) / (1/zoomfactor - 1);
182
183         if(zoomsensitivity < 1)
184                 setsensitivityscale(pow(current_viewzoom, 1 - zoomsensitivity));
185         else
186                 setsensitivityscale(1);
187
188         velocityzoom = bound(0, drawframetime / max(0.000000001, cvar_or("cl_velocityzoomtime", 0.3)), 1);
189         avgspeed = avgspeed * (1 - velocityzoom) + (vlen(pmove_vel) / 1000) * velocityzoom;
190         velocityzoom = exp(float2range11(avgspeed * -cvar_or("cl_velocityzoom", 0) / 1) * 1);
191
192         //print(ftos(avgspeed), " avgspeed, ", ftos(cvar_or("cl_velocityzoom", 0)), " cvar, ", ftos(velocityzoom), " return\n"); // for debugging
193
194         float frustumx, frustumy, fovx, fovy;
195         frustumy = tan(fov * M_PI / 360.0) * 0.75 * current_viewzoom * velocityzoom;
196         frustumx = frustumy * vid_width / vid_height / vid_pixelheight;
197         fovx = atan2(frustumx, 1) / M_PI * 360.0;
198         fovy = atan2(frustumy, 1) / M_PI * 360.0;
199
200         return '1 0 0' * fovx + '0 1 0' * fovy;
201 }
202
203 // this function must match W_SetupShot!
204 float zoomscript_caught;
205
206 vector wcross_origin;
207 float wcross_scale_prev, wcross_alpha_prev;
208 vector wcross_color_prev;
209 float wcross_scale_goal_prev, wcross_alpha_goal_prev;
210 vector wcross_color_goal_prev;
211 float wcross_changedonetime;
212
213 string wcross_name_goal_prev, wcross_name_goal_prev_prev;
214 float wcross_resolution_goal_prev, wcross_resolution_goal_prev_prev;
215 float wcross_name_changestarttime, wcross_name_changedonetime;
216 float wcross_name_alpha_goal_prev, wcross_name_alpha_goal_prev_prev;
217 entity trueaim;
218 entity trueaim_rifle;
219
220 #define SHOTTYPE_HITTEAM 1
221 #define SHOTTYPE_HITOBSTRUCTION 2
222 #define SHOTTYPE_HITWORLD 3
223 #define SHOTTYPE_HITENEMY 4
224
225 void TrueAim_Init()
226 {
227         trueaim = spawn();
228         trueaim.classname = "trueaim";
229         trueaim.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
230         trueaim_rifle = spawn();
231         trueaim_rifle.classname = "trueaim_rifle";
232         trueaim_rifle.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_CORPSE;
233 }
234
235 float EnemyHitCheck()
236 {
237         float t;
238         wcross_origin = project_3d_to_2d(trace_endpos);
239         wcross_origin_z = 0;
240         if(trace_networkentity < 1)
241                 return SHOTTYPE_HITWORLD;
242         if(trace_networkentity > maxclients)
243                 return SHOTTYPE_HITWORLD;
244         t = GetPlayerColor(trace_networkentity - 1);
245         if(teamplay)
246                 if(t == myteam)
247                         return SHOTTYPE_HITTEAM;
248         if(t == COLOR_SPECTATOR)
249                 return SHOTTYPE_HITWORLD;
250         return SHOTTYPE_HITENEMY;
251 }
252
253 float TrueAimCheck()
254 {
255         float nudge = 1; // added to traceline target and subtracted from result
256         vector vecs, trueaimpoint, w_shotorg;
257         vector mi, ma, dv;
258         float shottype;
259         entity ta;
260         float mv;
261
262         mi = ma = '0 0 0';
263         ta = trueaim;
264         mv = MOVE_NOMONSTERS;
265
266         switch(activeweapon)
267         {
268                 case WEP_TUBA: // no aim
269                 case WEP_PORTO: // shoots from eye
270                 case WEP_HOOK: // no trueaim
271                 case WEP_GRENADE_LAUNCHER: // toss curve
272                         return SHOTTYPE_HITWORLD;
273                 case WEP_NEX:
274                 case WEP_MINSTANEX:
275                         mv = MOVE_NORMAL;
276                         break;
277                 case WEP_CAMPINGRIFLE:
278                         ta = trueaim_rifle;
279                         mv = MOVE_NORMAL;
280                         if(zoomscript_caught)
281                         {
282                                 tracebox(view_origin, '0 0 0', '0 0 0', view_origin + view_forward * MAX_SHOT_DISTANCE, mv, ta);
283                                 return EnemyHitCheck();
284                         }
285                         break;
286                 case WEP_ROCKET_LAUNCHER: // projectile has a size!
287                         mi = '-3 -3 -3';
288                         ma = '3 3 3';
289                         break;
290                 case WEP_FIREBALL: // projectile has a size!
291                         mi = '-16 -16 -16';
292                         ma = '16 16 16';
293                         break;
294                 case WEP_SEEKER: // projectile has a size!
295                         mi = '-2 -2 -2';
296                         ma = '2 2 2';
297                         break;
298                 case WEP_ELECTRO: // projectile has a size!
299                         mi = '0 0 -3';
300                         ma = '0 0 -3';
301                         break;
302         }
303
304         vecs = decompressShotOrigin(getstati(STAT_SHOTORG));
305
306         traceline(view_origin, view_origin + view_forward * MAX_SHOT_DISTANCE, mv, ta);
307         trueaimpoint = trace_endpos;
308
309         if(vecs_x > 0)
310                 vecs_y = -vecs_y;
311         else
312                 vecs = '0 0 0';
313
314         dv = view_right * vecs_y + view_up * vecs_z;
315         w_shotorg = view_origin + dv;
316
317         // now move the vecs forward as much as requested if possible
318         tracebox(w_shotorg, mi, ma, w_shotorg + view_forward * (vecs_x + nudge), MOVE_NORMAL, ta); // FIXME this MOVE_NORMAL part will misbehave a little in csqc
319         w_shotorg = trace_endpos - view_forward * nudge;
320
321         tracebox(w_shotorg, mi, ma, trueaimpoint, MOVE_NORMAL, ta);
322         shottype = EnemyHitCheck();
323         if(shottype != SHOTTYPE_HITWORLD)
324                 return shottype;
325
326 #if 0
327         // FIXME WHY DOES THIS NOT WORK FOR THE ROCKET LAUNCHER?
328         // or rather, I know why, but see no fix
329         if(vlen(trace_endpos - trueaimpoint) > vlen(ma) + vlen(mi) + 1)
330                 // yes, this is an ugly hack... but it seems good enough to find out whether the test hits the same place as the initial trace
331                 return SHOTTYPE_HITOBSTRUCTION;
332 #endif
333
334         return SHOTTYPE_HITWORLD;
335 }
336
337 void CSQC_common_hud(void);
338
339 void PostInit(void);
340 void CSQC_Demo_Camera();
341 float HUD_WouldDrawScoreboard ();
342 float view_set;
343 float camera_mode;
344 float reticle_type;
345 string NextFrameCommand;
346 void CSQC_SPIDER_HUD();
347 void CSQC_RAPTOR_HUD();
348
349 vector freeze_pmove_org, freeze_input_angles;
350
351 void CSQC_UpdateView(float w, float h)
352 {
353         entity e;
354         float fov;
355         float f, i, j;
356         vector v, vo;
357
358         vector reticle_pos, reticle_size;
359
360         WaypointSprite_Load();
361
362         if(spectatee_status)
363                 myteam = GetPlayerColor(spectatee_status - 1);
364         else
365                 myteam = GetPlayerColor(player_localentnum - 1);
366
367         ticrate = getstatf(STAT_MOVEVARS_TICRATE) * getstatf(STAT_MOVEVARS_TIMESCALE);
368         vo = '0 0 1' * getstati(STAT_VIEWHEIGHT);
369
370         warpzone_fixview_origin = pmove_org + vo;
371         warpzone_fixview_cl_viewangles = input_angles;
372         warpzone_fixview_angles = view_angles;
373         WarpZone_FixView();
374         pmove_org = warpzone_fixview_origin - vo;
375         input_angles = warpzone_fixview_cl_viewangles;
376         view_angles = warpzone_fixview_angles;
377
378         if(cvar("cl_lockview") || autocvar__hud_configure)
379         {
380                 pmove_org = freeze_pmove_org;
381                 input_angles = view_angles = freeze_input_angles;
382                 R_SetView(VF_ORIGIN, pmove_org + vo);
383                 R_SetView(VF_ANGLES, view_angles);
384                 //R_SetView(VF_CL_VIEWANGLES, input_angles);
385         }
386         freeze_pmove_org = pmove_org;
387         freeze_input_angles = input_angles;
388
389         // Render the Scene
390         if(!intermission || !view_set)
391         {
392                 view_origin = pmove_org + vo;
393                 view_angles = input_angles;
394                 makevectors(view_angles);
395                 view_forward = v_forward;
396                 view_right = v_right;
397                 view_up = v_up;
398                 view_set = 1;
399         }
400
401         vid_width = w;
402         vid_height = h;
403
404 #ifdef BLURTEST
405         if(time > blurtest_time0 && time < blurtest_time1)
406         {
407                 float r, t;
408
409                 t = (time - blurtest_time0) / (blurtest_time1 - blurtest_time0);
410                 r = t * blurtest_radius;
411                 f = 1 / pow(t, blurtest_power) - 1;
412
413                 cvar_set("r_glsl_postprocess", "1");
414                 cvar_set("r_glsl_postprocess_uservec1", strcat(ftos(r), " ", ftos(f), " 0 0"));
415         }
416         else
417         {
418                 cvar_set("r_glsl_postprocess", "0");
419                 cvar_set("r_glsl_postprocess_uservec1", "0 0 0 0");
420         }
421 #endif
422
423         TargetMusic_Advance();
424         Fog_Force();
425
426         drawframetime = max(0.000001, time - drawtime);
427         drawtime = time;
428
429         // watch for gametype changes here...
430         // in ParseStuffCMD the cmd isn't executed yet :/
431         // might even be better to add the gametype to TE_CSQC_INIT...?
432         if(!postinit)
433                 PostInit();
434
435         if(intermission && !isdemo() && !(calledhooks & HOOK_END))
436                 if(calledhooks & HOOK_START)
437                 {
438                         localcmd("\ncl_hook_gameend\n");
439                         calledhooks |= HOOK_END;
440                 }
441
442         CheckForGamestartChange();
443         serverAnnouncer();
444         maptimeAnnouncer();
445         carrierAnnouncer();
446
447         fov = cvar("fov");
448         if(button_zoom || fov <= 59.5)
449         {
450                 if(!zoomscript_caught)
451                 {
452                         localcmd("+button4\n");
453                         zoomscript_caught = 1;
454                         ignore_plus_zoom += 1;
455                 }
456         }
457         else
458         {
459                 if(zoomscript_caught)
460                 {
461                         localcmd("-button4\n");
462                         zoomscript_caught = 0;
463                         ignore_minus_zoom += 1;
464                 }
465         }
466
467         hud_accuracy_hud = cvar_or("hud_accuracy_hud", 1);
468         ColorTranslateMode = cvar("cl_stripcolorcodes");
469         activeweapon = getstati(STAT_SWITCHWEAPON);
470         f = cvar("teamplay");
471         if(f != teamplay)
472         {
473                 teamplay = f;
474                 HUD_InitScores();
475         }
476
477         if(last_weapon != activeweapon) {
478                 weapontime = time;
479                 last_weapon = activeweapon;
480
481                 entity e;
482                 e = get_weaponinfo(activeweapon);
483                 if(e.netname != "")
484                         localcmd(strcat("\ncl_hook_activeweapon ", e.netname), "\n");
485                 else
486                         localcmd("\ncl_hook_activeweapon none\n");
487         }
488
489         // ALWAYS Clear Current Scene First
490         R_ClearScene();
491
492         // Assign Standard Viewflags
493         // Draw the World (and sky)
494         R_SetView(VF_DRAWWORLD, 1);
495
496         // Set the console size vars
497         vid_conwidth = cvar("vid_conwidth");
498         vid_conheight = cvar("vid_conheight");
499         vid_pixelheight = cvar("vid_pixelheight");
500
501         R_SetView(VF_FOV, GetCurrentFov(fov));
502
503         // Camera for demo playback
504         if(camera_active)
505         {
506                 if(cvar("camera_enable"))
507                         CSQC_Demo_Camera();
508                 else
509                 {
510                         cvar_set("chase_active", ftos(chase_active_backup));
511                         cvar_set("cl_demo_mousegrab", "0");
512                         camera_active = FALSE;
513                 }
514         }
515 #ifdef CAMERATEST
516         else if(cvar("camera_enable"))
517 #else
518         else if(cvar("camera_enable") && isdemo())
519 #endif
520         {
521                 // Enable required Darkplaces cvars
522                 chase_active_backup = cvar("chase_active");
523                 cvar_set("chase_active", "2");
524                 cvar_set("cl_demo_mousegrab", "1");
525                 camera_active = TRUE;
526                 camera_mode = FALSE;
527         }
528
529         // Draw the Crosshair
530         float scoreboard_active;
531         scoreboard_active = HUD_WouldDrawScoreboard();
532         R_SetView(VF_DRAWCROSSHAIR, 0); //Make sure engine crosshairs are always hidden
533
534         // Draw the Engine Status Bar (the default Quake HUD)
535         R_SetView(VF_DRAWENGINEHUD, 0);
536
537         // fetch this one only once per frame
538         hud_showbinds = cvar("hud_showbinds");
539         hud_showbinds_limit = cvar("hud_showbinds_limit");
540
541         // Update the mouse position
542         /*
543            mousepos_x = vid_conwidth;
544            mousepos_y = vid_conheight;
545            mousepos = mousepos*0.5 + getmousepos();
546          */
547
548         e = self;
549         for(self = world; (self = nextent(self)); )
550                 if(self.draw)
551                         self.draw();
552         self = e;
553
554         R_AddEntities(MASK_NORMAL | MASK_ENGINE | MASK_ENGINEVIEWMODELS);
555         R_RenderScene();
556
557         // now switch to 2D drawing mode by calling a 2D drawing function
558         // then polygon drawing will draw as 2D stuff, and NOT get queued until the
559         // next R_RenderScene call
560         drawstring('0 0 0', "", '1 1 0', '1 1 1', 0, 0);
561
562         // Draw the aiming reticle for weapons that use it
563         // reticle_type is changed to the item we are zooming / aiming with, to decide which reticle to use
564         // It must be a persisted float for fading out to work properly (you let go of the zoom button for
565         // the view to go back to normal, so reticle_type would become 0 as we fade out)
566         if(spectatee_status || getstati(STAT_HEALTH) <= 0)
567                 reticle_type = 0; // prevent reticle from showing during the respawn zoom effect or for spectators
568         else if(button_zoom)
569                 reticle_type = 1; // normal zoom
570         else if(activeweapon == WEP_NEX && button_attack2)
571                 reticle_type = 2; // nex zoom
572
573         if(cvar("cl_reticle_stretch"))
574         {
575                 reticle_size_x = vid_conwidth;
576                 reticle_size_y = vid_conheight;
577                 reticle_pos_x = 0;
578                 reticle_pos_y = 0;
579         }
580         else
581         {
582                 reticle_size_x = max(vid_conwidth, vid_conheight);
583                 reticle_size_y = max(vid_conwidth, vid_conheight);
584                 reticle_pos_x = (vid_conwidth - reticle_size_x) / 2;
585                 reticle_pos_y = (vid_conheight - reticle_size_y) / 2;
586         }
587
588         if(cvar("cl_reticle_item_normal"))
589         {
590                 precache_pic("gfx/reticle_normal");
591                 if(reticle_type == 1 && current_zoomfraction)
592                         drawpic(reticle_pos, "gfx/reticle_normal", reticle_size, '1 1 1', current_zoomfraction * cvar("cl_reticle_item_normal"), DRAWFLAG_NORMAL);
593         }
594         if(cvar("cl_reticle_item_nex"))
595         {
596                 precache_pic("gfx/reticle_nex");
597                 if(reticle_type == 2 && current_zoomfraction)
598                         drawpic(reticle_pos, "gfx/reticle_nex", reticle_size, '1 1 1', current_zoomfraction * cvar("cl_reticle_item_nex"), DRAWFLAG_NORMAL);
599         }
600
601         // Draw the mouse cursor
602         // NOTE: drawpic must happen after R_RenderScene for some reason
603         //drawpic(getmousepos(), "gfx/cursor.tga", '11 14 0', '1 1 1', 1, 0);
604         //drawstring('50 50', ftos(game), '10 10 0', '1 1 1', 1, 0);
605         //self = edict_num(player_localnum);
606         //drawstring('0 0', vtos(pmove_org), '8 8 0', '1 1 1', 1, 0);
607         //drawstring('0 8', strcat("ORG: ", vtos(self.origin), " state: ", ftos(self.ctf_state), " HP: ", ftos(self.health)), '8 8 0', '1 1 1', 1, 0);
608         // as long as the ctf part isn't in, this is useless
609         if(menu_visible)
610                 menu_show();
611
612         /*if(gametype == GAME_CTF)
613           {
614           ctf_view();
615           } else */
616
617         // draw 2D entities
618         e = self;
619         for(self = world; (self = nextent(self)); )
620                 if(self.draw2d)
621                         self.draw2d();
622         self = e;
623
624         // draw hud
625         if(cvar("r_letterbox") == 0) {
626                 HUD_DrawCenterPrint(); // draw centerprint messages even if viewsize >= 120
627         }
628
629         float hud;
630         hud = getstati(STAT_HUD);
631         if(hud == HUD_SPIDERBOT)
632         {
633                 CSQC_SPIDER_HUD();
634         }
635         else if(hud == HUD_WAKIZASHI)
636         CSQC_WAKIZASHI_HUD();
637     else if(hud == HUD_RAPTOR)
638         CSQC_RAPTOR_HUD();
639         else
640         {
641                 if(cvar("r_letterbox") == 0)
642                         if(cvar("viewsize") < 120)
643                                 CSQC_common_hud();
644
645                 // crosshair goes VERY LAST
646                 if(!scoreboard_active && !camera_active) {
647                         // TrueAim check
648                         float shottype;
649                         float bullets, ring_scale;
650                         // wcross_origin = '0.5 0 0' * vid_conwidth + '0 0.5 0' * vid_conheight;
651                         wcross_origin = project_3d_to_2d(view_origin + MAX_SHOT_DISTANCE * view_forward);
652                         wcross_origin_z = 0;
653                         if(cvar("crosshair_hittest"))
654                         {
655                                 vector wcross_oldorigin;
656                                 wcross_oldorigin = wcross_origin;
657                                 shottype = TrueAimCheck();
658                                 if(shottype == SHOTTYPE_HITWORLD)
659                                 {
660                                         v = wcross_origin - wcross_oldorigin;
661                                         v_x /= vid_conwidth;
662                                         v_y /= vid_conheight;
663                                         if(vlen(v) > 0.01)
664                                                 shottype = SHOTTYPE_HITOBSTRUCTION;
665                                 }
666                                 if(!cvar("crosshair_hittest_showimpact"))
667                                         wcross_origin = wcross_oldorigin;
668                         }
669                         else
670                                 shottype = SHOTTYPE_HITWORLD;
671
672                         string wcross_style;
673                         wcross_style = cvar_string("crosshair");
674
675                         if (wcross_style != "0") {
676                                 vector wcross_color, wcross_size;
677                                 string wcross_wep, wcross_name;
678                                 float wcross_alpha, wcross_scale, wcross_blur, wcross_resolution;
679
680                                 wcross_color_x = cvar("crosshair_color_red");
681                                 wcross_color_y = cvar("crosshair_color_green");
682                                 wcross_color_z = cvar("crosshair_color_blue");
683                                 wcross_alpha = cvar("crosshair_color_alpha");
684                                 wcross_resolution = cvar("crosshair_size");
685                                 if (cvar("crosshair_per_weapon")) {
686                                         e = get_weaponinfo(activeweapon);
687                                         if (e && e.netname != "")
688                                         {
689                                                 wcross_wep = e.netname;
690                                                 wcross_style = cvar_string(strcat("crosshair_", wcross_wep));
691                                                 if(wcross_style == "")
692                                                         wcross_style = e.netname;
693
694                                                 if(!cvar("crosshair_color_override"))
695                                                 {
696                                                         wcross_color_x = cvar(strcat("crosshair_", wcross_wep, "_color_red"));
697                                                         wcross_color_y = cvar(strcat("crosshair_", wcross_wep, "_color_green"));
698                                                         wcross_color_z = cvar(strcat("crosshair_", wcross_wep, "_color_blue"));
699                                                 }
700
701                                                 wcross_alpha *= cvar(strcat("crosshair_", wcross_wep, "_color_alpha"));
702                                                 wcross_resolution *= cvar(strcat("crosshair_", wcross_wep, "_size"));
703                                         }
704                                 }
705
706                                 wcross_name = strcat("gfx/crosshair", wcross_style);
707
708                                 if(cvar("crosshair_effect_scalefade"))
709                                 {
710                                         wcross_scale = wcross_resolution;
711                                         wcross_resolution = 1;
712                                 }
713                                 else
714                                 {
715                                         wcross_scale = 1;
716                                 }
717
718                                 if(shottype == SHOTTYPE_HITENEMY)
719                                         wcross_scale *= cvar("crosshair_hittest"); // is not queried if hittest is 0
720                                 if(shottype == SHOTTYPE_HITTEAM)
721                                         wcross_scale /= cvar("crosshair_hittest"); // is not queried if hittest is 0
722
723                                 f = cvar("crosshair_effect_speed");
724                                 if(f < 0)
725                                         f *= -2 * g_weaponswitchdelay;
726                                 if(wcross_scale != wcross_scale_goal_prev || wcross_alpha != wcross_alpha_goal_prev || wcross_color != wcross_color_goal_prev)
727                                 {
728                                         wcross_changedonetime = time + f;
729                                 }
730                                 if(wcross_name != wcross_name_goal_prev || wcross_resolution != wcross_resolution_goal_prev)
731                                 {
732                                         wcross_name_changestarttime = time;
733                                         wcross_name_changedonetime = time + f;
734                                         if(wcross_name_goal_prev_prev)
735                                                 strunzone(wcross_name_goal_prev_prev);
736                                         wcross_name_goal_prev_prev = wcross_name_goal_prev;
737                                         wcross_name_goal_prev = strzone(wcross_name);
738                                         wcross_name_alpha_goal_prev_prev = wcross_name_alpha_goal_prev;
739                                         wcross_resolution_goal_prev_prev = wcross_resolution_goal_prev;
740                                         wcross_resolution_goal_prev = wcross_resolution;
741                                 }
742
743                                 wcross_scale_goal_prev = wcross_scale;
744                                 wcross_alpha_goal_prev = wcross_alpha;
745                                 wcross_color_goal_prev = wcross_color;
746
747                                 if(shottype == SHOTTYPE_HITTEAM || (shottype == SHOTTYPE_HITOBSTRUCTION && cvar("crosshair_hittest_blur") && !cvar("chase_active")))
748                                 {
749                                         wcross_blur = 1;
750                                         wcross_alpha *= 0.75;
751                                 }
752                                 else
753                                         wcross_blur = 0;
754                                 // *_prev is at time-frametime
755                                 // * is at wcross_changedonetime+f
756                                 // what do we have at time?
757                                 if(time < wcross_changedonetime)
758                                 {
759                                         f = frametime / (wcross_changedonetime - time + frametime);
760                                         wcross_scale = f * wcross_scale + (1 - f) * wcross_scale_prev;
761                                         wcross_alpha = f * wcross_alpha + (1 - f) * wcross_alpha_prev;
762                                         wcross_color = f * wcross_color + (1 - f) * wcross_color_prev;
763                                 }
764
765                                 wcross_scale_prev = wcross_scale;
766                                 wcross_alpha_prev = wcross_alpha;
767                                 wcross_color_prev = wcross_color;
768
769                                 wcross_scale *= 1 - cvar("_menu_alpha");
770                                 wcross_alpha *= 1 - cvar("_menu_alpha");
771
772                                 // ring around crosshair representing bullets left in camping rifle clip
773                                 if (activeweapon == WEP_CAMPINGRIFLE)
774                                 {
775                                         ring_scale = cvar("crosshair_campingrifle_ring_size");
776                                         bullets = bound(0, getstati(STAT_BULLETS_LOADED), 8);
777                                 }
778                                 else
779                                         bullets = 0;
780
781 #define CROSSHAIR_DRAW_RING(i,j,sz,wcross_name,wcross_alpha) \
782                                 drawpic(wcross_origin - ('0.5 0 0' * (sz * wcross_size_x * ring_scale + i * wcross_blur) + '0 0.5 0' * (sz * wcross_size_y * ring_scale + j * wcross_blur)), strcat("gfx/hud/", cvar_string("hud_skin"), "/rifle_ring_", ftos(bullets)), sz * wcross_size * ring_scale, wcross_color, wcross_alpha, DRAWFLAG_NORMAL)
783
784 #define CROSSHAIR_DO_BLUR(M,sz,wcross_name,wcross_alpha) \
785                                 do \
786                                 { \
787                                         if(wcross_blur > 0) \
788                                         { \
789                                                 for(i = -2; i <= 2; ++i) \
790                                                         for(j = -2; j <= 2; ++j) \
791                                                                 M(i,j,sz,wcross_name,wcross_alpha*0.04); \
792                                         } \
793                                         else \
794                                         { \
795                                                 M(0,0,sz,wcross_name,wcross_alpha); \
796                                         } \
797                                 } \
798                                 while(0)
799
800 #define CROSSHAIR_DRAW_SINGLE(i,j,sz,wcross_name,wcross_alpha) \
801                                 drawpic(wcross_origin - ('0.5 0 0' * (sz * wcross_size_x + i * wcross_blur) + '0 0.5 0' * (sz * wcross_size_y + j * wcross_blur)), wcross_name, sz * wcross_size, wcross_color, wcross_alpha, DRAWFLAG_NORMAL)
802
803 #define CROSSHAIR_DRAW(sz,wcross_name,wcross_alpha) \
804                                 CROSSHAIR_DO_BLUR(CROSSHAIR_DRAW_SINGLE,sz,wcross_name,wcross_alpha)
805
806                                 if(time < wcross_name_changedonetime && wcross_name != wcross_name_goal_prev_prev && wcross_name_goal_prev_prev)
807                                 {
808                                         f = (wcross_name_changedonetime - time) / (wcross_name_changedonetime - wcross_name_changestarttime);
809                                         wcross_size = drawgetimagesize(wcross_name_goal_prev_prev) * wcross_scale;
810                                         CROSSHAIR_DRAW(wcross_resolution_goal_prev_prev, wcross_name_goal_prev_prev, wcross_alpha * f * wcross_name_alpha_goal_prev_prev);
811                                         f = 1 - f;
812                                 }
813                                 else
814                                 {
815                                         f = 1;
816                                 }
817
818                                 wcross_size = drawgetimagesize(wcross_name) * wcross_scale;
819                                 if(bullets)
820                                 {
821                                         CROSSHAIR_DO_BLUR(CROSSHAIR_DRAW_RING, wcross_resolution, wcross_name, wcross_alpha);
822                                 }
823                                 CROSSHAIR_DRAW(wcross_resolution, wcross_name, wcross_alpha * f);
824                                 wcross_name_alpha_goal_prev = f;
825                         }
826                 }
827                 else
828                 {
829                         wcross_scale_prev = 0;
830                         wcross_alpha_prev = 0;
831                         wcross_scale_goal_prev = 0;
832                         wcross_alpha_goal_prev = 0;
833                         wcross_changedonetime = 0;
834                         if(wcross_name_goal_prev)
835                                 strunzone(wcross_name_goal_prev);
836                         wcross_name_goal_prev = string_null;
837                         if(wcross_name_goal_prev_prev)
838                                 strunzone(wcross_name_goal_prev_prev);
839                         wcross_name_goal_prev_prev = string_null;
840                         wcross_name_changestarttime = 0;
841                         wcross_name_changedonetime = 0;
842                         wcross_name_alpha_goal_prev = 0;
843                         wcross_name_alpha_goal_prev_prev = 0;
844                         wcross_resolution_goal_prev = 0;
845                         wcross_resolution_goal_prev_prev = 0;
846                 }
847         }
848
849         if(NextFrameCommand)
850         {
851                 localcmd("\n", NextFrameCommand, "\n");
852                 NextFrameCommand = string_null;
853         }
854
855         // we must do this check AFTER a frame was rendered, or it won't work
856         if(cs_project_is_b0rked == 0)
857         {
858                 string w0, h0;
859                 w0 = cvar_string("vid_conwidth");
860                 h0 = cvar_string("vid_conheight");
861                 //R_SetView(VF_VIEWPORT, '0 0 0', '640 480 0');
862                 //R_SetView(VF_FOV, '90 90 0');
863                 R_SetView(VF_ORIGIN, '0 0 0');
864                 R_SetView(VF_ANGLES, '0 0 0');
865                 R_SetView(VF_PERSPECTIVE, 1);
866                 makevectors('0 0 0');
867                 vector v1, v2;
868                 cvar_set("vid_conwidth", "800");
869                 cvar_set("vid_conheight", "600");
870                 v1 = cs_project(v_forward);
871                 cvar_set("vid_conwidth", "640");
872                 cvar_set("vid_conheight", "480");
873                 v2 = cs_project(v_forward);
874                 if(v1 == v2)
875                         cs_project_is_b0rked = 1;
876                 else
877                         cs_project_is_b0rked = -1;
878                 cvar_set("vid_conwidth", w0);
879                 cvar_set("vid_conheight", h0);
880         }
881
882         if(autocvar__hud_configure)
883                 HUD_Panel_Mouse();
884         // be safe against triggerbots until everyone has the fixed engine
885         // this call is meant to overwrite the trace globals by something
886         // unsuspicious
887         traceline('0 0 0', '0 0 0', MOVE_WORLDONLY, world);
888 }
889
890 #define spider_h "gfx/vehicles/hud_bg.tga"
891 #define spider_b "gfx/vehicles/sbot.tga"
892 #define spider_r "gfx/vehicles/sbot_rpods.tga"
893 #define spider_g "gfx/vehicles/sbot_mguns.tga"
894 #define spider_s "gfx/vehicles/shiled.tga"
895 #define spider_a1 "gfx/hud/sb_rocket.tga"
896 #define spider_a2 "gfx/sb_bullets.tga"
897
898 void CSQC_SPIDER_HUD()
899 {
900         float rockets, reload, heat, hp, shield;
901         vector picsize, hudloc;
902
903     // Fetch health & ammo stats
904     hp      = bound(0,getstatf(STAT_VEHICLESTAT_HEALTH), 1);
905         shield  = bound(0,getstatf(STAT_VEHICLESTAT_SHIELD), 1);
906         heat    = min(getstatf(STAT_VEHICLESTAT_RELOAD1), 2);
907         rockets =     getstati(STAT_VEHICLESTAT_AMMO2);
908         reload  = min(getstatf(STAT_VEHICLESTAT_RELOAD2), 1);
909
910     // Draw the crosshairs
911     picsize = drawgetimagesize(SPIDER_CROSS);
912     picsize_x *= cvar_or("cl_vehicle_spiderbot_cross_size", 1);
913     picsize_y *= cvar_or("cl_vehicle_spiderbot_cross_size", 1);
914     drawpic('0.5 0 0' * (vid_conwidth - picsize_x) + '0 0.5 0' * (vid_conheight - picsize_y), SPIDER_CROSS, picsize, '1 1 1', cvar_or("cl_vehicle_spiderbot_cross_alpha",0.6), DRAWFLAG_NORMAL);
915
916     hudloc_y =  4;
917     hudloc_x = 4;
918
919     picsize = drawgetimagesize(spider_h) * 0.5;
920     drawpic(hudloc, spider_h, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
921
922     picsize = drawgetimagesize(spider_a2) * 0.5;
923     drawpic(hudloc + '120 96  0', spider_a2, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
924
925     drawstring(hudloc + '145 19  0', strcat(ftos(rint(hp * 100)), "%"),'15 15 0','0 1 0', 1, DRAWFLAG_NORMAL);
926     drawstring(hudloc + '175 34  0', strcat(ftos(rint(shield * 100)), "%"),'15 15 0','0 0 1', 1, DRAWFLAG_NORMAL);
927     drawstring(hudloc + '136 102  0', strcat(ftos(100 - rint(heat * 100)), "%"),'14 14 0','1 1 0', 1, DRAWFLAG_NORMAL);
928
929     picsize = drawgetimagesize(spider_a1) * 0.85;
930     if(rockets == 9)
931     {
932         drawpic(hudloc + '132 54  0', spider_a1, picsize, '-1 -1 -1', 1, DRAWFLAG_NORMAL);
933         drawstring(hudloc + '179 69 0', strcat(ftos(rint(reload * 100)), "%"),'14 14 0','1 1 0', 1, DRAWFLAG_NORMAL);
934     }
935     else
936     {
937         drawpic(hudloc + '132 54  0', spider_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
938         drawstring(hudloc + '179 69  0', strcat(ftos(9 - rockets), "/8"),'14 14 0','1 1 0', 1, DRAWFLAG_NORMAL);
939     }
940
941     picsize = drawgetimagesize(spider_b) * 0.5;
942     hudloc_y = 10.5;
943     hudloc_x = 10.5;
944
945     drawpic(hudloc, spider_s, picsize, '1 1 1', shield, DRAWFLAG_NORMAL);
946     drawpic(hudloc, spider_b, picsize, '0 1 0' * hp + '1 0 0' * (1 - hp), 1, DRAWFLAG_NORMAL);
947     drawpic(hudloc, spider_r, picsize, '1 1 1' * reload + '1 0 0' * (1 - reload), 1, DRAWFLAG_NORMAL);
948     drawpic(hudloc, spider_g, picsize, '1 1 1' * (1 - heat) + '1 0 0' *  heat, 1, DRAWFLAG_NORMAL);
949
950
951         /*
952         // Draw health bar
953         p = '0.5 0 0' * (vid_conwidth - (rkt_size * 8));
954         p = p + '0 1 0' * vid_conheight - '0 32 0';
955         //pp = ('0 1 0' * hp) + ('1 0 0' * (1-hp));
956         drawfill(p, '256 0 0' * shield + '0 8 0' , '0.5 0.5 1', 0.75, DRAWFLAG_NORMAL);
957         p_y += 8;
958         drawfill(p, '256 0 0' * hp + '0 8 0' , '0 1 0', 0.75, DRAWFLAG_NORMAL);
959         p_x += 256 * hp;
960         drawfill(p, '256 0 0' * (1-hp) + '0 8 0' , '0 0 0', 0.75, DRAWFLAG_NORMAL);
961
962         // Draw minigun heat indicator
963         p = '0.5 0 0' * (vid_conwidth - 256);
964         p = p + '0 1 0' * vid_conheight - '0 34  0';
965         drawfill(p, '256 0 0' * (1-heat) + '0 2 0' ,'0 0 1', 0.5, DRAWFLAG_NORMAL);
966         p_x += 256 * (1-heat);
967         drawfill(p, '256 0 0' * heat  + '0 2 0' , '1 0 0', 0.5, DRAWFLAG_NORMAL);
968
969
970         // Draw rocket icons for loaded/empty tubes.
971         pp = '0.5 0 0' * (vid_conwidth - (rkt_size * 8));
972         pp += '0 1 0' * vid_conheight - '0 64 0';
973         for(i = 0; i < 8; ++i)
974         {
975                 p = pp + '1 0 0' * (rkt_size * i);
976                 if(rockets == 8)
977                 {
978                         if(floor(reload * 8) == i)
979                         {
980                                 drawpic(p, spider_rocket_icon, '1 1 0' * rkt_size, '1 0 0' + '0 1 0' * ((reload*8)-i), 0.75 , DRAWFLAG_NORMAL);
981                         }
982                         else if(i < reload * 8)
983                                 drawpic(p, spider_rocket_icon, '1 1 0' * rkt_size, '1 1 0', 0.75 , DRAWFLAG_NORMAL);
984                         else
985                                 drawpic(p, spider_rocket_icon, '1 1 0' * rkt_size, '0.5 0.5 0.5', 0.75, DRAWFLAG_NORMAL);
986                 }
987                 else
988                 {
989                         if(i < rockets)
990                                 drawpic(p, spider_rocket_icon, '1 1 0' * rkt_size, '0 0 0', 0.25, DRAWFLAG_NORMAL);
991                         else
992                                 drawpic(p, spider_rocket_icon, '1 1 0' * rkt_size, '0 1 0' * reload, 0.75, DRAWFLAG_NORMAL);
993                 }
994         }
995         */
996
997         if (scoreboard_showscores)
998         {
999                 HUD_DrawScoreboard();
1000                 HUD_DrawCenterPrint();
1001         }
1002
1003 }
1004
1005 #define raptor_h "gfx/vehicles/hud_bg.tga"
1006 #define raptor_b "gfx/vehicles/raptor.tga"
1007 #define raptor_g1 "gfx/vehicles/raptor_guns.tga"
1008 #define raptor_g2 "gfx/vehicles/raptor_bombs.tga"
1009 #define raptor_s "gfx/vehicles/shiled.tga"
1010
1011 void CSQC_RAPTOR_HUD()
1012 {
1013         float rockets, reload, heat, hp, shield, energy;
1014         vector picsize, hudloc;
1015
1016     // Fetch health & ammo stats
1017     hp      = bound(0,getstatf(STAT_VEHICLESTAT_HEALTH), 1);
1018         shield  = bound(0,getstatf(STAT_VEHICLESTAT_SHIELD), 1);
1019         reload  = min(getstatf(STAT_VEHICLESTAT_RELOAD1), 1);
1020         energy  = min(getstatf(STAT_VEHICLESTAT_ENERGY),  1);
1021
1022     // Draw the crosshairs
1023     picsize = drawgetimagesize(SPIDER_CROSS);
1024     picsize_x *= cvar_or("cl_vehicle_spiderbot_cross_size", 1);
1025     picsize_y *= cvar_or("cl_vehicle_spiderbot_cross_size", 1);
1026     drawpic('0.5 0 0' * (vid_conwidth - picsize_x) + '0 0.5 0' * (vid_conheight - picsize_y), SPIDER_CROSS, picsize, '1 1 1', cvar_or("cl_vehicle_spiderbot_cross_alpha",0.6), DRAWFLAG_NORMAL);
1027
1028     hudloc_y =  4;
1029     hudloc_x = 4;
1030
1031     picsize = drawgetimagesize(raptor_h) * 0.5;
1032     drawpic(hudloc, raptor_h, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
1033
1034     picsize = drawgetimagesize(spider_a2) * 0.5;
1035     drawpic(hudloc + '120 96  0', spider_a2, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
1036
1037     drawstring(hudloc + '145 19  0', strcat(ftos(rint(hp * 100)), "%"),'15 15 0','0 1 0', 1, DRAWFLAG_NORMAL);
1038     drawstring(hudloc + '175 34  0', strcat(ftos(rint(shield * 100)), "%"),'15 15 0','0 0 1', 1, DRAWFLAG_NORMAL);
1039     drawstring(hudloc + '136 102 0', strcat(ftos(rint(energy * 100)), "%"),'15 15 0','0.5 0.5 1', 1, DRAWFLAG_NORMAL);
1040
1041
1042     picsize = drawgetimagesize(spider_a1) * 0.85;
1043     if(reload == 1)
1044     {
1045         drawpic(hudloc + '132 54  0', spider_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
1046         drawstring(hudloc + '179 69  0', strcat(ftos(rint(reload * 100)), "%"),'14 14 0','0 1 0', 0.5, DRAWFLAG_NORMAL);
1047     }
1048     else
1049     {
1050         drawpic(hudloc + '132 54  0', spider_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
1051         drawstring(hudloc + '179 69  0', strcat(ftos(rint(reload * 100)), "%"),'14 14 0','0 0 1', 1, DRAWFLAG_NORMAL);
1052     }
1053
1054     picsize = drawgetimagesize(raptor_b) * 0.5;
1055     hudloc_y = 10.5;
1056     hudloc_x = 10.5;
1057
1058     drawpic(hudloc, raptor_s, picsize, '1 1 1', shield, DRAWFLAG_NORMAL);
1059     drawpic(hudloc, raptor_b, picsize, '0 1 0' * hp + '1 0 0' * (1 - hp), 1, DRAWFLAG_NORMAL);
1060     drawpic(hudloc, raptor_g1, picsize, '1 1 1' * energy + '1 0 0' * (1 - energy), 1, DRAWFLAG_NORMAL);
1061     drawpic(hudloc, raptor_g2, picsize, '1 1 1' * reload + '1 0 0' *  (1 - reload), 1, DRAWFLAG_NORMAL);
1062
1063
1064         if (scoreboard_showscores)
1065         {
1066                 HUD_DrawScoreboard();
1067                 HUD_DrawCenterPrint();
1068         }
1069
1070 }
1071
1072 #define waki_h "gfx/vehicles/hud_bg.tga"
1073 #define waki_b "gfx/vehicles/waki.tga"
1074 #define waki_e "gfx/vehicles/waki_e.tga"
1075 #define waki_g "gfx/vehicles/waki_guns.tga"
1076 #define waki_r "gfx/vehicles/waki_rockets.tga"
1077 #define waki_s "gfx/vehicles/shiled.tga"
1078
1079 #define waki_a1 "gfx/hud/sb_rocket.tga"
1080 #define waki_a2 "gfx/sb_cells.tga"
1081
1082 void CSQC_WAKIZASHI_HUD()
1083 {
1084         // 0--1 floats. 1 = 100%, 0.6 = 50%.
1085         float health, shield, energy, rockets;
1086         vector picsize, hudloc;
1087
1088     picsize = drawgetimagesize(SPIDER_CROSS);
1089     picsize_x *= cvar_or("cl_vehicle_spiderbot_cross_size", 1);
1090     picsize_y *= cvar_or("cl_vehicle_spiderbot_cross_size", 1);
1091     drawpic('0.5 0 0' * (vid_conwidth - picsize_x) + '0 0.5 0' * (vid_conheight - picsize_y), SPIDER_CROSS, picsize, '1 1 1', cvar_or("cl_vehicle_spiderbot_cross_alpha",0.6), DRAWFLAG_NORMAL);
1092
1093 /*
1094 const float STAT_VEHICLESTAT_HEALTH  = 60;
1095 const float STAT_VEHICLESTAT_SHIELD  = 61;
1096 const float STAT_VEHICLESTAT_ENERGY  = 62;
1097 const float STAT_VEHICLESTAT_AMMO1   = 63;
1098 const float STAT_VEHICLESTAT_RELAOD1 = 64;
1099 const float STAT_VEHICLESTAT_AMMO2   = 65;
1100 const float STAT_VEHICLESTAT_RELOAD2 = 66;
1101 */
1102     health  = min(getstatf(STAT_VEHICLESTAT_HEALTH),  1);
1103         shield  = min(getstatf(STAT_VEHICLESTAT_SHIELD),  1);
1104         energy  = min(getstatf(STAT_VEHICLESTAT_ENERGY),  1);
1105         rockets = bound(0,getstatf(STAT_VEHICLESTAT_RELOAD1), 1);
1106
1107     hudloc_y =  4;
1108     hudloc_x = 4;
1109
1110     picsize = drawgetimagesize(waki_h) * 0.5;
1111     drawpic(hudloc, waki_h, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
1112
1113     picsize = drawgetimagesize(waki_a2) * 0.7;
1114     drawpic(hudloc + '116 92  0', waki_a2, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
1115
1116
1117     drawstring(hudloc + '145 19  0', strcat(ftos(rint(health * 100)), "%"),'15 15 0','0 1 0', 1, DRAWFLAG_NORMAL);
1118     drawstring(hudloc + '175 34  0', strcat(ftos(rint(shield * 100)), "%"),'15 15 0','0 0 1', 1, DRAWFLAG_NORMAL);
1119
1120     drawstring(hudloc + '136 102  0', strcat(ftos(rint(energy * 100)), "%"),'14 14 0','1 1 1', 1, DRAWFLAG_NORMAL);
1121
1122     picsize = drawgetimagesize(waki_a1) * 0.75;
1123     if(rockets == 1)
1124     {
1125         drawpic(hudloc + '140 55  0', waki_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
1126         drawpic(hudloc + '144 59  0', waki_a1, picsize, '1 1 1', 1, DRAWFLAG_NORMAL);
1127     }
1128     else
1129     {
1130         drawpic(hudloc + '140 55  0', waki_a1, picsize, '-1 -1 -1', 1, DRAWFLAG_NORMAL);
1131         drawpic(hudloc + '144 59  0', waki_a1, picsize, '-1 -1 -1', 1, DRAWFLAG_NORMAL);
1132         drawstring(hudloc + '165 69 0', strcat(ftos(rint(rockets * 100)), "%"),'14 14 0','1 1 0', 1, DRAWFLAG_NORMAL);
1133     }
1134
1135     picsize = drawgetimagesize(waki_b) * 0.5;
1136     hudloc_y = 10.5;
1137     hudloc_x = 10.5;
1138
1139     drawpic(hudloc, waki_s, picsize, '1 1 1', shield, DRAWFLAG_NORMAL);
1140     drawpic(hudloc, waki_b, picsize, '0 1 0' * health + '1 0 0' * (1 - health), 1, DRAWFLAG_NORMAL);
1141     drawpic(hudloc, waki_r, picsize, '1 1 1' * rockets + '1 0 0' * (1 - rockets), 1, DRAWFLAG_NORMAL);
1142     drawpic(hudloc, waki_e, picsize, '1 1 1' * energy + '1 0 0' *  (1 - energy), 1, DRAWFLAG_NORMAL);
1143
1144
1145
1146         /*
1147         p = '0.5 0 0' * (vid_conwidth - (rkt_size * 8));
1148         p = p + '0 1 0' * vid_conheight - '0 32 0';
1149
1150         // Draw health bar
1151         p_y += 8;
1152         drawfill(p, '256 0 0' * health + '0 8 0' , '0 0.7 0', 0.75, DRAWFLAG_NORMAL);
1153         p_x += 256 * health;
1154         drawfill(p, '256 0 0' * (1 - health) + '0 8 0' , '0 0 0', 0.75, DRAWFLAG_NORMAL);
1155
1156         // Draw shiled bar
1157         p_x -= 256 * health;
1158         p_y += 4;
1159         drawfill(p, '256 0 0' * shield + '0 4 0' , '0.25 0.25 1', 0.5, DRAWFLAG_NORMAL);
1160
1161         // Draw energy
1162         //p_x -= 256 * health;
1163         p_y -= 8;
1164         drawfill(p, '256 0 0' * energy + '0 4 0' , '1 1 1', 0.75, DRAWFLAG_NORMAL);
1165
1166         // Draw rockets bar
1167         p_y += 12;
1168         drawfill(p, '256 0 0' * rockets + '0 4 0' , '1 0 0', 0.75, DRAWFLAG_NORMAL);
1169         */
1170
1171
1172
1173
1174         if (scoreboard_showscores)
1175         {
1176                 HUD_DrawScoreboard();
1177                 HUD_DrawCenterPrint();
1178         }
1179
1180 }
1181
1182
1183 void CSQC_common_hud(void)
1184 {
1185         // HUD_SortFrags(); done in HUD_Draw
1186         float hud;
1187         hud = getstati(STAT_HUD);
1188
1189         //hud = 10;
1190         switch(hud)
1191         {
1192                 case HUD_NORMAL:
1193                         // hud first
1194                         HUD_Main();
1195
1196                         // scoreboard/accuracy
1197                         if (intermission == 2 && !scoreboard_showaccuracy && !scoreboard_showscores) // map voting screen
1198                         {
1199                                 HUD_FinaleOverlay();
1200                                 HUD_Reset();
1201                         }
1202                         else if(scoreboard_showaccuracy && spectatee_status != -1)
1203                                 HUD_DrawAccuracyStats();
1204                         else
1205                                 HUD_DrawScoreboard();
1206
1207                         if (scoreboard_showscores || scoreboard_showaccuracy || scoreboard_showscores_force || getstati(STAT_HEALTH) <= 0 || intermission == 1)
1208                                 HUD_Reset();
1209
1210                         break;
1211
1212                 case HUD_SPIDERBOT:
1213                         CSQC_SPIDER_HUD();
1214                         break;
1215
1216                 case HUD_WAKIZASHI:
1217                         CSQC_WAKIZASHI_HUD();
1218                         break;
1219         }
1220 }
1221
1222
1223 // following vectors must be global to allow seamless switching between camera modes
1224 vector camera_offset, current_camera_offset, mouse_angles, current_angles, current_origin, current_position;
1225 void CSQC_Demo_Camera()
1226 {
1227         float speed, attenuation, dimensions;
1228         vector tmp, delta;
1229
1230         if( cvar("camera_reset") || !camera_mode )
1231         {
1232                 camera_offset = '0 0 0';
1233                 current_angles = '0 0 0';
1234                 camera_direction = '0 0 0';
1235                 camera_offset_z += 30;
1236                 camera_offset_x += 30 * -cos(current_angles_y * DEG2RAD);
1237                 camera_offset_y += 30 * -sin(current_angles_y * DEG2RAD);
1238                 current_origin = view_origin;
1239                 current_camera_offset  = camera_offset;
1240                 cvar_set("camera_reset", "0");
1241                 camera_mode = CAMERA_CHASE;
1242         }
1243
1244         // Camera angles
1245         if( camera_roll )
1246                 mouse_angles_z += camera_roll * cvar("camera_speed_roll");
1247
1248         if(cvar("camera_look_player"))
1249         {
1250                 local vector dir;
1251                 local float n;
1252
1253                 dir = normalize(view_origin - current_position);
1254                 n = mouse_angles_z;
1255                 mouse_angles = vectoangles(dir);
1256                 mouse_angles_x = mouse_angles_x * -1;
1257                 mouse_angles_z = n;
1258         }
1259         else
1260         {
1261                 tmp = getmousepos() * 0.1;
1262                 if(vlen(tmp)>cvar("camera_mouse_treshold"))
1263                 {
1264                         mouse_angles_x += tmp_y * cos(mouse_angles_z * DEG2RAD) + (tmp_x * sin(mouse_angles_z * DEG2RAD));
1265                         mouse_angles_y -= tmp_x * cos(mouse_angles_z * DEG2RAD) + (tmp_y * -sin(mouse_angles_z * DEG2RAD));
1266                 }
1267         }
1268
1269         while (mouse_angles_x < -180) mouse_angles_x = mouse_angles_x + 360;
1270         while (mouse_angles_x > 180) mouse_angles_x = mouse_angles_x - 360;
1271         while (mouse_angles_y < -180) mouse_angles_y = mouse_angles_y + 360;
1272         while (mouse_angles_y > 180) mouse_angles_y = mouse_angles_y - 360;
1273
1274         // Fix difference when angles don't have the same sign
1275         delta = '0 0 0';
1276         if(mouse_angles_y < -60 && current_angles_y > 60)
1277                 delta = '0 360 0';
1278         if(mouse_angles_y > 60 && current_angles_y < -60)
1279                 delta = '0 -360 0';
1280
1281         if(cvar("camera_look_player"))
1282                 attenuation = cvar("camera_look_attenuation");
1283         else
1284                 attenuation = cvar("camera_speed_attenuation");
1285
1286         attenuation = 1 / max(1, attenuation);
1287         current_angles += (mouse_angles - current_angles + delta) * attenuation;
1288
1289         while (current_angles_x < -180) current_angles_x = current_angles_x + 360;
1290         while (current_angles_x > 180) current_angles_x = current_angles_x - 360;
1291         while (current_angles_y < -180) current_angles_y = current_angles_y + 360;
1292         while (current_angles_y > 180) current_angles_y = current_angles_y - 360;
1293
1294         // Camera position
1295         tmp = '0 0 0';
1296         dimensions = 0;
1297
1298         if( camera_direction_x )
1299         {
1300                 tmp_x = camera_direction_x * cos(current_angles_y * DEG2RAD);
1301                 tmp_y = camera_direction_x * sin(current_angles_y * DEG2RAD);
1302                 if( cvar("camera_forward_follows") && !cvar("camera_look_player") )
1303                         tmp_z = camera_direction_x * -sin(current_angles_x * DEG2RAD);
1304                 ++dimensions;
1305         }
1306
1307         if( camera_direction_y )
1308         {
1309                 tmp_x += camera_direction_y * -sin(current_angles_y * DEG2RAD);
1310                 tmp_y += camera_direction_y * cos(current_angles_y * DEG2RAD) * cos(current_angles_z * DEG2RAD);
1311                 tmp_z += camera_direction_y * sin(current_angles_z * DEG2RAD);
1312                 ++dimensions;
1313         }
1314
1315         if( camera_direction_z )
1316         {
1317                 tmp_z += camera_direction_z * cos(current_angles_z * DEG2RAD);
1318                 ++dimensions;
1319         }
1320
1321         if(cvar("camera_free"))
1322                 speed = cvar("camera_speed_free");
1323         else
1324                 speed = cvar("camera_speed_chase");
1325
1326         if(dimensions)
1327         {
1328                 speed = speed * sqrt(1 / dimensions);
1329                 camera_offset += tmp * speed;
1330         }
1331
1332         current_camera_offset += (camera_offset - current_camera_offset) * attenuation;
1333
1334         // Camera modes
1335         if( cvar("camera_free") )
1336         {
1337                 if ( camera_mode == CAMERA_CHASE )
1338                 {
1339                         current_camera_offset = current_origin + current_camera_offset;
1340                         camera_offset = current_origin + camera_offset;
1341                 }
1342
1343                 camera_mode = CAMERA_FREE;
1344                 current_position = current_camera_offset;
1345         }
1346         else
1347         {
1348                 if ( camera_mode == CAMERA_FREE )
1349                 {
1350                         current_origin = view_origin;
1351                         camera_offset = camera_offset - current_origin;
1352                         current_camera_offset = current_camera_offset - current_origin;
1353                 }
1354
1355                 camera_mode = CAMERA_CHASE;
1356
1357                 if(cvar("camera_chase_smoothly"))
1358                         current_origin += (view_origin - current_origin) * attenuation;
1359                 else
1360                         current_origin = view_origin;
1361
1362                 current_position = current_origin + current_camera_offset;
1363         }
1364
1365         R_SetView(VF_ANGLES, current_angles);
1366         R_SetView(VF_ORIGIN, current_position);
1367 }