![]() |
Dayz Explorer
1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
|
Go to the source code of this file.
Enumerations | |
| enum | EUndergroundPresence { NONE, OUTER, TRANSITIONING, FULL } |
Functions | |
| void | UndergroundHandlerClient (PlayerBase player) |
| void | ~UndergroundHandlerClient () |
| protected PPERUndergroundAcco | GetRequester () |
| void | OnTriggerEnter (UndergroundTrigger trigger) |
| void | OnTriggerLeave (UndergroundTrigger trigger) |
| protected void | CalculateEyeAccoTarget () |
| protected void | ProcessEyeAcco (float timeSlice) |
| protected void | ProcessLighting (float timeSlice) |
| protected void | ProcessSound (float timeSlice) |
| void | Tick (float timeSlice) |
| protected void | ApplyEyeAcco () |
| protected void | UpdateNVGRequester (float value) |
| protected bool | CalculateEyeAcco (float timeSlice) |
| protected void | OnTriggerInsiderUpdate () |
| protected void | SetUndergroundPresence (UndergroundTrigger trigger) |
| protected void | EnableLights (bool enable) |
| void | OnUpdateTimerEnd () |
| void | OnUpdateTimerIn () |
| void | OnUpdateTimerOut () |
| protected void | OnUndergroundPresenceUpdate (EUndergroundPresence newPresence, EUndergroundPresence oldPresence) |
Variables | |
| enum EUndergroundPresence | LIGHT_BLEND_SPEED_IN = 5 |
| const float | LIGHT_BLEND_SPEED_OUT = 1.75 |
| const float | MAX_RATIO = 0.9 |
| const float | RATIO_CUTOFF = 0 |
| const float | DISTANCE_CUTOFF = 5 |
| const float | ACCO_MODIFIER = 1 |
| const float | DEFAULT_INTERPOLATION_SPEED = 7 |
| const string | UNDERGROUND_LIGHTING = "dz\\data\\lighting\\lighting_underground.txt" |
| protected ref AnimationTimer | m_AnimTimerLightBlend |
| protected PlayerBase | m_Player |
| protected PPERUndergroundAcco | m_Requester |
| protected PPERequester_CameraNV | m_NVRequester |
| protected ref set< UndergroundTrigger > | m_InsideTriggers = new set<UndergroundTrigger>() |
| protected float | m_EyeAccoTarget = 1 |
| protected float | m_AccoInterpolationSpeed |
| protected float | m_EyeAcco = 1 |
| protected float | m_LightingLerpTarget |
| protected float | m_LightingLerp |
| protected EffectSound | m_AmbientSound |
| protected UndergroundTrigger | m_TransitionalTrigger |
| enum EUndergroundPresence |
| Enumerator | |
|---|---|
| NONE | |
| OUTER | |
| TRANSITIONING | |
| FULL | |
Definition at line 1 of file undergroundhandlerclient.c.
| protected void ApplyEyeAcco | ( | ) |
Definition at line 238 of file undergroundhandlerclient.c.
Definition at line 267 of file undergroundhandlerclient.c.
| protected void CalculateEyeAccoTarget | ( | ) |
Definition at line 81 of file undergroundhandlerclient.c.
| protected void EnableLights | ( | bool | enable | ) |
Definition at line 352 of file undergroundhandlerclient.c.
| protected PPERUndergroundAcco GetRequester | ( | ) |
Definition at line 54 of file undergroundhandlerclient.c.
| void OnTriggerEnter | ( | UndergroundTrigger | trigger | ) |
Definition at line 64 of file undergroundhandlerclient.c.
| protected void OnTriggerInsiderUpdate | ( | ) |
Definition at line 289 of file undergroundhandlerclient.c.
| void OnTriggerLeave | ( | UndergroundTrigger | trigger | ) |
Definition at line 71 of file undergroundhandlerclient.c.
| protected void OnUndergroundPresenceUpdate | ( | EUndergroundPresence | newPresence, |
| EUndergroundPresence | oldPresence | ||
| ) |
Definition at line 382 of file undergroundhandlerclient.c.
| void OnUpdateTimerEnd | ( | ) |
| void OnUpdateTimerIn | ( | ) |
Definition at line 362 of file undergroundhandlerclient.c.
| void OnUpdateTimerOut | ( | ) |
Definition at line 372 of file undergroundhandlerclient.c.
| protected void ProcessEyeAcco | ( | float | timeSlice | ) |
Definition at line 175 of file undergroundhandlerclient.c.
| protected void ProcessLighting | ( | float | timeSlice | ) |
Definition at line 190 of file undergroundhandlerclient.c.
| protected void ProcessSound | ( | float | timeSlice | ) |
Definition at line 206 of file undergroundhandlerclient.c.
| protected void SetUndergroundPresence | ( | UndergroundTrigger | trigger | ) |
Definition at line 322 of file undergroundhandlerclient.c.
| void Tick | ( | float | timeSlice | ) |
Definition at line 220 of file undergroundhandlerclient.c.
| void UndergroundHandlerClient | ( | PlayerBase | player | ) |
Definition at line 35 of file undergroundhandlerclient.c.
| protected void UpdateNVGRequester | ( | float | value | ) |
Definition at line 262 of file undergroundhandlerclient.c.
| void ~UndergroundHandlerClient | ( | ) |
Definition at line 42 of file undergroundhandlerclient.c.
| const float ACCO_MODIFIER = 1 |
Definition at line 16 of file undergroundhandlerclient.c.
| const float DEFAULT_INTERPOLATION_SPEED = 7 |
Definition at line 17 of file undergroundhandlerclient.c.
| const float DISTANCE_CUTOFF = 5 |
Definition at line 15 of file undergroundhandlerclient.c.
| enum EUndergroundPresence LIGHT_BLEND_SPEED_IN = 5 |
| const float LIGHT_BLEND_SPEED_OUT = 1.75 |
Definition at line 12 of file undergroundhandlerclient.c.
| protected float m_AccoInterpolationSpeed |
Definition at line 27 of file undergroundhandlerclient.c.
| protected EffectSound m_AmbientSound |
Definition at line 31 of file undergroundhandlerclient.c.
| protected ref AnimationTimer m_AnimTimerLightBlend |
Definition at line 19 of file undergroundhandlerclient.c.
| protected float m_EyeAcco = 1 |
Definition at line 28 of file undergroundhandlerclient.c.
| protected float m_EyeAccoTarget = 1 |
Definition at line 26 of file undergroundhandlerclient.c.
| protected ref set<UndergroundTrigger> m_InsideTriggers = new set<UndergroundTrigger>() |
Definition at line 24 of file undergroundhandlerclient.c.
| protected float m_LightingLerp |
Definition at line 30 of file undergroundhandlerclient.c.
| protected float m_LightingLerpTarget |
Definition at line 29 of file undergroundhandlerclient.c.
| protected PPERequester_CameraNV m_NVRequester |
Definition at line 23 of file undergroundhandlerclient.c.
| protected PlayerBase m_Player |
Definition at line 21 of file undergroundhandlerclient.c.
| protected PPERUndergroundAcco m_Requester |
Definition at line 22 of file undergroundhandlerclient.c.
| protected UndergroundTrigger m_TransitionalTrigger |
Definition at line 33 of file undergroundhandlerclient.c.
| const float MAX_RATIO = 0.9 |
Definition at line 13 of file undergroundhandlerclient.c.
| const float RATIO_CUTOFF = 0 |
Definition at line 14 of file undergroundhandlerclient.c.
| const string UNDERGROUND_LIGHTING = "dz\\data\\lighting\\lighting_underground.txt" |
Definition at line 18 of file undergroundhandlerclient.c.