File size: 8,720 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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | class MissionBase extends MissionBaseWorld
{
PluginDeveloper m_ModuleDeveloper;
PluginKeyBinding m_ModuleKeyBinding
PluginAdditionalInfo m_ModuleServerInfo;
ref WidgetEventHandler m_WidgetEventHandler;
ref WorldData m_WorldData;
ref WorldLighting m_WorldLighting;
ref array<PlayerBase> m_DummyPlayers = new array<PlayerBase>;
autoptr ObjectSnapCallback m_InventoryDropCallback;
void MissionBase()
{
SetDispatcher(new DispatcherCaller);
PluginManagerInit();
m_WidgetEventHandler = new WidgetEventHandler;
m_InventoryDropCallback = new EntityPlacementCallback;
//Debug.DestroyAllShapes();
//TODO clea up after Gamescom
m_ModuleServerInfo = PluginAdditionalInfo.Cast( GetPlugin(PluginAdditionalInfo) );
//
SoundSetMap.Init();
if (GetGame().IsServer())
{
InitialiseWorldData();
}
else
{
GetDayZGame().GetAnalyticsClient().RegisterEvents();
m_WorldLighting = new WorldLighting;
}
GetOnInputDeviceConnected().Insert(UpdateInputDevicesAvailability);
GetOnInputDeviceDisconnected().Insert(UpdateInputDevicesAvailability);
// There is a possibility different maps/servers may be using different effects
SEffectManager.Cleanup();
GetUApi().UpdateControls();
}
void ~MissionBase()
{
PluginManagerDelete();
if ( GetGame().IsClient() )
{
GetDayZGame().GetAnalyticsClient().UnregisterEvents();
}
TriggerEffectManager.DestroyInstance();
}
override ObjectSnapCallback GetInventoryDropCallback()
{
return m_InventoryDropCallback;
}
void InitialiseWorldData()
{
string worldName = "empty";
GetGame().GetWorldName(worldName);
worldName.ToLower();
switch (worldName)
{
case "chernarusplus":
m_WorldData = new ChernarusPlusData();
break;
case "enoch":
m_WorldData = new EnochData();
break;
#ifdef PLATFORM_CONSOLE
case "mainmenuscenexbox":
m_WorldData = new MainMenuWorldData();
break
#endif
default:
m_WorldData = new ChernarusPlusData();
break;
}
}
override WorldLighting GetWorldLighting()
{
return m_WorldLighting;
}
override WorldData GetWorldData()
{
return m_WorldData;
}
override UIScriptedMenu CreateScriptedMenu(int id)
{
UIScriptedMenu menu = NULL;
switch (id)
{
case MENU_MAIN:
#ifdef PLATFORM_CONSOLE
menu = new MainMenuConsole;
#else
menu = new MainMenu;
#endif
break;
case MENU_INGAME:
#ifdef PLATFORM_CONSOLE
menu = new InGameMenuXbox;
#else
menu = new InGameMenu;
#endif
break;
case MENU_CHARACTER:
menu = new CharacterCreationMenu;
break;
case MENU_OPTIONS:
menu = new OptionsMenu;
break;
case MENU_STARTUP:
menu = new StartupMenu;
break;
case MENU_LOADING:
menu = new LoadingMenu;
break;
case MENU_INVENTORY:
menu = new InventoryMenu;
break;
case MENU_INSPECT:
menu = new InspectMenuNew;
break;
case MENU_EARLYACCESS:
menu = new EarlyAccessMenu;
break;
case MENU_SCRIPTCONSOLE:
menu = new ScriptConsole;
break;
case MENU_SCRIPTCONSOLE_DIALOG_PRESET_NAME:
menu = new ScriptConsoleNewPresetDialog;
break;
case MENU_SCRIPTCONSOLE_DIALOG_PRESET_RENAME:
menu = new ScriptConsoleRenamePresetDialog;
break;
case MENU_SCRIPTCONSOLE_UNIVERSAL_INFO_DIALOG:
menu = new ScriptConsoleUniversalInfoDialog;
break;
case MENU_CHAT_INPUT:
menu = new ChatInputMenu;
break;
case MENU_CONTROLS_PRESET:
menu = new PresetsMenu;
break;
case MENU_NOTE:
menu = new NoteMenu;
break;
case MENU_MAP:
menu = new MapMenu;
break;
case MENU_BOOK:
menu = new BookMenu;
break;
case MENU_SCENE_EDITOR:
menu = new SceneEditorMenu;
break;
case MENU_HELP_SCREEN:
menu = new HelpScreen;
break;
case MENU_GESTURES:
menu = new GesturesMenu;
break;
case MENU_LOGOUT:
menu = new LogoutMenu;
break;
case MENU_TITLE_SCREEN:
menu = new TitleScreenMenu;
break;
case MENU_XBOX_CONTROLS:
menu = new ControlsXboxNew;
break;
case MENU_RADIAL_QUICKBAR:
menu = new RadialQuickbarMenu;
break;
case MENU_SERVER_BROWSER:
menu = new ServerBrowserMenuNew;
break;
case MENU_LOGIN_QUEUE:
menu = new LoginQueueBase;
break;
case MENU_LOGIN_TIME:
menu = new LoginTimeBase;
break;
case MENU_CAMERA_TOOLS:
menu = new CameraToolsMenu;
break;
case MENU_VIDEO:
menu = new MainMenuVideo;
break;
case MENU_KEYBINDINGS:
menu = new KeybindingsMenu;
break;
case MENU_TUTORIAL:
menu = new TutorialsMenu;
break;
case MENU_CREDITS:
menu = new CreditsMenu;
break;
case MENU_INVITE_TIMER:
menu = new InviteMenu;
break;
case MENU_WARNING_ITEMDROP:
menu = new ItemDropWarningMenu;
break;
case MENU_WARNING_INPUTDEVICE_DISCONNECT:
menu = new InputDeviceDisconnectWarningMenu;
break;
case MENU_WARNING_TELEPORT:
menu = new PlayerRepositionWarningMenu;
break;
case MENU_RESPAWN_DIALOGUE:
menu = new RespawnDialogue;
break;
case MENU_CONNECT_ERROR:
menu = new ConnectErrorScriptModuleUI;
break;
case MENU_LOC_ADD:
menu = new ScriptConsoleAddLocation;
break;
case MENU_MISSION_LOADER:
menu = new MissionLoader;
break;
}
if (menu)
{
menu.SetID(id);
}
return menu;
}
void SpawnItems();
void UpdateInputDevicesAvailability()
{
g_Game.RefreshMouseCursorVisibility();
}
override void OnKeyPress(int key)
{
super.OnKeyPress(key);
#ifdef DIAG_DEVELOPER
if ( PluginKeyBinding.instance )
{
PluginKeyBinding.instance.OnKeyPress(key);
}
#endif
}
int m_WidgetsTotal;
int m_WidgetsInvisible;
void DumpCurrentUILayout()
{
UIScriptedMenu current_menu = GetGame().GetUIManager().GetMenu();
if ( current_menu )
{
Widget widget_root = current_menu.GetLayoutRoot();
if ( widget_root )
{
m_WidgetsTotal = 0;
m_WidgetsInvisible = 0;
Print( widget_root.GetName() +" ("+ widget_root.GetTypeName() +")");
DumpWidget(widget_root.GetChildren(), 1);
Print( "Widgets TOTAL: "+ m_WidgetsTotal.ToString() +" INVISIBLE: "+ m_WidgetsInvisible.ToString() +" VISIBLE: "+ (m_WidgetsTotal - m_WidgetsInvisible).ToString() );
}
}
}
void DumpWidget(Widget w, int tabs)
{
if ( !w )
{
return;
}
m_WidgetsTotal++;
string tmp;
for (int i = 0; i < tabs; i++)
{
tmp += " ";
}
string invisible = "";
if ( !w.IsVisibleHierarchy() )
{
invisible = "[invisible]";
m_WidgetsInvisible++;
}
Print( tmp +"- "+ w.GetName() +" ("+ w.GetTypeName() +") "+ invisible );
bool collapse = false;
if ( w.GetChildren() )
{
collapse = true;
Print(tmp +"{");
}
DumpWidget(w.GetChildren(), tabs + 1);
if ( collapse )
{
Print(tmp +"}");
}
DumpWidget(w.GetSibling(), tabs);
}
override void OnKeyRelease(int key)
{
super.OnKeyRelease(key);
if ( GetGame().IsDebug() )
{
if ( PluginKeyBinding.instance != NULL )
{
PluginKeyBinding.instance.OnKeyRelease(key);
}
}
}
override void OnMouseButtonPress(int button)
{
super.OnMouseButtonPress(button);
if ( GetGame().IsDebug() )
{
if ( PluginKeyBinding.instance != NULL )
{
PluginKeyBinding.instance.OnMouseButtonPress(button);
}
}
}
override void OnMouseButtonRelease(int button)
{
super.OnMouseButtonRelease(button);
if ( GetGame().IsDebug() )
{
if ( PluginKeyBinding.instance != NULL )
{
PluginKeyBinding.instance.OnMouseButtonRelease(button);
}
}
}
void OnLog(string msg_log)
{
if ( PluginDeveloper.GetInstance() )
{
if ( GetGame().IsServer() && !GetGame().IsMultiplayer() )
{
PluginDeveloper.GetInstance().PrintLogClient(msg_log);
}
else if ( GetGame().IsMultiplayer() && GetGame().IsClient() )
{
PluginDeveloper.GetInstance().PrintLogClient(msg_log);
}
}
}
void UpdateDummyScheduler()
{
for(int i = 0; i < m_DummyPlayers.Count(); i++)
{
if (m_DummyPlayers.Get(i))
{
m_DummyPlayers.Get(i).OnTick();
}
}
}
override void AddDummyPlayerToScheduler(Man player)
{
m_DummyPlayers.Insert(PlayerBase.Cast( player ));
}
#ifdef DIAG_DEVELOPER
void UpdateInputDeviceDiag()
{
DisplayInputDebug(DiagMenu.GetBool(DiagMenuIDs.MISC_INPUT_DEVICE_DISCONNECT_DBG));
}
void DisplayInputDebug(bool show)
{
DbgUI.BeginCleanupScope();
DbgUI.Begin("InputDeviceDebug", 60, 60);
if (show)
{
DbgUI.Text("Gamepad: " + g_Game.GetInput().IsActiveGamepadSelected());
DbgUI.Text("Mouse: " + g_Game.GetInput().IsMouseConnected());
DbgUI.Text("Keyboard: " + g_Game.GetInput().IsKeyboardConnected());
}
DbgUI.End();
DbgUI.EndCleanupScope();
}
#endif
}
class MissionDummy extends MissionBase
{
}
|