1class DayZCreatureAnimInterface
3 private void DayZCreatureAnimInterface() {}
4 private void ~DayZCreatureAnimInterface() {}
26 #ifdef _DAYZ_CREATURE_DEBUG_SHADOW
62 return !GetIsFrozen();
98 GetTransform(parentTransMat);
103 Math3D.YawPitchRollMatrix(closeBoneRotWS *
Math.RAD2DEG,rotMatrix);
105 parentTransMat[0] = rotMatrix[0];
106 parentTransMat[1] = rotMatrix[1];
107 parentTransMat[2] = rotMatrix[2];
108 parentTransMat[3] = closeBonePosWS;
111 arrow.GetTransform(arrowTransMat);
112 Math3D.MatrixInvMultiply4(parentTransMat, arrowTransMat, arrowTransMat);
114 Math3D.MatrixOrthogonalize4(arrowTransMat);
115 arrow.SetTransform(arrowTransMat);
117 AddChild(arrow, pivot);
127 super.GetDebugActions(outputList);
130 if (Gizmo_IsSupported())
138 if (super.OnAction(action_id, player, ctx))
193 proto native
AIAgent GetAIAgent();
195 proto native
bool IsSoundInsideBuilding();
197 proto native
void DebugDisableAIControl();
198 proto native
void DebugRestoreAIControl();
200 proto native
void AddDamageSphere(
string bone_name,
string ammo_name,
float radius,
float duration,
bool invertTeams);
207 proto native
void InitAIAgent(
AIGroup group);
208 proto native
void DestroyAIAgent();
210 int m_EffectTriggerCount;
224 m_EffectTriggerCount++;
229 m_EffectTriggerCount--;
234 AddDamageSphere(damage_params.m_sBoneName, damage_params.m_sAmmoName, damage_params.m_fRadius, damage_params.m_fDuration, damage_params.m_bInvertTeams);
239 super.EEKilled(killer);
262 AnimSoundEvent sound_event = GetCreatureAIType().GetSoundEvent(event_id);
263 if(sound_event != NULL)
265 ProcessSoundEvent(sound_event);
271 AnimSoundVoiceEvent voice_event = GetCreatureAIType().GetSoundVoiceEvent(event_id);
272 if(voice_event != NULL)
274 ProcessSoundVoiceEvent(voice_event);
280 AnimStepEvent step_event = GetCreatureAIType().GetStepEvent(event_id);
281 if(step_event != NULL)
283 ProcessStepEvent(step_event);
289 AnimDamageEvent damage_event = GetCreatureAIType().GetDamageEvent(event_id);
290 if(damage_event != NULL)
292 ProcessDamageEvent(damage_event);
300 Print(
"Error registering anim. event (Sound)");
305 Print(
"Error registering anim. event (SoundVoice)");
308 if(!
g_Game.IsDedicatedServer())
312 Print(
"Error registering anim. event (Step)");
318 Print(
"Error registering anim. event (Damage)");
322 private void ProcessSoundEvent(AnimSoundEvent sound_event)
324 if(!
g_Game.IsDedicatedServer())
327 if(NULL != objectBuilder)
330 SoundObject soundObject = objectBuilder.BuildSoundObject();
337 if(sound_event.m_NoiseParams != NULL)
338 g_Game.GetNoiseSystem().AddNoise(
this, sound_event.m_NoiseParams,
g_Game.GetWeather().GetNoiseReductionByWeather());
342 private void ProcessSoundVoiceEvent(AnimSoundVoiceEvent sound_event)
344 if(!
g_Game.IsDedicatedServer())
347 if(NULL != objectBuilder)
350 SoundObject soundObject = objectBuilder.BuildSoundObject();
351 AttenuateSoundIfNecessary(soundObject);
358 if(sound_event.m_NoiseParams != NULL)
359 g_Game.GetNoiseSystem().AddNoise(
this, sound_event.m_NoiseParams,
g_Game.GetWeather().GetNoiseReductionByWeather());
363 private void ProcessStepEvent(AnimStepEvent step_event)
365 SoundObjectBuilder soundBuilder = step_event.GetSoundBuilder(GetSurfaceType().Hash());
366 if(soundBuilder == NULL)
370 SoundObject soundObject = soundBuilder.BuildSoundObject();
371 AttenuateSoundIfNecessary(soundObject);
377 private void ProcessDamageEvent(AnimDamageEvent damage_event)
379 AddDamageSphere(damage_event.m_DamageParams);
384 if (
g_Game.GetPlayer() != NULL && (IsSoundInsideBuilding() !=
g_Game.GetPlayer().IsSoundInsideBuilding() ||
g_Game.GetPlayer().IsCameraInsideVehicle()))
386 soundObject.SetKind(
WaveKind.WAVEATTALWAYS);
390 soundObject.SetKind(
WaveKind.WAVEEFFECTEX);
437 return super.ModCommandHandlerBefore(pDt, pCurrentCommandID, pCurrentCommandFinished);
443 g_Game.GameScript.CallFunction(
this,
"GetInputController", controller, 0);
445 if (!input || !controller)
447 return super.ModCommandHandlerBefore(pDt, pCurrentCommandID, pCurrentCommandFinished);
450 float movementX = input.SyncedValue_ID(UAAimRight) - input.SyncedValue_ID(UAAimLeft);
452 float maxTurnSpeed = 100.0;
453 movementX =
Math.Clamp(movementX * maxTurnSpeed * pDt, -180, 180);
455 if (input.SyncedValue_ID(UALookAround) > 0)
460 bool isJump = input.SyncedValue_ID(UAGetOver) > 0;
461 bool isMove = input.SyncedValue_ID(UAMoveForward) > 0;
463 bool isRest = input.SyncedValue_ID(UAMoveBack) > 0;
464 bool isSleep = input.SyncedValue_ID(UAReloadMagazine) > 0;
478 bool isSprint = input.SyncedValue_ID(UATurbo) > 0;
479 bool isJog = input.SyncedValue_ID(UAWalkRunTemp) > 0;
480 bool isWalk = !isSprint && !isJog;
499 if (
Class.CastTo(animalController, controller))
521 if (iSpeed > 0 && lowVel)
529 if (animalController)
548 controller.OverrideTurnSpeed(
true,
Math.PI2 / pDt);
549 controller.OverrideMovementSpeed(
true, fSpeed);
550 controller.OverrideHeading(
true, heading *
Math.DEG2RAD);
551 controller.OverrideAlertLevel(
true,
true, iAlert, fAlert);
555 controller.OverrideJump(
true, 101, 2.0);
562enum DayZAnimalConstants
712 return EInventoryIconVisibility.HIDE_VICINITY;
732 if (
HandleDeath(currentCommandID, inputController))
737 if (currentCommandFinished)
739 if (currentCommandID == DayZAnimalConstants.COMMANDID_ATTACK)
757 if (currentCommandID == DayZAnimalConstants.COMMANDID_ATTACK)
764 if (currentCommandID == DayZAnimalConstants.COMMANDID_MOVE)
766 if (inputController.IsJump())
772 if (inputController.IsAttack())
793 if (inputController.IsDead())
795 if (currentCommandID == DayZAnimalConstants.COMMANDID_DEATH)
823 if (currentCommandID != DayZAnimalConstants.COMMANDID_HIT)
834 super.EEHitBy(damageResult, damageType, source,
component, dmgZone, ammo, modelPos, speedCoef);
835 m_TransportHitRegistered =
false;
837 int transferShockToDamageCoef =
g_Game.ConfigGetInt(
string.Format(
"%1 %2 DamageApplied transferShockToDamage",
CFG_AMMO, ammo));
838 if (transferShockToDamageCoef == 1)
846 animal_bleeding.
CreateWound( damageResult, dmgZone, ammo );
879 vector targetDirection = GetDirection();
882 targetDirection[1] = 0;
883 toSourceDirection[1] = 0;
885 targetDirection.Normalize();
886 toSourceDirection.Normalize();
888 float cosFi =
vector.Dot(targetDirection, toSourceDirection);
889 vector cross = targetDirection * toSourceDirection;
891 float dirAngleDeg =
Math.Acos(cosFi) *
Math.RAD2DEG;
893 dirAngleDeg = -dirAngleDeg;
900 if (angleDeg >= -20 && angleDeg <= 20)
904 else if (angleDeg < 0)
914 const int directionCount = 4;
923 offset = directionCount;
927 offset = 2 * directionCount;
931 offset = 3 * directionCount;
952 RegisterTransportHit(transport);
998 return GetSelectionPositionMS(pSelection);
1006 return damage *
GameConstants.NL_DAMAGE_CLOSECOMBAT_CONVERSION_ANIMALS;
1008 return damage *
GameConstants.NL_DAMAGE_FIREARM_CONVERSION_ANIMALS;
1011 return super.ConvertNonlethalDamage(damage, damageType);
Param4< int, int, string, int > TSelectableActionInfoWithColor
class AnimalBase extends DayZAnimal RegisterHitComponentsForAI()
base class of all commands exposed to script to provide common functionality over animations
Super root of all classes in Enforce script.
void CreateWound(TotalDamageResult damage_result, string zone_name, string ammo)
do not process rotations !
vector SetDefaultHitPosition(string pSelection)
proto native void SignalAIAttackEnded()
bool HandleDeath(int currentCommandID, DayZAnimalInputController inputController)
bool m_DamageHitToProcess
proto native DayZAnimalCommandScript StartCommand_Script(DayZAnimalCommandScript pInfectedCommand)
scripted commands
proto native void StartCommand_Hit(int pType, int pDirection)
proto native void StartCommand_Jump()
proto native DayZAnimalCommandScript GetCommand_Script()
void RegisterHitComponentsForAI()
register hit components for AI melee (used by attacking AI)
int FindComponentDirectionOffset(string component)
bool HandleDamageHit(int currentCommandID)
override string GetDefaultHitPositionComponent()
bool ComputeDamageHitParams(EntityAI source, string dmgZone, string ammo, out int type, out int direction)
override vector GetDefaultHitPosition()
proto native void StartCommand_Attack()
override void EEHitBy(TotalDamageResult damageResult, int damageType, EntityAI source, int component, string dmgZone, string ammo, vector modelPos, float speedCoef)
override int GetHideIconMask()
override bool IsHealthVisible()
string m_DefaultHitComponent
proto native DayZAnimalInputController GetInputController()
override bool IsInventoryVisible()
override string GetHitComponentForAI()
float ConvertNonlethalDamage(float damage, DamageType damageType)
proto native void StartCommand_Death(int pType, int pDirection)
ref array< ref DayZAIHitComponent > m_HitComponentsForAI
Melee hit components (AI targeting).
proto native DayZAnimalCommandScript StartCommand_ScriptInst(typename pCallbackClass)
void CommandHandler(float dt, int currentCommandID, bool currentCommandFinished)
void EOnContact(IEntity other, Contact extra)
proto native void StartCommand_Move()
override string GetDefaultHitComponent()
vector m_DefaultHitPosition
float ComputeHitDirectionAngleDeg(EntityAI source)
string m_DefaultHitPositionComponent
proto native void SignalAIAttackStarted()
void QueueDamageHit(int type, int direction)
int TranslateHitAngleDegToDirectionIndex(float angleDeg)
void AttenuateSoundIfNecessary(SoundObject soundObject)
DayZPlayer m_CinematicPlayer
void OnSoundVoiceEvent(int event_id, string event_user_string)
void OnStepEvent(int event_id, string event_user_string)
bool ResistContaminatedEffect()
AbstractWave PlaySound(SoundObject so, SoundObjectBuilder sob)
void RegisterAnimEvents()
override bool ModCommandHandlerBefore(float pDt, int pCurrentCommandID, bool pCurrentCommandFinished)
void AddDamageSphere(AnimDamageParams damage_params)
void OnDamageEvent(int event_id, string event_user_string)
void DecreaseEffectTriggerCount()
void CinematicTakeControl(DayZPlayer player)
override void EEKilled(Object killer)
void OnSoundEvent(int event_id, string event_user_string)
void IncreaseEffectTriggerCount()
AnimBootsType GetBootsType()
Native class for boats - handles physics simulation.
Result for an object found in CGame.IsBoxCollidingGeometryProxy.
DamageType
exposed from C++ (do not change)
override bool DisableVicinityIcon()
proto native DayZCreatureAnimInterface GetAnimInterface()
proto native void PrePhys_SetRotation(float pInRot[4])
bool PostPhysUpdate(float pDt)
class DayZCreatureAI extends DayZCreature COMMANDID_ATTACK
proto native void SetAnimationInstanceByName(string animation_instance_name, int instance_uuid, float duration)
proto native void PostPhys_SetPosition(vector pInTransl)
quaternion in world space
bool ModCommandHandlerInside(float pDt, int pCurrentCommandID, bool pCurrentCommandFinished)
class DayZCreatureAI extends DayZCreature COMMANDID_HIT
class DayZCreatureAnimInterface RegisterAnimationEvent(string event_name, string function_name)
class DayZAnimalCommandMove extends AnimCommandBase SetFlagFinished(bool pFinished)
DayZAnimalCommandScript fully scriptable command.
override bool HasFixedActionTargetCursorPosition()
override bool OnAction(int action_id, Man player, ParamsReadContext ctx)
proto native void UpdateSimulationPrecision(int simLOD)
proto native bool PrePhys_GetRotation(out float pOutRot[4])
proto native int GetCurrentAnimationInstanceUUID()
proto native bool IsDeathProcessed()
proto native void PostPhys_GetRotation(out float pOutRot[4])
vec3 in world space
override void AddArrow(Object arrow, int componentIndex, vector closeBonePosWS, vector closeBoneRotWS)
proto native int GetBoneIndexByName(string pBoneName)
returns bone index for a name (-1 if pBoneName doesn't exist)
proto native bool PrePhys_GetTranslation(out vector pOutTransl)
script function usable in PrePhysUpdate
proto native void PostPhys_SetRotation(float pInRot[4])
vec3 in world space
override bool IsIgnoredByConstruction()
proto native void PrePhys_SetTranslation(vector pInTransl)
proto native void ResetDeath()
proto native void StartDeath()
override void GetDebugActions(out TSelectableActionInfoArrayEx outputList)
class DayZCreatureAI extends DayZCreature COMMANDID_JUMP
proto native void PostPhys_LockRotation()
quaternion in world space
override bool CanBeSkinned()
proto native void ResetDeathCooldown()
bool ModCommandHandlerBefore(float pDt, int pCurrentCommandID, bool pCurrentCommandFinished)
override bool IsManagingArrows()
bool ModCommandHandlerAfter(float pDt, int pCurrentCommandID, bool pCurrentCommandFinished)
override bool IsDayZCreature()
proto native void PostPhys_GetPosition(out vector pOutTransl)
script function usable in PostPhysUpdate
proto native bool IsDeathConditionMet()
string GetDefaultHitComponent()
string GetDefaultHitPositionComponent()
Serializer ParamsReadContext
proto GizmoApi GetGizmoApi()
const int COMP_TYPE_ANIMAL_BLEEDING
const int COMP_TYPE_BODY_STAGING
proto void Print(void var)
Prints content of variable to console/log.
proto native void SetFlags(ShapeFlags flags)
EntityEvent
Entity events for event-mask, or throwing event from code.
proto native vector GetVelocity(notnull IEntity ent)
Returns linear velocity.
const int SAT_DEBUG_ACTION
class AbstractSoundScene SoundObjectBuilder(SoundParams soundParams)
void SoundObject(SoundParams soundParams)
vector GetPosition()
Get the world position of the Effect.
class HumanInputController TAnimGraphCommand
class BoxCollidingParams component
ComponentInfo for BoxCollidingResult.