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

◆ OnInitialize() [1/2]

override bool CGame::OnInitialize ( )
inlineprotected

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

2071 {
2072 ParticleList.PreloadParticles();
2073
2076
2078 m_Visited = new TStringArray;
2079 GetProfileStringList("SB_Visited", m_Visited);
2080
2081 if (GetLoadState() == DayZLoadState.UNDEFINED)
2082 {
2083 string param;
2084
2085 if (GetCLIParam("join", param))
2086 {
2087 JoinLaunch();
2088 #ifndef PLATFORM_PS4
2090 #endif
2091 }
2092 else if (GetCLIParam("connect", param))
2093 {
2094 ConnectLaunch();
2095 }
2096 else if (GetCLIParam("autotest", param))
2097 {
2098 AutoTestLaunch(param);
2099 }
2100 else if (GetCLIParam("mission", param))
2101 {
2102 MissionLaunch();
2103 }
2104 else if (GetCLIParam("party", param))
2105 {
2106 PartyLaunch();
2107 }
2108 else
2109 {
2111 }
2112
2113 return true;
2114 }
2115
2116 return false;
2117 }
void CreateTitleScreen()
Определения DayZGame.c:2153
void InitNotifications()
Определения DayZGame.c:2119
proto native void GetProfileStringList(string name, out TStringArray values)
Gets array of strings from profile variable.
void ConnectLaunch()
Определения DayZGame.c:2237
void RegisterProfilesOptions()
Определения DayZGame.c:1143
void AutoTestLaunch(string param)
Определения DayZGame.c:2320
void MainMenuLaunch()
Определения DayZGame.c:2272
ref TStringArray m_Visited
Определения DayZGame.c:2137
void JoinLaunch()
Определения DayZGame.c:2222
DayZLoadState GetLoadState()
Определения DayZGame.c:1341
void MissionLaunch()
Определения DayZGame.c:2291
void PartyLaunch()
Определения DayZGame.c:2258
float GetHUDBrightnessSetting()
Определения DayZGame.c:3784
void SetHudBrightness(float value)
Определения DayZGame.c:3778
array< string > TStringArray
Определения EnScript.c:712
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().