Add microwave visualizer. Clean up microwave code.

This commit is contained in:
FL-OZ
2020-05-01 03:37:21 -05:00
parent 5d4c0609ec
commit b2aca9a686
11 changed files with 238 additions and 12 deletions

View File

@@ -8,6 +8,11 @@ using Robust.Shared.Serialization;
using Robust.Shared.Interfaces.GameObjects;
using Content.Shared.Prototypes.Kitchen;
using Content.Shared.Kitchen;
using Robust.Shared.Timers;
using Robust.Server.GameObjects;
using Content.Shared.GameObjects.Components.Power;
using Robust.Server.GameObjects.EntitySystems;
using Content.Server.GameObjects.Components.Power;
namespace Content.Server.GameObjects.Components.Kitchen
{
@@ -17,19 +22,28 @@ namespace Content.Server.GameObjects.Components.Kitchen
{
#pragma warning disable 649
[Dependency] private readonly IEntitySystemManager _entitySystemManager;
[Dependency] private readonly IEntityManager _entityManager;
[Dependency] private readonly RecipeManager _recipeManager;
#pragma warning restore 649
public override string Name => "Microwave";
private int _cookTimeSeconds;
private string _badRecipeName;
[ViewVariables]
private SolutionComponent _contents;
private AppearanceComponent _appearance;
private AudioSystem _audioSystem;
private PowerDeviceComponent _powerDevice;
public override void ExposeData(ObjectSerializer serializer)
{
base.ExposeData(serializer);
serializer.DataField(ref _badRecipeName, "failureResult", "FoodBadRecipe");
serializer.DataField(ref _cookTimeSeconds, "cookTime", 5000);
}
public override void Initialize()
@@ -46,23 +60,43 @@ namespace Content.Server.GameObjects.Components.Kitchen
_contents = Owner.AddComponent<SolutionComponent>();
}
}
_appearance = Owner.GetComponent<AppearanceComponent>();
_powerDevice = Owner.GetComponent<PowerDeviceComponent>();
_audioSystem = _entitySystemManager.GetEntitySystem<AudioSystem>();
}
void IActivate.Activate(ActivateEventArgs eventArgs)
{
if(_contents.ReagentList.Count > 0)
if (_contents.ReagentList.Count == 0 || !_powerDevice.Powered)
{
foreach(var r in _recipeManager.Recipes)
return;
}
foreach(var r in _recipeManager.Recipes)
{
if(CanSatisfyRecipe(r))
{
if(CanSatisfyRecipe(r))
SetAppearance(MicrowaveVisualState.Cooking);
Timer.Spawn(_cookTimeSeconds, () =>
{
RemoveContents(r);
var resultPrototype = r.Result;
_entityManager.SpawnEntity(resultPrototype, Owner.Transform.GridPosition);
return;
}
_entityManager.SpawnEntity(r.Result, Owner.Transform.GridPosition);
_audioSystem.Play("/Audio/machines/ding.ogg");
SetAppearance(MicrowaveVisualState.PoweredIdle);
});
return;
}
}
SetAppearance(MicrowaveVisualState.Cooking);
Timer.Spawn(_cookTimeSeconds, () =>
{
_contents.RemoveAllSolution();
_entityManager.SpawnEntity(_badRecipeName, Owner.Transform.GridPosition);
_audioSystem.Play("/Audio/machines/ding.ogg");
SetAppearance(MicrowaveVisualState.PoweredIdle);
});
}
private bool CanSatisfyRecipe(FoodRecipePrototype recipe)
@@ -91,6 +125,10 @@ namespace Content.Server.GameObjects.Components.Kitchen
}
}
private void SetAppearance(MicrowaveVisualState state)
{
if (_appearance != null || Owner.TryGetComponent(out _appearance))
_appearance.SetData(PowerDeviceVisuals.VisualState, state);
}
}
}