2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // view.c -- player eye positioning
23 #include "cl_collision.h"
27 The view is allowed to move slightly from it's true position for bobbing,
28 but if it exceeds 8 pixels linear distance (spherical, not box), the list of
29 entities sent from the server may not include everything in the pvs, especially
30 when crossing a water boudnary.
34 cvar_t cl_rollspeed = {0, "cl_rollspeed", "200", "how much strafing is necessary to tilt the view"};
35 cvar_t cl_rollangle = {0, "cl_rollangle", "2.0", "how much to tilt the view when strafing"};
37 cvar_t cl_bob = {0, "cl_bob","0.02", "view bobbing amount"};
38 cvar_t cl_bobcycle = {0, "cl_bobcycle","0.6", "view bobbing speed"};
39 cvar_t cl_bobup = {0, "cl_bobup","0.5", "view bobbing adjustment that makes the up or down swing of the bob last longer"};
41 cvar_t cl_bobmodel = {CVAR_SAVE, "cl_bobmodel", "1", "enables gun bobbing"};
42 cvar_t cl_bobmodel_side = {0, "cl_bobmodel_side", "0.05", "gun bobbing sideways sway amount"};
43 cvar_t cl_bobmodel_up = {0, "cl_bobmodel_up", "0.02", "gun bobbing upward movement amount"};
44 cvar_t cl_bobmodel_speed = {0, "cl_bobmodel_speed", "7", "gun bobbing speed"};
46 cvar_t cl_viewmodel_scale = {0, "cl_viewmodel_scale", "0.3", "changes size of gun model, lower values prevent poking into walls but cause strange artifacts on lighting and especially r_stereo/vid_stereobuffer options where the size of the gun becomes visible"};
48 cvar_t v_kicktime = {0, "v_kicktime", "0.5", "how long a view kick from damage lasts"};
49 cvar_t v_kickroll = {0, "v_kickroll", "0.6", "how much a view kick from damage rolls your view"};
50 cvar_t v_kickpitch = {0, "v_kickpitch", "0.6", "how much a view kick from damage pitches your view"};
52 cvar_t v_iyaw_cycle = {0, "v_iyaw_cycle", "2", "v_idlescale yaw speed"};
53 cvar_t v_iroll_cycle = {0, "v_iroll_cycle", "0.5", "v_idlescale roll speed"};
54 cvar_t v_ipitch_cycle = {0, "v_ipitch_cycle", "1", "v_idlescale pitch speed"};
55 cvar_t v_iyaw_level = {0, "v_iyaw_level", "0.3", "v_idlescale yaw amount"};
56 cvar_t v_iroll_level = {0, "v_iroll_level", "0.1", "v_idlescale roll amount"};
57 cvar_t v_ipitch_level = {0, "v_ipitch_level", "0.3", "v_idlescale pitch amount"};
59 cvar_t v_idlescale = {0, "v_idlescale", "0", "how much of the quake 'drunken view' effect to use"};
61 cvar_t crosshair = {CVAR_SAVE, "crosshair", "0", "selects crosshair to use (0 is none)"};
63 cvar_t v_centermove = {0, "v_centermove", "0.15", "how long before the view begins to center itself (if freelook/+mlook/+jlook/+klook are off)"};
64 cvar_t v_centerspeed = {0, "v_centerspeed","500", "how fast the view centers itself"};
66 cvar_t cl_stairsmoothspeed = {CVAR_SAVE, "cl_stairsmoothspeed", "160", "how fast your view moves upward/downward when running up/down stairs"};
68 cvar_t chase_back = {CVAR_SAVE, "chase_back", "48", "chase cam distance from the player"};
69 cvar_t chase_up = {CVAR_SAVE, "chase_up", "24", "chase cam distance from the player"};
70 cvar_t chase_active = {CVAR_SAVE, "chase_active", "0", "enables chase cam"};
72 cvar_t chase_stevie = {0, "chase_stevie", "0", "chase cam view from above (used only by GoodVsBad2)"};
74 cvar_t v_deathtilt = {0, "v_deathtilt", "1", "whether to use sideways view when dead"};
75 cvar_t v_deathtiltangle = {0, "v_deathtiltangle", "80", "what roll angle to use when tilting the view while dead"};
77 float v_dmg_time, v_dmg_roll, v_dmg_pitch;
84 Used by view and sv_user
87 float V_CalcRoll (vec3_t angles, vec3_t velocity)
94 AngleVectors (angles, NULL, right, NULL);
95 side = DotProduct (velocity, right);
96 sign = side < 0 ? -1 : 1;
99 value = cl_rollangle.value;
101 if (side < cl_rollspeed.value)
102 side = side * value / cl_rollspeed.value;
110 void V_StartPitchDrift (void)
112 if (cl.laststop == cl.time)
113 return; // something else is keeping it from drifting
115 if (cl.nodrift || !cl.pitchvel)
117 cl.pitchvel = v_centerspeed.value;
123 void V_StopPitchDrift (void)
125 cl.laststop = cl.time;
134 Moves the client pitch angle towards cl.idealpitch sent by the server.
136 If the user is adjusting pitch manually, either with lookup/lookdown,
137 mlook and mouse, or klook and keyboard, pitch drifting is constantly stopped.
139 Drifting is enabled when the center view key is hit, mlook is released and
140 lookspring is non 0, or when
143 void V_DriftPitch (void)
147 if (noclip_anglehack || !cl.onground || cls.demoplayback )
154 // don't count small mouse motion
157 if ( fabs(cl.cmd.forwardmove) < cl_forwardspeed.value)
160 cl.driftmove += cl.realframetime;
162 if ( cl.driftmove > v_centermove.value)
164 V_StartPitchDrift ();
169 delta = cl.idealpitch - cl.viewangles[PITCH];
177 move = cl.realframetime * cl.pitchvel;
178 cl.pitchvel += cl.realframetime * v_centerspeed.value;
187 cl.viewangles[PITCH] += move;
196 cl.viewangles[PITCH] -= move;
202 ==============================================================================
206 ==============================================================================
215 void V_ParseDamage (void)
219 //vec3_t forward, right;
225 armor = MSG_ReadByte ();
226 blood = MSG_ReadByte ();
227 MSG_ReadVector(from, cls.protocol);
229 count = blood*0.5 + armor*0.5;
233 cl.faceanimtime = cl.time + 0.2; // put sbar face into pain frame
235 cl.cshifts[CSHIFT_DAMAGE].percent += 3*count;
236 if (cl.cshifts[CSHIFT_DAMAGE].percent < 0)
237 cl.cshifts[CSHIFT_DAMAGE].percent = 0;
238 if (cl.cshifts[CSHIFT_DAMAGE].percent > 150)
239 cl.cshifts[CSHIFT_DAMAGE].percent = 150;
243 cl.cshifts[CSHIFT_DAMAGE].destcolor[0] = 200;
244 cl.cshifts[CSHIFT_DAMAGE].destcolor[1] = 100;
245 cl.cshifts[CSHIFT_DAMAGE].destcolor[2] = 100;
249 cl.cshifts[CSHIFT_DAMAGE].destcolor[0] = 220;
250 cl.cshifts[CSHIFT_DAMAGE].destcolor[1] = 50;
251 cl.cshifts[CSHIFT_DAMAGE].destcolor[2] = 50;
255 cl.cshifts[CSHIFT_DAMAGE].destcolor[0] = 255;
256 cl.cshifts[CSHIFT_DAMAGE].destcolor[1] = 0;
257 cl.cshifts[CSHIFT_DAMAGE].destcolor[2] = 0;
260 // calculate view angle kicks
261 if (cl.entities[cl.viewentity].state_current.active)
263 ent = &cl.entities[cl.viewentity];
264 Matrix4x4_Transform(&ent->render.inversematrix, from, localfrom);
265 VectorNormalize(localfrom);
266 v_dmg_pitch = count * localfrom[0] * v_kickpitch.value;
267 v_dmg_roll = count * localfrom[1] * v_kickroll.value;
268 v_dmg_time = v_kicktime.value;
272 static cshift_t v_cshift;
279 static void V_cshift_f (void)
281 v_cshift.destcolor[0] = atof(Cmd_Argv(1));
282 v_cshift.destcolor[1] = atof(Cmd_Argv(2));
283 v_cshift.destcolor[2] = atof(Cmd_Argv(3));
284 v_cshift.percent = atof(Cmd_Argv(4));
292 When you run over an item, the server sends this command
295 static void V_BonusFlash_f (void)
297 cl.cshifts[CSHIFT_BONUS].destcolor[0] = 215;
298 cl.cshifts[CSHIFT_BONUS].destcolor[1] = 186;
299 cl.cshifts[CSHIFT_BONUS].destcolor[2] = 69;
300 cl.cshifts[CSHIFT_BONUS].percent = 50;
304 ==============================================================================
308 ==============================================================================
311 extern matrix4x4_t viewmodelmatrix;
313 #include "cl_collision.h"
322 void CL_StairSmoothing (void)
325 v_dmg_time -= bound(0, cl.time - cl.oldtime, 0.1);
328 if (cl.onground && cl.stairoffset < 0)
330 cl.stairoffset += bound(0, cl.time - cl.oldtime, 0.1) * cl_stairsmoothspeed.value;
331 cl.stairoffset = bound(-16, cl.stairoffset, 0);
333 else if (cl.onground && cl.stairoffset > 0)
335 cl.stairoffset -= bound(0, cl.time - cl.oldtime, 0.1) * cl_stairsmoothspeed.value;
336 cl.stairoffset = bound(0, cl.stairoffset, 16);
348 void V_CalcRefdef (void)
352 float vieworg[3], gunorg[3], viewangles[3];
355 viewmodelmatrix = identitymatrix;
356 r_view.matrix = identitymatrix;
357 if (cls.state == ca_connected && cls.signon == SIGNONS)
359 // ent is the view entity (visible when out of body)
360 ent = &cl.entities[cl.viewentity];
361 // player can look around, so take the origin from the entity,
362 // and the angles from the input system
363 Matrix4x4_OriginFromMatrix(&ent->render.matrix, vieworg);
364 VectorCopy(cl.viewangles, viewangles);
366 // update the stairoffset if the player entity has gone up or down without leaving the ground
367 //Con_Printf("cl.onground %i oldz %f newz %f vel %f %f %f\n", cl.onground, oldz, vieworg[2], cl.movement_velocity[0], cl.movement_velocity[1], cl.movement_velocity[2]);
368 cl.stairoffset -= vieworg[2] - oldz;
370 cl.stairoffset = bound(-16, cl.stairoffset, 16);
372 // interpolate the angles if playing a demo or spectating someone
373 if (cls.demoplayback || cl.fixangle[0])
376 float frac = bound(0, (cl.time - cl.mtime[1]) / (cl.mtime[0] - cl.mtime[1]), 1);
377 for (i = 0;i < 3;i++)
379 float d = cl.mviewangles[0][i] - cl.mviewangles[1][i];
384 viewangles[i] = cl.mviewangles[1][i] + frac * d;
389 // entity is a fixed camera, just copy the matrix
390 if (cls.protocol == PROTOCOL_QUAKEWORLD)
391 Matrix4x4_CreateFromQuakeEntity(&r_view.matrix, cl.qw_intermission_origin[0], cl.qw_intermission_origin[1], cl.qw_intermission_origin[2], cl.qw_intermission_angles[0], cl.qw_intermission_angles[1], cl.qw_intermission_angles[2], 1);
394 r_view.matrix = ent->render.matrix;
395 Matrix4x4_AdjustOrigin(&r_view.matrix, 0, 0, cl.stats[STAT_VIEWHEIGHT]);
397 viewmodelmatrix = r_view.matrix;
401 // apply qw weapon recoil effect (this did not work in QW)
402 // TODO: add a cvar to disable this
403 viewangles[PITCH] += cl.qw_weaponkick;
405 // bias by stair smoothing offset
406 vieworg[2] += cl.stairoffset;
408 if (chase_active.value)
410 // observing entity from third person
411 vec_t camback, camup, dist, forward[3], chase_dest[3];
413 camback = bound(0, chase_back.value, 128);
414 if (chase_back.value != camback)
415 Cvar_SetValueQuick(&chase_back, camback);
416 camup = bound(-48, chase_up.value, 96);
417 if (chase_up.value != camup)
418 Cvar_SetValueQuick(&chase_up, camup);
420 // this + 22 is to match view_ofs for compatibility with older versions
423 if (gamemode == GAME_GOODVSBAD2 && chase_stevie.integer)
425 // look straight down from high above
429 AngleVectors(viewangles, forward, NULL, NULL);
431 // trace a little further so it hits a surface more consistently (to avoid 'snapping' on the edge of the range)
433 chase_dest[0] = vieworg[0] + forward[0] * dist;
434 chase_dest[1] = vieworg[1] + forward[1] * dist;
435 chase_dest[2] = vieworg[2] + forward[2] * dist + camup;
436 trace = CL_TraceBox(vieworg, vec3_origin, vec3_origin, chase_dest, true, NULL, SUPERCONTENTS_SOLID | SUPERCONTENTS_BODY | SUPERCONTENTS_SKY, false);
437 VectorMAMAM(1, trace.endpos, 8, forward, 4, trace.plane.normal, vieworg);
441 // first person view from entity
443 if (cl.stats[STAT_HEALTH] <= 0 && v_deathtilt.integer)
444 viewangles[ROLL] = v_deathtiltangle.value;
445 VectorAdd(viewangles, cl.punchangle, viewangles);
446 viewangles[ROLL] += V_CalcRoll(cl.viewangles, cl.movement_velocity);
449 viewangles[ROLL] += v_dmg_time/v_kicktime.value*v_dmg_roll;
450 viewangles[PITCH] += v_dmg_time/v_kicktime.value*v_dmg_pitch;
453 VectorAdd(vieworg, cl.punchvector, vieworg);
454 vieworg[2] += cl.stats[STAT_VIEWHEIGHT];
455 if (cl.stats[STAT_HEALTH] > 0)
459 xyspeed = sqrt(cl.movement_velocity[0]*cl.movement_velocity[0] + cl.movement_velocity[1]*cl.movement_velocity[1]);
460 if (cl_bob.value && cl_bobcycle.value)
463 // LordHavoc: this code is *weird*, but not replacable (I think it
464 // should be done in QC on the server, but oh well, quake is quake)
465 // LordHavoc: figured out bobup: the time at which the sin is at 180
466 // degrees (which allows lengthening or squishing the peak or valley)
467 cycle = cl.time / cl_bobcycle.value;
468 cycle -= (int) cycle;
469 if (cycle < cl_bobup.value)
470 cycle = sin(M_PI * cycle / cl_bobup.value);
472 cycle = sin(M_PI + M_PI * (cycle-cl_bobup.value)/(1.0 - cl_bobup.value));
473 // bob is proportional to velocity in the xy plane
474 // (don't count Z, or jumping messes it up)
475 bob = xyspeed * cl_bob.value;
476 bob = bob*0.3 + bob*0.7*cycle;
477 vieworg[2] += bound(-7, bob, 4);
480 VectorCopy(vieworg, gunorg);
482 if (cl_bobmodel.value)
484 // calculate for swinging gun model
485 // the gun bobs when running on the ground, but doesn't bob when you're in the air.
486 // Sajt: I tried to smooth out the transitions between bob and no bob, which works
487 // for the most part, but for some reason when you go through a message trigger or
488 // pick up an item or anything like that it will momentarily jolt the gun.
489 vec3_t forward, right, up;
494 s = cl.time * cl_bobmodel_speed.value;
497 if (cl.time - cl.hitgroundtime < 0.2)
499 // just hit the ground, speed the bob back up over the next 0.2 seconds
500 t = cl.time - cl.hitgroundtime;
501 t = bound(0, t, 0.2);
509 // recently left the ground, slow the bob down over the next 0.2 seconds
510 t = cl.time - cl.lastongroundtime;
511 t = 0.2 - bound(0, t, 0.2);
515 bspeed = bound (0, xyspeed, 400) * 0.01f;
516 AngleVectors (viewangles, forward, right, up);
517 bob = bspeed * cl_bobmodel_side.value * sin (s) * t;
518 VectorMA (gunorg, bob, right, gunorg);
519 bob = bspeed * cl_bobmodel_up.value * cos (s * 2) * t;
520 VectorMA (gunorg, bob, up, gunorg);
524 // calculate a view matrix for rendering the scene
525 if (v_idlescale.value)
526 Matrix4x4_CreateFromQuakeEntity(&r_view.matrix, vieworg[0], vieworg[1], vieworg[2], viewangles[0] + v_idlescale.value * sin(cl.time*v_ipitch_cycle.value) * v_ipitch_level.value, viewangles[1] + v_idlescale.value * sin(cl.time*v_iyaw_cycle.value) * v_iyaw_level.value, viewangles[2] + v_idlescale.value * sin(cl.time*v_iroll_cycle.value) * v_iroll_level.value, 1);
528 Matrix4x4_CreateFromQuakeEntity(&r_view.matrix, vieworg[0], vieworg[1], vieworg[2], viewangles[0], viewangles[1], viewangles[2] + v_idlescale.value * sin(cl.time*v_iroll_cycle.value) * v_iroll_level.value, 1);
529 // calculate a viewmodel matrix for use in view-attached entities
530 Matrix4x4_CreateFromQuakeEntity(&viewmodelmatrix, gunorg[0], gunorg[1], gunorg[2], viewangles[0], viewangles[1], viewangles[2], cl_viewmodel_scale.value);
531 VectorCopy(vieworg, csqc_origin);
532 VectorCopy(viewangles, csqc_angles);
537 void V_FadeViewFlashs(void)
539 // don't flash if time steps backwards
540 if (cl.time <= cl.oldtime)
542 // drop the damage value
543 cl.cshifts[CSHIFT_DAMAGE].percent -= (cl.time - cl.oldtime)*150;
544 if (cl.cshifts[CSHIFT_DAMAGE].percent <= 0)
545 cl.cshifts[CSHIFT_DAMAGE].percent = 0;
546 // drop the bonus value
547 cl.cshifts[CSHIFT_BONUS].percent -= (cl.time - cl.oldtime)*100;
548 if (cl.cshifts[CSHIFT_BONUS].percent <= 0)
549 cl.cshifts[CSHIFT_BONUS].percent = 0;
552 void V_CalcViewBlend(void)
556 r_refdef.viewblend[0] = 0;
557 r_refdef.viewblend[1] = 0;
558 r_refdef.viewblend[2] = 0;
559 r_refdef.viewblend[3] = 0;
560 r_refdef.frustumscale_x = 1;
561 r_refdef.frustumscale_y = 1;
562 if (cls.state == ca_connected && cls.signon == SIGNONS && gl_polyblend.value > 0)
564 // set contents color
567 Matrix4x4_OriginFromMatrix(&r_view.matrix, vieworigin);
568 supercontents = CL_PointSuperContents(vieworigin);
569 if (supercontents & SUPERCONTENTS_LIQUIDSMASK)
571 r_refdef.frustumscale_x *= 1 - (((sin(cl.time * 4.7) + 1) * 0.015) * r_waterwarp.value);
572 r_refdef.frustumscale_y *= 1 - (((sin(cl.time * 3.0) + 1) * 0.015) * r_waterwarp.value);
573 if (supercontents & SUPERCONTENTS_LAVA)
575 cl.cshifts[CSHIFT_CONTENTS].destcolor[0] = 255;
576 cl.cshifts[CSHIFT_CONTENTS].destcolor[1] = 80;
577 cl.cshifts[CSHIFT_CONTENTS].destcolor[2] = 0;
579 else if (supercontents & SUPERCONTENTS_SLIME)
581 cl.cshifts[CSHIFT_CONTENTS].destcolor[0] = 0;
582 cl.cshifts[CSHIFT_CONTENTS].destcolor[1] = 25;
583 cl.cshifts[CSHIFT_CONTENTS].destcolor[2] = 5;
587 cl.cshifts[CSHIFT_CONTENTS].destcolor[0] = 130;
588 cl.cshifts[CSHIFT_CONTENTS].destcolor[1] = 80;
589 cl.cshifts[CSHIFT_CONTENTS].destcolor[2] = 50;
591 cl.cshifts[CSHIFT_CONTENTS].percent = 150 * 0.5;
595 cl.cshifts[CSHIFT_CONTENTS].destcolor[0] = 0;
596 cl.cshifts[CSHIFT_CONTENTS].destcolor[1] = 0;
597 cl.cshifts[CSHIFT_CONTENTS].destcolor[2] = 0;
598 cl.cshifts[CSHIFT_CONTENTS].percent = 0;
601 if (gamemode != GAME_TRANSFUSION)
603 if (cl.stats[STAT_ITEMS] & IT_QUAD)
605 cl.cshifts[CSHIFT_POWERUP].destcolor[0] = 0;
606 cl.cshifts[CSHIFT_POWERUP].destcolor[1] = 0;
607 cl.cshifts[CSHIFT_POWERUP].destcolor[2] = 255;
608 cl.cshifts[CSHIFT_POWERUP].percent = 30;
610 else if (cl.stats[STAT_ITEMS] & IT_SUIT)
612 cl.cshifts[CSHIFT_POWERUP].destcolor[0] = 0;
613 cl.cshifts[CSHIFT_POWERUP].destcolor[1] = 255;
614 cl.cshifts[CSHIFT_POWERUP].destcolor[2] = 0;
615 cl.cshifts[CSHIFT_POWERUP].percent = 20;
617 else if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY)
619 cl.cshifts[CSHIFT_POWERUP].destcolor[0] = 100;
620 cl.cshifts[CSHIFT_POWERUP].destcolor[1] = 100;
621 cl.cshifts[CSHIFT_POWERUP].destcolor[2] = 100;
622 cl.cshifts[CSHIFT_POWERUP].percent = 100;
624 else if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY)
626 cl.cshifts[CSHIFT_POWERUP].destcolor[0] = 255;
627 cl.cshifts[CSHIFT_POWERUP].destcolor[1] = 255;
628 cl.cshifts[CSHIFT_POWERUP].destcolor[2] = 0;
629 cl.cshifts[CSHIFT_POWERUP].percent = 30;
632 cl.cshifts[CSHIFT_POWERUP].percent = 0;
635 cl.cshifts[CSHIFT_VCSHIFT].destcolor[0] = v_cshift.destcolor[0];
636 cl.cshifts[CSHIFT_VCSHIFT].destcolor[1] = v_cshift.destcolor[1];
637 cl.cshifts[CSHIFT_VCSHIFT].destcolor[2] = v_cshift.destcolor[2];
638 cl.cshifts[CSHIFT_VCSHIFT].percent = v_cshift.percent;
640 // LordHavoc: fixed V_CalcBlend
641 for (j = 0;j < NUM_CSHIFTS;j++)
643 a2 = bound(0.0f, cl.cshifts[j].percent * (1.0f / 255.0f), 1.0f);
646 VectorLerp(r_refdef.viewblend, a2, cl.cshifts[j].destcolor, r_refdef.viewblend);
647 r_refdef.viewblend[3] = (1 - (1 - r_refdef.viewblend[3]) * (1 - a2)); // correct alpha multiply... took a while to find it on the web
650 // saturate color (to avoid blending in black)
651 if (r_refdef.viewblend[3])
653 a2 = 1 / r_refdef.viewblend[3];
654 VectorScale(r_refdef.viewblend, a2, r_refdef.viewblend);
657 r_refdef.viewblend[0] = bound(0.0f, r_refdef.viewblend[0] * (1.0f/255.0f), 1.0f);
658 r_refdef.viewblend[1] = bound(0.0f, r_refdef.viewblend[1] * (1.0f/255.0f), 1.0f);
659 r_refdef.viewblend[2] = bound(0.0f, r_refdef.viewblend[2] * (1.0f/255.0f), 1.0f);
660 r_refdef.viewblend[3] = bound(0.0f, r_refdef.viewblend[3] * gl_polyblend.value, 1.0f);
664 //============================================================================
673 Cmd_AddCommand ("v_cshift", V_cshift_f, "sets tint color of view");
674 Cmd_AddCommand ("bf", V_BonusFlash_f, "briefly flashes a bright color tint on view (used when items are picked up)");
675 Cmd_AddCommand ("centerview", V_StartPitchDrift, "gradually recenter view (stop looking up/down)");
677 Cvar_RegisterVariable (&v_centermove);
678 Cvar_RegisterVariable (&v_centerspeed);
680 Cvar_RegisterVariable (&v_iyaw_cycle);
681 Cvar_RegisterVariable (&v_iroll_cycle);
682 Cvar_RegisterVariable (&v_ipitch_cycle);
683 Cvar_RegisterVariable (&v_iyaw_level);
684 Cvar_RegisterVariable (&v_iroll_level);
685 Cvar_RegisterVariable (&v_ipitch_level);
687 Cvar_RegisterVariable (&v_idlescale);
688 Cvar_RegisterVariable (&crosshair);
690 Cvar_RegisterVariable (&cl_rollspeed);
691 Cvar_RegisterVariable (&cl_rollangle);
692 Cvar_RegisterVariable (&cl_bob);
693 Cvar_RegisterVariable (&cl_bobcycle);
694 Cvar_RegisterVariable (&cl_bobup);
695 Cvar_RegisterVariable (&cl_bobmodel);
696 Cvar_RegisterVariable (&cl_bobmodel_side);
697 Cvar_RegisterVariable (&cl_bobmodel_up);
698 Cvar_RegisterVariable (&cl_bobmodel_speed);
700 Cvar_RegisterVariable (&cl_viewmodel_scale);
702 Cvar_RegisterVariable (&v_kicktime);
703 Cvar_RegisterVariable (&v_kickroll);
704 Cvar_RegisterVariable (&v_kickpitch);
706 Cvar_RegisterVariable (&cl_stairsmoothspeed);
708 Cvar_RegisterVariable (&chase_back);
709 Cvar_RegisterVariable (&chase_up);
710 Cvar_RegisterVariable (&chase_active);
711 if (gamemode == GAME_GOODVSBAD2)
712 Cvar_RegisterVariable (&chase_stevie);
714 Cvar_RegisterVariable (&v_deathtilt);
715 Cvar_RegisterVariable (&v_deathtiltangle);