Dayz Explorer
1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
|
Go to the source code of this file.
Data Structures | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventRemove |
class | HandEventRemove |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventSwap |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventReplaceWithNewBase |
class | HandEventDestroyAndReplaceWithNew |
class | HandEventReplaceWithNewBase |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
class | HandEventBase |
Abstracted event, not to be used, only inherited. More... | |
enum HandEventID |
events
identifier for events mainly for rpc purposes
Definition at line 6 of file hand_events.c.
Definition at line 27 of file hand_events.c.
bool AcquireInventoryJunctureFromServer | ( | notnull Man | player | ) |
Definition at line 90 of file hand_events.c.
bool CanPerformEvent | ( | ) |
Definition at line 102 of file hand_events.c.
bool CanPerformEventEx | ( | InventoryValidation | validation | ) |
Definition at line 103 of file hand_events.c.
bool CheckRequest | ( | ) |
Definition at line 91 of file hand_events.c.
bool CheckRequestEx | ( | InventoryValidation | validation | ) |
Do not check for action validity on remotes or when performing through juncture. Juncture locks guarentee the item is safe to interact with and the server has validated the command at this point. Checking at this point is both wasteful and can result in a failure which leads to desync
Definition at line 92 of file hand_events.c.
bool CheckRequestSrc | ( | ) |
Definition at line 104 of file hand_events.c.
void ClearInventoryReservation | ( | ) |
Definition at line 184 of file hand_events.c.
string DumpToString | ( | ) |
Definition at line 165 of file hand_events.c.
int GetAnimationID | ( | ) |
Definition at line 89 of file hand_events.c.
InventoryLocation GetDst | ( | ) |
Definition at line 88 of file hand_events.c.
HandEventID GetEventID | ( | ) |
Definition at line 53 of file hand_events.c.
EntityAI GetSecondSrcEntity | ( | ) |
Definition at line 87 of file hand_events.c.
InventoryLocation GetSrc | ( | ) |
Definition at line 80 of file hand_events.c.
EntityAI GetSrcEntity | ( | ) |
Definition at line 81 of file hand_events.c.
HandEventBase HandAnimEventFactory | ( | WeaponEvents | type, |
Man | p = null , |
||
InventoryLocation | src = null |
||
) |
Definition at line 775 of file hand_events.c.
void HandEventBase | ( | Man | p = null , |
InventoryLocation | src = null |
||
) |
Definition at line 52 of file hand_events.c.
bool IsAuthoritative | ( | ) |
Definition at line 55 of file hand_events.c.
bool IsOwner | ( | ) |
Definition at line 60 of file hand_events.c.
bool IsProxy | ( | ) |
Definition at line 65 of file hand_events.c.
bool IsServerSideOnly | ( | ) |
Definition at line 105 of file hand_events.c.
void ReadFromContext | ( | ParamsReadContext | ctx | ) |
Definition at line 70 of file hand_events.c.
bool ReserveInventory | ( | ) |
Definition at line 174 of file hand_events.c.
void WriteToContext | ( | ParamsWriteContext | ctx | ) |
Definition at line 72 of file hand_events.c.
@ ERROR |
Definition at line 39 of file hand_events.c.
JUNCTURE_ACQUIRED |
Definition at line 37 of file hand_events.c.
JUNCTURE_DENIED |
Definition at line 38 of file hand_events.c.
JUNCTURE_NOT_REQUIRED |
Definition at line 36 of file hand_events.c.
int m_AnimationID = -1 |
Definition at line 41 of file hand_events.c.
m_EventID = 0 |
bool m_IsJuncture |
For action guards. Although we can guarantee the item will exist for remotes and juncture, we can't guarantee the conditions will be the same as when the action was first performed. So therefore we only perform maximal checks on the Client and then Server but then do minimal checks on Juncture-Client and Juncture-Server and no checks on Remote-Client.
Definition at line 49 of file hand_events.c.
bool m_IsRemote |
Definition at line 50 of file hand_events.c.
m_Player |
Definition at line 42 of file hand_events.c.
ref InventoryLocation m_Src |
Definition at line 43 of file hand_events.c.