mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-22 04:01:33 +00:00
Fix for crash in Dark Forces mod
This commit is contained in:
parent
304ab40190
commit
88e4e2f8ba
1 changed files with 31 additions and 23 deletions
|
@ -224,36 +224,44 @@ void Touch_Multi( gentity_t *self, gentity_t *other, trace_t *trace )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool thirdPersonActive = gi.cvar("cg_thirdPerson", "0", CVAR_TEMP)->integer;
|
bool useGestureAllowed = false;
|
||||||
bool useGestureEnabled = gi.cvar("vr_gesture_triggered_use", "1", CVAR_ARCHIVE)->integer; // defined in VrCvars.h
|
if (vr)
|
||||||
bool useGestureAllowed = useGestureEnabled && !thirdPersonActive && !vr->remote_droid;
|
{
|
||||||
if ( (self->spawnflags & 2) && ( !( self->spawnflags & 4 ) || ( ( self->spawnflags & 4) && !useGestureAllowed ) ) )
|
bool thirdPersonActive = gi.cvar("cg_thirdPerson", "0", CVAR_TEMP)->integer;
|
||||||
{ // FACING and... ...is not USE_BUTTON or... ...is USE_BUTTON but use gestures are not active
|
cvar_t *vr_gesture_triggered_use = gi.cvar("vr_gesture_triggered_use", "1", CVAR_ARCHIVE);
|
||||||
// In case of buttons activated by use gesture, we do not need to check if we are facing them as we are touching them by hand.
|
bool useGestureEnabled = vr_gesture_triggered_use == nullptr ||
|
||||||
vec3_t forward;
|
vr_gesture_triggered_use->integer; // defined in VrCvars.h
|
||||||
|
useGestureAllowed = useGestureEnabled && !thirdPersonActive && !vr->remote_droid;
|
||||||
|
if ((self->spawnflags & 2) &&
|
||||||
|
(!(self->spawnflags & 4) || ((self->spawnflags & 4) && !useGestureAllowed)))
|
||||||
|
{ // FACING and... ...is not USE_BUTTON or... ...is USE_BUTTON but use gestures are not active
|
||||||
|
// In case of buttons activated by use gesture, we do not need to check if we are facing them as we are touching them by hand.
|
||||||
|
vec3_t forward;
|
||||||
|
|
||||||
if ( other->client )
|
if (other->client)
|
||||||
{
|
|
||||||
if ( (other->client->ps.clientNum == 0) && (self->spawnflags & 4) && !thirdPersonActive && !vr->remote_droid )
|
|
||||||
{
|
{
|
||||||
// In case of USE_BUTTON, check facing by controller and not by head (if not in 3rd person or controlling droid)
|
if ((other->client->ps.clientNum == 0) && (self->spawnflags & 4) &&
|
||||||
vec3_t origin, angles;
|
!thirdPersonActive && !vr->remote_droid)
|
||||||
BG_CalculateVRWeaponPosition(origin, angles);
|
{
|
||||||
AngleVectors( angles, forward, NULL, NULL );
|
// In case of USE_BUTTON, check facing by controller and not by head (if not in 3rd person or controlling droid)
|
||||||
|
vec3_t origin, angles;
|
||||||
|
BG_CalculateVRWeaponPosition(origin, angles);
|
||||||
|
AngleVectors(angles, forward, NULL, NULL);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
AngleVectors(other->client->ps.viewangles, forward, NULL, NULL);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
AngleVectors( other->client->ps.viewangles, forward, NULL, NULL );
|
AngleVectors(other->currentAngles, forward, NULL, NULL);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
AngleVectors( other->currentAngles, forward, NULL, NULL );
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( DotProduct( self->movedir, forward ) < 0.5 )
|
if (DotProduct(self->movedir, forward) < 0.5)
|
||||||
{//Not Within 45 degrees
|
{//Not Within 45 degrees
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue