From 5400454d974668d72a811455a092c5107a54c799 Mon Sep 17 00:00:00 2001 From: ALord7 <124674138+ALord7@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:35:49 +0800 Subject: [PATCH] Update AFEntity.cpp --- game/AFEntity.cpp | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/game/AFEntity.cpp b/game/AFEntity.cpp index 686263f..17b5d21 100644 --- a/game/AFEntity.cpp +++ b/game/AFEntity.cpp @@ -1104,6 +1104,8 @@ idAFEntity_Gibbable::SpawnGibs */ void idAFEntity_Gibbable::SpawnGibs( const idVec3 &dir, const char *damageDefName ) { int i; + float gibTime; // darknar + float gibPower; // darknar bool gibNonSolid; idVec3 entityCenter, velocity; idList list; @@ -1114,7 +1116,8 @@ void idAFEntity_Gibbable::SpawnGibs( const idVec3 &dir, const char *damageDefNam if ( !damageDef ) { gameLocal.Error( "Unknown damageDef '%s'", damageDefName ); } - + gibTime = g_gib_remove_time.GetFloat(); // darknar + gibPower = g_gib_power.GetFloat(); // darknar // spawn gib articulated figures idAFEntity_Base::DropAFs( this, "gib", &list ); @@ -1131,16 +1134,31 @@ void idAFEntity_Gibbable::SpawnGibs( const idVec3 &dir, const char *damageDefNam list[i]->GetPhysics()->UnlinkClip(); list[i]->GetPhysics()->PutToRest(); } else { - list[i]->GetPhysics()->SetContents( CONTENTS_CORPSE ); + //list[i]->GetPhysics()->SetContents( CONTENTS_CORPSE ); + list[i]->GetPhysics()->SetContents( 0 ); // darknar list[i]->GetPhysics()->SetClipMask( CONTENTS_SOLID ); velocity = list[i]->GetPhysics()->GetAbsBounds().GetCenter() - entityCenter; velocity.NormalizeFast(); velocity += ( i & 1 ) ? dir : -dir; - list[i]->GetPhysics()->SetLinearVelocity( velocity * 75.0f ); + // list[i]->GetPhysics()->SetLinearVelocity( velocity * 75.0f ); + list[i]->GetPhysics()->SetLinearVelocity( velocity * gibPower ); // darknar gib power } - list[i]->GetRenderEntity()->noShadow = true; - list[i]->GetRenderEntity()->shaderParms[ SHADERPARM_TIME_OF_DEATH ] = gameLocal.time * 0.001f; - list[i]->PostEventSec( &EV_Remove, 4.0f ); + // darknar start change + + /* + list[i]->GetRenderEntity()->noShadow = true; + list[i]->GetRenderEntity()->shaderParms[ SHADERPARM_TIME_OF_DEATH ] = gameLocal.time * 0.001f; + list[i]->PostEventSec(&EV_Remove, 4.0f); + */ + + if ( !g_gib_shadows.GetBool() ) { + list[i]->GetRenderEntity()->noShadow = true; // shadows can be optional, 1 = enable shadows, 0 = no shadows ( default ) + } + //list[i]->GetRenderEntity()->shaderParms[SHADERPARM_TIME_OF_DEATH] = gameLocal.time * 0.001f; // disable burn effect for now + if ( gibTime > 0.0f ) { // darknar, if the float is > to 0, do the remove after x seconds + list[i]->PostEventSec(&EV_Remove, gibTime); // darknar, define a float in Cvar, gibs are removed after thes time + } + // darknar end change } }