File size: 4,510 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
class MissionMainMenu extends MissionBase
{
private UIScriptedMenu m_mainmenu;
private CreditsMenu m_CreditsMenu;
private ref DayZIntroScenePC m_IntroScenePC;
private ref DayZIntroSceneXbox m_IntroSceneXbox;
private AbstractWave m_MenuMusic;
bool m_NoCutscene;
override void OnInit()
{
if (!m_NoCutscene)
{
CreateIntroScene();
}
if (!m_mainmenu)
{
#ifdef PLATFORM_CONSOLE
if ( g_Game.GetGameState() != DayZGameState.PARTY )
{
m_mainmenu = UIScriptedMenu.Cast( g_Game.GetUIManager().EnterScriptedMenu( MENU_TITLE_SCREEN, null ) );
}
#else
m_mainmenu = UIScriptedMenu.Cast( g_Game.GetUIManager().EnterScriptedMenu( MENU_MAIN, null ) );
#endif
}
GetOnInputDeviceChanged().Insert(OnInputDeviceChanged);
}
override void Reset()
{
#ifdef PLATFORM_CONSOLE
delete m_IntroSceneXbox;
#else
delete m_IntroScenePC;
#endif
CreateIntroScene();
}
DayZIntroScenePC GetIntroScenePC()
{
#ifdef PLATFORM_CONSOLE
Error("missionMainMenu->GetIntroScenePC on PLATFORM_CONSOLE is not implemented!");
return null;
#else
return m_IntroScenePC;
#endif
}
DayZIntroSceneXbox GetIntroSceneXbox()
{
#ifdef PLATFORM_CONSOLE
return m_IntroSceneXbox;
#else
Error("missionMainMenu->GetIntroScenePC on PLATFORM_PC is not implemented!");
return null;
#endif
}
void CreateIntroScene()
{
#ifdef PLATFORM_CONSOLE
m_IntroSceneXbox = new DayZIntroSceneXbox;
#else
m_IntroScenePC = new DayZIntroScenePC;
#endif
}
override void UpdateInputDevicesAvailability()
{
super.UpdateInputDevicesAvailability();
g_Game.GetInput().UpdateConnectedInputDeviceList();
g_Game.UpdateInputDeviceDisconnectWarning();
}
override void OnMissionStart()
{
if (m_mainmenu)
{
//m_mainmenu.FadeIn(2.0); //Fade in method is currently commented in MainMenu class
}
g_Game.GetUIManager().ShowUICursor(true);
g_Game.SetMissionState( DayZGame.MISSION_STATE_MAINMENU );
//Print("*** MissionMainMenu.OnMissionStart()");
g_Game.LoadingHide(true);
ProgressAsync.DestroyAllPendingProgresses();
PlayMusic();
}
override void OnMissionFinish()
{
if ( m_mainmenu )
m_mainmenu.Cleanup();
GetGame().GetUIManager().CloseAll();
m_mainmenu = NULL;
m_IntroScenePC = null;
m_IntroSceneXbox = null;
m_CreditsMenu = null;
#ifndef FEATURE_CURSOR
g_Game.GetUIManager().ShowUICursor(false);
#endif
}
override void OnUpdate(float timeslice)
{
super.OnUpdate(timeslice);
#ifdef DIAG_DEVELOPER
UpdateInputDeviceDiag();
#endif
if ( g_Game.IsLoading() )
{
return;
}
if (m_IntroScenePC)
{
m_IntroScenePC.Update();
}
}
void OnMenuEnter(int menu_id)
{
switch (menu_id)
{
case MENU_CREDITS:
{
m_CreditsMenu = CreditsMenu.Cast(GetGame().GetUIManager().GetMenu());
}
}
}
void OnInputDeviceChanged(int device)
{
if (m_CreditsMenu)
{
m_CreditsMenu.UpdateInfoPanelText(device);
}
}
void PlayMusic()
{
if ( !m_MenuMusic )
{
SoundParams soundParams = new SoundParams( "Music_Menu_SoundSet" );
SoundObjectBuilder soundBuilder = new SoundObjectBuilder( soundParams );
SoundObject soundObject = soundBuilder.BuildSoundObject();
soundObject.SetKind( WaveKind.WAVEMUSIC );
m_MenuMusic = GetGame().GetSoundScene().Play2D(soundObject, soundBuilder);
m_MenuMusic.Loop( true );
m_MenuMusic.Play();
}
}
void StopMusic()
{
if ( m_MenuMusic )
m_MenuMusic.Stop();
}
AbstractWave GetMenuMusic()
{
return m_MenuMusic;
}
int SortedInsert( array<int> list, int number )
{
int find_number = number;
int index_min = 0;
int index_max = list.Count() - 1;
int target_index = Math.Floor( index_max / 2 );
if ( index_max == -1 )
{
list.Insert( number );
return 0;
}
while ( true )
{
int target_value = list[target_index];
if ( find_number == target_value || ((index_max - index_min) <= 1) )
{
for ( int i = index_min; i <= index_max; i++ )
{
if ( find_number <= list[i] )
{
list.InsertAt( find_number, i );
return i;
}
}
index_max++;
list.InsertAt( find_number, index_max );
return target_index;
}
else if ( find_number < target_value )
{
index_max = target_index;
target_index = Math.Floor( target_index / 2 );
}
else if ( find_number > target_value )
{
index_min = target_index;
target_index += Math.Floor( (index_max - index_min) / 2 );
}
}
return target_index;
}
}
|