mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Refactor map loading & saving * test fixes * ISerializationManager tweaks * Fix component composition * Try fix entity deserialization component composition * comments * CL * error preinit * a * cleanup * error if version is too new * Add AlwaysPushSerializationTest * Add auto-inclusion test * Better categorization * Combine test components * Save -> TrySave Also better handling for saving multiple entities individually * Create new partial class for map loading * Add OrphanSerializationTest * Include MapIds in BeforeSerializationEvent * Addd LifetimeSerializationTest * Add TestMixedLifetimeSerialization * Add CategorizationTest * explicitly serialize list of nullspace entities * Add backwards compatibility test * Version comments also fixes wrong v4 format * add MapMergeTest * Add NetEntity support * Optimize EntityDeserializer Avoid unnecessary component deserialization * fix assert & other bugs * fucking containers strike again * Fix deletion of pre-init entities * fix release note merge conflict * Update Robust.Shared/Map/MapManager.GridCollection.cs Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * VV --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
72 lines
2.5 KiB
C#
72 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Map.Components;
|
|
|
|
namespace Robust.Shared.EntitySerialization;
|
|
|
|
/// <summary>
|
|
/// Class containing information about entities that were loaded from a yaml file.
|
|
/// </summary>
|
|
public sealed class LoadResult
|
|
{
|
|
/// <summary>
|
|
/// The file format version.
|
|
/// </summary>
|
|
public int Version;
|
|
|
|
/// <summary>
|
|
/// The category of the file that was loaded in.
|
|
/// This might not match the actual final result. E.g., when loading in a grid file, a map may automatically gets
|
|
/// generated for it via <see cref="EntityDeserializer.AdoptGrids"/>.
|
|
/// </summary>
|
|
public FileCategory Category = FileCategory.Unknown;
|
|
|
|
/// <summary>
|
|
/// The engine version that was used to write the file. See <see cref="CVars.BuildEngineVersion"/>.
|
|
/// </summary>
|
|
public string? EngineVersion;
|
|
|
|
/// <summary>
|
|
/// The fork that was used to write the file. See <see cref="CVars.BuildForkId"/>.
|
|
/// </summary>
|
|
public string? ForkId;
|
|
|
|
/// <summary>
|
|
/// The fork version that was used to write the file. See <see cref="CVars.BuildVersion"/>.
|
|
/// </summary>
|
|
public string? ForkVersion;
|
|
|
|
/// <summary>
|
|
/// The <see cref="DateTime.UtcNow"/> when the file was created.
|
|
/// </summary>
|
|
public DateTime? Time;
|
|
|
|
/// <summary>
|
|
/// Set of all entities that were created while the file was being loaded.
|
|
/// </summary>
|
|
public readonly HashSet<EntityUid> Entities = new();
|
|
|
|
/// <summary>
|
|
/// Set of entities that are not parented to other entities. This will be a combination of <see cref="Maps"/>,
|
|
/// <see cref="Orphans"/>, and <see cref="NullspaceEntities"/>.
|
|
/// </summary>
|
|
public readonly HashSet<EntityUid> RootNodes = new();
|
|
|
|
public readonly HashSet<Entity<MapComponent>> Maps = new();
|
|
|
|
public readonly HashSet<Entity<MapGridComponent>> Grids = new();
|
|
|
|
/// <summary>
|
|
/// Deserialized entities that need to be assigned a new parent. These differ from "true" null-space entities.
|
|
/// E,g, saving a grid without saving the map would make the grid an "orphan".
|
|
/// </summary>
|
|
public readonly HashSet<EntityUid> Orphans = new();
|
|
|
|
/// <summary>
|
|
/// List of null-space entities. This contains all entities without a parent that don't have a
|
|
/// <see cref="MapComponent"/>, and were not listed as orphans
|
|
/// </summary>
|
|
public readonly HashSet<EntityUid> NullspaceEntities = new();
|
|
}
|