| | 1 | | using DCL.Configuration; |
| | 2 | | using DCL.Helpers; |
| | 3 | | using DCL.Models; |
| | 4 | | using DCL.Controllers.ParcelSceneDebug; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using DCL.CRDT; |
| | 7 | | using DCL.Interface; |
| | 8 | | using UnityEngine; |
| | 9 | | using UnityEngine.Assertions; |
| | 10 | |
|
| | 11 | | namespace DCL.Controllers |
| | 12 | | { |
| | 13 | | public class ParcelScene : MonoBehaviour, IParcelScene |
| | 14 | | { |
| | 15 | | [Header("Debug")] |
| | 16 | | [SerializeField] |
| 539 | 17 | | private bool renderOuterBoundsGizmo = true; |
| | 18 | |
|
| 910 | 19 | | public Dictionary<long, IDCLEntity> entities { get; private set; } = new Dictionary<long, IDCLEntity>(); |
| 3438 | 20 | | public IECSComponentsManagerLegacy componentsManagerLegacy { get; private set; } |
| 3052 | 21 | | public LoadParcelScenesMessage.UnityParcelScene sceneData { get; protected set; } |
| | 22 | |
|
| 539 | 23 | | public HashSet<Vector2Int> parcels = new HashSet<Vector2Int>(); |
| 49 | 24 | | public ISceneMetricsCounter metricsCounter { get; set; } |
| | 25 | | public event System.Action<IDCLEntity> OnEntityAdded; |
| | 26 | | public event System.Action<IDCLEntity> OnEntityRemoved; |
| | 27 | | public event System.Action<LoadParcelScenesMessage.UnityParcelScene> OnSetData; |
| | 28 | | public event System.Action<float> OnLoadingStateUpdated; |
| | 29 | |
|
| 154 | 30 | | public ContentProvider contentProvider { get; set; } |
| | 31 | |
|
| 0 | 32 | | public bool isTestScene { get; set; } = false; |
| 1975 | 33 | | public bool isPersistent { get; set; } = false; |
| 0 | 34 | | public float loadingProgress { get; private set; } |
| | 35 | |
|
| | 36 | | [System.NonSerialized] |
| | 37 | | public string sceneName; |
| | 38 | |
|
| | 39 | | [System.NonSerialized] |
| 539 | 40 | | public bool unloadWithDistance = true; |
| | 41 | |
|
| | 42 | | SceneDebugPlane sceneDebugPlane = null; |
| | 43 | |
|
| | 44 | | public SceneLifecycleHandler sceneLifecycleHandler; |
| | 45 | |
|
| 0 | 46 | | public ICRDTExecutor crdtExecutor { get; set; } |
| | 47 | |
|
| 0 | 48 | | public bool isReleased { get; private set; } |
| | 49 | |
|
| | 50 | | private Bounds outerBounds = new Bounds(); |
| | 51 | |
|
| | 52 | | public void Awake() |
| | 53 | | { |
| 539 | 54 | | CommonScriptableObjects.worldOffset.OnChange += OnWorldReposition; |
| 539 | 55 | | componentsManagerLegacy = new ECSComponentsManagerLegacy(this); |
| 539 | 56 | | sceneLifecycleHandler = new SceneLifecycleHandler(this); |
| 539 | 57 | | metricsCounter = new SceneMetricsCounter(DataStore.i.sceneWorldObjects); |
| 539 | 58 | | } |
| | 59 | |
|
| | 60 | | private void OnDestroy() |
| | 61 | | { |
| 539 | 62 | | CommonScriptableObjects.worldOffset.OnChange -= OnWorldReposition; |
| 539 | 63 | | metricsCounter?.Dispose(); |
| 539 | 64 | | crdtExecutor?.Dispose(); |
| 0 | 65 | | } |
| | 66 | |
|
| 1086 | 67 | | void OnDisable() { metricsCounter?.Disable(); } |
| | 68 | |
|
| | 69 | | private void Update() |
| | 70 | | { |
| 8511 | 71 | | if (sceneLifecycleHandler.state == SceneLifecycleHandler.State.READY |
| | 72 | | && CommonScriptableObjects.rendererState.Get()) |
| 7840 | 73 | | SendMetricsEvent(); |
| 8511 | 74 | | } |
| | 75 | |
|
| 1032 | 76 | | protected virtual string prettyName => sceneData.basePosition.ToString(); |
| | 77 | |
|
| | 78 | | public virtual void SetData(LoadParcelScenesMessage.UnityParcelScene data) |
| | 79 | | { |
| 532 | 80 | | Assert.IsTrue( !string.IsNullOrEmpty(data.id), "Scene must have an ID!" ); |
| | 81 | |
|
| 532 | 82 | | this.sceneData = data; |
| | 83 | |
|
| 532 | 84 | | contentProvider = new ContentProvider(); |
| 532 | 85 | | contentProvider.baseUrl = data.baseUrl; |
| 532 | 86 | | contentProvider.contents = data.contents; |
| 532 | 87 | | contentProvider.BakeHashes(); |
| | 88 | |
|
| 532 | 89 | | SetupPositionAndParcels(); |
| | 90 | |
|
| 532 | 91 | | DataStore.i.sceneWorldObjects.AddScene(sceneData.id); |
| | 92 | |
|
| 532 | 93 | | metricsCounter.Configure(sceneData.id, sceneData.basePosition, sceneData.parcels.Length); |
| 532 | 94 | | metricsCounter.Enable(); |
| | 95 | |
|
| 532 | 96 | | OnSetData?.Invoke(data); |
| 532 | 97 | | } |
| | 98 | |
|
| | 99 | | void SetupPositionAndParcels() |
| | 100 | | { |
| 532 | 101 | | gameObject.transform.position = PositionUtils.WorldToUnityPosition(Utils.GridToWorldPosition(sceneData.baseP |
| | 102 | |
|
| 532 | 103 | | parcels.Clear(); |
| | 104 | |
|
| | 105 | | // The scene's gameobject position should already be in 'unityposition' |
| 532 | 106 | | Vector3 baseParcelWorldPos = gameObject.transform.position; |
| | 107 | |
|
| 532 | 108 | | outerBounds.SetMinMax(new Vector3(baseParcelWorldPos.x, 0f, baseParcelWorldPos.z), |
| | 109 | | new Vector3(baseParcelWorldPos.x + ParcelSettings.PARCEL_SIZE, 0f, baseParcelWorldPos.z + ParcelSettings |
| | 110 | |
|
| 2160 | 111 | | for (int i = 0; i < sceneData.parcels.Length; i++) |
| | 112 | | { |
| | 113 | | // 1. Update outer bounds with parcel's size |
| 548 | 114 | | var parcel = sceneData.parcels[i]; |
| | 115 | |
|
| 548 | 116 | | Vector3 parcelWorldPos = PositionUtils.WorldToUnityPosition(Utils.GridToWorldPosition(parcel.x, parcel.y |
| 548 | 117 | | outerBounds.Encapsulate(new Vector3(parcelWorldPos.x, 0, parcelWorldPos.z)); |
| 548 | 118 | | outerBounds.Encapsulate(new Vector3(parcelWorldPos.x + ParcelSettings.PARCEL_SIZE, 0, parcelWorldPos.z + |
| | 119 | |
|
| | 120 | | // 2. add parcel to collection |
| 548 | 121 | | parcels.Add(parcel); |
| | 122 | | } |
| | 123 | |
|
| | 124 | | // Apply outer bounds extra threshold |
| 532 | 125 | | outerBounds.SetMinMax(new Vector3(outerBounds.min.x - ParcelSettings.PARCEL_BOUNDARIES_THRESHOLD, 0f, outerB |
| | 126 | | new Vector3(outerBounds.max.x + ParcelSettings.PARCEL_BOUNDARIES_THRESHOLD, 0f, outerBounds.max.z + Parc |
| 532 | 127 | | } |
| | 128 | |
|
| | 129 | | void OnWorldReposition(Vector3 current, Vector3 previous) |
| | 130 | | { |
| 2 | 131 | | Vector3 currentSceneWorldPos = Utils.GridToWorldPosition(sceneData.basePosition.x, sceneData.basePosition.y) |
| 2 | 132 | | Vector3 oldSceneUnityPos = gameObject.transform.position; |
| 2 | 133 | | Vector3 newSceneUnityPos = PositionUtils.WorldToUnityPosition(currentSceneWorldPos); |
| | 134 | |
|
| 2 | 135 | | gameObject.transform.position = newSceneUnityPos; |
| 2 | 136 | | outerBounds.center += newSceneUnityPos - oldSceneUnityPos; |
| 2 | 137 | | } |
| | 138 | |
|
| | 139 | | public virtual void SetUpdateData(LoadParcelScenesMessage.UnityParcelScene data) |
| | 140 | | { |
| 15 | 141 | | contentProvider = new ContentProvider(); |
| 15 | 142 | | contentProvider.baseUrl = data.baseUrl; |
| 15 | 143 | | contentProvider.contents = data.contents; |
| 15 | 144 | | contentProvider.BakeHashes(); |
| 15 | 145 | | } |
| | 146 | |
|
| | 147 | | public void InitializeDebugPlane() |
| | 148 | | { |
| 414 | 149 | | if (EnvironmentSettings.DEBUG && sceneData.parcels != null && sceneDebugPlane == null) |
| | 150 | | { |
| 412 | 151 | | sceneDebugPlane = new SceneDebugPlane(sceneData, gameObject.transform); |
| | 152 | | } |
| 414 | 153 | | } |
| | 154 | |
|
| | 155 | | public void RemoveDebugPlane() |
| | 156 | | { |
| 0 | 157 | | if (sceneDebugPlane != null) |
| | 158 | | { |
| 0 | 159 | | sceneDebugPlane.Dispose(); |
| 0 | 160 | | sceneDebugPlane = null; |
| | 161 | | } |
| 0 | 162 | | } |
| | 163 | |
|
| | 164 | | public void Cleanup(bool immediate) |
| | 165 | | { |
| 448 | 166 | | if (isReleased || gameObject == null) |
| 0 | 167 | | return; |
| | 168 | |
|
| 448 | 169 | | if (sceneDebugPlane != null) |
| | 170 | | { |
| 412 | 171 | | sceneDebugPlane.Dispose(); |
| 412 | 172 | | sceneDebugPlane = null; |
| | 173 | | } |
| | 174 | |
|
| 448 | 175 | | componentsManagerLegacy.DisposeAllSceneComponents(); |
| | 176 | |
|
| 448 | 177 | | if (crdtExecutor != null) |
| | 178 | | { |
| 0 | 179 | | crdtExecutor.Dispose(); |
| 0 | 180 | | crdtExecutor = null; |
| | 181 | | } |
| | 182 | |
|
| 448 | 183 | | if (immediate) //!CommonScriptableObjects.rendererState.Get()) |
| | 184 | | { |
| 431 | 185 | | RemoveAllEntitiesImmediate(); |
| 431 | 186 | | PoolManager.i.Cleanup(true, true); |
| 431 | 187 | | DataStore.i.sceneWorldObjects.RemoveScene(sceneData.id); |
| 431 | 188 | | } |
| | 189 | | else |
| | 190 | | { |
| 17 | 191 | | if (entities.Count > 0) |
| | 192 | | { |
| 1 | 193 | | this.gameObject.transform.position = EnvironmentSettings.MORDOR; |
| 1 | 194 | | this.gameObject.SetActive(false); |
| | 195 | |
|
| 1 | 196 | | RemoveAllEntities(); |
| 1 | 197 | | } |
| | 198 | | else |
| | 199 | | { |
| 16 | 200 | | Destroy(this.gameObject); |
| 16 | 201 | | DataStore.i.sceneWorldObjects.RemoveScene(sceneData.id); |
| | 202 | |
|
| | 203 | | } |
| | 204 | | } |
| | 205 | |
|
| 448 | 206 | | isReleased = true; |
| 448 | 207 | | } |
| | 208 | |
|
| 0 | 209 | | public override string ToString() { return "Parcel Scene: " + base.ToString() + "\n" + sceneData; } |
| | 210 | |
|
| | 211 | | public string GetSceneName() |
| | 212 | | { |
| 0 | 213 | | return string.IsNullOrEmpty(sceneName) ? "Unnamed" : sceneName; |
| | 214 | | } |
| | 215 | |
|
| 949 | 216 | | public HashSet<Vector2Int> GetParcels() => parcels; |
| | 217 | | public bool IsInsideSceneBoundaries(Bounds objectBounds) |
| | 218 | | { |
| 101 | 219 | | if (isPersistent) |
| 13 | 220 | | return true; |
| | 221 | |
|
| 88 | 222 | | if (!IsInsideSceneBoundaries(objectBounds.min + CommonScriptableObjects.worldOffset, objectBounds.max.y)) |
| 58 | 223 | | return false; |
| 30 | 224 | | if (!IsInsideSceneBoundaries(objectBounds.max + CommonScriptableObjects.worldOffset, objectBounds.max.y)) |
| 1 | 225 | | return false; |
| | 226 | |
|
| 29 | 227 | | return true; |
| | 228 | | } |
| | 229 | |
|
| | 230 | | public virtual bool IsInsideSceneBoundaries(Vector2Int gridPosition, float height = 0f) |
| | 231 | | { |
| 129 | 232 | | if (isPersistent) |
| 112 | 233 | | return true; |
| | 234 | |
|
| 17 | 235 | | if (parcels.Count == 0) |
| 0 | 236 | | return false; |
| | 237 | |
|
| 17 | 238 | | float heightLimit = metricsCounter.maxCount.sceneHeight; |
| | 239 | |
|
| 17 | 240 | | if (height > heightLimit) |
| 0 | 241 | | return false; |
| | 242 | |
|
| 17 | 243 | | return parcels.Contains(gridPosition); |
| | 244 | | } |
| | 245 | |
|
| | 246 | | public virtual bool IsInsideSceneBoundaries(Vector3 worldPosition, float height = 0f) |
| | 247 | | { |
| 157 | 248 | | if (isPersistent) |
| 0 | 249 | | return true; |
| | 250 | |
|
| 157 | 251 | | if (parcels.Count == 0) |
| 0 | 252 | | return false; |
| | 253 | |
|
| 157 | 254 | | float heightLimit = metricsCounter.maxCount.sceneHeight; |
| 157 | 255 | | if (height > heightLimit) |
| 10 | 256 | | return false; |
| | 257 | |
|
| 147 | 258 | | int noThresholdZCoordinate = Mathf.FloorToInt(worldPosition.z / ParcelSettings.PARCEL_SIZE); |
| 147 | 259 | | int noThresholdXCoordinate = Mathf.FloorToInt(worldPosition.x / ParcelSettings.PARCEL_SIZE); |
| | 260 | |
|
| | 261 | | // We check the target world position |
| 147 | 262 | | Vector2Int targetCoordinate = new Vector2Int(noThresholdXCoordinate, noThresholdZCoordinate); |
| 147 | 263 | | if (parcels.Contains(targetCoordinate)) |
| 80 | 264 | | return true; |
| | 265 | |
|
| | 266 | | // We need to check using a threshold from the target point, in order to cover correctly the parcel "border/ |
| 67 | 267 | | Vector2Int coordinateMin = new Vector2Int(); |
| 67 | 268 | | coordinateMin.x = Mathf.FloorToInt((worldPosition.x - ParcelSettings.PARCEL_BOUNDARIES_THRESHOLD) / ParcelSe |
| 67 | 269 | | coordinateMin.y = Mathf.FloorToInt((worldPosition.z - ParcelSettings.PARCEL_BOUNDARIES_THRESHOLD) / ParcelSe |
| | 270 | |
|
| 67 | 271 | | Vector2Int coordinateMax = new Vector2Int(); |
| 67 | 272 | | coordinateMax.x = Mathf.FloorToInt((worldPosition.x + ParcelSettings.PARCEL_BOUNDARIES_THRESHOLD) / ParcelSe |
| 67 | 273 | | coordinateMax.y = Mathf.FloorToInt((worldPosition.z + ParcelSettings.PARCEL_BOUNDARIES_THRESHOLD) / ParcelSe |
| | 274 | |
|
| | 275 | | // We check the east/north-threshold position |
| 67 | 276 | | targetCoordinate.Set(coordinateMax.x, coordinateMax.y); |
| 67 | 277 | | if (parcels.Contains(targetCoordinate)) |
| 0 | 278 | | return true; |
| | 279 | |
|
| | 280 | | // We check the east/south-threshold position |
| 67 | 281 | | targetCoordinate.Set(coordinateMax.x, coordinateMin.y); |
| 67 | 282 | | if (parcels.Contains(targetCoordinate)) |
| 0 | 283 | | return true; |
| | 284 | |
|
| | 285 | | // We check the west/north-threshold position |
| 67 | 286 | | targetCoordinate.Set(coordinateMin.x, coordinateMax.y); |
| 67 | 287 | | if (parcels.Contains(targetCoordinate)) |
| 0 | 288 | | return true; |
| | 289 | |
|
| | 290 | | // We check the west/south-threshold position |
| 67 | 291 | | targetCoordinate.Set(coordinateMin.x, coordinateMin.y); |
| 67 | 292 | | if (parcels.Contains(targetCoordinate)) |
| 0 | 293 | | return true; |
| | 294 | |
|
| 67 | 295 | | return false; |
| | 296 | | } |
| | 297 | |
|
| | 298 | | public bool IsInsideSceneOuterBoundaries(Bounds objectBounds) |
| | 299 | | { |
| 153 | 300 | | if (isPersistent) |
| 0 | 301 | | return true; |
| | 302 | |
|
| 153 | 303 | | Vector3 objectBoundsMin = new Vector3(objectBounds.min.x, 0f, objectBounds.min.z); |
| 153 | 304 | | Vector3 objectBoundsMax = new Vector3(objectBounds.max.x, 0f, objectBounds.max.z); |
| 153 | 305 | | bool isInsideOuterBoundaries = outerBounds.Contains(objectBoundsMin) && outerBounds.Contains(objectBoundsMax |
| | 306 | |
|
| 88 | 307 | | return isInsideOuterBoundaries; |
| | 308 | | } |
| | 309 | |
|
| | 310 | | public bool IsInsideSceneOuterBoundaries(Vector3 objectUnityPosition) |
| | 311 | | { |
| 178 | 312 | | if (isPersistent) |
| 0 | 313 | | return true; |
| | 314 | |
|
| 178 | 315 | | objectUnityPosition.y = 0f; |
| 178 | 316 | | return outerBounds.Contains(objectUnityPosition); |
| | 317 | | } |
| | 318 | |
|
| | 319 | | private void OnDrawGizmosSelected() |
| | 320 | | { |
| 0 | 321 | | if(!renderOuterBoundsGizmo) return; |
| | 322 | |
|
| 0 | 323 | | Gizmos.color = new Color(Color.yellow.r, Color.yellow.g, Color.yellow.b, 0.5f); |
| 0 | 324 | | Gizmos.DrawCube(outerBounds.center, outerBounds.size + Vector3.up); |
| | 325 | |
|
| 0 | 326 | | Gizmos.color = new Color(Color.green.r, Color.green.g, Color.green.b, 0.5f); |
| 0 | 327 | | Bounds parcelBounds = new Bounds(); |
| 0 | 328 | | foreach (Vector2Int parcel in parcels) |
| | 329 | | { |
| 0 | 330 | | Vector3 parcelSceneUnityPos = PositionUtils.WorldToUnityPosition(Utils.GridToWorldPosition(parcel.x, par |
| 0 | 331 | | parcelBounds.center = parcelSceneUnityPos + new Vector3(8f, 0f, 8f); |
| 0 | 332 | | parcelBounds.size = new Vector3(16f, 0.1f, 16f); |
| 0 | 333 | | Gizmos.DrawCube(parcelBounds.center, parcelBounds.size); |
| | 334 | | } |
| 0 | 335 | | } |
| | 336 | |
|
| 0 | 337 | | public IDCLEntity GetEntityById(string entityId) { throw new System.NotImplementedException(); } |
| 58 | 338 | | public Transform GetSceneTransform() { return transform; } |
| | 339 | |
|
| | 340 | | public IDCLEntity CreateEntity(long id) |
| | 341 | | { |
| 608 | 342 | | if (entities.ContainsKey(id)) |
| | 343 | | { |
| 2 | 344 | | return entities[id]; |
| | 345 | | } |
| | 346 | |
|
| 606 | 347 | | var newEntity = new DecentralandEntity(); |
| 606 | 348 | | newEntity.entityId = id; |
| | 349 | |
|
| 606 | 350 | | PoolManagerFactory.EnsureEntityPool(false); |
| | 351 | |
|
| | 352 | | // As we know that the pool already exists, we just get one gameobject from it |
| 606 | 353 | | PoolableObject po = PoolManager.i.Get(PoolManagerFactory.EMPTY_GO_POOL_NAME); |
| | 354 | |
|
| 606 | 355 | | newEntity.meshesInfo.innerGameObject = po.gameObject; |
| 606 | 356 | | newEntity.gameObject = po.gameObject; |
| | 357 | |
|
| | 358 | | #if UNITY_EDITOR |
| 606 | 359 | | newEntity.gameObject.name = "ENTITY_" + id; |
| | 360 | | #endif |
| 606 | 361 | | newEntity.gameObject.transform.SetParent(gameObject.transform, false); |
| 606 | 362 | | newEntity.gameObject.SetActive(true); |
| 606 | 363 | | newEntity.scene = this; |
| | 364 | |
|
| 606 | 365 | | newEntity.OnCleanupEvent += po.OnCleanup; |
| | 366 | |
|
| 606 | 367 | | if (Environment.i.world.sceneBoundsChecker.enabled) |
| 453 | 368 | | newEntity.OnShapeUpdated += OnEntityShapeUpdated; |
| | 369 | |
|
| 606 | 370 | | entities.Add(id, newEntity); |
| | 371 | |
|
| 606 | 372 | | DataStore.i.sceneWorldObjects.sceneData[sceneData.id].owners.Add(id); |
| | 373 | |
|
| 606 | 374 | | OnEntityAdded?.Invoke(newEntity); |
| | 375 | |
|
| 606 | 376 | | Environment.i.world.sceneBoundsChecker.AddEntityToBeChecked(newEntity, runPreliminaryEvaluation: true); |
| | 377 | |
|
| 606 | 378 | | return newEntity; |
| | 379 | | } |
| | 380 | |
|
| | 381 | | void OnEntityShapeUpdated(IDCLEntity entity) |
| | 382 | | { |
| 227 | 383 | | Environment.i.world.sceneBoundsChecker.AddEntityToBeChecked(entity, runPreliminaryEvaluation: true); |
| 227 | 384 | | } |
| | 385 | |
|
| | 386 | | public void RemoveEntity(long id, bool removeImmediatelyFromEntitiesList = true) |
| | 387 | | { |
| 526 | 388 | | if (entities.ContainsKey(id)) |
| | 389 | | { |
| 526 | 390 | | IDCLEntity entity = entities[id]; |
| | 391 | |
|
| 526 | 392 | | if (!entity.markedForCleanup) |
| | 393 | | { |
| | 394 | | // This will also cleanup its children |
| 526 | 395 | | CleanUpEntityRecursively(entity, removeImmediatelyFromEntitiesList); |
| | 396 | | } |
| | 397 | |
|
| 526 | 398 | | entities.Remove(id); |
| | 399 | |
|
| 526 | 400 | | var data = DataStore.i.sceneWorldObjects.sceneData; |
| | 401 | |
|
| 526 | 402 | | if (data.ContainsKey(sceneData.id)) |
| | 403 | | { |
| 68 | 404 | | data[sceneData.id].owners.Remove(id); |
| | 405 | | } |
| 68 | 406 | | } |
| | 407 | | #if UNITY_EDITOR || DEVELOPMENT_BUILD |
| | 408 | | else |
| | 409 | | { |
| 0 | 410 | | Debug.LogWarning($"Couldn't remove entity with ID: {id} as it doesn't exist."); |
| | 411 | | } |
| | 412 | | #endif |
| 458 | 413 | | } |
| | 414 | |
|
| | 415 | | void CleanUpEntityRecursively(IDCLEntity entity, bool removeImmediatelyFromEntitiesList) |
| | 416 | | { |
| 535 | 417 | | using (var iterator = entity.children.GetEnumerator()) |
| | 418 | | { |
| 544 | 419 | | while (iterator.MoveNext()) |
| | 420 | | { |
| 9 | 421 | | CleanUpEntityRecursively(iterator.Current.Value, removeImmediatelyFromEntitiesList); |
| | 422 | | } |
| 535 | 423 | | } |
| | 424 | |
|
| 535 | 425 | | OnEntityRemoved?.Invoke(entity); |
| | 426 | |
|
| 535 | 427 | | if (Environment.i.world.sceneBoundsChecker.enabled) |
| | 428 | | { |
| 450 | 429 | | entity.OnShapeUpdated -= OnEntityShapeUpdated; |
| 450 | 430 | | Environment.i.world.sceneBoundsChecker.RemoveEntity(entity, removeIfPersistent: true, resetState: true); |
| | 431 | | } |
| | 432 | |
|
| 535 | 433 | | if (removeImmediatelyFromEntitiesList) |
| | 434 | | { |
| | 435 | | // Every entity ends up being removed through here |
| 534 | 436 | | entity.Cleanup(); |
| 534 | 437 | | entities.Remove(entity.entityId); |
| 534 | 438 | | } |
| | 439 | | else |
| | 440 | | { |
| 1 | 441 | | Environment.i.platform.parcelScenesCleaner.MarkForCleanup(entity); |
| | 442 | | } |
| 1 | 443 | | } |
| | 444 | |
|
| | 445 | | void RemoveAllEntities(bool instant = false) |
| | 446 | | { |
| | 447 | | //NOTE(Brian): We need to remove only the rootEntities. |
| | 448 | | // If we don't, duplicated entities will get removed when destroying |
| | 449 | | // recursively, making this more complicated than it should. |
| 432 | 450 | | List<IDCLEntity> rootEntities = new List<IDCLEntity>(); |
| | 451 | |
|
| 432 | 452 | | using (var iterator = entities.GetEnumerator()) |
| | 453 | | { |
| 935 | 454 | | while (iterator.MoveNext()) |
| | 455 | | { |
| 503 | 456 | | if (iterator.Current.Value.parent == null) |
| | 457 | | { |
| 495 | 458 | | if (instant) |
| 494 | 459 | | rootEntities.Add(iterator.Current.Value); |
| | 460 | | else |
| 1 | 461 | | Environment.i.platform.parcelScenesCleaner.MarkRootEntityForCleanup(this, iterator.Current.V |
| | 462 | | } |
| | 463 | | } |
| 432 | 464 | | } |
| | 465 | |
|
| 432 | 466 | | if (instant) |
| | 467 | | { |
| 431 | 468 | | int rootEntitiesCount = rootEntities.Count; |
| 1850 | 469 | | for (int i = 0; i < rootEntitiesCount; i++) |
| | 470 | | { |
| 494 | 471 | | IDCLEntity entity = rootEntities[i]; |
| 494 | 472 | | RemoveEntity(entity.entityId, instant); |
| | 473 | | } |
| | 474 | |
|
| 431 | 475 | | entities.Clear(); |
| | 476 | |
|
| | 477 | | // TODO: Does it make sense that 'RemoveAllEntities()' destroys the whole scene GameObject? |
| 431 | 478 | | if (gameObject != null) |
| 431 | 479 | | Destroy(gameObject); |
| | 480 | | } |
| 432 | 481 | | } |
| | 482 | |
|
| 862 | 483 | | private void RemoveAllEntitiesImmediate() { RemoveAllEntities(instant: true); } |
| | 484 | |
|
| | 485 | | public void SetEntityParent(long entityId, long parentId) |
| | 486 | | { |
| 17 | 487 | | if (entityId == parentId) |
| | 488 | | { |
| 0 | 489 | | return; |
| | 490 | | } |
| | 491 | |
|
| 17 | 492 | | IDCLEntity me = GetEntityById(entityId); |
| | 493 | |
|
| 17 | 494 | | if (me == null) |
| 0 | 495 | | return; |
| | 496 | |
|
| 17 | 497 | | Environment.i.platform.cullingController.MarkDirty(); |
| 17 | 498 | | Environment.i.platform.physicsSyncController.MarkDirty(); |
| | 499 | |
|
| 17 | 500 | | DataStore_World worldData = DataStore.i.Get<DataStore_World>(); |
| 17 | 501 | | Transform avatarTransform = worldData.avatarTransform.Get(); |
| 17 | 502 | | Transform firstPersonCameraTransform = worldData.fpsTransform.Get(); |
| | 503 | |
|
| | 504 | | // CONST_THIRD_PERSON_CAMERA_ENTITY_REFERENCE is for compatibility purposes |
| 17 | 505 | | if (parentId == (long) SpecialEntityId.FIRST_PERSON_CAMERA_ENTITY_REFERENCE || |
| | 506 | | parentId == (long) SpecialEntityId.THIRD_PERSON_CAMERA_ENTITY_REFERENCE) |
| | 507 | | { |
| 1 | 508 | | if (firstPersonCameraTransform == null) |
| | 509 | | { |
| 0 | 510 | | Debug.LogError("FPS transform is null when trying to set parent! " + sceneData.id); |
| 0 | 511 | | return; |
| | 512 | | } |
| | 513 | |
|
| | 514 | | // In this case, the entity will attached to the first person camera |
| | 515 | | // On first person mode, the entity will rotate with the camera. On third person mode, the entity will r |
| 1 | 516 | | me.SetParent(null); |
| 1 | 517 | | me.gameObject.transform.SetParent(firstPersonCameraTransform, false); |
| 1 | 518 | | Environment.i.world.sceneBoundsChecker.RemoveEntity(me, removeIfPersistent: true, resetState: true); |
| 1 | 519 | | Environment.i.world.sceneBoundsChecker.AddEntityToBeChecked(me, isPersistent: true, runPreliminaryEvalua |
| 1 | 520 | | return; |
| | 521 | | } |
| | 522 | |
|
| 16 | 523 | | if (parentId == (long) SpecialEntityId.AVATAR_ENTITY_REFERENCE || |
| | 524 | | parentId == (long) SpecialEntityId |
| | 525 | | .AVATAR_POSITION_REFERENCE) // AvatarPositionEntityReference is for compatibility purposes |
| | 526 | | { |
| 1 | 527 | | if (avatarTransform == null) |
| | 528 | | { |
| 0 | 529 | | Debug.LogError("Avatar transform is null when trying to set parent! " + sceneData.id); |
| 0 | 530 | | return; |
| | 531 | | } |
| | 532 | |
|
| | 533 | | // In this case, the entity will be attached to the avatar |
| | 534 | | // It will simply rotate with the avatar, regardless of where the camera is pointing |
| 1 | 535 | | me.SetParent(null); |
| 1 | 536 | | me.gameObject.transform.SetParent(avatarTransform, false); |
| 1 | 537 | | Environment.i.world.sceneBoundsChecker.RemoveEntity(me, removeIfPersistent: true, resetState: true); |
| 1 | 538 | | Environment.i.world.sceneBoundsChecker.AddEntityToBeChecked(me, isPersistent: true, runPreliminaryEvalua |
| 1 | 539 | | return; |
| | 540 | | } |
| | 541 | |
|
| | 542 | | // Remove from persistent checks if it was formerly added as child of avatarTransform or fpsTransform |
| 15 | 543 | | if (me.gameObject.transform.parent == avatarTransform || |
| | 544 | | me.gameObject.transform.parent == firstPersonCameraTransform) |
| | 545 | | { |
| 2 | 546 | | if (Environment.i.world.sceneBoundsChecker.WasAddedAsPersistent(me)) |
| 2 | 547 | | Environment.i.world.sceneBoundsChecker.RemoveEntity(me, removeIfPersistent: true); |
| | 548 | | } |
| | 549 | |
|
| 15 | 550 | | if (parentId == (long) SpecialEntityId.SCENE_ROOT_ENTITY) |
| | 551 | | { |
| | 552 | | // The entity will be child of the scene directly |
| 2 | 553 | | me.SetParent(null); |
| 2 | 554 | | me.gameObject.transform.SetParent(gameObject.transform, false); |
| 2 | 555 | | } |
| | 556 | | else |
| | 557 | | { |
| 13 | 558 | | IDCLEntity myParent = GetEntityById(parentId); |
| | 559 | |
|
| 13 | 560 | | if (myParent != null) |
| | 561 | | { |
| 13 | 562 | | me.SetParent(myParent); |
| | 563 | | } |
| | 564 | | } |
| | 565 | |
|
| | 566 | | // After reparenting the Entity may end up outside the scene boundaries |
| 15 | 567 | | Environment.i.world.sceneBoundsChecker?.AddEntityToBeChecked(me, runPreliminaryEvaluation: true); |
| 15 | 568 | | } |
| | 569 | |
|
| | 570 | | protected virtual void SendMetricsEvent() |
| | 571 | | { |
| 7840 | 572 | | if (Time.frameCount % 10 == 0) |
| 759 | 573 | | metricsCounter.SendEvent(); |
| 7840 | 574 | | } |
| | 575 | |
|
| | 576 | | public IDCLEntity GetEntityById(long entityId) |
| | 577 | | { |
| 962 | 578 | | if (!entities.TryGetValue(entityId, out IDCLEntity entity)) |
| | 579 | | { |
| 2 | 580 | | return null; |
| | 581 | | } |
| | 582 | |
|
| | 583 | | //NOTE(Brian): This is for removing stray null references? This should never happen. |
| | 584 | | // Maybe move to a different 'clean-up' method to make this method have a single responsibility? |
| 960 | 585 | | if (entity == null || entity.gameObject == null) |
| | 586 | | { |
| 0 | 587 | | entities.Remove(entityId); |
| 0 | 588 | | return null; |
| | 589 | | } |
| | 590 | |
|
| 960 | 591 | | return entity; |
| | 592 | | } |
| | 593 | |
|
| | 594 | | public string GetStateString() |
| | 595 | | { |
| 1032 | 596 | | string baseState = isPersistent ? "global-scene" : "scene"; |
| 1032 | 597 | | switch (sceneLifecycleHandler.state) |
| | 598 | | { |
| | 599 | | case SceneLifecycleHandler.State.NOT_READY: |
| 0 | 600 | | return $"{baseState}:{prettyName} - not ready..."; |
| | 601 | | case SceneLifecycleHandler.State.WAITING_FOR_INIT_MESSAGES: |
| 532 | 602 | | return $"{baseState}:{prettyName} - waiting for init messages..."; |
| | 603 | | case SceneLifecycleHandler.State.WAITING_FOR_COMPONENTS: |
| 0 | 604 | | return $"{baseState}:{prettyName} - {sceneLifecycleHandler.sceneResourcesLoadTracker.GetStateString( |
| | 605 | | case SceneLifecycleHandler.State.READY: |
| 500 | 606 | | return $"{baseState}:{prettyName} - ready!"; |
| | 607 | | } |
| | 608 | |
|
| 0 | 609 | | return $"scene:{prettyName} - no state?"; |
| | 610 | | } |
| | 611 | |
|
| | 612 | | public void RefreshLoadingState() |
| | 613 | | { |
| | 614 | | #if UNITY_STANDALONE || UNITY_EDITOR |
| 1032 | 615 | | if (DataStore.i.common.isApplicationQuitting.Get()) |
| 0 | 616 | | return; |
| | 617 | | #endif |
| | 618 | |
|
| 1032 | 619 | | CalculateSceneLoadingState(); |
| | 620 | |
|
| | 621 | | #if UNITY_EDITOR |
| 1032 | 622 | | gameObject.name = GetStateString(); |
| | 623 | | #endif |
| 1032 | 624 | | } |
| | 625 | |
|
| | 626 | | [ContextMenu("Get Waiting Components Debug Info")] |
| | 627 | | public void GetWaitingComponentsDebugInfo() |
| | 628 | | { |
| 0 | 629 | | switch (sceneLifecycleHandler.state) |
| | 630 | | { |
| | 631 | | case SceneLifecycleHandler.State.WAITING_FOR_COMPONENTS: |
| 0 | 632 | | sceneLifecycleHandler.sceneResourcesLoadTracker.PrintWaitingResourcesDebugInfo(); |
| 0 | 633 | | break; |
| | 634 | |
|
| | 635 | | default: |
| 0 | 636 | | Debug.Log($"The scene {sceneData.id} is not waiting for any components. Its current state is " + sce |
| | 637 | | break; |
| | 638 | | } |
| 0 | 639 | | } |
| | 640 | |
|
| | 641 | | /// <summary> |
| | 642 | | /// Calculates the current loading progress of the scene and raise the event OnLoadingStateUpdated with the perc |
| | 643 | | /// </summary> |
| | 644 | | public void CalculateSceneLoadingState() |
| | 645 | | { |
| 1032 | 646 | | loadingProgress = 0f; |
| | 647 | |
|
| 1032 | 648 | | if (sceneLifecycleHandler.state == SceneLifecycleHandler.State.WAITING_FOR_COMPONENTS || |
| | 649 | | sceneLifecycleHandler.state == SceneLifecycleHandler.State.READY) |
| | 650 | | { |
| 500 | 651 | | loadingProgress = sceneLifecycleHandler.loadingProgress; |
| | 652 | | } |
| | 653 | |
|
| 1032 | 654 | | OnLoadingStateUpdated?.Invoke(loadingProgress); |
| 0 | 655 | | } |
| | 656 | | } |
| | 657 | | } |