Dayz Explorer
1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
|
Data Structures | |
class | EnProfiler |
Set of methods for accessing script profiling data. More... | |
Typedefs | |
typedef Param2< float, typename > | EnProfilerTimeClassPair |
typedef Param2< int, typename > | EnProfilerCountClassPair |
typedef Param2< float, string > | EnProfilerTimeFuncPair |
typedef Param2< int, string > | EnProfilerCountFuncPair |
Enumerations | |
enum | EnProfilerFlags { NONE = 0, RESET, RECURSIVE, ALL } |
Flags that influences the behaviour of the EnProfiler API, applied through ...Flags functions. More... | |
enum | EnProfilerModule { CORE, GAMELIB, GAME, WORLD, MISSION, MISSION_CUSTOM, ERROR } |
Current base scripted modules. More... | |
enum | EnProfilerEnabledFlags { NONE = 0, DIAG, SCRP, SCRC } |
There are 3 states which can be toggled that governs whether script profiling is enabled or not. More... | |
typedef Param2<int, typename> EnProfilerCountClassPair |
Definition at line 56 of file enprofiler.c.
typedef Param2<int, string> EnProfilerCountFuncPair |
Definition at line 59 of file enprofiler.c.
typedef Param2<float, typename> EnProfilerTimeClassPair |
Definition at line 55 of file enprofiler.c.
typedef Param2<float, string> EnProfilerTimeFuncPair |
Definition at line 58 of file enprofiler.c.
There are 3 states which can be toggled that governs whether script profiling is enabled or not.
Enumerator | |
---|---|
NONE | No flags. No automatic destroying. Flags to pass to ParticleSource.StopParticle. Plain Effect base. No flags, has value 0, so will count as false in conditions. No flags |
DIAG | Script profiling UI is enabled in WIN+ALT debug menu, when this is true, it will override SCRP. |
SCRP | It has been set to being always enabled through EnProfiler (SCRipt Profiler) |
SCRC | Whether profiling is currently truly happening (SCRipt Context) |
Definition at line 43 of file enprofiler.c.
enum EnProfilerFlags |
Flags that influences the behaviour of the EnProfiler API, applied through ...Flags functions.
Definition at line 8 of file enprofiler.c.
enum EnProfilerModule |
Current base scripted modules.
Enumerator | |
---|---|
CORE | 1_Core |
GAMELIB | 2_GameLib |
GAME | 3_Game |
WORLD | 4_World |
MISSION | 5_Mission |
MISSION_CUSTOM | init.c |
ERROR | Can be returned from some methods. |
Definition at line 21 of file enprofiler.c.