Modules | |
| Keyboard input API | |
| Mouse API | |
| returns index of defined key in InputDevice by its name | |
| API | |
| FileIO API | |
Functions | |
| proto void | GetHourMinuteSecond (out int hour, out int minute, out int second) |
| Returns system time. | |
| proto void | GetYearMonthDay (out int year, out int month, out int day) |
| Returns system date. | |
| proto void | GetHourMinuteSecondUTC (out int hour, out int minute, out int second) |
| Returns UTC system time. | |
| proto void | GetYearMonthDayUTC (out int year, out int month, out int day) |
| Returns UTC system date. | |
| proto string | GetProfileName () |
| proto string | GetMachineName () |
| proto native int | TickCount (int prev) |
| performance counter. Returns number of CPU ticks between 'prev' and 'now' | |
| proto native void | MemoryValidation (bool enable) |
| Switches memory validation (huge slowdown! Use with care only for certain section of code!) | |
| proto bool | GetCLIParam (string param, out string val) |
| Returns command line argument. | |
| proto native bool | IsCLIParam (string param) |
| Returns if command line argument is present. | |
Variables | |
| DIRECTORIES | |
| Looks for files in fs directories only. | |
| ARCHIVES | |
| Looks for files in archive only. (.pak) | |
| ALL | |
| <Looks in archives and fs directories. | |
Returns command line argument.
| name | of a command line argument |
| val | string value of the param or empty string if the param hasn't been found |
Referenced by CGame::AutoTestLaunch(), CGame::ConnectFromCLI(), ItemBase::EvaluateCatch(), JsonMissionLoaderData::GetData(), CGame::JoinLaunch(), CGame::MissionLaunch(), CGame::OnInitialize(), CGame::PartyLaunch(), CGame::SelectGamepad(), and PlayerBase::UpdatePersonalLight().
Returns system time.
| [out] | hour | int Hour |
| [out] | minute | int Minute |
| [out] | second | int Second |
void Referenced by Debug::GetDate(), and ManBase::UpdatePlayerMeasures().
Returns UTC system time.
| [out] | hour | int Hour |
| [out] | minute | int Minute |
| [out] | second | int Second |
void Referenced by MissionBenchmark::FPSLog(), and AutoTestFixture::SaveXMLReport().
| proto string GetMachineName | ( | ) |
| proto string GetProfileName | ( | ) |
Returns system date.
| [out] | year | int Year |
| [out] | month | int Month |
| [out] | day | int Day |
void Referenced by MissionBenchmark::FPSLog(), and Debug::GetDate().
Returns UTC system date.
| [out] | year | int Year |
| [out] | month | int Month |
| [out] | day | int Day |
void Referenced by AutoTestFixture::SaveXMLReport().
Returns if command line argument is present.
| name | of a command line argument |
Referenced by ItemBase::AdjustDetectionRange(), CheckBaitCompatibility(), ItemBase::EvaluateCatch(), HandleReciveData(), ItemBase::IncreaseElapsedTime(), LogManager::Init(), CatchingContextFishingRodAction::InitCatchingItemData(), CatchingContextFishingRodAction::ModifySignalProbability(), ActionDeployBase::OnFinishProgressServer(), MissionBase::OnUpdate(), CatchingContextFishingRodAction::RandomizeSignalDuration(), CatchingContextFishingRodAction::RandomizeSignalStartTime(), ItemBase::RunTrappingTimer(), ManBase::SetLocalProjectionPosition(), CAContinuousRepeatFishing::SetNewSignalData(), CatchingContextTrapsBase::SetupInitialTypes(), ItemBase::TrySpawnCatch(), CatchingContextTrapsBase::UpdateBaseProbability(), and CatchingContextTrapsBase::UpdateUsedBait().
| proto native void MemoryValidation | ( | bool | enable | ) |
Switches memory validation (huge slowdown! Use with care only for certain section of code!)
| enable | bool Enable |
void performance counter. Returns number of CPU ticks between 'prev' and 'now'
| ALL |
<Looks in archives and fs directories.
Looks in archives and fs directories.
| ARCHIVES |
Looks for files in archive only. (.pak)
| DIRECTORIES |
Looks for files in fs directories only.