2022-02-07 00:34:13 +11:00
|
|
|
using Content.Server.Administration.Logs;
|
|
|
|
|
using Content.Server.Body.Systems;
|
2022-11-19 17:07:50 +01:00
|
|
|
using Content.Server.Interaction;
|
2022-02-07 00:34:13 +11:00
|
|
|
using Content.Server.Popups;
|
2022-08-25 23:56:56 +10:00
|
|
|
using Content.Shared.CombatMode;
|
2022-11-19 17:07:50 +01:00
|
|
|
using Content.Shared.Chemistry;
|
2023-04-03 13:13:48 +12:00
|
|
|
using Content.Shared.DoAfter;
|
2023-01-13 16:57:10 -08:00
|
|
|
using Content.Shared.Mobs.Systems;
|
2022-02-07 00:34:13 +11:00
|
|
|
|
|
|
|
|
namespace Content.Server.Chemistry.EntitySystems;
|
|
|
|
|
|
|
|
|
|
public sealed partial class ChemistrySystem : EntitySystem
|
|
|
|
|
{
|
2022-05-28 23:41:17 -07:00
|
|
|
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
|
2022-11-19 17:07:50 +01:00
|
|
|
[Dependency] private readonly IEntityManager _entMan = default!;
|
|
|
|
|
[Dependency] private readonly InteractionSystem _interaction = default!;
|
2022-02-07 00:34:13 +11:00
|
|
|
[Dependency] private readonly BloodstreamSystem _blood = default!;
|
2023-04-03 13:13:48 +12:00
|
|
|
[Dependency] private readonly SharedDoAfterSystem _doAfter = default!;
|
2022-02-07 00:34:13 +11:00
|
|
|
[Dependency] private readonly PopupSystem _popup = default!;
|
2022-11-19 17:07:50 +01:00
|
|
|
[Dependency] private readonly ReactiveSystem _reactiveSystem = default!;
|
|
|
|
|
[Dependency] private readonly SharedAudioSystem _audio = default!;
|
2023-01-13 16:57:10 -08:00
|
|
|
[Dependency] private readonly MobStateSystem _mobState = default!;
|
2022-08-25 23:56:56 +10:00
|
|
|
[Dependency] private readonly SharedCombatModeSystem _combat = default!;
|
2022-02-07 00:34:13 +11:00
|
|
|
[Dependency] private readonly SolutionContainerSystem _solutions = default!;
|
|
|
|
|
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
2022-03-29 03:58:51 +11:00
|
|
|
// Why ChemMaster duplicates reagentdispenser nobody knows.
|
2022-02-07 00:34:13 +11:00
|
|
|
InitializeHypospray();
|
|
|
|
|
InitializeInjector();
|
2022-12-20 04:05:02 +00:00
|
|
|
InitializeMixing();
|
2022-02-07 00:34:13 +11:00
|
|
|
}
|
|
|
|
|
}
|