public override void Simulate() { try { if (SuppressWc) { return; } if (!DedicatedServer) { EntityControlUpdate(); CameraMatrix = Session.Camera.WorldMatrix; CameraPos = CameraMatrix.Translation; PlayerPos = Session.Player?.Character?.WorldAABB.Center ?? Vector3D.Zero; } if (GameLoaded) { DsUtil.Start("ai"); AiLoop(); DsUtil.Complete("ai", true); DsUtil.Start("charge"); if (ChargingWeapons.Count > 0) { UpdateChargeWeapons(); } DsUtil.Complete("charge", true); DsUtil.Start("acquire"); if (AcquireTargets.Count > 0) { CheckAcquire(); } DsUtil.Complete("acquire", true); DsUtil.Start("shoot"); if (ShootingWeapons.Count > 0) { ShootWeapons(); } DsUtil.Complete("shoot", true); } if (!DedicatedServer && !InMenu) { UpdateLocalAiAndCockpit(); if ((UiInput.PlayerCamera && ActiveCockPit != null || ActiveControlBlock is MyRemoteControl && !UiInput.PlayerCamera || UiInput.CameraBlockView) && PlayerDummyTargets.ContainsKey(PlayerId)) { TargetSelection(); } } DsUtil.Start("ps"); Projectiles.SpawnAndMove(); DsUtil.Complete("ps", true); DsUtil.Start("pi"); Projectiles.Intersect(); DsUtil.Complete("pi", true); DsUtil.Start("pd"); Projectiles.Damage(); DsUtil.Complete("pd", true); DsUtil.Start("pa"); Projectiles.AvUpdate(); DsUtil.Complete("pa", true); DsUtil.Start("av"); if (!DedicatedServer) { Av.End(); } DsUtil.Complete("av", true); if (MpActive) { DsUtil.Start("network1"); if (PacketsToClient.Count > 0 || PrunedPacketsToClient.Count > 0) { ProccessServerPacketsForClients(); } if (PacketsToServer.Count > 0) { ProccessClientPacketsForServer(); } if (EwarNetDataDirty) { SendEwaredBlocks(); } DsUtil.Complete("network1", true); } } catch (Exception ex) { Log.Line($"Exception in SessionSim: {ex}"); } }