Bit of camera tidy up

This commit is contained in:
Simon 2023-01-25 09:24:23 +00:00
parent 3d22e95737
commit f19b230169

View file

@ -1094,18 +1094,13 @@ void CGCam_Update( void )
//Check for roffing angles
if ( (client_camera.info_state & CAMERA_ROFFING) && !(client_camera.info_state & CAMERA_FOLLOWING) )
{
if (!vr->immersive_cinematics)
{
for ( i = 0; i < 3; i++ )
{
cg.refdefViewAngles[i] = client_camera.angles[i] + ( client_camera.angles2[i] / client_camera.pan_duration ) * ( cg.time - client_camera.pan_time );
}
}
}
else if ( client_camera.info_state & CAMERA_PANNING )
{
if (!vr->immersive_cinematics)
{
//Note: does not actually change the camera's angles until the pan time is done!
if ( client_camera.pan_time + client_camera.pan_duration < cg.time )
@ -1128,11 +1123,6 @@ void CGCam_Update( void )
}
}
else
{
VectorCopy(client_camera.angles, cg.refdefViewAngles);
}
}
else
{
checkFollow = qtrue;
}
@ -1221,8 +1211,10 @@ void CGCam_Update( void )
VectorCopy(client_camera.angles, client_camera.stored_angles);
}
//Copy stored angles to refdef whether they have changed or not
VectorCopy(client_camera.stored_angles, cg.refdefViewAngles);
//Copy stored YAW angle to refdef whether it has changed or not, use pitch/roll direct from the hmd
float yaw = client_camera.stored_angles[YAW] + (vr->hmdorientation[YAW] - vr->hmdorientation_snap[YAW]) + vr->snapTurn;
VectorCopy(vr->hmdorientation, cg.refdefViewAngles);
cg.refdefViewAngles[YAW] = yaw;
//store previous state
previous_client_camera = client_camera;
@ -1237,13 +1229,6 @@ void CGCam_Update( void )
//Normal fading - separate call because can finish after camera is disabled
CGCam_UpdateFade();
if (vr->immersive_cinematics)
{
float yaw = cg.refdefViewAngles[YAW] + (vr->hmdorientation[YAW] - vr->hmdorientation_snap[YAW]) + vr->snapTurn;
VectorCopy(vr->hmdorientation, cg.refdefViewAngles);
cg.refdefViewAngles[YAW] = yaw;
}
//Update shaking if there's any
//CGCam_UpdateSmooth( cg.refdef.vieworg, cg.refdefViewAngles );
CGCam_UpdateShake( cg.refdef.vieworg, cg.refdefViewAngles );