DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ OnInitialize() [1/2]

override bool CGame::OnInitialize ( )
inlineprotected

См. определение в файле DayZGame.c строка 2058

2059 {
2060 ParticleList.PreloadParticles();
2061
2064
2066 m_Visited = new TStringArray;
2067 GetProfileStringList("SB_Visited", m_Visited);
2068
2069 if (GetLoadState() == DayZLoadState.UNDEFINED)
2070 {
2071 string param;
2072
2073 if (GetCLIParam("join", param))
2074 {
2075 JoinLaunch();
2076 #ifndef PLATFORM_PS4
2078 #endif
2079 }
2080 else if (GetCLIParam("connect", param))
2081 {
2082 ConnectLaunch();
2083 }
2084 else if (GetCLIParam("autotest", param))
2085 {
2086 AutoTestLaunch(param);
2087 }
2088 else if (GetCLIParam("mission", param))
2089 {
2090 MissionLaunch();
2091 }
2092 else if (GetCLIParam("party", param))
2093 {
2094 PartyLaunch();
2095 }
2096 else
2097 {
2099 }
2100
2101 return true;
2102 }
2103
2104 return false;
2105 }
void CreateTitleScreen()
Определения DayZGame.c:2141
void InitNotifications()
Определения DayZGame.c:2107
proto native void GetProfileStringList(string name, out TStringArray values)
Gets array of strings from profile variable.
void ConnectLaunch()
Определения DayZGame.c:2223
void RegisterProfilesOptions()
Определения DayZGame.c:1132
void AutoTestLaunch(string param)
Определения DayZGame.c:2306
void MainMenuLaunch()
Определения DayZGame.c:2258
ref TStringArray m_Visited
Определения DayZGame.c:2125
void JoinLaunch()
Определения DayZGame.c:2208
DayZLoadState GetLoadState()
Определения DayZGame.c:1330
void MissionLaunch()
Определения DayZGame.c:2277
void PartyLaunch()
Определения DayZGame.c:2244
float GetHUDBrightnessSetting()
Определения DayZGame.c:3710
void SetHudBrightness(float value)
Определения DayZGame.c:3704
array< string > TStringArray
Определения EnScript.c:685
proto bool GetCLIParam(string param, out string val)
Returns command line argument.

Перекрестные ссылки AutoTestLaunch(), ConnectLaunch(), CreateTitleScreen(), GetCLIParam(), GetHUDBrightnessSetting(), GetLoadState(), GetProfileStringList(), InitNotifications(), JoinLaunch(), m_Visited, MainMenuLaunch(), MissionLaunch(), PartyLaunch(), ParticleList::PreloadParticles(), RegisterProfilesOptions() и SetHudBrightness().