* Update submodule * Refactor CargoOrderDataManager into CargoConsoleSystem * Fix OnRemove event Co-authored-by: Radrark <null>
31 lines
945 B
C#
31 lines
945 B
C#
using Content.Server.Cargo;
|
|
using Content.Server.GameObjects.EntitySystems;
|
|
using Content.Shared.GameObjects.Components.Cargo;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameObjects.Systems;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Server.GameObjects.Components.Cargo
|
|
{
|
|
[RegisterComponent]
|
|
public class CargoOrderDatabaseComponent : SharedCargoOrderDatabaseComponent
|
|
{
|
|
public CargoOrderDatabase Database { get; set; }
|
|
public bool ConnectedToDatabase => Database != null;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
Database = EntitySystem.Get<CargoConsoleSystem>().StationOrderDatabase;
|
|
}
|
|
|
|
public override ComponentState GetComponentState()
|
|
{
|
|
if (!ConnectedToDatabase)
|
|
return new CargoOrderDatabaseState(null);
|
|
return new CargoOrderDatabaseState(Database.GetOrders());
|
|
}
|
|
}
|
|
}
|