3 #include "announcer.qh"
6 #include "hud_config.qh"
7 #include "mapvoting.qh"
8 #include "scoreboard.qh"
9 #include "shownames.qh"
11 #include "mutators/events.qh"
13 #include "../common/constants.qh"
14 #include "../common/mapinfo.qh"
15 #include "../common/nades.qh"
16 #include "../common/stats.qh"
17 #include "../common/triggers/target/music.qh"
18 #include "../common/teams.qh"
19 #include "../common/util.qh"
21 #include "../common/weapons/all.qh"
23 #include "../csqcmodellib/cl_player.qh"
25 #include "../warpzonelib/client.qh"
26 #include "../warpzonelib/common.qh"
32 vector p, dir, ang, q, nextdir;
33 float portal_number, portal1_idx;
35 if(activeweapon != WEP_PORTO.m_id || spectatee_status || gametype == MAPINFO_TYPE_NEXBALL)
37 if(g_balance_porto_secondary)
43 if (getstati(STAT_HEALTH) <= 0)
48 if(angles_held_status)
50 makevectors(angles_held);
64 traceline(p, p + 65536 * dir, true, porto);
65 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
67 nextdir = dir - 2 * (dir * trace_plane_normal) * trace_plane_normal; // mirror dir at trace_plane_normal
73 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_SLICK || trace_dphitcontents & DPCONTENTS_PLAYERCLIP)
76 ang = vectoangles2(trace_plane_normal, dir);
79 if(!CheckWireframeBox(porto, p - 48 * v_right - 48 * v_up + 16 * v_forward, 96 * v_right, 96 * v_up, 96 * v_forward))
81 if(portal_number == 1)
84 if(portal_number >= 2)
95 if(idx-1 >= portal1_idx)
97 Draw_CylindricLine(p, q, 4, "", 1, 0, '0 0 1', 0.5, DRAWFLAG_NORMAL, view_origin);
101 Draw_CylindricLine(p, q, 4, "", 1, 0, '1 0 0', 0.5, DRAWFLAG_NORMAL, view_origin);
110 porto.classname = "porto";
111 porto.draw = Porto_Draw;
112 porto.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP;
117 vector GetCurrentFov(float fov)
119 float zoomsensitivity, zoomspeed, zoomfactor, zoomdir;
120 float velocityzoom, curspeed;
123 zoomsensitivity = autocvar_cl_zoomsensitivity;
124 zoomfactor = autocvar_cl_zoomfactor;
125 if(zoomfactor < 1 || zoomfactor > 30)
127 zoomspeed = autocvar_cl_zoomspeed;
129 if(zoomspeed < 0.5 || zoomspeed > 16)
132 zoomdir = button_zoom;
133 if(hud == HUD_NORMAL)
134 if(switchweapon == activeweapon)
135 if((activeweapon == WEP_VORTEX.m_id && vortex_scope) || (activeweapon == WEP_RIFLE.m_id && rifle_scope)) // do NOT use switchweapon here
136 zoomdir += button_attack2;
137 if(spectatee_status > 0 || isdemo())
139 if(spectatorbutton_zoom)
146 // fteqcc failed twice here already, don't optimize this
149 if(zoomdir) { zoomin_effect = 0; }
153 current_viewzoom = min(1, current_viewzoom + drawframetime);
155 else if(autocvar_cl_spawnzoom && zoomin_effect)
157 float spawnzoomfactor = bound(1, autocvar_cl_spawnzoom_factor, 30);
159 current_viewzoom += (autocvar_cl_spawnzoom_speed * (spawnzoomfactor - current_viewzoom) * drawframetime);
160 current_viewzoom = bound(1 / spawnzoomfactor, current_viewzoom, 1);
161 if(current_viewzoom == 1) { zoomin_effect = 0; }
165 if(zoomspeed < 0) // instant zoom
168 current_viewzoom = 1 / zoomfactor;
170 current_viewzoom = 1;
175 current_viewzoom = 1 / bound(1, 1 / current_viewzoom + drawframetime * zoomspeed * (zoomfactor - 1), zoomfactor);
177 current_viewzoom = bound(1 / zoomfactor, current_viewzoom + drawframetime * zoomspeed * (1 - 1 / zoomfactor), 1);
181 if(almost_equals(current_viewzoom, 1))
182 current_zoomfraction = 0;
183 else if(almost_equals(current_viewzoom, 1/zoomfactor))
184 current_zoomfraction = 1;
186 current_zoomfraction = (current_viewzoom - 1) / (1/zoomfactor - 1);
188 if(zoomsensitivity < 1)
189 setsensitivityscale(pow(current_viewzoom, 1 - zoomsensitivity));
191 setsensitivityscale(1);
193 if(autocvar_cl_velocityzoom_enabled && autocvar_cl_velocityzoom_type) // _type = 0 disables velocity zoom too
195 if(intermission) { curspeed = 0; }
199 makevectors(view_angles);
202 v = csqcplayer.velocity;
204 switch(autocvar_cl_velocityzoom_type)
206 case 3: curspeed = max(0, v_forward * v); break;
207 case 2: curspeed = (v_forward * v); break;
208 case 1: default: curspeed = vlen(v); break;
212 velocityzoom = bound(0, drawframetime / max(0.000000001, autocvar_cl_velocityzoom_time), 1); // speed at which the zoom adapts to player velocity
213 avgspeed = avgspeed * (1 - velocityzoom) + (curspeed / autocvar_cl_velocityzoom_speed) * velocityzoom;
214 velocityzoom = exp(float2range11(avgspeed * -autocvar_cl_velocityzoom_factor / 1) * 1);
216 //print(ftos(avgspeed), " avgspeed, ", ftos(curspeed), " curspeed, ", ftos(velocityzoom), " return\n"); // for debugging
221 float frustumx, frustumy, fovx, fovy;
222 frustumy = tan(fov * M_PI / 360.0) * 0.75 * current_viewzoom * velocityzoom;
223 frustumx = frustumy * vid_width / vid_height / vid_pixelheight;
224 fovx = atan2(frustumx, 1) / M_PI * 360.0;
225 fovy = atan2(frustumy, 1) / M_PI * 360.0;
227 return '1 0 0' * fovx + '0 1 0' * fovy;
230 vector GetViewLocationFOV(float fov)
232 float frustumy = tan(fov * M_PI / 360.0) * 0.75;
233 float frustumx = frustumy * vid_width / vid_height / vid_pixelheight;
234 float fovx = atan2(frustumx, 1) / M_PI * 360.0;
235 float fovy = atan2(frustumy, 1) / M_PI * 360.0;
236 return '1 0 0' * fovx + '0 1 0' * fovy;
239 vector GetOrthoviewFOV(vector ov_worldmin, vector ov_worldmax, vector ov_mid, vector ov_org)
242 float width = (ov_worldmax.x - ov_worldmin.x);
243 float height = (ov_worldmax.y - ov_worldmin.y);
244 float distance_to_middle_of_world = vlen(ov_mid - ov_org);
245 fovx = atan2(width/2, distance_to_middle_of_world) / M_PI * 360.0;
246 fovy = atan2(height/2, distance_to_middle_of_world) / M_PI * 360.0;
247 return '1 0 0' * fovx + '0 1 0' * fovy;
250 // this function must match W_SetupShot!
251 float zoomscript_caught;
253 vector wcross_origin;
254 float wcross_scale_prev, wcross_alpha_prev;
255 vector wcross_color_prev;
256 float wcross_scale_goal_prev, wcross_alpha_goal_prev;
257 vector wcross_color_goal_prev;
258 float wcross_changedonetime;
260 string wcross_name_goal_prev, wcross_name_goal_prev_prev;
261 float wcross_resolution_goal_prev, wcross_resolution_goal_prev_prev;
262 float wcross_name_changestarttime, wcross_name_changedonetime;
263 float wcross_name_alpha_goal_prev, wcross_name_alpha_goal_prev_prev;
265 float wcross_ring_prev;
268 entity trueaim_rifle;
270 const float SHOTTYPE_HITTEAM = 1;
271 const float SHOTTYPE_HITOBSTRUCTION = 2;
272 const float SHOTTYPE_HITWORLD = 3;
273 const float SHOTTYPE_HITENEMY = 4;
278 trueaim.classname = "trueaim";
279 trueaim.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
280 trueaim_rifle = spawn();
281 trueaim_rifle.classname = "trueaim_rifle";
282 trueaim_rifle.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_CORPSE;
285 float EnemyHitCheck()
288 wcross_origin = project_3d_to_2d(trace_endpos);
291 n = trace_ent.entnum;
293 n = trace_networkentity;
295 return SHOTTYPE_HITWORLD;
297 return SHOTTYPE_HITWORLD;
298 t = GetPlayerColor(n - 1);
301 return SHOTTYPE_HITTEAM;
302 if(t == NUM_SPECTATOR)
303 return SHOTTYPE_HITWORLD;
304 return SHOTTYPE_HITENEMY;
309 float nudge = 1; // added to traceline target and subtracted from result TOOD(divVerent): do we still need this? Doesn't the engine do this now for us?
310 vector vecs, trueaimpoint, w_shotorg;
318 mv = MOVE_NOMONSTERS;
320 switch(activeweapon) // WEAPONTODO
322 case WEP_TUBA.m_id: // no aim
323 case WEP_PORTO.m_id: // shoots from eye
324 case WEP_NEXBALL.m_id: // shoots from eye
325 case WEP_HOOK.m_id: // no trueaim
326 case WEP_MORTAR.m_id: // toss curve
327 return SHOTTYPE_HITWORLD;
328 case WEP_VORTEX.m_id:
329 case WEP_VAPORIZER.m_id:
335 if(zoomscript_caught)
337 tracebox(view_origin, '0 0 0', '0 0 0', view_origin + view_forward * MAX_SHOT_DISTANCE, mv, ta);
338 return EnemyHitCheck();
341 case WEP_DEVASTATOR.m_id: // projectile has a size!
345 case WEP_FIREBALL.m_id: // projectile has a size!
349 case WEP_SEEKER.m_id: // projectile has a size!
353 case WEP_ELECTRO.m_id: // projectile has a size!
359 vector traceorigin = getplayerorigin(player_localentnum-1) + (eZ * getstati(STAT_VIEWHEIGHT));
361 vecs = decompressShotOrigin(getstati(STAT_SHOTORG));
363 traceline(traceorigin, traceorigin + view_forward * MAX_SHOT_DISTANCE, mv, ta);
364 trueaimpoint = trace_endpos;
366 if(vlen(trueaimpoint - traceorigin) < g_trueaim_minrange)
367 trueaimpoint = traceorigin + view_forward * g_trueaim_minrange;
374 dv = view_right * vecs.y + view_up * vecs.z;
375 w_shotorg = traceorigin + dv;
377 // now move the vecs forward as much as requested if possible
378 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
379 w_shotorg = trace_endpos - view_forward * nudge;
381 tracebox(w_shotorg, mi, ma, trueaimpoint, MOVE_NORMAL, ta);
382 shottype = EnemyHitCheck();
383 if(shottype != SHOTTYPE_HITWORLD)
387 // FIXME WHY DOES THIS NOT WORK FOR THE ROCKET LAUNCHER?
388 // or rather, I know why, but see no fix
389 if(vlen(trace_endpos - trueaimpoint) > vlen(ma) + vlen(mi) + 1)
390 // 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
391 return SHOTTYPE_HITOBSTRUCTION;
394 return SHOTTYPE_HITWORLD;
397 void CSQC_common_hud(void);
400 void CSQC_Demo_Camera();
401 float HUD_WouldDrawScoreboard();
403 const float CAMERA_FREE = 1;
404 const float CAMERA_CHASE = 2;
406 string reticle_image;
407 string NextFrameCommand;
409 vector freeze_org, freeze_ang;
410 entity nightvision_noise, nightvision_noise2;
412 const float MAX_TIME_DIFF = 5;
413 float pickup_crosshair_time, pickup_crosshair_size;
414 float hitindication_crosshair_size;
415 float use_vortex_chargepool;
417 float myhealth, myhealth_prev;
418 float myhealth_flash;
420 float old_blurradius, old_bluralpha;
421 float old_sharpen_intensity;
423 vector myhealth_gentlergb;
425 float contentavgalpha, liquidalpha_prev;
426 vector liquidcolor_prev;
428 float eventchase_current_distance;
429 float eventchase_running;
430 bool WantEventchase()
432 if(autocvar_cl_orthoview)
438 if(spectatee_status >= 0)
440 if(hud != HUD_NORMAL && (autocvar_cl_eventchase_vehicle || spectatee_status > 0))
442 if(MUTATOR_CALLHOOK(WantEventchase, self))
444 if(autocvar_cl_eventchase_nexball && gametype == MAPINFO_TYPE_NEXBALL && !(WepSet_GetFromStat() & WepSet_FromWeapon(WEP_NEXBALL.m_id)))
446 if(autocvar_cl_eventchase_death && (getstati(STAT_HEALTH) <= 0))
448 if(autocvar_cl_eventchase_death == 2)
450 // don't stop eventchase once it's started (even if velocity changes afterwards)
451 if(self.velocity == '0 0 0' || eventchase_running)
460 vector damage_blurpostprocess, content_blurpostprocess;
462 float unaccounted_damage = 0;
465 // accumulate damage with each stat update
466 static float damage_total_prev = 0;
467 float damage_total = getstati(STAT_DAMAGE_DEALT_TOTAL);
468 float unaccounted_damage_new = COMPARE_INCREASING(damage_total, damage_total_prev);
469 damage_total_prev = damage_total;
471 static float damage_dealt_time_prev = 0;
472 float damage_dealt_time = getstatf(STAT_HIT_TIME);
473 if (damage_dealt_time != damage_dealt_time_prev)
475 unaccounted_damage += unaccounted_damage_new;
476 LOG_TRACE("dmg total: ", ftos(unaccounted_damage), " (+", ftos(unaccounted_damage_new), ")", "\n");
478 damage_dealt_time_prev = damage_dealt_time;
480 // prevent hitsound when switching spectatee
481 static float spectatee_status_prev = 0;
482 if (spectatee_status != spectatee_status_prev)
483 unaccounted_damage = 0;
484 spectatee_status_prev = spectatee_status;
487 void UpdateHitsound()
489 // varying sound pitch
491 static float hitsound_time_prev = 0;
492 // HACK: the only way to get the arc to sound consistent with pitch shift is to ignore cl_hitsound_antispam_time
493 float arc_hack = activeweapon == WEP_ARC.m_id && autocvar_cl_hitsound >= 2;
494 if (arc_hack || COMPARE_INCREASING(time, hitsound_time_prev) > autocvar_cl_hitsound_antispam_time)
496 if (autocvar_cl_hitsound && unaccounted_damage)
498 // customizable gradient function that crosses (0,a), (c,1) and asymptotically approaches b
499 float a = autocvar_cl_hitsound_max_pitch;
500 float b = autocvar_cl_hitsound_min_pitch;
501 float c = autocvar_cl_hitsound_nom_damage;
502 float x = unaccounted_damage;
503 float pitch_shift = (b*x*(a-1) + a*c*(1-b)) / (x*(a-1) + c*(1-b));
505 // if sound variation is disabled, set pitch_shift to 1
506 if (autocvar_cl_hitsound == 1)
509 // if pitch shift is reversed, mirror in (max-min)/2 + min
510 if (autocvar_cl_hitsound == 3)
512 float mirror_value = (a-b)/2 + b;
513 pitch_shift = mirror_value + (mirror_value - pitch_shift);
516 LOG_TRACE("dmg total (dmg): ", ftos(unaccounted_damage), " , pitch shift: ", ftos(pitch_shift), "\n");
518 // todo: avoid very long and very short sounds from wave stretching using different sound files? seems unnecessary
519 // todo: normalize sound pressure levels? seems unnecessary
521 sound7(world, CH_INFO, SND(HIT), VOL_BASE, ATTN_NONE, pitch_shift * 100, 0);
523 unaccounted_damage = 0;
524 hitsound_time_prev = time;
527 static float typehit_time_prev = 0;
528 float typehit_time = getstatf(STAT_TYPEHIT_TIME);
529 if (COMPARE_INCREASING(typehit_time, typehit_time_prev) > autocvar_cl_hitsound_antispam_time)
531 sound(world, CH_INFO, SND_TYPEHIT, VOL_BASE, ATTN_NONE);
532 typehit_time_prev = typehit_time;
536 void UpdateCrosshair()
538 static float rainbow_last_flicker;
539 static vector rainbow_prev_color;
543 if(getstati(STAT_FROZEN))
544 drawfill('0 0 0', eX * vid_conwidth + eY * vid_conheight, ((getstatf(STAT_REVIVE_PROGRESS)) ? ('0.25 0.90 1' + ('1 0 0' * getstatf(STAT_REVIVE_PROGRESS)) + ('0 1 1' * getstatf(STAT_REVIVE_PROGRESS) * -1)) : '0.25 0.90 1'), autocvar_hud_colorflash_alpha, DRAWFLAG_ADDITIVE);
545 else if (getstatf(STAT_HEALING_ORB)>time)
546 drawfill('0 0 0', eX * vid_conwidth + eY * vid_conheight, NADE_TYPE_HEAL.m_color, autocvar_hud_colorflash_alpha*getstatf(STAT_HEALING_ORB_ALPHA), DRAWFLAG_ADDITIVE);
548 if(getstatf(STAT_NADE_TIMER) && autocvar_cl_nade_timer) // give nade top priority, as it's a matter of life and death
550 DrawCircleClippedPic(eX * 0.5 * vid_conwidth + eY * 0.6 * vid_conheight, 0.1 * vid_conheight, "gfx/crosshair_ring.tga", getstatf(STAT_NADE_TIMER), '0.25 0.90 1' + ('1 0 0' * getstatf(STAT_NADE_TIMER)) - ('0 1 1' * getstatf(STAT_NADE_TIMER)), autocvar_hud_colorflash_alpha, DRAWFLAG_ADDITIVE);
551 drawstring_aspect(eY * 0.64 * vid_conheight, ((autocvar_cl_nade_timer == 2) ? _("Nade timer") : ""), eX * vid_conwidth + eY * 0.025 * vid_conheight, '1 1 1', 1, DRAWFLAG_NORMAL);
553 else if(getstatf(STAT_REVIVE_PROGRESS))
555 DrawCircleClippedPic(eX * 0.5 * vid_conwidth + eY * 0.6 * vid_conheight, 0.1 * vid_conheight, "gfx/crosshair_ring.tga", getstatf(STAT_REVIVE_PROGRESS), '0.25 0.90 1', autocvar_hud_colorflash_alpha, DRAWFLAG_ADDITIVE);
556 drawstring_aspect(eY * 0.64 * vid_conheight, _("Revival progress"), eX * vid_conwidth + eY * 0.025 * vid_conheight, '1 1 1', 1, DRAWFLAG_NORMAL);
559 if(autocvar_r_letterbox == 0)
560 if(autocvar_viewsize < 120)
563 // crosshair goes VERY LAST
564 if(!scoreboard_active && !camera_active && intermission != 2 &&
565 spectatee_status != -1 && hud == HUD_NORMAL && !csqcplayer.viewloc &&
566 !HUD_MinigameMenu_IsOpened() )
568 if (!autocvar_crosshair_enabled) // main toggle for crosshair rendering
572 float wcross_alpha, wcross_resolution;
573 wcross_style = autocvar_crosshair;
574 if (wcross_style == "0")
576 wcross_resolution = autocvar_crosshair_size;
577 if (wcross_resolution == 0)
579 wcross_alpha = autocvar_crosshair_alpha;
580 if (wcross_alpha == 0)
586 // wcross_origin = '0.5 0 0' * vid_conwidth + '0 0.5 0' * vid_conheight;
587 wcross_origin = project_3d_to_2d(view_origin + MAX_SHOT_DISTANCE * view_forward);
589 if(autocvar_crosshair_hittest)
591 vector wcross_oldorigin;
592 wcross_oldorigin = wcross_origin;
593 shottype = TrueAimCheck();
594 if(shottype == SHOTTYPE_HITWORLD)
596 v = wcross_origin - wcross_oldorigin;
598 v.y /= vid_conheight;
600 shottype = SHOTTYPE_HITOBSTRUCTION;
602 if(!autocvar_crosshair_hittest_showimpact)
603 wcross_origin = wcross_oldorigin;
606 shottype = SHOTTYPE_HITWORLD;
608 vector wcross_color = '0 0 0', wcross_size = '0 0 0';
609 string wcross_name = "";
610 float wcross_scale, wcross_blur;
612 if(autocvar_crosshair_per_weapon || (autocvar_crosshair_color_special == 1))
614 e = get_weaponinfo(switchingweapon);
617 if(autocvar_crosshair_per_weapon)
619 // WEAPONTODO: access these through some general settings (with non-balance config settings)
620 //wcross_resolution *= cvar(strcat("crosshair_", wcross_wep, "_size"));
621 //if (wcross_resolution == 0)
624 //wcross_style = cvar_string(strcat("crosshair_", wcross_wep));
625 wcross_resolution *= e.w_crosshair_size;
626 wcross_name = e.w_crosshair;
631 if(wcross_name == "")
632 wcross_name = strcat("gfx/crosshair", wcross_style);
634 // MAIN CROSSHAIR COLOR DECISION
635 switch(autocvar_crosshair_color_special)
637 case 1: // crosshair_color_per_weapon
641 wcross_color = e.wpcolor;
644 else { goto normalcolor; }
647 case 2: // crosshair_color_by_health
649 float x = getstati(STAT_HEALTH);
664 wcross_color.x = 0.4 - (x-150)*0.02 * 0.4;
665 wcross_color.y = 0.9 + (x-150)*0.02 * 0.1;
669 wcross_color.x = 1 - (x-100)*0.02 * 0.6;
670 wcross_color.y = 1 - (x-100)*0.02 * 0.1;
671 wcross_color.z = 1 - (x-100)*0.02;
677 wcross_color.z = 0.2 + (x-50)*0.02 * 0.8;
682 wcross_color.y = (x-20)*90/27/100;
683 wcross_color.z = (x-20)*90/27/100 * 0.2;
693 case 3: // crosshair_color_rainbow
695 if(time >= rainbow_last_flicker)
697 rainbow_prev_color = randomvec() * autocvar_crosshair_color_special_rainbow_brightness;
698 rainbow_last_flicker = time + autocvar_crosshair_color_special_rainbow_delay;
700 wcross_color = rainbow_prev_color;
704 default: { wcross_color = stov(autocvar_crosshair_color); break; }
707 if(autocvar_crosshair_effect_scalefade)
709 wcross_scale = wcross_resolution;
710 wcross_resolution = 1;
717 if(autocvar_crosshair_pickup)
719 float stat_pickup_time = getstatf(STAT_LAST_PICKUP);
721 if(pickup_crosshair_time < stat_pickup_time)
723 if(time - stat_pickup_time < MAX_TIME_DIFF) // don't trigger the animation if it's too old
724 pickup_crosshair_size = 1;
726 pickup_crosshair_time = stat_pickup_time;
729 if(pickup_crosshair_size > 0)
730 pickup_crosshair_size -= autocvar_crosshair_pickup_speed * frametime;
732 pickup_crosshair_size = 0;
734 wcross_scale += sin(pickup_crosshair_size) * autocvar_crosshair_pickup;
737 // todo: make crosshair hit indication dependent on damage dealt
738 if(autocvar_crosshair_hitindication)
740 vector hitindication_color = ((autocvar_crosshair_color_special == 1) ? stov(autocvar_crosshair_hitindication_per_weapon_color) : stov(autocvar_crosshair_hitindication_color));
742 if(unaccounted_damage)
744 hitindication_crosshair_size = 1;
747 if(hitindication_crosshair_size > 0)
748 hitindication_crosshair_size -= autocvar_crosshair_hitindication_speed * frametime;
750 hitindication_crosshair_size = 0;
752 wcross_scale += sin(hitindication_crosshair_size) * autocvar_crosshair_hitindication;
753 wcross_color.x += sin(hitindication_crosshair_size) * hitindication_color.x;
754 wcross_color.y += sin(hitindication_crosshair_size) * hitindication_color.y;
755 wcross_color.z += sin(hitindication_crosshair_size) * hitindication_color.z;
758 if(shottype == SHOTTYPE_HITENEMY)
759 wcross_scale *= autocvar_crosshair_hittest; // is not queried if hittest is 0
760 if(shottype == SHOTTYPE_HITTEAM)
761 wcross_scale /= autocvar_crosshair_hittest; // is not queried if hittest is 0
763 f = fabs(autocvar_crosshair_effect_time);
764 if(wcross_scale != wcross_scale_goal_prev || wcross_alpha != wcross_alpha_goal_prev || wcross_color != wcross_color_goal_prev)
766 wcross_changedonetime = time + f;
768 if(wcross_name != wcross_name_goal_prev || wcross_resolution != wcross_resolution_goal_prev)
770 wcross_name_changestarttime = time;
771 wcross_name_changedonetime = time + f;
772 if(wcross_name_goal_prev_prev)
773 strunzone(wcross_name_goal_prev_prev);
774 wcross_name_goal_prev_prev = wcross_name_goal_prev;
775 wcross_name_goal_prev = strzone(wcross_name);
776 wcross_name_alpha_goal_prev_prev = wcross_name_alpha_goal_prev;
777 wcross_resolution_goal_prev_prev = wcross_resolution_goal_prev;
778 wcross_resolution_goal_prev = wcross_resolution;
781 wcross_scale_goal_prev = wcross_scale;
782 wcross_alpha_goal_prev = wcross_alpha;
783 wcross_color_goal_prev = wcross_color;
785 if(spectatee_status == -1 && shottype == SHOTTYPE_HITTEAM || (shottype == SHOTTYPE_HITOBSTRUCTION && autocvar_crosshair_hittest_blur && !autocvar_chase_active))
788 wcross_alpha *= 0.75;
792 // *_prev is at time-frametime
793 // * is at wcross_changedonetime+f
794 // what do we have at time?
795 if(time < wcross_changedonetime)
797 f = frametime / (wcross_changedonetime - time + frametime);
798 wcross_scale = f * wcross_scale + (1 - f) * wcross_scale_prev;
799 wcross_alpha = f * wcross_alpha + (1 - f) * wcross_alpha_prev;
800 wcross_color = f * wcross_color + (1 - f) * wcross_color_prev;
803 wcross_scale_prev = wcross_scale;
804 wcross_alpha_prev = wcross_alpha;
805 wcross_color_prev = wcross_color;
807 MUTATOR_CALLHOOK(UpdateCrosshair);
809 wcross_scale *= 1 - autocvar__menu_alpha;
810 wcross_alpha *= 1 - autocvar__menu_alpha;
811 wcross_size = draw_getimagesize(wcross_name) * wcross_scale;
813 if(wcross_scale >= 0.001 && wcross_alpha >= 0.001)
815 // crosshair rings for weapon stats
816 if (autocvar_crosshair_ring || autocvar_crosshair_ring_reload)
818 // declarations and stats
819 float ring_value = 0, ring_scale = 0, ring_alpha = 0, ring_inner_value = 0, ring_inner_alpha = 0;
820 string ring_image = string_null, ring_inner_image = string_null;
821 vector ring_rgb = '0 0 0', ring_inner_rgb = '0 0 0';
823 ring_scale = autocvar_crosshair_ring_size;
825 float weapon_clipload, weapon_clipsize;
826 weapon_clipload = getstati(STAT_WEAPON_CLIPLOAD);
827 weapon_clipsize = getstati(STAT_WEAPON_CLIPSIZE);
829 float ok_ammo_charge, ok_ammo_chargepool;
830 ok_ammo_charge = getstatf(STAT_OK_AMMO_CHARGE);
831 ok_ammo_chargepool = getstatf(STAT_OK_AMMO_CHARGEPOOL);
833 float vortex_charge, vortex_chargepool;
834 vortex_charge = getstatf(STAT_VORTEX_CHARGE);
835 vortex_chargepool = getstatf(STAT_VORTEX_CHARGEPOOL);
837 float arc_heat = getstatf(STAT_ARC_HEAT);
839 if(vortex_charge_movingavg == 0) // this should only happen if we have just loaded up the game
840 vortex_charge_movingavg = vortex_charge;
844 if (autocvar_crosshair_ring && activeweapon == WEP_VORTEX.m_id && vortex_charge && autocvar_crosshair_ring_vortex) // ring around crosshair representing velocity-dependent damage for the vortex
846 if (vortex_chargepool || use_vortex_chargepool) {
847 use_vortex_chargepool = 1;
848 ring_inner_value = vortex_chargepool;
850 vortex_charge_movingavg = (1 - autocvar_crosshair_ring_vortex_currentcharge_movingavg_rate) * vortex_charge_movingavg + autocvar_crosshair_ring_vortex_currentcharge_movingavg_rate * vortex_charge;
851 ring_inner_value = bound(0, autocvar_crosshair_ring_vortex_currentcharge_scale * (vortex_charge - vortex_charge_movingavg), 1);
854 ring_inner_alpha = autocvar_crosshair_ring_vortex_inner_alpha;
855 ring_inner_rgb = eX * autocvar_crosshair_ring_vortex_inner_color_red + eY * autocvar_crosshair_ring_vortex_inner_color_green + eZ * autocvar_crosshair_ring_vortex_inner_color_blue;
856 ring_inner_image = "gfx/crosshair_ring_inner.tga";
858 // draw the outer ring to show the current charge of the weapon
859 ring_value = vortex_charge;
860 ring_alpha = autocvar_crosshair_ring_vortex_alpha;
861 ring_rgb = wcross_color;
862 ring_image = "gfx/crosshair_ring_nexgun.tga";
864 else if (autocvar_crosshair_ring && activeweapon == WEP_MINE_LAYER.m_id && minelayer_maxmines && autocvar_crosshair_ring_minelayer)
866 ring_value = bound(0, getstati(STAT_LAYED_MINES) / minelayer_maxmines, 1); // if you later need to use the count of bullets in another place, then add a float for it. For now, no need to.
867 ring_alpha = autocvar_crosshair_ring_minelayer_alpha;
868 ring_rgb = wcross_color;
869 ring_image = "gfx/crosshair_ring.tga";
871 else if (activeweapon == WEP_HAGAR.m_id && getstati(STAT_HAGAR_LOAD) && autocvar_crosshair_ring_hagar)
873 ring_value = bound(0, getstati(STAT_HAGAR_LOAD) / hagar_maxrockets, 1);
874 ring_alpha = autocvar_crosshair_ring_hagar_alpha;
875 ring_rgb = wcross_color;
876 ring_image = "gfx/crosshair_ring.tga";
878 else if (ok_ammo_charge)
880 ring_value = ok_ammo_chargepool;
881 ring_alpha = autocvar_crosshair_ring_reload_alpha;
882 ring_rgb = wcross_color;
883 ring_image = "gfx/crosshair_ring.tga";
885 else if(autocvar_crosshair_ring_reload && weapon_clipsize) // forces there to be only an ammo ring
887 ring_value = bound(0, weapon_clipload / weapon_clipsize, 1);
888 ring_scale = autocvar_crosshair_ring_reload_size;
889 ring_alpha = autocvar_crosshair_ring_reload_alpha;
890 ring_rgb = wcross_color;
892 // Note: This is to stop Taoki from complaining that the image doesn't match all potential balances.
893 // if a new image for another weapon is added, add the code (and its respective file/value) here
894 if ((activeweapon == WEP_RIFLE.m_id) && (weapon_clipsize == 80))
895 ring_image = "gfx/crosshair_ring_rifle.tga";
897 ring_image = "gfx/crosshair_ring.tga";
899 else if ( autocvar_crosshair_ring && autocvar_crosshair_ring_arc && arc_heat && activeweapon == WEP_ARC.m_id )
901 ring_value = arc_heat;
902 ring_alpha = (1-arc_heat)*autocvar_crosshair_ring_arc_cold_alpha +
903 arc_heat*autocvar_crosshair_ring_arc_hot_alpha;
904 ring_rgb = (1-arc_heat)*wcross_color + arc_heat*autocvar_crosshair_ring_arc_hot_color;
905 ring_image = "gfx/crosshair_ring.tga";
908 // if in weapon switch animation, fade ring out/in
909 if(autocvar_crosshair_effect_time > 0)
911 f = (time - wcross_name_changestarttime) / autocvar_crosshair_effect_time;
914 wcross_ring_prev = ((ring_image) ? true : false);
920 ring_alpha *= fabs(1 - bound(0, f, 1));
925 ring_alpha *= bound(0, f, 1);
929 if (autocvar_crosshair_ring_inner && ring_inner_value) // lets draw a ring inside a ring so you can ring while you ring
930 DrawCircleClippedPic(wcross_origin, wcross_size.x * ring_scale, ring_inner_image, ring_inner_value, ring_inner_rgb, wcross_alpha * ring_inner_alpha, DRAWFLAG_ADDITIVE);
933 DrawCircleClippedPic(wcross_origin, wcross_size.x * ring_scale, ring_image, ring_value, ring_rgb, wcross_alpha * ring_alpha, DRAWFLAG_ADDITIVE);
936 #define CROSSHAIR_DO_BLUR(M,sz,wcross_name,wcross_alpha) \
939 if(wcross_blur > 0) \
941 for(i = -2; i <= 2; ++i) \
942 for(j = -2; j <= 2; ++j) \
943 M(i,j,sz,wcross_name,wcross_alpha*0.04); \
947 M(0,0,sz,wcross_name,wcross_alpha); \
952 #define CROSSHAIR_DRAW_SINGLE(i,j,sz,wcross_name,wcross_alpha) \
953 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)
955 #define CROSSHAIR_DRAW(sz,wcross_name,wcross_alpha) \
956 CROSSHAIR_DO_BLUR(CROSSHAIR_DRAW_SINGLE,sz,wcross_name,wcross_alpha)
958 if(time < wcross_name_changedonetime && wcross_name != wcross_name_goal_prev_prev && wcross_name_goal_prev_prev)
960 f = (wcross_name_changedonetime - time) / (wcross_name_changedonetime - wcross_name_changestarttime);
961 wcross_size = draw_getimagesize(wcross_name_goal_prev_prev) * wcross_scale;
962 CROSSHAIR_DRAW(wcross_resolution_goal_prev_prev, wcross_name_goal_prev_prev, wcross_alpha * f * wcross_name_alpha_goal_prev_prev);
969 wcross_name_alpha_goal_prev = f;
971 wcross_size = draw_getimagesize(wcross_name) * wcross_scale;
972 CROSSHAIR_DRAW(wcross_resolution, wcross_name, wcross_alpha * f);
974 if(autocvar_crosshair_dot)
976 vector wcross_color_old;
977 wcross_color_old = wcross_color;
979 if((autocvar_crosshair_dot_color_custom) && (autocvar_crosshair_dot_color != "0"))
980 wcross_color = stov(autocvar_crosshair_dot_color);
982 CROSSHAIR_DRAW(wcross_resolution * autocvar_crosshair_dot_size, "gfx/crosshairdot.tga", f * autocvar_crosshair_dot_alpha);
983 // FIXME why don't we use wcross_alpha here?cl_notice_run();
984 wcross_color = wcross_color_old;
990 wcross_scale_prev = 0;
991 wcross_alpha_prev = 0;
992 wcross_scale_goal_prev = 0;
993 wcross_alpha_goal_prev = 0;
994 wcross_changedonetime = 0;
995 if(wcross_name_goal_prev)
996 strunzone(wcross_name_goal_prev);
997 wcross_name_goal_prev = string_null;
998 if(wcross_name_goal_prev_prev)
999 strunzone(wcross_name_goal_prev_prev);
1000 wcross_name_goal_prev_prev = string_null;
1001 wcross_name_changestarttime = 0;
1002 wcross_name_changedonetime = 0;
1003 wcross_name_alpha_goal_prev = 0;
1004 wcross_name_alpha_goal_prev_prev = 0;
1005 wcross_resolution_goal_prev = 0;
1006 wcross_resolution_goal_prev_prev = 0;
1011 float oldr_nearclip;
1012 float oldr_farclip_base;
1013 float oldr_farclip_world;
1015 float oldr_useportalculling;
1016 float oldr_useinfinitefarclip;
1018 const int BUTTON_3 = 4;
1019 const int BUTTON_4 = 8;
1020 float cl_notice_run();
1023 float vh_notice_time;
1024 void WaypointSprite_Load();
1025 void CSQC_UpdateView(float w, float h)
1031 vector vf_size, vf_min;
1034 execute_next_frame();
1038 hud = getstati(STAT_HUD);
1040 if(hud != HUD_NORMAL && lasthud == HUD_NORMAL)
1041 vh_notice_time = time + autocvar_cl_vehicles_notify_time;
1045 if(autocvar__hud_showbinds_reload) // menu can set this one
1048 binddb = db_create();
1049 cvar_set("_hud_showbinds_reload", "0");
1052 if(checkextension("DP_CSQC_MINFPS_QUALITY"))
1053 view_quality = getproperty(VF_MINFPS_QUALITY);
1057 button_attack2 = (input_buttons & BUTTON_3);
1058 button_zoom = (input_buttons & BUTTON_4);
1060 vf_size = getpropertyvec(VF_SIZE);
1061 vf_min = getpropertyvec(VF_MIN);
1062 vid_width = vf_size.x;
1063 vid_height = vf_size.y;
1065 vector reticle_pos = '0 0 0', reticle_size = '0 0 0';
1066 vector splash_pos = '0 0 0', splash_size = '0 0 0';
1068 WaypointSprite_Load();
1070 CSQCPlayer_SetCamera();
1072 if(player_localentnum <= maxclients) // is it a client?
1073 current_player = player_localentnum - 1;
1074 else // then player_localentnum is the vehicle I'm driving
1075 current_player = player_localnum;
1076 myteam = GetPlayerColor(current_player);
1078 if(myteam != prev_myteam)
1080 myteamcolors = colormapPaletteColor(myteam, 1);
1081 for(i = 0; i < HUD_PANEL_NUM; ++i)
1082 hud_panel[i].update_time = time;
1083 prev_myteam = myteam;
1086 ticrate = getstatf(STAT_MOVEVARS_TICRATE) * getstatf(STAT_MOVEVARS_TIMESCALE);
1088 float is_dead = (getstati(STAT_HEALTH) <= 0);
1090 // FIXME do we need this hack?
1093 // in demos, input_buttons do not work
1094 button_zoom = (autocvar__togglezoom == "-");
1097 && autocvar_cl_unpress_zoom_on_death
1098 && (spectatee_status >= 0)
1099 && (is_dead || intermission))
1101 // no zoom while dead or in intermission please
1102 localcmd("-zoom\n");
1103 button_zoom = false;
1106 // event chase camera
1107 if(autocvar_chase_active <= 0) // greater than 0 means it's enabled manually, and this code is skipped
1109 float vehicle_chase = (hud != HUD_NORMAL && (autocvar_cl_eventchase_vehicle || spectatee_status > 0));
1110 float ons_roundlost = (gametype == MAPINFO_TYPE_ONSLAUGHT && getstati(STAT_ROUNDLOST));
1116 for(e = world; (e = find(e, classname, "onslaught_generator")); )
1125 ons_roundlost = FALSE; // don't enforce the 3rd person camera if there is no dead generator to show
1127 if(WantEventchase() || (!autocvar_cl_orthoview && ons_roundlost))
1129 eventchase_running = true;
1131 // make special vector since we can't use view_origin (It is one frame old as of this code, it gets set later with the results this code makes.)
1132 vector current_view_origin = (csqcplayer ? csqcplayer.origin : pmove_org);
1133 if(ons_roundlost) { current_view_origin = gen.origin; }
1135 // detect maximum viewoffset and use it
1136 vector view_offset = autocvar_cl_eventchase_viewoffset;
1137 if(vehicle_chase && autocvar_cl_eventchase_vehicle_viewoffset) { view_offset = autocvar_cl_eventchase_vehicle_viewoffset; }
1138 if(ons_roundlost) { view_offset = autocvar_cl_eventchase_generator_viewoffset; }
1142 WarpZone_TraceLine(current_view_origin, current_view_origin + view_offset + ('0 0 1' * autocvar_cl_eventchase_maxs.z), MOVE_WORLDONLY, self);
1143 if(trace_fraction == 1) { current_view_origin += view_offset; }
1144 else { current_view_origin.z += max(0, (trace_endpos.z - current_view_origin.z) - autocvar_cl_eventchase_maxs.z); }
1147 // We must enable chase_active to get a third person view (weapon viewmodel hidden and own player model showing).
1148 // Ideally, there should be another way to enable third person cameras, such as through setproperty()
1149 // -1 enables chase_active while marking it as set by this code, and not by the user (which would be 1)
1150 if(!autocvar_chase_active) { cvar_set("chase_active", "-1"); }
1152 // make the camera smooth back
1153 float chase_distance = autocvar_cl_eventchase_distance;
1154 if(vehicle_chase && autocvar_cl_eventchase_vehicle_distance) { chase_distance = autocvar_cl_eventchase_vehicle_distance; }
1155 if(ons_roundlost) { chase_distance = autocvar_cl_eventchase_generator_distance; }
1157 if(autocvar_cl_eventchase_speed && eventchase_current_distance < chase_distance)
1158 eventchase_current_distance += autocvar_cl_eventchase_speed * (chase_distance - eventchase_current_distance) * frametime; // slow down the further we get
1159 else if(eventchase_current_distance != chase_distance)
1160 eventchase_current_distance = chase_distance;
1162 makevectors(view_angles);
1164 vector eventchase_target_origin = (current_view_origin - (v_forward * eventchase_current_distance));
1165 WarpZone_TraceBox(current_view_origin, autocvar_cl_eventchase_mins, autocvar_cl_eventchase_maxs, eventchase_target_origin, MOVE_WORLDONLY, self);
1167 // If the boxtrace fails, revert back to line tracing.
1169 if(trace_startsolid)
1171 eventchase_target_origin = (current_view_origin - (v_forward * eventchase_current_distance));
1172 WarpZone_TraceLine(current_view_origin, eventchase_target_origin, MOVE_WORLDONLY, self);
1173 setproperty(VF_ORIGIN, (trace_endpos - (v_forward * autocvar_cl_eventchase_mins.z)));
1175 else { setproperty(VF_ORIGIN, trace_endpos); }
1178 setproperty(VF_ANGLES, WarpZone_TransformVAngles(WarpZone_trace_transform, view_angles));
1180 else if(autocvar_chase_active < 0) // time to disable chase_active if it was set by this code
1182 eventchase_running = false;
1183 cvar_set("chase_active", "0");
1184 eventchase_current_distance = 0; // start from 0 next time
1187 // workaround for camera stuck between player's legs when using chase_active 1
1188 // because the engine stops updating the chase_active camera when the game ends
1189 else if(intermission)
1191 cvar_settemp("chase_active", "-1");
1192 eventchase_current_distance = 0;
1195 // do lockview after event chase camera so that it still applies whenever necessary.
1196 if(autocvar_cl_lockview || (!autocvar_hud_cursormode && (autocvar__hud_configure && spectatee_status <= 0 || intermission > 1 || QuickMenu_IsOpened())))
1198 setproperty(VF_ORIGIN, freeze_org);
1199 setproperty(VF_ANGLES, freeze_ang);
1203 freeze_org = getpropertyvec(VF_ORIGIN);
1204 freeze_ang = getpropertyvec(VF_ANGLES);
1208 //WarpZone_FixPMove();
1210 vector ov_org = '0 0 0';
1211 vector ov_mid = '0 0 0';
1212 vector ov_worldmin = '0 0 0';
1213 vector ov_worldmax = '0 0 0';
1214 if(autocvar_cl_orthoview)
1216 ov_worldmin = mi_picmin;
1217 ov_worldmax = mi_picmax;
1219 float ov_width = (ov_worldmax.x - ov_worldmin.x);
1220 float ov_height = (ov_worldmax.y - ov_worldmin.y);
1221 float ov_distance = (max(vid_width, vid_height) * max(ov_width, ov_height));
1223 ov_mid = ((ov_worldmax + ov_worldmin) * 0.5);
1224 ov_org = vec3(ov_mid.x, ov_mid.y, (ov_mid.z + ov_distance));
1226 float ov_nearest = vlen(ov_org - vec3(
1227 bound(ov_worldmin.x, ov_org.x, ov_worldmax.x),
1228 bound(ov_worldmin.y, ov_org.y, ov_worldmax.y),
1229 bound(ov_worldmin.z, ov_org.z, ov_worldmax.z)
1232 float ov_furthest = 0;
1235 if((dist = vlen(vec3(ov_worldmin.x, ov_worldmin.y, ov_worldmin.z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
1236 if((dist = vlen(vec3(ov_worldmax.x, ov_worldmin.y, ov_worldmin.z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
1237 if((dist = vlen(vec3(ov_worldmin.x, ov_worldmax.y, ov_worldmin.z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
1238 if((dist = vlen(vec3(ov_worldmin.x, ov_worldmin.y, ov_worldmax.z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
1239 if((dist = vlen(vec3(ov_worldmax.x, ov_worldmax.y, ov_worldmin.z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
1240 if((dist = vlen(vec3(ov_worldmin.x, ov_worldmax.y, ov_worldmax.z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
1241 if((dist = vlen(vec3(ov_worldmax.x, ov_worldmin.y, ov_worldmax.z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
1242 if((dist = vlen(vec3(ov_worldmax.x, ov_worldmax.y, ov_worldmax.z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
1246 oldr_nearclip = cvar("r_nearclip");
1247 oldr_farclip_base = cvar("r_farclip_base");
1248 oldr_farclip_world = cvar("r_farclip_world");
1249 oldr_novis = cvar("r_novis");
1250 oldr_useportalculling = cvar("r_useportalculling");
1251 oldr_useinfinitefarclip = cvar("r_useinfinitefarclip");
1254 cvar_settemp("r_nearclip", ftos(ov_nearest));
1255 cvar_settemp("r_farclip_base", ftos(ov_furthest));
1256 cvar_settemp("r_farclip_world", "0");
1257 cvar_settemp("r_novis", "1");
1258 cvar_settemp("r_useportalculling", "0");
1259 cvar_settemp("r_useinfinitefarclip", "0");
1261 setproperty(VF_ORIGIN, ov_org);
1262 setproperty(VF_ANGLES, '90 0 0');
1267 LOG_INFOF("OrthoView: org = %s, angles = %s, distance = %f, nearest = %f, furthest = %f\n",
1269 vtos(getpropertyvec(VF_ANGLES)),
1279 cvar_set("r_nearclip", ftos(oldr_nearclip));
1280 cvar_set("r_farclip_base", ftos(oldr_farclip_base));
1281 cvar_set("r_farclip_world", ftos(oldr_farclip_world));
1282 cvar_set("r_novis", ftos(oldr_novis));
1283 cvar_set("r_useportalculling", ftos(oldr_useportalculling));
1284 cvar_set("r_useinfinitefarclip", ftos(oldr_useinfinitefarclip));
1290 view_origin = getpropertyvec(VF_ORIGIN);
1291 view_angles = getpropertyvec(VF_ANGLES);
1292 makevectors(view_angles);
1293 view_forward = v_forward;
1294 view_right = v_right;
1298 if(time > blurtest_time0 && time < blurtest_time1)
1302 t = (time - blurtest_time0) / (blurtest_time1 - blurtest_time0);
1303 r = t * blurtest_radius;
1304 f = 1 / pow(t, blurtest_power) - 1;
1306 cvar_set("r_glsl_postprocess", "1");
1307 cvar_set("r_glsl_postprocess_uservec1", strcat(ftos(r), " ", ftos(f), " 0 0"));
1311 cvar_set("r_glsl_postprocess", "0");
1312 cvar_set("r_glsl_postprocess_uservec1", "0 0 0 0");
1316 TargetMusic_Advance();
1320 drawframetime = 0.01666667; // when we don't know fps yet, we assume 60fps
1322 drawframetime = bound(0.000001, time - drawtime, 1);
1325 // watch for gametype changes here...
1326 // in ParseStuffCMD the cmd isn't executed yet :/
1327 // might even be better to add the gametype to TE_CSQC_INIT...?
1331 if(intermission && !isdemo() && !(calledhooks & HOOK_END))
1333 if(calledhooks & HOOK_START)
1335 localcmd("\ncl_hook_gameend\n");
1336 calledhooks |= HOOK_END;
1345 if(!zoomscript_caught)
1347 localcmd("+button9\n");
1348 zoomscript_caught = 1;
1353 if(zoomscript_caught)
1355 localcmd("-button9\n");
1356 zoomscript_caught = 0;
1360 ColorTranslateMode = autocvar_cl_stripcolorcodes;
1362 // next WANTED weapon (for HUD)
1363 switchweapon = getstati(STAT_SWITCHWEAPON);
1365 // currently switching-to weapon (for crosshair)
1366 switchingweapon = getstati(STAT_SWITCHINGWEAPON);
1368 // actually active weapon (for zoom)
1369 activeweapon = getstati(STAT_ACTIVEWEAPON);
1371 f = (serverflags & SERVERFLAG_TEAMPLAY);
1378 if(last_switchweapon != switchweapon)
1381 last_switchweapon = switchweapon;
1382 if(button_zoom && autocvar_cl_unpress_zoom_on_weapon_switch)
1384 localcmd("-zoom\n");
1385 button_zoom = false;
1387 if(autocvar_cl_unpress_attack_on_weapon_switch)
1389 localcmd("-fire\n");
1390 localcmd("-fire2\n");
1391 button_attack2 = false;
1394 if(last_activeweapon != activeweapon)
1396 last_activeweapon = activeweapon;
1398 e = get_weaponinfo(activeweapon);
1400 localcmd(strcat("\ncl_hook_activeweapon ", e.netname), "\n");
1402 localcmd("\ncl_hook_activeweapon none\n");
1405 // ALWAYS Clear Current Scene First
1408 setproperty(VF_ORIGIN, view_origin);
1409 setproperty(VF_ANGLES, view_angles);
1411 // FIXME engine bug? VF_SIZE and VF_MIN are not restored to sensible values by this
1412 setproperty(VF_SIZE, vf_size);
1413 setproperty(VF_MIN, vf_min);
1415 // Assign Standard Viewflags
1416 // Draw the World (and sky)
1417 setproperty(VF_DRAWWORLD, 1);
1419 // Set the console size vars
1420 vid_conwidth = autocvar_vid_conwidth;
1421 vid_conheight = autocvar_vid_conheight;
1422 vid_pixelheight = autocvar_vid_pixelheight;
1424 if(autocvar_cl_orthoview) { setproperty(VF_FOV, GetOrthoviewFOV(ov_worldmin, ov_worldmax, ov_mid, ov_org)); }
1425 else if(csqcplayer.viewloc) { setproperty(VF_FOV, GetViewLocationFOV(110)); } // enforce 110 fov, so things dont look odd
1426 else { setproperty(VF_FOV, GetCurrentFov(fov)); }
1428 // Camera for demo playback
1431 if(autocvar_camera_enable)
1435 cvar_set("chase_active", ftos(chase_active_backup));
1436 cvar_set("cl_demo_mousegrab", "0");
1437 camera_active = false;
1443 if(autocvar_camera_enable)
1445 if(autocvar_camera_enable && isdemo())
1448 // Enable required Darkplaces cvars
1449 chase_active_backup = autocvar_chase_active;
1450 cvar_set("chase_active", "2");
1451 cvar_set("cl_demo_mousegrab", "1");
1452 camera_active = true;
1453 camera_mode = false;
1457 // Draw the Crosshair
1458 setproperty(VF_DRAWCROSSHAIR, 0); //Make sure engine crosshairs are always hidden
1460 // Draw the Engine Status Bar (the default Quake HUD)
1461 setproperty(VF_DRAWENGINESBAR, 0);
1463 // Update the mouse position
1465 mousepos_x = vid_conwidth;
1466 mousepos_y = vid_conheight;
1467 mousepos = mousepos*0.5 + getmousepos();
1470 for(entity e = NULL; (e = nextent(e)); ) if (e.draw) {
1471 WITH(entity, self, e, e.draw());
1474 addentities(MASK_NORMAL | MASK_ENGINE | MASK_ENGINEVIEWMODELS);
1477 // now switch to 2D drawing mode by calling a 2D drawing function
1478 // then polygon drawing will draw as 2D stuff, and NOT get queued until the
1479 // next R_RenderScene call
1480 drawstring('0 0 0', "", '1 1 0', '1 1 1', 0, 0);
1482 if(autocvar_r_fakelight >= 2 || autocvar_r_fullbright)
1483 if (!(serverflags & SERVERFLAG_ALLOW_FULLBRIGHT))
1485 // apply night vision effect
1486 vector tc_00, tc_01, tc_10, tc_11;
1487 vector rgb = '0 0 0';
1489 if(!nightvision_noise)
1491 nightvision_noise = spawn();
1492 nightvision_noise.classname = "nightvision_noise";
1494 if(!nightvision_noise2)
1496 nightvision_noise2 = spawn();
1497 nightvision_noise2.classname = "nightvision_noise2";
1500 // color tint in yellow
1501 drawfill('0 0 0', autocvar_vid_conwidth * '1 0 0' + autocvar_vid_conheight * '0 1 0', '0.5 1 0.3', 1, DRAWFLAG_MODULATE);
1504 a = Noise_Pink(nightvision_noise, frametime * 1.5) * 0.05 + 0.15;
1506 tc_00 = '0 0 0' + '0.2 0 0' * sin(time * 0.3) + '0 0.3 0' * cos(time * 0.7);
1507 tc_01 = '0 2.25 0' + '0.6 0 0' * cos(time * 1.2) - '0 0.3 0' * sin(time * 2.2);
1508 tc_10 = '1.5 0 0' - '0.2 0 0' * sin(time * 0.5) + '0 0.5 0' * cos(time * 1.7);
1509 //tc_11 = '1 1 0' + '0.6 0 0' * sin(time * 0.6) + '0 0.3 0' * cos(time * 0.1);
1510 tc_11 = tc_01 + tc_10 - tc_00;
1511 R_BeginPolygon("gfx/nightvision-bg.tga", DRAWFLAG_ADDITIVE);
1512 R_PolygonVertex('0 0 0', tc_00, rgb, a);
1513 R_PolygonVertex(autocvar_vid_conwidth * '1 0 0', tc_10, rgb, a);
1514 R_PolygonVertex(autocvar_vid_conwidth * '1 0 0' + autocvar_vid_conheight * '0 1 0', tc_11, rgb, a);
1515 R_PolygonVertex(autocvar_vid_conheight * '0 1 0', tc_01, rgb, a);
1519 a = Noise_Pink(nightvision_noise2, frametime * 0.1) * 0.05 + 0.12;
1520 rgb = '0.3 0.6 0.4' + '0.1 0.4 0.2' * Noise_White(nightvision_noise2, frametime);
1521 tc_00 = '0 0 0' + '1 0 0' * Noise_White(nightvision_noise2, frametime) + '0 1 0' * Noise_White(nightvision_noise2, frametime);
1522 tc_01 = tc_00 + '0 3 0' * (1 + Noise_White(nightvision_noise2, frametime) * 0.2);
1523 tc_10 = tc_00 + '2 0 0' * (1 + Noise_White(nightvision_noise2, frametime) * 0.3);
1524 tc_11 = tc_01 + tc_10 - tc_00;
1525 R_BeginPolygon("gfx/nightvision-fg.tga", DRAWFLAG_ADDITIVE);
1526 R_PolygonVertex('0 0 0', tc_00, rgb, a);
1527 R_PolygonVertex(autocvar_vid_conwidth * '1 0 0', tc_10, rgb, a);
1528 R_PolygonVertex(autocvar_vid_conwidth * '1 0 0' + autocvar_vid_conheight * '0 1 0', tc_11, rgb, a);
1529 R_PolygonVertex(autocvar_vid_conheight * '0 1 0', tc_01, rgb, a);
1533 if(autocvar_cl_reticle)
1535 // Draw the aiming reticle for weapons that use it
1536 // reticle_type is changed to the item we are zooming / aiming with, to decide which reticle to use
1537 // It must be a persisted float for fading out to work properly (you let go of the zoom button for
1538 // the view to go back to normal, so reticle_type would become 0 as we fade out)
1539 if(spectatee_status || is_dead || hud != HUD_NORMAL)
1541 // no zoom reticle while dead
1544 else if(_WEP_ACTION(activeweapon, WR_ZOOMRETICLE) && autocvar_cl_reticle_weapon)
1546 if(reticle_image != "") { reticle_type = 2; }
1547 else { reticle_type = 0; }
1549 else if(button_zoom || zoomscript_caught)
1557 if(autocvar_cl_reticle_stretch)
1559 reticle_size.x = vid_conwidth;
1560 reticle_size.y = vid_conheight;
1566 reticle_size.x = max(vid_conwidth, vid_conheight);
1567 reticle_size.y = max(vid_conwidth, vid_conheight);
1568 reticle_pos.x = (vid_conwidth - reticle_size.x) / 2;
1569 reticle_pos.y = (vid_conheight - reticle_size.y) / 2;
1572 if(zoomscript_caught)
1575 f = current_zoomfraction;
1579 switch(reticle_type)
1581 case 1: drawpic(reticle_pos, "gfx/reticle_normal", reticle_size, '1 1 1', f * autocvar_cl_reticle_normal_alpha, DRAWFLAG_NORMAL); break;
1582 case 2: drawpic(reticle_pos, reticle_image, reticle_size, '1 1 1', f * autocvar_cl_reticle_weapon_alpha, DRAWFLAG_NORMAL); break;
1589 if(reticle_type != 0) { reticle_type = 0; }
1593 // improved polyblend
1594 if(autocvar_hud_contents)
1596 float contentalpha_temp, incontent, liquidalpha, contentfadetime;
1599 switch(pointcontents(view_origin))
1602 liquidalpha = autocvar_hud_contents_water_alpha;
1603 liquidcolor = stov(autocvar_hud_contents_water_color);
1608 liquidalpha = autocvar_hud_contents_lava_alpha;
1609 liquidcolor = stov(autocvar_hud_contents_lava_color);
1614 liquidalpha = autocvar_hud_contents_slime_alpha;
1615 liquidcolor = stov(autocvar_hud_contents_slime_color);
1621 liquidcolor = '0 0 0';
1626 if(incontent) // fade in/out at different speeds so you can do e.g. instant fade when entering water and slow when leaving it.
1627 { // also lets delcare previous values for blending properties, this way it isn't reset until after you have entered a different content
1628 contentfadetime = autocvar_hud_contents_fadeintime;
1629 liquidalpha_prev = liquidalpha;
1630 liquidcolor_prev = liquidcolor;
1633 contentfadetime = autocvar_hud_contents_fadeouttime;
1635 contentalpha_temp = bound(0, drawframetime / max(0.0001, contentfadetime), 1);
1636 contentavgalpha = contentavgalpha * (1 - contentalpha_temp) + incontent * contentalpha_temp;
1639 drawfill('0 0 0', eX * vid_conwidth + eY * vid_conheight, liquidcolor_prev, contentavgalpha * liquidalpha_prev, DRAWFLAG_NORMAL);
1641 if(autocvar_hud_postprocessing)
1643 if(autocvar_hud_contents_blur && contentavgalpha)
1645 content_blurpostprocess.x = 1;
1646 content_blurpostprocess.y = contentavgalpha * autocvar_hud_contents_blur;
1647 content_blurpostprocess.z = contentavgalpha * autocvar_hud_contents_blur_alpha;
1651 content_blurpostprocess.x = 0;
1652 content_blurpostprocess.y = 0;
1653 content_blurpostprocess.z = 0;
1658 if(autocvar_hud_damage && !getstati(STAT_FROZEN))
1660 splash_size.x = max(vid_conwidth, vid_conheight);
1661 splash_size.y = max(vid_conwidth, vid_conheight);
1662 splash_pos.x = (vid_conwidth - splash_size.x) / 2;
1663 splash_pos.y = (vid_conheight - splash_size.y) / 2;
1665 float myhealth_flash_temp;
1666 myhealth = getstati(STAT_HEALTH);
1669 myhealth_flash = max(0, myhealth_flash - autocvar_hud_damage_fade_rate * frametime);
1671 myhealth_flash = bound(0, myhealth_flash + dmg_take * autocvar_hud_damage_factor, autocvar_hud_damage_maxalpha);
1673 float pain_threshold, pain_threshold_lower, pain_threshold_lower_health;
1674 pain_threshold = autocvar_hud_damage_pain_threshold;
1675 pain_threshold_lower = autocvar_hud_damage_pain_threshold_lower;
1676 pain_threshold_lower_health = autocvar_hud_damage_pain_threshold_lower_health;
1678 if(pain_threshold_lower && myhealth < pain_threshold_lower_health)
1680 pain_threshold = pain_threshold - max(autocvar_hud_damage_pain_threshold_pulsating_min, fabs(sin(M_PI * time / autocvar_hud_damage_pain_threshold_pulsating_period))) * pain_threshold_lower * (1 - max(0, myhealth)/pain_threshold_lower_health);
1683 myhealth_flash_temp = bound(0, myhealth_flash - pain_threshold, 1);
1685 if(myhealth_prev < 1)
1689 myhealth_flash = 0; // just spawned, clear the flash immediately
1690 myhealth_flash_temp = 0;
1694 myhealth_flash += autocvar_hud_damage_fade_rate * frametime; // dead
1698 if(spectatee_status == -1 || intermission)
1700 myhealth_flash = 0; // observing, or match ended
1701 myhealth_flash_temp = 0;
1704 myhealth_prev = myhealth;
1706 // IDEA: change damage color/picture based on player model for robot/alien species?
1707 // pro: matches model better
1708 // contra: it's not red because blood is red, but because red is an alarming color, so red should stay
1709 // maybe different reddish pics?
1710 if(autocvar_cl_gentle_damage || autocvar_cl_gentle)
1712 if(autocvar_cl_gentle_damage == 2)
1714 if(myhealth_flash < pain_threshold) // only randomize when the flash is gone
1716 myhealth_gentlergb = eX * random() + eY * random() + eZ * random();
1720 myhealth_gentlergb = stov(autocvar_hud_damage_gentle_color);
1722 drawfill('0 0 0', eX * vid_conwidth + eY * vid_conheight, myhealth_gentlergb, autocvar_hud_damage_gentle_alpha_multiplier * bound(0, myhealth_flash_temp, 1) * autocvar_hud_damage, DRAWFLAG_NORMAL);
1725 drawpic(splash_pos, "gfx/blood", splash_size, stov(autocvar_hud_damage_color), bound(0, myhealth_flash_temp, 1) * autocvar_hud_damage, DRAWFLAG_NORMAL);
1727 if(autocvar_hud_postprocessing) // we still need to set this anyway even when chase_active is set, this way it doesn't get stuck on.
1729 if(autocvar_hud_damage_blur && myhealth_flash_temp)
1731 damage_blurpostprocess.x = 1;
1732 damage_blurpostprocess.y = bound(0, myhealth_flash_temp, 1) * autocvar_hud_damage_blur;
1733 damage_blurpostprocess.z = bound(0, myhealth_flash_temp, 1) * autocvar_hud_damage_blur_alpha;
1737 damage_blurpostprocess.x = 0;
1738 damage_blurpostprocess.y = 0;
1739 damage_blurpostprocess.z = 0;
1744 float e1 = (autocvar_hud_postprocessing_maxbluralpha != 0);
1745 float e2 = (autocvar_hud_powerup != 0);
1746 if(autocvar_hud_postprocessing && (e1 || e2)) // TODO: Remove this code and re-do the postprocess handling in the engine, where it properly belongs.
1748 // enable or disable rendering types if they are used or not
1749 if(cvar("r_glsl_postprocess_uservec1_enable") != e1) { cvar_set("r_glsl_postprocess_uservec1_enable", ftos(e1)); }
1750 if(cvar("r_glsl_postprocess_uservec2_enable") != e2) { cvar_set("r_glsl_postprocess_uservec2_enable", ftos(e2)); }
1752 // blur postprocess handling done first (used by hud_damage and hud_contents)
1753 if((damage_blurpostprocess.x || content_blurpostprocess.x))
1755 float blurradius = bound(0, damage_blurpostprocess.y + content_blurpostprocess.y, autocvar_hud_postprocessing_maxblurradius);
1756 float bluralpha = bound(0, damage_blurpostprocess.z + content_blurpostprocess.z, autocvar_hud_postprocessing_maxbluralpha);
1757 if(blurradius != old_blurradius || bluralpha != old_bluralpha) // reduce cvar_set spam as much as possible
1759 cvar_set("r_glsl_postprocess_uservec1", strcat(ftos(blurradius), " ", ftos(bluralpha), " 0 0"));
1760 old_blurradius = blurradius;
1761 old_bluralpha = bluralpha;
1764 else if(cvar_string("r_glsl_postprocess_uservec1") != "0 0 0 0") // reduce cvar_set spam as much as possible
1766 cvar_set("r_glsl_postprocess_uservec1", "0 0 0 0");
1771 // edge detection postprocess handling done second (used by hud_powerup)
1772 float sharpen_intensity = 0, strength_finished = getstatf(STAT_STRENGTH_FINISHED), invincible_finished = getstatf(STAT_INVINCIBLE_FINISHED);
1773 if (strength_finished - time > 0) { sharpen_intensity += (strength_finished - time); }
1774 if (invincible_finished - time > 0) { sharpen_intensity += (invincible_finished - time); }
1776 sharpen_intensity = bound(0, ((getstati(STAT_HEALTH) > 0) ? sharpen_intensity : 0), 5); // Check to see if player is alive (if not, set 0) - also bound to fade out starting at 5 seconds.
1778 if(autocvar_hud_powerup && sharpen_intensity > 0)
1780 if(sharpen_intensity != old_sharpen_intensity) // reduce cvar_set spam as much as possible
1782 cvar_set("r_glsl_postprocess_uservec2", strcat(ftos((sharpen_intensity / 5) * autocvar_hud_powerup), " ", ftos(-sharpen_intensity * autocvar_hud_powerup), " 0 0"));
1783 old_sharpen_intensity = sharpen_intensity;
1786 else if(cvar_string("r_glsl_postprocess_uservec2") != "0 0 0 0") // reduce cvar_set spam as much as possible
1788 cvar_set("r_glsl_postprocess_uservec2", "0 0 0 0");
1789 old_sharpen_intensity = 0;
1792 if(cvar("r_glsl_postprocess") == 0)
1793 cvar_set("r_glsl_postprocess", "2");
1795 else if(cvar("r_glsl_postprocess") == 2)
1796 cvar_set("r_glsl_postprocess", "0");
1801 /*if(gametype == MAPINFO_TYPE_CTF)
1807 for (entity e = NULL; (e = nextent(e)); ) if (e.draw2d) {
1808 WITH(entity, self, e, e.draw2d());
1810 Draw_ShowNames_All();
1812 scoreboard_active = HUD_WouldDrawScoreboard();
1818 if(NextFrameCommand)
1820 localcmd("\n", NextFrameCommand, "\n");
1821 NextFrameCommand = string_null;
1824 // we must do this check AFTER a frame was rendered, or it won't work
1825 if(cs_project_is_b0rked == 0)
1828 w0 = ftos(autocvar_vid_conwidth);
1829 h0 = ftos(autocvar_vid_conheight);
1830 //setproperty(VF_VIEWPORT, '0 0 0', '640 480 0');
1831 //setproperty(VF_FOV, '90 90 0');
1832 setproperty(VF_ORIGIN, '0 0 0');
1833 setproperty(VF_ANGLES, '0 0 0');
1834 setproperty(VF_PERSPECTIVE, 1);
1835 makevectors('0 0 0');
1837 cvar_set("vid_conwidth", "800");
1838 cvar_set("vid_conheight", "600");
1839 v1 = cs_project(v_forward);
1840 cvar_set("vid_conwidth", "640");
1841 cvar_set("vid_conheight", "480");
1842 v2 = cs_project(v_forward);
1844 cs_project_is_b0rked = 1;
1846 cs_project_is_b0rked = -1;
1847 cvar_set("vid_conwidth", w0);
1848 cvar_set("vid_conheight", h0);
1851 if(autocvar__hud_configure)
1853 else if ( HUD_MinigameMenu_IsOpened() || minigame_isactive() )
1854 HUD_Minigame_Mouse();
1855 else if(QuickMenu_IsOpened())
1860 if(hud && !intermission)
1861 if(hud == HUD_BUMBLEBEE_GUN)
1862 CSQC_BUMBLE_GUN_HUD();
1864 VEH_ACTION(hud, VR_HUD);
1868 // let's reset the view back to normal for the end
1869 setproperty(VF_MIN, '0 0 0');
1870 setproperty(VF_SIZE, '1 0 0' * w + '0 1 0' * h);
1874 void CSQC_common_hud(void)
1876 if(!(gametype == MAPINFO_TYPE_RACE || gametype == MAPINFO_TYPE_CTS))
1877 Accuracy_LoadLevels();
1879 HUD_Main(); // always run these functions for alpha checks
1880 HUD_DrawScoreboard();
1882 // scoreboard/accuracy, map/gametype voting screen
1883 if (scoreboard_active || intermission == 2)
1888 // following vectors must be global to allow seamless switching between camera modes
1889 vector camera_offset, current_camera_offset, mouse_angles, current_angles, current_origin, current_position;
1890 void CSQC_Demo_Camera()
1892 float speed, attenuation, dimensions;
1895 if( autocvar_camera_reset || !camera_mode )
1897 camera_offset = '0 0 0';
1898 current_angles = '0 0 0';
1899 camera_direction = '0 0 0';
1900 camera_offset.z += 30;
1901 camera_offset.x += 30 * -cos(current_angles.y * DEG2RAD);
1902 camera_offset.y += 30 * -sin(current_angles.y * DEG2RAD);
1903 current_origin = view_origin;
1904 current_camera_offset = camera_offset;
1905 cvar_set("camera_reset", "0");
1906 camera_mode = CAMERA_CHASE;
1911 mouse_angles.z += camera_roll * autocvar_camera_speed_roll;
1913 if(autocvar_camera_look_player)
1918 dir = normalize(view_origin - current_position);
1920 mouse_angles = vectoangles(dir);
1921 mouse_angles.x = mouse_angles.x * -1;
1926 tmp = getmousepos() * 0.1;
1927 if(vlen(tmp)>autocvar_camera_mouse_threshold)
1929 mouse_angles.x += tmp.y * cos(mouse_angles.z * DEG2RAD) + (tmp.x * sin(mouse_angles.z * DEG2RAD));
1930 mouse_angles.y -= tmp.x * cos(mouse_angles.z * DEG2RAD) + (tmp.y * -sin(mouse_angles.z * DEG2RAD));
1934 while (mouse_angles.x < -180) mouse_angles.x = mouse_angles.x + 360;
1935 while (mouse_angles.x > 180) mouse_angles.x = mouse_angles.x - 360;
1936 while (mouse_angles.y < -180) mouse_angles.y = mouse_angles.y + 360;
1937 while (mouse_angles.y > 180) mouse_angles.y = mouse_angles.y - 360;
1939 // Fix difference when angles don't have the same sign
1941 if(mouse_angles.y < -60 && current_angles.y > 60)
1943 if(mouse_angles.y > 60 && current_angles.y < -60)
1946 if(autocvar_camera_look_player)
1947 attenuation = autocvar_camera_look_attenuation;
1949 attenuation = autocvar_camera_speed_attenuation;
1951 attenuation = 1 / max(1, attenuation);
1952 current_angles += (mouse_angles - current_angles + delta) * attenuation;
1954 while (current_angles.x < -180) current_angles.x = current_angles.x + 360;
1955 while (current_angles.x > 180) current_angles.x = current_angles.x - 360;
1956 while (current_angles.y < -180) current_angles.y = current_angles.y + 360;
1957 while (current_angles.y > 180) current_angles.y = current_angles.y - 360;
1963 if( camera_direction.x )
1965 tmp.x = camera_direction.x * cos(current_angles.y * DEG2RAD);
1966 tmp.y = camera_direction.x * sin(current_angles.y * DEG2RAD);
1967 if( autocvar_camera_forward_follows && !autocvar_camera_look_player )
1968 tmp.z = camera_direction.x * -sin(current_angles.x * DEG2RAD);
1972 if( camera_direction.y )
1974 tmp.x += camera_direction.y * -sin(current_angles.y * DEG2RAD);
1975 tmp.y += camera_direction.y * cos(current_angles.y * DEG2RAD) * cos(current_angles.z * DEG2RAD);
1976 tmp.z += camera_direction.y * sin(current_angles.z * DEG2RAD);
1980 if( camera_direction.z )
1982 tmp.z += camera_direction.z * cos(current_angles.z * DEG2RAD);
1986 if(autocvar_camera_free)
1987 speed = autocvar_camera_speed_free;
1989 speed = autocvar_camera_speed_chase;
1993 speed = speed * sqrt(1 / dimensions);
1994 camera_offset += tmp * speed;
1997 current_camera_offset += (camera_offset - current_camera_offset) * attenuation;
2000 if( autocvar_camera_free )
2002 if ( camera_mode == CAMERA_CHASE )
2004 current_camera_offset = current_origin + current_camera_offset;
2005 camera_offset = current_origin + camera_offset;
2008 camera_mode = CAMERA_FREE;
2009 current_position = current_camera_offset;
2013 if ( camera_mode == CAMERA_FREE )
2015 current_origin = view_origin;
2016 camera_offset = camera_offset - current_origin;
2017 current_camera_offset = current_camera_offset - current_origin;
2020 camera_mode = CAMERA_CHASE;
2022 if(autocvar_camera_chase_smoothly)
2023 current_origin += (view_origin - current_origin) * attenuation;
2025 current_origin = view_origin;
2027 current_position = current_origin + current_camera_offset;
2030 setproperty(VF_ANGLES, current_angles);
2031 setproperty(VF_ORIGIN, current_position);